 @media (max-width: 1600px) {
     /* .hero-luxury {
         height: 60vh;
     } */
 }

 @media (max-width: 1200px) {
     .container {
         width: 100%;
         padding: 0 30px;
     }

     .hero-luxury h1 {
         font-size: 4rem;
     }

     .section-header h2,
     .split-content h2,
     .stats-text h2 {
         font-size: 2.5rem;
     }

     .hero-content {
         padding-left: 0;
         border-left: none;
     }

 }

 @media (max-width: 1024px) {
     .hero-luxury h1 {
         font-size: 3.5rem;
     }

     .hero-grid {
         grid-template-columns: 1fr;
     }

     .hero-text {
         padding: 0 20px;
         text-align: center;
         max-width: 800px;
         margin: 0 auto;
     }

     .hero-image {
         display: none;
     }

     .hero-content {
         margin: 0 auto;
         text-align: center;
     }

     .btn-group,
     .hero-actions,
     .hero-stats {
         justify-content: center;
     }

     .stats-flex {
         flex-direction: column;
         text-align: center;
     }

     .stats-counter {
         display: grid;
         grid-template-columns: 1fr 1fr;
         gap: 30px;
         width: 100%;
         margin-top: 40px;
     }

     .collection-split {
         grid-template-columns: 1fr;
     }

     .collection-split img {
         height: 400px;
         width: 100%;
     }

     .col-text {
         padding: 80px 40px;
     }
 }

 @media (max-width: 992px) {

     .desktop-btn {
         display: none;
     }

     .mobile-toggle {
         display: block;
         cursor: pointer;
         width: 30px;
     }

     .mobile-toggle img {
         width: 100%;
     }

     .menu-links {
         position: fixed;
         top: 0;
         right: -100%;
         width: 300px;
         height: 100vh;
         background: var(--white);
         flex-direction: column;
         align-items: flex-start;
         padding: 48px 28px;
         gap: 0;
         transition: 0.4s cubic-bezier(0.77, 0, 0.175, 1);
         box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
         z-index: 1002;
         overflow-y: auto;
     }

     .menu-links.active {
         right: 0;
     }

     .menu-links>li {
         width: 100%;
         margin-bottom: 0;
     }

     .menu-links>li>a {
         color: var(--text-dark);
         font-size: 1.1rem;
         border-bottom: 1px solid rgba(0, 0, 0, 0.05);
         width: 100%;
         padding: 15px 0;
         justify-content: space-between;
     }

     li.mobile-close {
         position: absolute;
         top: 15px;
         right: 15px;
         display: flex;
         justify-content: flex-end;
         width: auto;
     }

     .mobile-close img {
         width: 20px;
         height: 20px;
         cursor: pointer;
     }

     .mobile-btn {
         display: block;
         margin-top: 20px;
         width: 100%;
     }

     .nav-wrapper .mobile-btn .btn {
         padding: 12px;
         text-align: center;
         justify-content: center;
         width: 100%;
         color: #fff;
         display: flex;
     }

     .has-dropdown .dropdown-menu {
         position: static;
         width: 100%;
         box-shadow: none;
         opacity: 1;
         visibility: visible;
         transform: none;
         background: #fafafa;
         border-top: none;
         display: none;
         padding-left: 15px;
         padding-top: 0;
         padding-bottom: 0;
     }

     .has-dropdown img {
         filter: invert(1);
     }

     .has-dropdown.dropdown-active .dropdown-menu {
         display: block;
     }

     .has-dropdown.dropdown-active .nav-arrow {
         transform: rotate(180deg);
     }

     .footer-top {
         grid-template-columns: 1fr 1fr;
         gap: 30px;
     }

     .footer-brand {
         grid-column: span 2;
         text-align: center;
     }

     .exp-badge {
         right: 0;
     }

     .contact-grid-layout {
         grid-template-columns: 1fr;
         gap: 60px;
     }

     .page-title {
         font-size: 3.5rem;
     }

     .shop-layout-luxury {
         grid-template-columns: 1fr;
         gap: 20px;
     }


     .mobile-filter-bar {
         display: block;
         width: 100%;
     }

     .filter-toggle-btn {
         width: 100%;
         display: flex;
         justify-content: space-between;
         align-items: center;
         padding: 15px 25px;
         background: var(--white);
         border: 1px solid rgba(0, 0, 0, 0.1);
         font-family: var(--font-heading);
         font-size: 1.3rem;
         font-style: italic;
         color: var(--text-dark);
         cursor: pointer;
         box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
     }


     .sidebar-luxury {
         display: none;
         position: relative;
         top: 0;
         background: var(--white);
         padding: 25px;
         border: 1px solid rgba(0, 0, 0, 0.1);
         border-top: none;
         margin-top: -20px;
         margin-bottom: 30px;
     }


     .sidebar-luxury.show-mobile {
         display: block;
         animation: slideDownFade 0.4s ease forwards;
     }

     @keyframes slideDownFade {
         from {
             opacity: 0;
             transform: translateY(-10px);
         }

         to {
             opacity: 1;
             transform: translateY(0);
         }
     }


     .luxury-product-grid {
         grid-template-columns: repeat(2, 1fr);
     }

     .product-detail-layout {
         grid-template-columns: 1fr;
         gap: 50px;
     }

     .sticky-info {
         position: relative;
         top: 0;
     }

     .thumbnail-col {
         width: 70px;
     }
 }

 @media (max-width: 768px) {

     .hero-luxury h1 {
         font-size: 2.8rem;
     }

     .section-header h2,
     .split-content h2,
     .stats-text h2,
     .video-content h2,
     .col-text h2 {
         font-size: 2.2rem;
     }

     .service-item h3,
     .stat-box h3 {
         font-size: 1.5rem;
     }

     .section-padding {
         padding: 60px 0;
     }

     .hero-luxury {
         height: auto;
         padding: 120px 0 80px 0;
     }

     .services-grid,
     .team-grid,
     .journal-grid {
         grid-template-columns: 1fr;
         gap: 30px;
     }

     .service-item.offset-top {
         margin-top: 0;
     }

     .split-container {
         grid-template-columns: 1fr;
     }

     .split-content {
         padding: 40px 20px;
         order: 1;
     }

     .split-image {
         height: 400px;
         order: 2;
     }

     .logo-flex {
         flex-wrap: wrap;
         justify-content: center;
         gap: 30px;
     }

     .quote-text {
         font-size: 1.4rem;
     }

     .footer-top {
         grid-template-columns: 1fr;
         text-align: center;
     }

     .footer-brand {
         grid-column: span 1;
     }

     .footer-newsletter form {
         justify-content: center;
     }

     .footer .socials {
         justify-content: center;
         margin-top: 20px;
     }

     .footer-bottom {
         flex-direction: column;
         align-items: center;
         gap: 10px;
         text-align: center;
     }

     .page-title {
         font-size: 3rem;
     }

     .form-row {
         grid-template-columns: 1fr;
         gap: 0;
     }

     .about-form-container input {
         margin-bottom: 30px;
     }

     .gallery-masonry {
         display: flex;
         flex-direction: column;
         height: auto;
     }

     .gallery-left,
     .gallery-right-top,
     .g-img {
         height: 300px;
     }

     .gallery-right-bottom {
         flex-direction: row;
         height: 200px;
     }

     .gallery-masonry img {
         position: relative;
     }


     .about-contact-info {
         grid-template-columns: 1fr;
         gap: 15px;
     }
 }

 @media (max-width: 600px) {
     .input-row {
         grid-template-columns: 1fr;
         gap: 0;
     }

     .form-card {
         padding: 30px 20px;
     }

     .section-heading {
         font-size: 2.5rem;
     }

     .shop-header-luxury {
         padding: 120px 0 40px;
     }

     .shop-header-luxury .page-title {
         font-size: 3rem;
     }


     .luxury-product-grid {
         grid-template-columns: 1fr;
     }

     .luxury-toolbar {
         flex-direction: column;
         align-items: flex-start;
         gap: 15px;
     }

     .product-gallery {
         flex-direction: column-reverse;
     }

     .thumbnail-col {
         flex-direction: row;
         width: 100%;
         height: 80px;
         gap: 10px;
     }

     .thumbnail-col .thumb {
         width: calc(33.33% - 7px);
     }

     .product-title {
         font-size: 2.8rem;
     }

     .add-to-cart-row {
         flex-direction: column;
         gap: 15px;
     }

     .qty-selector {
         width: 100%;
     }

     .full-width-btn {
         width: 100%;
         justify-content: center;
         gap: 10px;
         padding: 18px 10px;
     }
 }


 @media (max-width: 480px) {
     .container {
         padding: 0 15px;
     }

     .hero-luxury h1 {
         font-size: 2.2rem;
         line-height: 1.2;
         margin-bottom: 15px;
     }

     .section-header h2,
     .split-content h2,
     .stats-text h2,
     .video-content h2,
     .col-text h2 {
         font-size: 1.75rem;
         margin-bottom: 15px;
     }

     .service-item h3,
     .stat-box h3 {
         font-size: 1.35rem;
     }

     .hero-luxury p,
     .section-header p,
     .split-content p {
         font-size: 0.95rem;
         line-height: 1.6;
     }

     .section-padding {
         padding: 50px 0;
     }

     .hero-luxury {
         padding: 100px 0 60px 0;
     }

     .hero-actions {
         flex-direction: column;
         gap: 15px;
         width: 100%;
     }

     .hero-actions .btn,
     .hero-actions .btn-link {
         width: 100%;
         justify-content: center;
         text-align: center;
     }

     .hero-stats {
         margin-top: 30px;
         gap: 20px;
     }

     .navbar {
         padding: 10px 15px;
     }

     .navbar.scrolled {
         padding: 10px 15px;
     }

     .nav-actions {
         gap: 15px;
     }

     .stats-counter {
         grid-template-columns: 1fr;
         gap: 30px;
     }

     .stat-box h3 {
         font-size: 2.5rem;
     }

     .card-img {
         margin-bottom: 15px;
     }

     .card-body h4 {
         font-size: 1.3rem;
     }

     .footer {
         padding: 50px 0 20px;
     }

     .footer-top {
         gap: 40px;
     }
 }