@media (max-width: 768px) {
  .footer-top {
    flex-direction: column;
  }
  .desktop-nav {
    display: none;
  }
  .footer-info-container {
    flex-direction: column;
  }
  .footer-bottom {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }
  .footer-links {
    margin: 0 auto;
    text-align: center;
  }
  .footer-top {
    align-items: start;
    max-width: 90%;
    margin: 0 auto;

    left: 5%;
  }
  .info-card {
    margin-left: 0 !important;
  }
  h2 {
    font-size: 26px;
  }
  .footer-info-container {
    padding-top: 105px;
    padding-bottom: 40px;
  }
  .footer-bottom p {
    font-size: 14px;
    text-align: center;
  }
  .footer-links li {
    margin-bottom: 8px;
  }
  .footer-links h3 {
    margin-bottom: 9px;
  }
  .hero-item {
    height: 480px;
  }
  .hero-item-container .container {
    padding-bottom: 60px;
  }
  .hero-section-buttons {
    display: flex;
    align-items: center;
    background-color: #fff;
    width: fit-content;
    padding: 13px 13px 12px 13px;
    border-radius: 10px 10px 0 0;
    position: absolute;
    right: 0;
    bottom: 0;
    z-index: 1;
  }
  .hero-section-buttons span {
    font-size: 18px;
    margin: 0 12px;
  }
  .hero-section-buttons button {
    font-size: 18px;
  }
  .hero-section p {
    font-size: 14px;
  }
  .video-section {
    margin-top: 30px;
  }
  .page-header h1 {
    font-size: 26px;
  }
  .product-details .swiper-slide img {
    height: 250px;
  }
  .blog-main-img {
    height: 300px;
    border-radius: 30px;
    color: #fff;
    padding: 40px 39px;
    display: flex;
    align-items: end;
  }
  .blog-main-img h1 {
    font-size: 26px;
  }
  .contact-form-section {
    background-color: #fff;
    width: 100%;
    padding: 25px 20px;
    justify-content: space-between;
    box-shadow: 0px 3px 6px #00000029;
    border-radius: 24px;
    margin-bottom: 30px;
  }
  .page-header {
    height: 350px;
    background-image: url(../images/page-header-bg.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: end;
    justify-content: center;
    text-align: center;
    padding-bottom: 40px;
  }

  /* Mobile Menu Styles */
  .header-actions {
    display: flex;
    align-items: center;
    gap: 15px;
  }

  .desktop-btn {
    display: none;
  }

  .mobile-menu-toggle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 1001;
  }

  .mobile-menu-toggle:hover {
    background: rgba(255, 255, 255, 0.3);
  }

  .hamburger-line {
    width: 24px;
    height: 2px;
    background-color: #af8e70;
    margin: 2px 0;
    transition: all 0.3s ease;
    transform-origin: center;
  }

  .mobile-menu-toggle.active .hamburger-line:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }

  .mobile-menu-toggle.active .hamburger-line:nth-child(2) {
    opacity: 0;
  }

  .mobile-menu-toggle.active .hamburger-line:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
  }

  .mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 998;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    display: block;
  }

  .mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
  }

  .mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 320px;
    height: 100vh;
    background: linear-gradient(135deg, #af8e70 0%, #8b7355 100%);
    z-index: 999;
    transition: right 0.3s ease;
    overflow-y: auto;
    display: block;
  }

  .mobile-menu.active {
    right: 0;
  }

  .mobile-menu-content {
    padding: 20px;
    height: 100%;
    display: flex;
    flex-direction: column;
  }

  .mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  }

  .mobile-menu-close {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin: 0;
  }
  .mobile-menu-close i {
    margin: 0;
    height: 18px;
  }

  .mobile-menu-close:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: rotate(90deg);
  }

  .mobile-nav-list {
    list-style: none;
    padding: 0;
    margin: 0;
    flex: 1;
  }

  .mobile-nav-list li {
    margin-bottom: 15px;
  }

  .mobile-nav-link {
    display: block;
    padding: 15px 20px;
    color: white;
    text-decoration: none;
    font-size: 18px;
    font-weight: 500;
    border-radius: 10px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
  }

  .mobile-nav-link::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    transition: left 0.3s ease;
    z-index: -1;
  }

  .mobile-nav-link:hover::before,
  .mobile-nav-link.active::before {
    left: 0;
  }

  .mobile-nav-link:hover {
    transform: translateX(10px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  }

  .mobile-nav-link.active {
    background: rgba(255, 255, 255, 0.2);
    font-weight: 600;
  }

  .mobile-menu-footer {
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
  }

  .mobile-btn {
    width: 100%;
    text-align: center;
    padding: 15px 20px;
    font-size: 16px;
    font-weight: 600;
    background-color: white !important;
    color: #af8e70 !important;
    border: 2px solid white !important;
    transition: all 0.3s ease;
  }

  .mobile-btn:hover {
    background-color: #af8e70 !important;
    color: white !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
  }
}
