 
    :root {
      --primary-color: #1a1a1a; /* Rich black */
      --secondary-color: #841c1c; /* Burgundy */
      --accent-color: #f5f3f0; /* Cream */
      --text-dark: #333;
      --text-light: #777;
      --transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
      --box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
      --box-shadow-hover: 0 8px 30px rgba(0, 0, 0, 0.12);
      --border-radius: 0; /* Sharp edges for luxury feel */
      --gold: #c5a880; /* Luxury gold accent */
    }

    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    html, body {
      font-family: 'Montserrat', sans-serif;
      background-color: #fff;
      color: var(--text-dark);
      overflow-x: hidden;
      scroll-behavior: smooth;
      line-height: 1.6;
    }

    h1, h2, h3, h4 {
      font-family: 'Cormorant Garamond', serif;
      font-weight: 600;
      letter-spacing: 0.5px;
    }

    a {
      text-decoration: none;
      color: inherit;
    }

    .btn {
      display: inline-block;
      padding: 14px 32px;
      background-color: var(--primary-color);
      color: white;
      border: none;
      border-radius: var(--border-radius);
      font-size: 0.9rem;
      font-weight: 500;
      text-transform: uppercase;
      letter-spacing: 1.5px;
      cursor: pointer;
      transition: var(--transition);
      position: relative;
      overflow: hidden;
    }

    .btn:after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      width: 0;
      height: 2px;
      background: var(--secondary-color);
      transition: var(--transition);
    }

    .btn:hover {
      background-color: var(--primary-color);
      transform: translateY(-2px);
      box-shadow: var(--box-shadow-hover);
    }

    .btn:hover:after {
      width: 100%;
    }

    .btn-outline {
      background: transparent;
      border: 1px solid white;
      color: white;
    }

    .btn-outline:hover {
      background: white;
      color: var(--primary-color);
    }

    .btn-gold {
      background: var(--gold);
      color: var(--primary-color);
    }

    .btn-gold:hover {
      background: var(--primary-color);
      color: white;
    }

    .section-title {
      font-size: 2.8rem;
      margin-bottom: 1.5rem;
      position: relative;
      display: inline-block;
      font-weight: 500;
    }

    .section-title:after {
      content: '';
      position: absolute;
      bottom: -12px;
      left: 0;
      width: 60px;
      height: 2px;
      background: var(--secondary-color);
    }

    .hero-scroll {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}


.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-text {
  position: absolute;
  bottom: 12%;
  left: 8%;
  color: #f5f3f0;
  font-family: "Cormorant Garamond", serif;
  opacity: 0;
  transform: translateY(30px);
  transition: all 1s ease;
  text-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
}

.hero-text h1 {
  font-size: 4rem;
  margin: 0;
  font-weight: 500;
}

.hero-text p {
  font-size: 1.5rem;
  margin-top: 0.5rem;
  letter-spacing: 0.05em;
}

 .hero-text.visible {
    opacity: 1;
    transform: translateY(0);
    padding-right: 20px;
  }


@media (max-width: 768px) {
  .hero-scroll {
    height: 85vh; /* Adjust as needed */
  }

  .hero-image {
    height: 100%;
    object-fit: cover;
    object-position: center;
  }

  .hero-text h1 {
    font-size: 2.8rem; /* Optional: Adjust text size for smaller screens */
  }

  .hero-text p {
    font-size: 1.2rem;
  }
}

@media (max-width: 576px) {
  .hero-scroll {
    height: 80vh; /* Even smaller for mobile devices */
  }

  .hero-text h1 {
    font-size: 2.5rem;
  }

  .hero-text p {
    font-size: 1.2rem;
  }
}



.hero-text .btn {
  background-color: transparent; /* or any brand color */
  color: #fff;
  border: 1px solid #fff;
  padding: 0.8rem 1.5rem;
  border-radius: 0px;
  font-size: 1rem;
  text-decoration: none;
  display: inline-block;
  transition: background-color 0.3s ease;
}

.hero-text .btn:hover {
  background-color: #444;
}



    /* Main Content */
    .main {
      
      opacity: 1;
      animation: none;
    }

    @keyframes fadeInMain {
      to { opacity: 1; }
    }


 



    /* Navbar */
    .navbar {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 1.5rem 3rem;
      background: rgba(255, 255, 255, 0.98);
      position: fixed;
      width: 100%;
      top: 0;
      z-index: 999;
      transition: all 0.4s ease;
      border-bottom: 1px solid rgba(0,0,0,0.05);
    }

    .navbar.scrolled {
      padding: 1rem 2rem;
      background: rgba(255, 255, 255, 0.98);
      box-shadow: var(--box-shadow);
      border-bottom: none;
    }

    .nav-section {
      display: flex;
      gap: 2.5rem;
      align-items: center;
    }

    .brand-name {
      font-size: 2rem;
      font-weight: 500;
      color: var(--primary-color);
      letter-spacing: 2px;
      font-family: 'Cormorant Garamond', serif;
      position: relative;
    }

    .brand-name span {
      color: var(--secondary-color);
    }

    .icon-block {
      display: flex;
      flex-direction: column;
      align-items: center;
      font-size: 0.7rem;
      color: var(--text-light);
      position: relative;
      transition: var(--transition);
      text-transform: uppercase;
      letter-spacing: 1px;
    }

    .icon-block:hover {
      color: var(--secondary-color);
    }

    .icon-block i {
      font-size: 1.4rem;
      color: var(--primary-color);
      margin-bottom: 0.25rem;
      cursor: pointer;
      position: relative;
      transition: var(--transition);
    }

    .icon-block:hover i {
      color: var(--secondary-color);
    }

    .cart-icon i {
      position: relative;
    }

    .cart-number {
      position: absolute;
      top: -5px;
      right: -5px;
      background: var(--secondary-color);
      color: white;
      border-radius: 50%;
      width: 18px;
      height: 18px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 0.7rem;
      font-weight: bold;
    }

    /* Search */
    .search-wrapper {
      display: flex;
      align-items: center;
    }

    .expanded-search {
      display: none;
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.4s ease;
      background: #f9f9f9;
      padding: 0 2rem;
      border-bottom: 1px solid #eee;
      position: absolute;
      top: 80px;
      left: 0;
      right: 0;
      z-index: 998;
      box-shadow: 0 5px 10px rgba(0,0,0,0.05);
    }

    .expanded-search.open {
      display: block;
      max-height: 300px;
      padding: 1.5rem 2rem;
    }

    .expanded-search input {
      width: 100%;
      padding: 0.8rem 1.2rem;
      font-size: 1rem;
      border: 1px solid #ddd;
      border-radius: var(--border-radius);
      outline: none;
      background: white;
      box-shadow: 0 2px 8px rgba(0,0,0,0.05);
      transition: var(--transition);
      font-family: 'Montserrat', sans-serif;
    }

    .expanded-search input:focus {
      border-color: var(--secondary-color);
      box-shadow: 0 3px 12px rgba(0,0,0,0.1);
    }

    .search-results {
      max-height: 200px;
      overflow-y: auto;
      margin-top: 1rem;
    }

    .search-results div {
      padding: 0.8rem 0;
      border-bottom: 1px solid #eee;
      color: var(--text-dark);
      font-size: 0.95rem;
      cursor: pointer;
      transition: var(--transition);
      font-family: 'Montserrat', sans-serif;
    }

    .search-results div:hover {
      background-color: #f5f5f5;
      padding-left: 10px;
      color: var(--secondary-color);
    }

    /* Side Menu */
    .side-menu-overlay {
      display: none;
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0,0,0,0.7);
      z-index: 99;
      backdrop-filter: blur(5px);
    }

    .side-menu {
      position: fixed;
      right: -350px;
      top: 0;
      width: 300px;
      height: 100%;
      background-color: #fff;
      box-shadow: -5px 0 15px rgba(0,0,0,0.1);
      z-index: 100;
      transition: right 0.4s cubic-bezier(0.25, 0.1, 0.25, 1);
      padding: 3rem 2rem;
      overflow-y: auto;
    }

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

    .side-menu h3 {
      font-size: 2rem;
      margin-bottom: 3rem;
      color: var(--primary-color);
      position: relative;
      padding-bottom: 15px;
      font-weight: 500;
    }

    .side-menu h3:after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      width: 50px;
      height: 2px;
      background: var(--secondary-color);
    }

    .side-menu ul {
      list-style: none;
    }

    .side-menu ul li {
      padding: 1.2rem 0;
      font-size: 1rem;
      border-bottom: 1px solid #eee;
      cursor: pointer;
      transition: var(--transition);
      font-weight: 400;
      letter-spacing: 0.5px;
      text-transform: uppercase;
      font-family: 'Montserrat', sans-serif;
    }

    .side-menu ul li:hover {
      color: var(--secondary-color);
      padding-left: 10px;
    }

    .side-menu .close-icon {
  position: absolute;
  top: 1rem;
  right: 1rem;
  font-size: 2rem;
  color: var(--secondary-color);
  cursor: pointer;
  z-index: 200;
}


    /* Hero Slider */
   

    /* Intro Section */
    .intro-section {
      padding: 8rem 2rem;
      text-align: center;
      background: #fff;
      position: relative;
      overflow: hidden;
    }

    .intro-section:before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: url('https://images.unsplash.com/photo-1583160247711-2191776b4b91?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80') center/cover no-repeat;
      opacity: 0.03;
      z-index: 0;
    }

    .intro-content {
      max-width: 1000px;
      margin: 0 auto;
      position: relative;
      z-index: 1;
    }

    .intro-section p {
      font-size: 1.2rem;
      line-height: 1.8;
      color: var(--text-light);
      margin-bottom: 3rem;
      font-family: 'EB Garamond', serif;
    }

    /* Category Grid */
    .category-grid-section {
      padding: 6rem 2rem;
      background: white;
      position: relative;
    }

    .category-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 30px;
      max-width: 1200px;
      margin: 4rem auto 0;
    }

    .category-item {
      position: relative;
      overflow: hidden;
      border-radius: var(--border-radius);
      box-shadow: var(--box-shadow);
      transition: var(--transition);
    }

    .category-item:hover {
      transform: translateY(-10px);
      box-shadow: var(--box-shadow-hover);
    }

    .category-item img {
      width: 100%;
      height: 400px;
      object-fit: cover;
      transition: transform 0.8s ease;
    }

    .category-item:hover img {
      transform: scale(1.05);
    }

    .category-info {
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
      padding: 2rem;
      color: white;
    }

    .category-info h3 {
      font-size: 1.8rem;
      margin-bottom: 0.5rem;
      font-weight: 500;
    }

    .category-info p {
      font-size: 1rem;
      opacity: 0.9;
      font-family: 'Montserrat', sans-serif;
    }

    /* Signature Collections */
    .collections-section {
      padding: 6rem 2rem;
      background: var(--accent-color);
    }

    .collections-container {
      max-width: 1400px;
      margin: 0 auto;
    }

    .collections-container .section-subtitle {
      color: var(--primary-color);
      margin-bottom: 1.5rem;
    }

    .featured-collections {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 40px;
      margin-bottom: 5rem;
    }

    .collection-card {
      position: relative;
      height: 600px;
      overflow: hidden;
      border-radius: var(--border-radius);
      box-shadow: var(--box-shadow);
    }

    .collection-card img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.8s ease;
    }

    .collection-card:hover img {
      transform: scale(1.03);
    }

    .collection-overlay {
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      padding: 3rem;
      background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
      color: white;
    }

    .collection-overlay h3 {
      font-size: 2.5rem;
      margin-bottom: 1.5rem;
      font-weight: 500;
    }

    .collection-overlay p {
      margin-bottom: 2rem;
      line-height: 1.8;
      font-family: 'EB Garamond', serif;
      font-style: italic;
      font-size: 1.2rem;
    }

    .product-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 30px;
    }

    .product-card {
      position: relative;
      border-radius: var(--border-radius);
      overflow: hidden;
      transition: var(--transition);
    }

    .product-card:hover {
      transform: translateY(-5px);
      box-shadow: var(--box-shadow-hover);
    }

    .product-image {
      height: 300px;
      overflow: hidden;
    }

    .product-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.8s ease;
    }

    .product-card:hover .product-image img {
      transform: scale(1.05);
    }

    .product-info {
      padding: 1.8rem 0;
      text-align: center;
      position: relative;
    }

    .product-info h4 {
      font-size: 1.2rem;
      margin-bottom: 0.8rem;
      font-weight: 500;
      letter-spacing: 0.5px;
      color: var(--primary-color);
    }

    .product-info .price {
      color: var(--secondary-color);
      font-weight: 600;
      font-size: 1.2rem;
      letter-spacing: 1px;
    }

    .product-actions {
      position: absolute;
      top: -30px;
      left: 50%;
      transform: translateX(-50%);
      display: flex;
      gap: 10px;
      opacity: 0;
      transition: var(--transition);
    }

    .product-card:hover .product-actions {
      opacity: 1;
      top: -40px;
    }

    .quick-view, .add-to-cart, .wishlist {
      width: 40px;
      height: 40px;
      background: white;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 3px 10px rgba(0,0,0,0.1);
      cursor: pointer;
      transition: var(--transition);
    }

    .quick-view:hover, .add-to-cart:hover, .wishlist:hover {
      background: var(--secondary-color);
      color: white;
      transform: translateY(-3px);
    }

    .wishlist.active {
      background: var(--secondary-color);
      color: white;
    }

    /* Newsletter */
    .newsletter-section {
      padding: 6rem 2rem;
      background: var(--primary-color);
      color: white;
      text-align: center;
      position: relative;
      overflow: hidden;
    }

    .newsletter-section:before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: url('https://images.unsplash.com/photo-1583160247711-2191776b4b91?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80') center/cover no-repeat;
      opacity: 0.03;
      z-index: 0;
    }

    .newsletter-container {
      max-width: 700px;
      margin: 0 auto;
      position: relative;
      z-index: 1;
    }

    .newsletter-section .section-title {
      color: white;
    }

    .newsletter-section .section-title:after {
      background: var(--secondary-color);
    }

    .newsletter-section .section-subtitle {
      color: rgba(255,255,255,0.8);
    }

    .newsletter-form {
      display: flex;
      max-width: 500px;
      margin: 0 auto;
    }

    .newsletter-form input {
      flex: 1;
      padding: 1rem 1.5rem;
      border: none;
      border-radius: var(--border-radius) 0 0 var(--border-radius);
      font-size: 1rem;
      outline: none;
      font-family: 'Montserrat', sans-serif;
    }

    .newsletter-form button {
      padding: 0 2rem;
      background: var(--secondary-color);
      color: white;
      border: none;
      border-radius: 0 var(--border-radius) var(--border-radius) 0;
      cursor: pointer;
      transition: var(--transition);
      font-family: 'Montserrat', sans-serif;
      text-transform: uppercase;
      letter-spacing: 1px;
      font-weight: 500;
    }

    .newsletter-form button:hover {
      background: #a31616;
    }

    /* Footer */
    .footer {
      background: #111;
      color: white;
      padding: 5rem 2rem 2rem;
      position: relative;
    }

    .footer-container {
      max-width: 1200px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
      gap: 3rem;
    }

    .footer-column h4 {
      font-size: 1.3rem;
      margin-bottom: 2rem;
      position: relative;
      padding-bottom: 15px;
      font-weight: 500;
      letter-spacing: 1px;
    }

    .footer-column h4:after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      width: 40px;
      height: 2px;
      background: var(--secondary-color);
    }

    .footer-column ul {
      list-style: none;
    }

    .footer-column ul li {
      margin-bottom: 1rem;
    }

    .footer-column ul li a {
      color: #bbb;
      transition: var(--transition);
      font-family: 'Montserrat', sans-serif;
      font-size: 0.9rem;
      letter-spacing: 0.5px;
    }

    .footer-column ul li a:hover {
      color: var(--secondary-color);
      padding-left: 5px;
    }

    .social-links {
      display: flex;
      gap: 1rem;
      margin-top: 2rem;
    }

    .social-links a {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 40px;
      height: 40px;
      border-radius: 50%;
      background: #222;
      color: white;
      transition: var(--transition);
    }

    .social-links a:hover {
      background: var(--secondary-color);
      transform: translateY(-3px);
    }

    .footer-bottom {
      text-align: center;
      padding-top: 3rem;
      margin-top: 3rem;
      border-top: 1px solid #333;
      color: #999;
      font-size: 0.9rem;
      letter-spacing: 0.5px;
    }

    /* Marble Collections Section */
    .marble-collections-section {
      padding: 8rem 2rem;
      background: #fff;
      position: relative;
    }
    
    .marble-section-header {
      text-align: center;
      font-size: 3.2rem;
      margin-bottom: 5rem;
      font-family: 'Cormorant Garamond', serif;
      font-weight: 600;
      color: var(--primary-color);
      position: relative;
    }
    
    .marble-section-header::after {
      content: '';
      position: absolute;
      bottom: -20px;
      left: 50%;
      transform: translateX(-50%);
      width: 80px;
      height: 2px;
      background: var(--secondary-color);
    }
    
    /* Desktop Slider */
    .marble-slider-container-desktop {
      position: relative;
      width: 100%;
      max-width: 1440px;
      height: 80vh;
      min-height: 700px;
      margin: 0 auto 5rem;
      overflow: hidden;
      padding: 0 40px;
      display: block;
    }
    
    .marble-slider-wrapper-desktop {
      display: flex;
      transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
      height: 100%;
    }
    
    .marble-slide-desktop {
      flex: 0 0 100%;
      display: flex;
      gap: 60px;
      padding: 20px;
      align-items: center;
    }
    
    .marble-slide-image-container {
      width: 55%;
      height: 100%;
      position: relative;
      overflow: hidden;
      border-radius: var(--border-radius);
      box-shadow: var(--box-shadow);
      transform: scale(0.98);
      transition: var(--transition);
    }
    
    .marble-slide-desktop:hover .marble-slide-image-container {
      transform: scale(1);
      box-shadow: var(--box-shadow-hover);
    }
    
    .marble-slide-image-container::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0) 100%);
      z-index: 1;
    }

    .marble-mobile-header,
    .marble-slider-container-mobile,
    .marble-mobile-button-container {
      display: none; /* Hidden by default */
    }

    .marble-slider-container-mobile {
      display: none;
    }
    
    .marble-slide-desktop img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center;
      transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
    }
    
    .marble-slide-desktop.active img {
      transform: scale(1.03);
    }
    
    .marble-text-panel {
      width: 40%;
      display: flex;
      flex-direction: column;
      justify-content: center;
      padding: 60px 40px;
      position: relative;
      z-index: 2;
    }
    
    .marble-collection-number {
      position: absolute;
      top: 40px;
      right: 40px;
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.8rem;
      font-weight: 700;
      color: rgba(0,0,0,0.05);
    }
    
    .marble-text-panel h2 {
      font-size: 3rem;
      margin-bottom: 30px;
      line-height: 1.3;
      color: var(--primary-color);
      position: relative;
      font-weight: 600;
    }
    
    .marble-text-panel h2::after {
      content: '';
      position: absolute;
      bottom: -10px;
      left: 0;
      width: 60px;
      height: 2px;
      background: var(--secondary-color);
      transition: var(--transition);
    }
    
    .marble-text-panel p {
      font-size: 1.2rem;
      margin-bottom: 40px;
      color: var(--text-light);
      line-height: 1.8;
      font-family: 'EB Garamond', serif;
    }
    
    .marble-arrow {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      background-color: white;
      border: none;
      color: var(--primary-color);
      font-size: 1.8rem;
      width: 70px;
      height: 70px;
      padding: 12px 23px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      z-index: 10;
      box-shadow: 0 10px 30px rgba(0,0,0,0.15);
      transition: var(--transition);
      opacity: 0.9;
    }
    
    .marble-arrow.left { left: 30px; }
    .marble-arrow.right { right: 30px; }
    
    .marble-arrow:hover {
      opacity: 1;
      background-color: var(--secondary-color);
      color: white;
      box-shadow: 0 15px 40px rgba(0,0,0,0.25);
      transform: translateY(-50%) scale(1.05);
    }
    
    .marble-slider-dots {
      position: absolute;
      bottom: 50px;
      left: 50%;
      transform: translateX(-50%);
      display: flex;
      gap: 20px;
      z-index: 10;
    }
    
    .marble-slider-dots button {
      width: 14px;
      height: 14px;
      border-radius: 50%;
      background-color: rgba(255, 255, 255, 0.6);
      border: none;
      cursor: pointer;
      transition: var(--transition);
      position: relative;
      padding: 0;
    }
    
    .marble-slider-dots button.active {
      background-color: var(--secondary-color);
      transform: scale(1.2);
    }
    
    /* Mobile Slider */
    .marble-mobile-header {
      display: none;
      padding: 40px 20px 20px;
      text-align: center;
    }
    
    .marble-mobile-header h2 {
      font-family: 'Cormorant Garamond', serif;
      font-size: 2rem;
      font-weight: 600;
      color: var(--primary-color);
      letter-spacing: 0.5px;
      position: relative;
      display: inline-block;
      margin-bottom: 5px;
    }
    
    .marble-collection-subtitle {
      font-size: 1rem;
      color: var(--text-light);
      max-width: 80%;
      margin: 0 auto;
      font-family: 'Montserrat', sans-serif;
    }
    
    .marble-mobile-header h2::after {
      content: '';
      position: absolute;
      bottom: -12px;
      left: 50%;
      transform: translateX(-50%);
      width: 50px;
      height: 2px;
      background: var(--secondary-color);
    }
    
    .marble-mobile-slide::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
     
      z-index: 1;
    }
    
    /* Mobile Slider */
    .marble-slider-container-mobile {
      display: flex;
      flex-direction: row;
      overflow-x: auto;
      scroll-snap-type: x mandatory;
      -webkit-overflow-scrolling: touch;
      padding: 0 20px 30px;
      gap: 25px;
      margin-bottom: 40px;
      scrollbar-width: none;
      width: 100%;
      white-space: nowrap;
    }

    .marble-slider-container-mobile::-webkit-scrollbar {
      display: none;
    }

    .marble-mobile-slide {
      flex: 0 0 calc(85%-12.5px);
      min-width: 85%;
      scroll-snap-align: start;
      position: relative;
      margin-right: 20px;
      border-radius: var(--border-radius);
      overflow: hidden;
      box-shadow: var(--box-shadow);
      display: inline-block;
      vertical-align: top;
    }

    .marble-mobile-slide img {
      width: 100%;
      height: 65vh;
      min-height: 450px;
      object-fit: cover;
      object-position: center;
      display: block;
    }
    
    .marble-mobile-slide:hover img {
      transform: scale(1.03);
    }
    
    .marble-mobile-slide h3 {
      position: absolute;
      bottom: 50px;
      left: 0;
      right: 0;
      text-align: center;
      color: white;
      font-family: 'Cormorant Garamond', serif;
      font-size: 2rem;
      padding: 0 30px;
      z-index: 2;
      text-shadow: 0 2px 5px rgba(0,0,0,0.3);
    }
    
    .marble-mobile-slide p {
      position: absolute;
      bottom: 20px;
      left: 0;
      right: 0;
      text-align: center;
      color: rgba(255,255,255,0.9);
      font-size: 1rem;
      padding: 0 30px;
      z-index: 2;
      font-family: 'Montserrat', sans-serif;
      text-shadow: 0 1px 3px rgba(0,0,0,0.3);
    }
    
    .marble-mobile-button-container {
      display: none;
      text-align: center;
      margin: 30px 0 80px;
    }


    @media (min-width: 993px) {
  .marble-slider-container-desktop {
    display: block;
  }

  .marble-slider-container-mobile,
  .marble-mobile-header,
  .marble-mobile-button-container {
    display: none;
  }
}


    /* Responsive adjustments for the marble slider */
    @media (max-width: 992px) {
      .marble-slider-container-desktop {
        display: none;
      }

      .marble-slider-container-mobile {
        display: flex;
      }
      
      .marble-mobile-header,
      .marble-mobile-button-container {
        display: block;
      }

      .marble-slider-container-mobile {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        padding: 0 20px 30px;
        gap: 25px;
        margin-bottom: 40px;
        scrollbar-width: none;
        width: 100%;
      }

      .marble-slider-container-mobile::-webkit-scrollbar {
        display: none;
      }
      
      .marble-section-header {
        font-size: 2.5rem;
        margin-bottom: 3rem;
      }

      .marble-section-header::after {
        display: none;
      }

      .marble-mobile-slide {
        flex: 0 0 85%;
        min-width: 85%;
        scroll-snap-align: start;
        position: relative;
        border-radius: var(--border-radius);
        overflow: hidden;
        box-shadow: var(--box-shadow);
      }
      
      .marble-mobile-slide img {
        width: 100%;
        height: 65vh;
        min-height: 450px;
        object-fit: cover;
      }
      
      .marble-mobile-slide h3 {
        position: absolute;
        bottom: 50px;
        left: 0;
        right: 0;
        text-align: center;
        color: white;
        font-family: 'Cormorant Garamond', serif;
        font-size: 2rem;
        padding: 0 30px;
        z-index: 2;
        text-shadow: 0 2px 5px rgba(0,0,0,0.3);
      }
    }

    @media (max-width: 768px) {
      .marble-section-header {
        font-size: 2.2rem;
      }
      
      .marble-mobile-slide {
        flex: 0 0 88%;
      }
      
      .marble-mobile-slide h3 {
        font-size: 1.8rem;
        bottom: 45px;
      }
    }

    @media (max-width: 576px) {
      .marble-section-header {
        font-size: 2.3rem;
        padding: 0 1rem;
        margin-bottom: 1.5rem;
      }

      .marble-section-header .section-subtitle{
        font-size: 0.7rem !important;
       display: none;
        margin: 0 auto;
      }
      
      .marble-mobile-slide {
        flex: 0 0 92%;
      }
      
      .marble-mobile-slide img {
        height: 60vh;
        min-height: 400px;
      }
      
      .marble-mobile-slide h3 {
        font-size: 1.6rem;
        bottom: 40px;
        padding: 0 20px;
      }
      
      .marble-mobile-slide p {
        padding: 0 20px;
        font-size: 0.9rem;
      }
      
      .marble-mobile-button-container {
        margin: 20px 0 60px;
      }
    }

    /* Marble Comparison Component */
    .marble-comparison-home {
      padding: 80px 0;
      background: #f8f5f2;
      margin: 0 auto;
    }
    
    .marble-comparison-home .comparison-section {
      max-width: 1400px;
      margin: 0 auto;
      padding: 0 40px;
    }

    .marble-comparison-home .section-title {
      text-align: center;
      font-family: 'Cormorant Garamond', serif;
      font-size: 2.8rem;
      margin-bottom: 40px;
      color: #222;
      font-weight: 500;
      letter-spacing: -0.5px;
    }

    .marble-comparison-home .section-subtitle {
      text-align: center;
      font-size: 1.1rem;
      max-width: 600px;
      margin: 0 auto 50px;
      color: #777;
      font-weight: 300;
      letter-spacing: 0.5px;
      font-family: 'Montserrat', sans-serif;
      display: none;
    }

    .grid2 h3{
      display: none !important;
    }

    .marble-comparison-home .comparison-container {
      position: relative;
      width: 100%;
      aspect-ratio: 16/9;
      overflow: hidden;
      background: #fff;
      box-shadow: 0 30px 60px rgba(0, 0, 0, 0.05);
      border-radius: 6px;
      margin: 0 auto;
    display: none;
    }

    .marble-comparison-home .comparison-container img {
      position: absolute;
      top: 50%;
      left: 50%;
      width: 100%;
      height: 100%;
      object-fit: contain;
      transform: translate(-50%, -50%);
      pointer-events: none;
      transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    }

    .marble-comparison-home .left-image {
      clip-path: inset(0 50% 0 0);
      z-index: 1;
    }

    .marble-comparison-home .right-image {
      clip-path: inset(0 0 0 50%);
      z-index: 1;
    }

    .marble-comparison-home .slider, 
    .marble-comparison-home .slider-handle {
      position: absolute;
      z-index: 5;
      transform: translateX(-50%);
    }

    .marble-comparison-home .slider {
      top: 0;
      left: 50%;
      width: 2px;
      height: 100%;
      background: rgba(0,0,0,0.1);
      pointer-events: none;
      transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    }

    .marble-comparison-home .slider-handle {
      top: 50%;
      left: 50%;
      width: 50px;
      height: 50px;
      background: rgba(255,255,255,0.95);
      border: 2px solid var(--gold);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 20px;
      color: var(--gold);
      box-shadow: 0 10px 30px rgba(0,0,0,0.1);
      cursor: grab;
      transform: translate(-50%, -50%);
      transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    }

    .marble-comparison-home .slider-handle:hover {
      transform: translate(-50%, -50%) scale(1.1);
      box-shadow: 0 15px 40px rgba(0,0,0,0.15);
    }

    .marble-comparison-home .labels-row {
      display: none;
      justify-content: space-between;
      margin-top: 30px;
      position: relative;
      max-width: 1400px;
      margin-left: auto;
      margin-right: auto;
      padding: 0 40px;
    }

    .marble-comparison-home .product-label {
      width: 45%;
      position: relative;
      padding-top: 20px;
    }

    .marble-comparison-home .product-label:before {
      content: '';
      position: absolute;
      top: 0;
      width: 60px;
      height: 1px;
      background: var(--gold);
    }

    .marble-comparison-home .product-label.left {
      text-align: left;
      padding-left: 10px;
    }

    .marble-comparison-home .product-label.left:before {
      left: 10px;
    }

    .marble-comparison-home .product-label.right {
      text-align: right;
      padding-right: 10px;
    }

    .marble-comparison-home .product-label.right:before {
      right: 10px;
    }

    .marble-comparison-home .label-title {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.6rem;
      margin: 0 0 5px 0;
      color: #222;
      font-weight: 500;
      letter-spacing: 0.2px;
    }

    .marble-comparison-home .label-price {
      font-size: 1.1rem;
      color: var(--gold);
      font-weight: 400;
      letter-spacing: 1px;
      font-family: 'Montserrat', sans-serif;
    }

    /* Luxury Showcase Section */
    .luxury-showcase {
      --ls-gold: #c5a880;
      --ls-ivory: #f9f6f2;
      --ls-charcoal: #1a1a1a;
      --ls-taupe: #6a5d4b;
      --ls-cream: #fffcf5;
      padding: 8rem 2rem;
      background: var(--ls-cream);
      position: relative;
      overflow: hidden;
    }

    .ls-container {
      max-width: 1400px;
      margin: 0 auto;
    }

    .ls-header {
      text-align: center;
      margin-bottom: 4rem;
      position: relative;
    }

    .ls-header::after {
      content: '';
      position: absolute;
      bottom: -20px;
      left: 50%;
      transform: translateX(-50%);
      width: 100px;
      height: 1px;
      background: var(--ls-gold);
    }

    .ls-title {
      font-family: 'Cormorant Garamond', serif;
      font-size: 3.5rem;
      font-weight: 500;
      color: var(--ls-charcoal);
      margin-bottom: 1.5rem;
      line-height: 1.2;
      letter-spacing: 1px;
    }

    .ls-subtitle {
      font-family: 'EB Garamond', serif;
      font-size: 1.2rem;
      color: var(--ls-taupe);
      max-width: 700px;
      margin: 0 auto;
      line-height: 1.8;
      font-style: italic;
    }
    
    /* GRID LAYOUT */
    .ls-grid {
      display: grid;
      grid-template-columns: repeat(12, 1fr);
      grid-template-rows: repeat(2, 300px);
      gap: 25px;
      margin-top: 3rem;
    }
    
    .ls-card {
      position: relative;
      border-radius: 2px;
      background-size: cover;
      background-position: center;
      overflow: hidden;
      box-shadow: 0 15px 30px rgba(0,0,0,0.1);
      transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    }
    
    .ls-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 25px 50px rgba(0,0,0,0.15);
    }
    
    .ls-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: linear-gradient(to bottom, rgba(0,0,0,0) 0%, rgba(0,0,0,0.7) 100%);
      opacity: 0;
      transition: opacity 0.5s ease;
    }
    
    .ls-card:hover::before {
      opacity: 1;
    }
    
    /* Card Sizes */
    .ls-main {
      grid-column: span 7;
      grid-row: span 2;
    }
    
    .ls-secondary {
      grid-column: span 5;
      grid-row: span 1;
    }
    
    .ls-small {
      grid-column: span 5;
      grid-row: span 1;
    }
    
    .ls-overlay {
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      padding: 2.5rem;
      color: white;
      transform: translateY(20px);
      opacity: 0;
      transition: all 0.5s ease;
      z-index: 2;
    }
    
    .ls-card:hover .ls-overlay {
      transform: translateY(0);
      opacity: 1;
    }
    
    .ls-overlay h3 {
      font-family: 'Cormorant Garamond', serif;
      font-size: 2rem;
      margin-bottom: 1rem;
      font-weight: 500;
      letter-spacing: 0.5px;
    }
    
    .ls-overlay p {
      font-family: 'EB Garamond', serif;
      font-size: 1.1rem;
      margin-bottom: 1.5rem;
      line-height: 1.6;
      font-style: italic;
    }
    
    .ls-btn {
      display: inline-flex;
      align-items: center;
      font-size: 0.9rem;
      color: white;
      padding: 0.8rem 1.8rem;
      border: 1px solid rgba(255,255,255,0.5);
      text-transform: uppercase;
      letter-spacing: 2px;
      font-family: 'Montserrat', sans-serif;
      font-weight: 400;
      transition: all 0.3s ease;
      position: relative;
      overflow: hidden;
    }
    
    .ls-btn::after {
      content: '';
      position: absolute;
      top: 0;
      left: -100%;
      width: 100%;
      height: 100%;
      background: rgba(255,255,255,0.1);
      transition: all 0.4s ease;
    }
    
    .ls-btn:hover {
      background: var(--ls-gold);
      border-color: var(--ls-gold);
    }
    
    .ls-btn:hover::after {
      left: 100%;
    }
    
    .ls-btn i {
      margin-left: 0.8rem;
      font-size: 0.9rem;
      transition: transform 0.3s ease;
    }
    
    .ls-btn:hover i {
      transform: translateX(3px);
    }
    
    /* Decorative Elements */
    .ls-decoration {
      position: absolute;
      font-family: 'Cormorant Garamond', serif;
      color: rgba(0,0,0,0.03);
      font-weight: 700;
      z-index: 0;
    }
    
    .ls-decoration-1 {
      top: 5%;
      left: 5%;
      font-size: 12rem;
      transform: rotate(-15deg);
    }
    
    .ls-decoration-2 {
      bottom: 5%;
      right: 5%;
      font-size: 10rem;
      transform: rotate(10deg);
    }

    /* Auth Modals */
    .auth-modal {
      display: none;
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0,0,0,0.7);
      z-index: 1000;
    }

    .auth-modal-content {
      background: white;
      margin: 10% auto;
      padding: 2rem;
      width: 90%;
      max-width: 400px;
      border-radius: 4px;
      position: relative;
    }

    .close-modal {
      position: absolute;
      top: 15px;
      right: 15px;
      font-size: 1.5rem;
      cursor: pointer;
    }

    .form-group {
      margin-bottom: 1rem;
    }

    .form-group input {
      width: 100%;
      padding: 10px;
      margin: 5px 0;
      border: 1px solid #ddd;
    }

    .auth-switch {
      text-align: center;
      margin-top: 1rem;
    }

    /* User Dropdown */
    .user-dropdown {
      position: relative;
      display: inline-block;
    }

    .dropdown-content {
      display: none;
      position: absolute;
      right: 0;
      background: white;
      min-width: 160px;
      box-shadow: 0 8px 16px rgba(0,0,0,0.1);
      z-index: 1;
    }

    .dropdown-content a {
      color: #333;
      padding: 12px 16px;
      text-decoration: none;
      display: block;
    }

    .dropdown-content a:hover {
      background: #f1f1f1;
    }

    .user-dropdown:hover .dropdown-content {
      display: block;
    }
    
    /* Floating Message Styles */
    .floating-message {
      position: fixed;
      bottom: 30px;
      left: 50%;
      transform: translateX(-50%);
      background: rgba(26, 26, 26, 0.9);
      color: white;
      padding: 12px 24px;
      border-radius: 4px;
      font-family: 'Montserrat', sans-serif;
      font-size: 0.9rem;
      z-index: 1000;
      display: flex;
      align-items: center;
      gap: 8px;
      box-shadow: 0 4px 12px rgba(0,0,0,0.15);
      animation: floatIn 0.3s forwards;
    }

    .floating-message.success {
      background: rgba(40, 167, 69, 0.9);
    }

    .floating-message.error {
      background: rgba(220, 53, 69, 0.9);
    }

    .floating-message.warning {
      background: rgba(255, 193, 7, 0.9);
      color: #1a1a1a;
    }

    .floating-message .message-icon {
      margin-right: 8px;
    }

    @keyframes floatIn {
      from { 
        opacity: 0;
        bottom: 20px;
      }
      to { 
        opacity: 1;
        bottom: 30px;
      }
    }

    .fade-out {
      animation: floatOut 0.3s forwards;
    }

    @keyframes floatOut {
      to { 
        opacity: 0;
        bottom: 40px;
      }
    }

    /* Loading Spinner */
    .loading-spinner {
      display: none;
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(255,255,255,0.8);
      z-index: 1001;
      justify-content: center;
      align-items: center;
    }

    .loading-spinner.active {
      display: flex;
    }

    .spinner {
      width: 50px;
      height: 50px;
      border: 5px solid #f3f3f3;
      border-top: 5px solid #841c1c;
      border-radius: 50%;
      animation: spin 1s linear infinite;
    }

    @keyframes spin {
      0% { transform: rotate(0deg); }
      100% { transform: rotate(360deg); }
    }

    /* Responsive Styles */
    @media (max-width: 1200px) {
      .product-grid {
        grid-template-columns: repeat(3, 1fr);
      }
      
      .slide-text h2 {
        font-size: 3.5rem;
      }
      
      .collection-card {
        height: 500px;
      }
      
      .marble-comparison-home .section-title {
        font-size: 2.4rem;
      }
      
      .marble-comparison-home .label-title {
        font-size: 1.4rem;
      }
      
      .ls-grid {
        grid-template-rows: repeat(2, 250px);
      }
      
      .ls-overlay {
        padding: 2rem;
      }
      
      .ls-overlay h3 {
        font-size: 1.8rem;
      }
    }

    @media(max-width: 993px){

    }

    @media (max-width: 992px) {
      .navbar {
        padding: 1.2rem 2rem;
      }
      
      .brand-name {
        font-size: 1.8rem;
      }
      
      .featured-collections {
        grid-template-columns: 1fr;
      }
      
      .collection-card {
        height: 500px;
      }
      
      .product-grid {
        grid-template-columns: repeat(2, 1fr);
      }
      
      .slide-text h2 {
        font-size: 3rem;
      }
      
      .slide-text p {
        font-size: 1.3rem;
      }
      
      .newsletter-form {
        flex-direction: column;
      }
      
      .newsletter-form input,
      .newsletter-form button {
        width: 100%;
        border-radius: var(--border-radius);
      }
      
      .newsletter-form button {
        margin-top: 15px;
        padding: 1rem;
      }
      
      .footer-container {
        grid-template-columns: repeat(2, 1fr);
      }
      
      .marble-comparison-home {
        padding: 50px 0;
      }
      
      .marble-comparison-home .section-title {
        font-size: 2.1rem;
      }
      
      .luxury-showcase {
        padding: 6rem 2rem;
      }
      
      .ls-title {
        font-size: 2.5rem;
      }
      
      .ls-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        gap: 20px;
      }
      
      .ls-main {
        height: 400px;
        grid-column: span 1;
        grid-row: span 1;
      }
      
      .ls-secondary {
        height: 300px;
        grid-column: span 1;
        grid-row: span 1;
      }
      
      .ls-small {
        height: 250px;
        grid-column: span 1;
        grid-row: span 1;
      }
      
      .ls-decoration {
        display: none;
      }

      .ls-overlay {
        padding: 1.5rem;
      }
      
      .ls-overlay h3 {
        font-size: 1.8rem;
      }
      
      .ls-overlay p {
        font-size: 1rem;
        margin-bottom: 1rem;
      }
      
      .ls-btn {
        padding: 0.7rem 1.5rem;
        font-size: 0.8rem;
      }
    }

    @media (max-width: 768px) {
      .welcome h1 {
        font-size: 4rem;
      }
      
      .nav-section {
        gap: 1.5rem;
      }
      
      .category-grid {
        grid-template-columns: 1fr;
      }
      
      .product-grid {
        grid-template-columns: 1fr;
      }
      
      .slide-text h2 {
        font-size: 2.5rem;
      }
      
      .section-title {
        font-size: 2.5rem;
      }
      
      .intro-section {
        padding: 6rem 2rem;
      }
      
      .category-item img {
        height: 350px;
      }
      
      .collection-card {
        height: 400px;
      }
      
      .marble-comparison-home .comparison-section {
        padding: 0 30px;
      }
      
      .marble-comparison-home .section-title {
        font-size: 1.9rem;
      }
      
      .marble-comparison-home .comparison-container {
        aspect-ratio: 3.5/2;
      }
      
      .marble-comparison-home .label-title {
        font-size: 1rem;
      }
      
      .marble-comparison-home .label-price {
        font-size: 0.8rem;
      }
      
      .marble-comparison-home .slider-handle {
        width: 45px;
        height: 45px;
        font-size: 18px;
      }
      
      .luxury-showcase {
        padding: 5rem 1.5rem;
      }
      
      .ls-title {
        font-size: 2.5rem;
      }
      
      .ls-subtitle {
        font-size: 1.1rem;
      }
      
      .ls-main, .ls-secondary, .ls-small {
        height: 350px;
      }
      
      .ls-overlay {
        padding: 1.5rem;
      }
      
      .ls-overlay h3 {
        font-size: 1.6rem;
      }
    }

    @media (max-width: 576px) {
      .welcome h1 {
        font-size: 3rem;
      }
      
      .welcome p {
        font-size: 1.1rem;
      }
      
      .navbar {
        padding: 0.6rem;
      }
      
      .nav-section {
        gap: 0.4rem;
      }
      
      .slider {
        height: 80vh;
        margin-top: 50px;
      }

      .expanded-search.open {
        padding: 0;
      }

      .slide-text {
        padding: 0;
      }
      
      .icon-block {
        font-size: 0.4rem;
      }

      .intro-section {
        padding: 2.8rem 1.8rem;
      }

      .intro-section p{
        margin-bottom: 2rem;
      }
      
      .brand-name {
        font-size: 1.2rem;
      }
      
      .btn {
        margin-top: 1rem;
      }
        
      .slide-text h2 {
        font-size: 2rem;
      }
     
      .slide-text p {
        font-size: 1.1rem;
      }
      
      .section-title {
        font-size: 2rem;
      }
      
      .category-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
      }

      .collections-section {
        padding: 2.9rem 1.2rem;
      }

      .collections-section p{
        font-size: 0.9rem;
        padding: 0.5rem;
        margin-bottom: 0.4rem;
      }

      .marble-collections-section{
        padding: 2.7rem 1.2rem;
      }

      .marble-collections-section .section-subtitle{
        font-size: 1rem;
        margin-bottom: 30px;
       text-align: center;
        display: flex;
      }

      .marble-mobile-header{
        padding: 1.2rem 1rem;
        margin-bottom: 0.6rem;
      }

      .marble-mobile-header h2 {
        font-size: 1.5rem;
        margin-bottom: 0.5rem;
      }

      .marble-mobile-header .marble-collection-subtitle {
        font-size: 0.9rem;
        margin-bottom: 0rem;
        padding: 0.5rem 0;
      }

      .marble-mobile-header h2::after {
        margin-bottom: 0.5rem;
      }
      
      .footer-container {
        grid-template-columns: 1fr;
      }
      
      .slider-dots {
        bottom: 40px;
      }

      .product-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
      }

      .product-image {
        height: 180px;
      }

      .product-info {
        padding: 0.6rem;
      }

      .product-info h4 {
        font-size: 0.9rem;
        margin: 0;
        letter-spacing: 0.5px;
      }

      .product-info .price {
        font-size: 0.6rem;
      }
      
      .category-item img {
        height: 200px;
      }
      
      .category-info {
        padding: 1rem;
      }
      
      .collection-card:nth-child(2) {
        display: none;
      }

      .featured-collections {
        grid-template-columns: 1fr;
        margin-bottom: 2.7rem;
      }
      
      .category-info h3 {
        font-size: 1.2rem;
      }
      
      .category-info p {
        font-size: 0.8rem;
      }
      
      .collection-card {
        height: 450px;
      }
      
      .category-grid-section {
        padding: 2.5rem 1rem;
      }
      
      .collection-overlay {
        padding: 2rem;
      }
      
      .collection-overlay h3 {
        font-size: 2rem;
      }
      
      .collection-overlay p {
        font-size: 1rem;
      }
      
      .marble-comparison-home {
        padding: 40px 0;
      }
      
      .marble-comparison-home .comparison-section {
        padding: 0 20px;
      }
      
      .marble-comparison-home .section-title {
        font-size: 1.7rem;
      }
      
      .marble-comparison-home .section-subtitle {
        font-size: 1rem;
        margin-bottom: 30px;
        justify-content: center;
      }
      
      .marble-comparison-home .labels-row {
        flex-direction: row;
        gap: 40px;
        margin-top: 20px;
        padding: 0 20px;
      }
      
      .marble-comparison-home .product-label {
        width: 100%;
      }
      
      .luxury-showcase {
        padding: 4rem 1.5rem;
      }
      
      .ls-title {
        font-size: 2.2rem;
      }
      
      .ls-subtitle {
        font-size: 1.1rem;
      }
      
      .ls-main {
        height: 350px;
      }
      
      .ls-secondary {
        height: 250px;
      }
      
      .ls-small {
        height: 200px;
      }
      
      .ls-overlay {
        padding: 1rem;
      }
      
      .ls-overlay h3 {
        font-size: 1.5rem;
        margin-bottom: 0.5rem;
      }
      
      .ls-overlay p {
        font-size: 0.9rem;
      }
      
      .ls-btn {
        padding: 0.7rem 1.5rem;
        font-size: 0.8rem;
      }
    }


 @media (max-width: 576px) {
  .navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    background-color: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.6rem 0.5rem; /* same as category */
  }

  .nav-section.left,
  .nav-section.right {
    display: flex;
    align-items: center;
    gap: 0;
    min-width: 70px;
    justify-content: space-between;
  }

  .icon-block {
    flex-direction: column;
    padding: 6px;
    min-width: 36px;
    min-height: 36px;
    justify-content: center;
    align-items: center;
    font-size: 0.48rem;
    
  }

  .icon-block i {
    font-size: 1.4rem;
  }

.icon-block .nav-label {
  display: none;
}

  .main-content, .page-content, body {
    padding-top: 65px;
  }

   .cart-number {
    top: -6px;
    right: -6px;
    width: 16px;
    height: 16px;
    font-size: 0.65rem !important;
  }


  .icon-block span {
    font-size: 0.65rem;
    line-height: 1.1;
    margin-top: 2px;
  }

  #cart-number {
    top: -6px;
    right: -6px;
    width: 16px;
    height: 16px;
    font-size: 0.65rem;
  }

  .brand-name {
    font-size: 1.2rem;
    font-weight: 600;
    white-space: nowrap;
    z-index: 1;
    pointer-events: none;
  }

 .icon-block span{
  font-size: 0.5rem;
 }

.icon-block span {
  display: none; /* Hide text labels for icons */
}

.icon-block .cart-number{
  display: flex;
   width: 16px;
  height: 16px;
  font-size: 0.65rem;
  position: absolute;
  top: -4.5px;
  right: -2.5px;
}

.category-info p{
  display: none;
}

.expanded-search.open {
  width: 100%;
  max-width: 400px;
  padding: 0.5rem;
  top: 58px;
}

.marble-collections-section {
  padding: 2.5rem 0rem;
}

.marble-mobile-slide{
  flex: 0 0 85% !important;
}

#marbleMobileSlider {
  padding: 2rem 0rem 2rem 1rem !important;

}

.marble-mobile-slide img {
  height: 600px !important; /* Large image height */
  object-fit: cover;
  border-radius: 0;
  margin-bottom: 0rem !important;

 }

 .marble-mobile-button-container{
  margin: 30px 0 60px;
 }

}
/* --- Fix the slider container --- */

#marbleMobileSlider {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  gap: 1.2rem;
  padding: 2rem 1rem;
}

.marble-mobile-slide {
  flex: 0 0 85%;
  scroll-snap-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 460px; /* 🔺 Increases card height */
}

.marble-mobile-slide img {
  width: 100%;
  height: 520px; /* 🔺 Large image height */
  object-fit: cover;
  border-radius: 0;
  margin-bottom: 1rem;
}

.marble-mobile-slide h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  margin: 0.2rem 0;
  color: #1a1a1a;
  text-align: center;
}

.marble-mobile-slide p {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.95rem;
  color: #444;
  text-align: center;
  max-width: 90%;
}

@media (max-width: 400px) {
  /* Navbar and Brand */
  .navbar {
    padding: 0.4rem 0.6rem;
  }

  .brand-name {
    font-size: 1rem;
    letter-spacing: 0.5px;
  }

  .expanded-search.open {
  width: 100%;
  max-width: 400px;
  padding: 0.5rem;
  top: 48px;
}

  .icon-block {
    min-width: 34px;
    min-height: 34px;
    padding: 5px !important;
    font-size: 0.4rem;
  }

  .icon-block i {
    font-size: 1.3rem;
  }

  .nav-label {
    display: none;
  }

  .icon-block .cart-number{
  display: flex;
   width: 14px;
  height: 14px;
  font-size: 0.65rem;
  position: absolute;
  top: -4.5px;
  right: -2.5px;
}

  /* Hero Section */
  .hero-section {
    padding: 1.2rem 1rem;
    text-align: center;
  }

  .hero-section h1 {
    font-size: 1.8rem;
    line-height: 1.2;
  }

  .hero-section p {
    font-size: 1rem;
    margin-top: 0.5rem;
    line-height: 1.4;
  }

  .hero-section .btn {
    font-size: 0.85rem;
    padding: 0.6rem 1.2rem;
    margin-top: 1rem;
  }

  /* Slider / Carousel */
  .home-slider {
    height: auto;
    margin-bottom: 1rem;
  }

  .slider-image {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
  }

  /* Section titles */
  .section-title {
    font-size: 1.9rem;
    margin: 1.2rem 0 2rem;
  }

  .category-grid {
    grid-template-columns: repeat(2, 1fr);
    margin-top: 2.8rem;
  }

  .category-item img{
    height: 175px;
    width: 100%;
  }

  .section-title:after {
    width: 90px;
    height: 2px;
    background: var(--secondary-color);
    margin-top: 0.5rem;
    left: 15px;
  }

  /* Grid or product previews on home */
  .home-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    padding: 0 1rem;
  }

  .home-product {
    text-align: center;
  }

  .home-product img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border-radius: 0;
  }

  .home-product .product-name {
    font-size: 0.85rem;
    margin-top: 0.3rem;
  }

  .home-product .product-price {
    font-size: 0.95rem;
    color: var(--text-light);
  }

  /* Footer */
  .footer {
    padding: 2rem 1rem 1rem;
  }

  .footer-column h4 {
    font-size: 1.1rem;
  }

  .footer-column ul li a {
    font-size: 0.85rem;
  }

.intro-section{
    padding: 2.5rem 1rem;
    text-align: center;
}

.marble-mobile-slide img {
  height: 520px !important; /* Large image height */
  object-fit: cover;
  border-radius: 0;
  margin-bottom: 0rem !important;

}



}




.newsletter-section{
  display: none;
  background: none;
}


.search-result-item img {
  width: 40px;
  height: 40px;
  border-radius: 0rem;
}

@media (max-width: 576px){
  .ls-main{
    height: 450px;
  }

  .ls-secondary{
    height: 400px;
  }
.ls-small{
    height: 350px;
  }

  .ls-overlay h3 {
    font-size: 1.4rem;
  }

  .ls-overlay p {
    font-size: 0.9rem;
  }

  .ls-btn {
    padding: 0.6rem 1.2rem;
    font-size: 0.75rem;
  }

}

.grid2 .product-grid {
  grid-template-columns: repeat(3, 1fr);
  gap: 50px;
}

.grid2 .product-image {
  height: 400px;
}

.product-actions{
  top: 10px;
  transition: all 0.3s ease;
  display: none;
}

@media(max-width: 576px) {
  .product-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 20px !important;
  }

  .product-image {
    height: 200px !important;
  }
  
}