/* ============================================
   CSS VARIABLES (single definition)
   ============================================ */
   :root {
    --background: 0 0% 100%;
    --foreground: 222.2 84% 4.9%;
    --primary: 222.2 47.4% 11.2%;
    --primary-foreground: 210 40% 98%;
    --secondary: 210 40% 96.1%;
    --secondary-foreground: 222.2 47.4% 11.2%;
    --accent: 210 40% 96.1%;
    --accent-foreground: 222.2 47.4% 11.2%;
    --border: 214.3 31.8% 91.4%;
    --input: 214.3 31.8% 91.4%;
    --ring: 222.2 84% 4.9%;
    --destructive: 0 84.2% 60.2%;
    --destructive-foreground: 210 40% 98%;
    --radius: 0.5rem;
    --bg-dark: #0a0a0a;
    --text-primary: #ffffff;
    
  }

  /* Smooth scrolling for the whole page */
html {
  scroll-behavior: smooth;
}

/* Optional: Add some offset so the fixed navbar doesn't hide the section title */
section {
  scroll-margin-top: 100px;
}

/* Specific adjustments for different screen sizes */
@media (max-width: 768px) {
  section {
    scroll-margin-top: 80px;
  }
}
  
  /* ============================================
     RESET & BASE
     ============================================ */
  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: 'Montserrat', sans-serif;
    background-color: var(--bg-dark);
    color: hsl(var(--foreground));
    line-height: 1.5;
  }
  
  /* ============================================
     NAVBAR
     ============================================ */
     .navbar { 
      position: fixed !important;
      top: 0 !important;
      left: 0 !important;
      z-index: 200 !important;
      width: 100% !important;
      /* Override Bootstrap's own background */
      background-color: transparent !important;
      background: transparent !important;
      --bs-navbar-bg: transparent !important;
      border-bottom: 1px solid transparent !important;
      /* Smooth transition matching the React component */
      transition: background-color 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease, backdrop-filter 0.3s ease !important;
      padding-top: 0 !important;
      padding-bottom: 0 !important;
  }
 
  /* Scrolled state — matches the React component exactly:
     bg-background/95 supports-[backdrop-filter]:bg-background/50 backdrop-blur-lg border-border */
  .navbar.scrolled {
    background-color: rgba(255, 255, 255, 0.95) !important;
    border-bottom-color: rgba(0, 0, 0, 0.1) !important;
    backdrop-filter: blur(12px) !important;
    -webkit-backdrop-filter: blur(12px) !important;
    box-shadow: 0 1px 12px rgba(0, 0, 0, 0.06) !important;
  }
 
  /* Scrolled state: links and icons go dark */
  .navbar.scrolled .nav-link {
    color: rgba(20, 20, 20, 0.85) !important;
  }
 
  .navbar.scrolled .nav-link:hover,
  .navbar.scrolled .nav-link.active {
    color: #000000 !important;
  }
 
  .navbar.scrolled .cart-btn-super {
    color: rgba(20, 20, 20, 0.85) !important;
  }
  
  .navbar-nav {
    gap: 2rem;
    transform: translateX(-80px);
  }
  
  /* NAV LINKS — white to match hero lettering */
  .nav-link {
    color: rgba(255, 255, 255, 0.9) !important;
    text-align: center;
    font-size: 0.85rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 0.5rem 1rem !important;
    transition: color 0.2s ease;
  }
  
  .nav-link:hover,
  .nav-link.active {
    color: #ffffff !important;
  }
  
  .navbar-toggler {
    border-color: rgba(255, 255, 255, 0.3);
  }
  
  .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(255, 255, 255, 0.8)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
  }
 
  /* Scrolled toggler icon goes dark */
  .navbar.scrolled .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(30,30,30,0.8)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
  }
  
  /* Cart Button */
  .cart-btn-super {
    position: relative;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 8px;
    color: rgba(255, 255, 255, 0.9);
    transition: all 0.3s ease;
  }
  
  .cart-btn-super:hover {
    color: #ffffff;
  }
  
  .cart-badge-super {
    position: absolute;
    top: 0;
    right: -2px;
    font-size: 11px;
    font-weight: 700;
    color: #ffffff;
    font-family: 'Montserrat', sans-serif;
    font-style: italic;
    letter-spacing: -0.5px;
  }

  /* Scrolled: badge goes dark */
  .navbar.scrolled .cart-badge-super {
    color: #000000;
  }

  /* MOBILE NAVBAR FIX */
@media (max-width: 991.98px) {

  .navbar .container,
  .navbar .container-fluid {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  /* Reset desktop shifting */
  .navbar-nav {
    margin-left: 0;
    transform: none;
  }

  /* Burger button */
  .navbar-toggler {
    margin-left: auto;
    margin-right: 0.5rem;
    padding: 0.35rem 0.6rem;
  }

  /* Cart closer to burger */
  .cart-btn-super {
    margin-left: 0;
  }

}
  
  /* ============================================
     HERO SECTION
     ============================================ */
  .hero-section {
    position: relative;
    height: 100vh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: var(--bg-dark);
  }
  
  .hero-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
  }
  
  .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
      180deg,
      rgba(10, 10, 10, 0.7) 0%,
      rgba(10, 10, 10, 0.5) 50%,
      rgba(10, 10, 10, 0.85) 100%
    );
    z-index: 1;
  }
  
  .grid-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
      linear-gradient(rgba(255, 26, 26, 0.03) 1px, transparent 1px),
      linear-gradient(90deg, rgba(255, 26, 26, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    z-index: 2;
    animation: gridMove 20s linear infinite;
  }
  
  
  
  @keyframes float {
    0%, 100% { transform: translateY(0) scale(1); opacity: 0; }
    10% { opacity: 1; }
    90% { opacity: 1; }
    100% { transform: translateY(-100vh) scale(0); opacity: 0; }
  }
  
  /* Hero Content */
  .hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    padding: 0 2rem;
    max-width: 900px;
  }
  
  .hero-title {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem 1rem;
    margin-bottom: 1rem;
  }
  
  .title-word {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(2rem, 5vw, 5rem);
    font-weight: 900;
    text-transform: uppercase;
    color: var(--text-primary);
    opacity: 0;
    transform: translateY(40px);
    animation: wordReveal 0.6s ease-out forwards;
    text-shadow: 0 0 40px rgba(0, 0, 0, 0.4);
    letter-spacing: 2px;
  }
  
  .title-word:nth-child(1) { animation-delay: 0.2s; }
  .title-word:nth-child(2) { animation-delay: 0.8s; }
  .title-word:nth-child(3) { animation-delay: 1.4s; }
  
  @keyframes wordReveal {
    0% { opacity: 0; transform: translateY(40px); filter: blur(10px); }
    50% { opacity: 0.8; filter: blur(0px); text-shadow: 0 0 60px rgba(0, 0, 0, 0.8); }
    100% { opacity: 1; transform: translateY(0); filter: blur(0px); text-shadow: 0 0 40px rgba(0, 0, 0, 0.4); }
  }
  
  
  
  @keyframes glitch {
    0% { transform: translate(0); }
    20% { transform: translate(-3px, 3px); }
    40% { transform: translate(3px, -3px); }
    60% { transform: translate(-2px, 1px); }
    80% { transform: translate(2px, -1px); }
    100% { transform: translate(0); }
  }
  
  .hero-subtitle {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(0.9rem, 2vw, 1.5rem);
    font-weight: 500;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2.5rem;
    opacity: 0;
    transform: translateY(20px);
    animation: subtitleReveal 0.6s ease-out 2.2s forwards;
    letter-spacing: 1px;
  }
  
  @keyframes subtitleReveal {
    0% { opacity: 0; transform: translateY(20px); }
    100% { opacity: 1; transform: translateY(0); }
  }
  
  .hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    opacity: 0;
    animation: buttonsReveal 0.6s ease-out 2.8s forwards;
  }
  
  @keyframes buttonsReveal {
    0% { opacity: 0; transform: translateY(20px); }
    100% { opacity: 1; transform: translateY(0); }
  }
  
  .btn-futuristic {
    position: relative;
    padding: 1rem 2.5rem;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    border: none;
    cursor: pointer;
    overflow: hidden;
    transition: all 0.3s ease;
    font-family: 'Montserrat', sans-serif;
    border-radius: 30px;
  }
  
  .btn-primary-future {
    color: white;
    box-shadow: 0 0 30px var(--accent-glow), 0 0 60px var(--accent-glow);
  }
  
  .btn-primary-future:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 50px rgba(255, 26, 26, 0.6), 0 0 100px rgba(255, 26, 26, 0.3);
    background: #ff3333;
  }
  
  .btn-primary-future::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
  }
  
  .btn-primary-future:hover::before {
    left: 100%;
  }
  
  .btn-outline-future {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(10px);
  }
  
  .btn-outline-future:hover {
    border-color: white;
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-3px);
    box-shadow: 0 0 30px rgba(255, 255, 255, 0.1);
  }
  
  /* Scroll Indicator */
  .scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    opacity: 0;
    animation: fadeIn 1s ease-out 3.5s forwards;
    cursor: pointer;
  }
  
  @keyframes fadeIn {
    to { opacity: 1; }
  }
  
  .scroll-text {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: rgba(255, 255, 255, 0.6);
    font-family: 'Montserrat', sans-serif;
  }
  
  .scroll-arrow {
    animation: bounce 2s ease-in-out infinite;
  }
  
  @keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(10px); }
  }
  
  /* ============================================
     RESPONSIVE
     ============================================ */
  @media (max-width: 991.98px) {
    .navbar-collapse {
      background: rgba(10, 10, 10, 0.98);
      padding: 1rem;
      border-radius: 0 0 8px 8px;
    }

    /* In collapsed mobile nav, links stay white against dark bg */
    .navbar.scrolled .navbar-collapse .nav-link {
      color: rgba(255, 255, 255, 0.9) !important;
    }
  }
  
  @media (max-width: 768px) {
    .hero-title {
      gap: 0.3rem 0.6rem;
    }
    
    .hero-buttons {
      flex-direction: column;
      align-items: center;
      gap: 1rem;
    }
    
    .btn-futuristic {
      width: 100%;
      max-width: 250px;
      text-align: center;
      padding: 0.8rem 2rem;
    }
  }
  
  @media (max-width: 480px) {
    .hero-content {
      padding: 0 1rem;
    }
    
    .title-word {
      font-size: clamp(1.5rem, 8vw, 2.5rem);
    }
    
    .hero-subtitle {
      font-size: 0.85rem;
    }
  }

  /* ============================================
   BRAND STORY SECTION
   ============================================ */

.brand-story {
  padding: 6rem 2rem;
  background-color: #ffffff;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.brand-story-container {
  max-width: 700px;
  margin: 0 auto;
}

.brand-founded {
  display: inline-block;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 4px;
  color: #8b7355;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
}

.brand-heading {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 0.75rem;
  line-height: 1.2;
}

.brand-tagline {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  font-weight: 400;
  color: #8b7355;
  font-style: italic;
  margin-bottom: 2rem;
  letter-spacing: 1px;
}

.brand-description {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  font-weight: 400;
  color: #555555;
  line-height: 1.8;
  max-width: 600px;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .brand-story {
    padding: 4rem 1.5rem;
  }
  
  .brand-founded {
    font-size: 0.7rem;
    letter-spacing: 3px;
  }
}

@media (max-width: 480px) {
  .brand-story {
    padding: 3rem 1rem;
  }
  
  .brand-description {
    font-size: 0.9rem;
    line-height: 1.7;
  }
}

/* ============================================
   FEATURED COLLECTIONS SECTION
   ============================================ */

   .featured-collections {
    padding: 6rem 2rem;
    background-color: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
  }
  
  .featured-container {
    max-width: 700px;
    margin: 0 auto;
  }
  
  .featured-label {
    display: inline-block;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 4px;
    color: #8b7355;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    position: relative;
  }
  
  .featured-label::after {
    content: '';
    display: none;
    width: 40px;
    height: 2px;
    background-color: #8b7355;
    margin: 1rem auto 0;
  }
  
  .featured-description {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(1rem, 2vw, 1.2rem);
    font-weight: 400;
    color: #444444;
    line-height: 1.8;
    max-width: 600px;
    margin: 0 auto;
  }
  
  @media (max-width: 768px) {
    .featured-collections {
      padding: 4rem 1.5rem;
    }
    
    .featured-label {
      font-size: 0.7rem;
      letter-spacing: 3px;
    }
  }
  
  @media (max-width: 480px) {
    .featured-collections {
      padding: 3rem 1rem;
    }
    
    .featured-description {
      font-size: 0.95rem;
      line-height: 1.7;
    }
  }

  /* ============================================
   PRODUCTS SECTION
   ============================================ */

.products-section {
  padding: 6rem 2rem;
  background-color: white;
}

.products-container {
  max-width: 1200px;
  margin: 0 auto;
}

.products-heading {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: 700;
  color: #1a1a1a;
  text-align: center;
  margin-bottom: 3rem;
  letter-spacing: 1px;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.product-card {
  background: rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1.2);
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  transform: translateY(-8px);
  background: rgba(255, 255, 255, 0.6);
  border-color: rgba(0, 0, 0, 0.1);
  box-shadow: 
    0 20px 40px rgba(0, 0, 0, 0.06),
    0 8px 16px rgba(0, 0, 0, 0.04);
}

.product-image-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: rgba(0, 0, 0, 0.02);
}

.product-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.product-card:hover .product-image {
  transform: scale(1.08);
}

.product-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: #ffffff;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  padding: 6px 14px;
  border-radius: 20px;
  z-index: 2;
}

.product-info {
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.product-name {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 1rem;
  line-height: 1.3;
}

.product-sizes {
  margin-bottom: 1rem;
}

.size-label {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  color: #8b7355;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 0.5rem;
}

.size-options {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.size-btn {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  color: #555555;
  background: rgba(0, 0, 0, 0.03);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 8px;
  padding: 0.4rem 0.65rem;
  cursor: pointer;
  transition: all 0.25s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  min-width: 36px;
  text-align: center;
}

.size-btn:hover {
  background: rgba(0, 0, 0, 0.06);
  border-color: rgba(0, 0, 0, 0.2);
  color: #1a1a1a;
  transform: translateY(-1px);
}

.size-btn.selected {
  background: #1a1a1a;
  color: #ffffff;
  border-color: #1a1a1a;
}

.size-btn:active {
  transform: scale(0.95);
}

.product-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  margin-top: auto;
  padding-top: 0.75rem;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  width: 100%;
}

.product-price {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.price-original {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.85rem;
  font-weight: 500;
  color: #999999;
  text-decoration: line-through;
}

.price-sale {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: #c0392b;
  letter-spacing: 0.5px;
}

.add-to-cart-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;

  min-width: 0;
  max-width: 100%;
  flex-shrink: 1;

  padding: 0.55rem 0.8rem;

  background: #1a1a1a;
  color: #ffffff;
  border: none;
  border-radius: 10px;

  font-family: 'Montserrat', sans-serif;
  font-size: 0.7rem;
  font-weight: 600;

  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.add-to-cart-btn:hover {
  background: #000000;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.add-to-cart-btn:active {
  transform: scale(0.95);
}

.add-to-cart-btn svg {
  flex-shrink: 0;
}

.add-to-cart-btn.added {
  background: #2e7d32;
}

.add-to-cart-btn.added:hover {
  background: #1b5e20;
}

@media (max-width: 992px) {
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
  }
  
  .products-section {
    padding: 4rem 1.5rem;
  }
}

@media (max-width: 600px) {
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
  
  .products-section {
    padding: 3rem 1rem;
  }
  
  .product-info {
    padding: 1rem;
  }
  
  .size-btn {
    font-size: 0.65rem;
    padding: 0.35rem 0.55rem;
    min-width: 32px;
  }
  
  .product-bottom {
    flex-direction: row;
    align-items: center;
  }
  
  .add-to-cart-btn span {
    display: inline;
  }
}

@media (max-width: 480px) {

  .products-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
  
  .product-bottom {
    flex-direction: column;
    align-items: stretch;
  }

  .product-price {
    width: 100%;
    justify-content: center;
    text-align: center;
  }

  .buy-now-btn {
    width: 100%;
    max-width: 100%;
  }

}

/* ============================================
   ADD TO CART BUTTON (restored)
   ============================================ */

.add-to-cart-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  min-width: 0;
  max-width: 100%;
  flex-shrink: 1;
  padding: 0.55rem 0.8rem;
  background: #1a1a1a;
  color: #ffffff;
  border: none;
  border-radius: 10px;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s, opacity 0.2s;
}

.add-to-cart-btn:disabled {
  background: #d0d0d0;
  color: #999;
  cursor: not-allowed;
  transform: none !important;
  box-shadow: none !important;
}

.add-to-cart-btn:hover:not(:disabled) {
  background: #000000;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.add-to-cart-btn:active:not(:disabled) {
  transform: scale(0.95);
}

.add-to-cart-btn svg { flex-shrink: 0; }

.add-to-cart-btn.added {
  background: #2e7d32;
}

/* Size hint text */
.size-hint {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.65rem;
  font-weight: 500;
  color: #aaa;
  text-transform: none;
  letter-spacing: 0;
}

@media (max-width: 480px) {
  .product-bottom {
    flex-direction: column;
    align-items: stretch;
  }
  .product-price {
    width: 100%;
    justify-content: center;
    text-align: center;
  }
  .add-to-cart-btn {
    width: 100%;
    max-width: 100%;
    justify-content: center;
  }
}


/* ============================================
   CTA MARQUEE SECTION
   ============================================ */

   .cta-marquee-section {
    min-height: auto;
    display: flex;
    align-items: center;
    background-color: #ffffff;
    overflow: hidden;
    position: relative;
    padding: 2rem 0;
  }
  
  .cta-marquee-container {
    width: 100%;
    padding: 0;
  }
  
  .cta-grid {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0; /* Remove gap between rows */
  }
  
  @media (min-width: 1024px) {
    .cta-grid {
      flex-direction: row;
      gap: 2rem;
    }
    
    .cta-marquee-container {
      padding: 0;
    }
  }
  
  .cta-left {
    flex-shrink: 0;
    padding: 2rem 1.5rem;
    max-width: 42rem;
  }
  
  @media (min-width: 1024px) {
    .cta-left {
      padding: 3rem;
    }
  }
  
  .cta-heading {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(2rem, 5vw, 3.75rem);
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1.15;
    margin-bottom: 1.5rem;
    letter-spacing: -0.5px;
  }
  
  .cta-meta {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    margin-bottom: 2rem;
  }
  
  .cta-date,
  .cta-studio {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.1rem;
    color: #8b7355;
    font-weight: 500;
  }
  
  .scramble-btn {
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    padding: 0.85rem 2.5rem;
    background-color: #1a1a1a;
    color: #ffffff;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
  }
  
  .scramble-btn:hover {
    background-color: #000000;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  }
  
  .scramble-btn:active {
    transform: scale(0.97);
  }
  
  .cta-right {
    flex: 1;
    width: 100%;
    position: relative;
    overflow: hidden;
  }
  
  @media (min-width: 1024px) {
    .cta-right {
      width: auto;
    }
  }
  
  .marquee-wrapper {
    overflow: hidden;
    margin: 0;
    padding: 0;
    line-height: 0; /* Removes extra space below images */
  }
  
  .marquee {
    display: flex;
    overflow: hidden;
    gap: 0;
    user-select: none;
    line-height: 0;
  }
  
  .marquee-track {
    display: flex;
    flex-shrink: 0;
    align-items: center;
    gap: 0;
    animation: marqueeScroll var(--duration, 30s) linear infinite;
    will-change: transform;
  }
  
  .marquee-reverse .marquee-track {
    animation-direction: reverse;
  }
  
  .marquee-wrapper:hover .marquee-track {
    animation-play-state: paused;
  }
  
  @keyframes marqueeScroll {
    0% {
      transform: translateX(0);
    }
    100% {
      transform: translateX(-100%);
    }
  }
  
  .marquee-item {
    position: relative;
    width: 16rem;
    height: 16rem;
    flex-shrink: 0;
    overflow: hidden;
  }
  
  @media (min-width: 1024px) {
    .marquee-item {
      width: 20rem;
      height: 20rem;
    }
  }
  
  @media (max-width: 640px) {
    .marquee-item {
      width: 12rem;
      height: 12rem;
    }
  }
  
  .marquee-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }
  
  .vignette {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 8rem;
    pointer-events: none;
    z-index: 2;
  }
  
  .vignette-left {
    left: 0;
    background: linear-gradient(to right, #fafaf8, transparent);
  }
  
  .vignette-right {
    right: 0;
    background: linear-gradient(to left, #fafaf8, transparent);
  }
  
  @media (max-width: 1023px) {
    .cta-left {
      text-align: center;
      padding: 2rem 1.5rem 0;
    }
    
    .cta-meta {
      align-items: center;
    }
    
    .cta-right {
      margin-top: 1rem;
    }
  }
  
  @media (max-width: 640px) {
    .cta-heading {
      font-size: 1.75rem;
    }
    
    .cta-date,
    .cta-studio {
      font-size: 0.95rem;
    }
    
    .scramble-btn {
      padding: 0.75rem 2rem;
      font-size: 0.9rem;
    }
    
    .vignette {
      width: 3rem;
    }
  }

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
  background-color: #ffffff;
  color: #000000;
  width: 100%;
  padding: 2.5rem 1.5rem 2rem;
  box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.02);
  border-top: 1px solid #eaeef2;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.footer-logo {
  margin-bottom: 1.5rem;
}

.footer-logo .logo-text {
  font-size: 1.9rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  background: linear-gradient(135deg, #000000 0%, #2c2c2c 100%);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  text-shadow: none;
  display: inline-block;
}

@supports not (background-clip: text) {
  .footer-logo .logo-text {
    color: #000000;
    background: none;
  }
}

.footer-logo .logo-tag {
  display: block;
  font-size: 0.75rem;
  letter-spacing: 1px;
  font-weight: 400;
  color: #3a3a3a;
  margin-top: 0.3rem;
}

/* SOCIAL CONTAINER — fixed alignment */
.social-footer {
  display: flex;
  gap: 18px;
  padding: 20px 30px;
  border-radius: 30px;
  width: fit-content;
  max-width: 90%;
  margin: 0 auto 0 auto;
  align-items: center;
  justify-content: center;
  background: rgba(20, 20, 20, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.10);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.22), inset 0 1px 1px rgba(255, 255, 255, 0.06);
}

/* ICON BUTTONS */
.social-icon {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  color: #ffffff;
  font-size: 20px;
  text-decoration: none;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: 0.35s ease;
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
}

.social-icon::before {
  content: "";
  position: absolute;
  top: -120%;
  left: -40%;
  width: 80%;
  height: 300%;
  background: rgba(255, 255, 255, 0.12);
  transform: rotate(25deg);
  transition: 0.5s;
}

.social-icon:hover::before {
  left: 140%;
}

.social-icon:hover {
  transform: translateY(-6px) scale(1.05);
  background: rgba(255, 255, 255, 0.14);
  box-shadow:
    0 10px 25px rgba(255, 255, 255, 0.08),
    0 6px 18px rgba(0, 0, 0, 0.4);
}

.social-icon i {
  position: relative;
  z-index: 2;
  line-height: 1;
}

.footer-nav {
  margin: 2rem 0 1.8rem 0;
}

.nav-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2rem;
  list-style: none;
  padding: 0;
  margin: 0;
}

.nav-links li a {
  color: #000000;
  text-decoration: none;
  font-weight: 500;
  font-size: 1.05rem;
  letter-spacing: 0.3px;
  padding: 0.4rem 0;
  transition: color 0.2s, border-bottom 0.2s;
  border-bottom: 2px solid transparent;
}

.nav-links li a:hover {
  color: #3b3b3b;
  border-bottom-color: #cccccc;
}

.footer-divider {
  width: 80px;
  height: 2px;
  background: #d4dce4;
  margin: 1.2rem auto 1.2rem auto;
  border-radius: 2px;
}

.copyright-info {
  font-size: 0.85rem;
  color: #2c2c2c;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 0.4rem 0.8rem;
  margin-top: 0.5rem;
}

.copyright-info span {
  white-space: nowrap;
}

.deep-six {
  font-weight: 500;
  letter-spacing: 0.3px;
}

.year {
  font-weight: 400;
}

.deep-six:hover {
  color: #000000;
  text-decoration: underline;
  cursor: default;
}

@media (max-width: 600px) {
  .social-footer {
    gap: 12px;
    padding: 16px 20px;
  }

  .social-icon {
    width: 46px;
    height: 46px;
    font-size: 18px;
    border-radius: 14px;
  }
}

@media (max-width: 580px) {
  .site-footer {
    padding: 2rem 1rem;
  }

  .nav-links {
    gap: 1.2rem;
  }

  .footer-logo .logo-text {
    font-size: 1.6rem;
  }
}

@media (max-width: 450px) {
  .nav-links {
    gap: 1rem;
    flex-wrap: wrap;
    row-gap: 0.8rem;
  }

  .nav-links li a {
    font-size: 0.95rem;
  }

  .copyright-info {
    flex-direction: column;
    gap: 0.2rem;
  }
}


/* ============================================
   CART SIDEBAR & CHECKOUT OVERLAY
   ============================================ */

/* Backdrop */
.cart-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.45);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: 999;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}
.cart-backdrop.open {
  opacity: 1;
  pointer-events: all;
}

/* Sidebar Panel */
.cart-sidebar {
  position: fixed;
  top: 0; right: 0;
  height: 100vh;
  width: 420px;
  max-width: 100vw;
  background: #ffffff;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.4,0,0.2,1);
  box-shadow: -8px 0 40px rgba(0,0,0,0.12);
}
.cart-sidebar.open { transform: translateX(0); }

/* View wrapper */
.cart-view {
  display: flex;
  flex-direction: column;
  height: 100%;
  overflow: hidden;
}
.cart-view.hidden { display: none; }

/* Header */
.cart-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 1.75rem;
  border-bottom: 1px solid #f0f0f0;
  flex-shrink: 0;
}
.cart-header-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: #1a1a1a;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}
.cart-close-btn {
  background: none;
  border: none;
  cursor: pointer;
  color: #888;
  padding: 4px;
  border-radius: 8px;
  transition: color 0.2s, background 0.2s;
}
.cart-close-btn:hover { color: #1a1a1a; background: #f5f5f5; }

/* Items list */
.cart-items-list {
  flex: 1;
  overflow-y: auto;
  padding: 1.25rem 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

/* Empty state */
.cart-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  height: 100%;
  min-height: 200px;
  color: #ccc;
  text-align: center;
}
.cart-empty p {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.88rem;
  color: #aaa;
  line-height: 1.6;
}

/* Cart item row */
.cart-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.9rem;
  border: 1px solid #f0f0f0;
  border-radius: 12px;
  background: #fafafa;
}
.cart-item-img {
  width: 70px;
  height: 70px;
  object-fit: cover;
  border-radius: 8px;
  flex-shrink: 0;
}
.cart-item-details {
  flex: 1;
  min-width: 0;
}
.cart-item-name {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  color: #1a1a1a;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.cart-item-meta {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.75rem;
  color: #888;
  margin-top: 0.2rem;
}
.cart-item-price-inline {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-top: 0.3rem;
}
.cart-item-remove {
  background: none;
  border: none;
  cursor: pointer;
  color: #ccc;
  padding: 4px;
  border-radius: 6px;
  transition: color 0.2s, background 0.2s;
  flex-shrink: 0;
}
.cart-item-remove:hover { color: #c0392b; background: #fff0ee; }

/* Cart footer */
.cart-footer {
  padding: 1.25rem 1.5rem 1.75rem;
  border-top: 1px solid #f0f0f0;
  flex-shrink: 0;
  background: #ffffff;
  width: 100%;
}
.cart-totals { margin-bottom: 0rem; }
.cart-total-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.3rem 0;
  width: 100%;
}
.cart-grand-total {
  padding-top: 0.6rem;
  border-top: 1px solid #f0f0f0;
}
.cart-total-label {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  color: #1a1a1a;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.cart-total-value {
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: #1a1a1a;
}
.cart-checkout-btn {
  width: 100%;
  padding: 1rem;
  background: #1a1a1a;
  color: #ffffff;
  border: none;
  border-radius: 12px;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.cart-checkout-btn:hover:not(:disabled) {
  background: #000;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.2);
}
.cart-checkout-btn:disabled {
  background: #e0e0e0;
  color: #aaa;
  cursor: not-allowed;
}


@media (max-width: 480px) {
  .cart-checkout-btn {
    padding: 0.85rem;
    font-size: 0.75rem;
    letter-spacing: 1px;
  }
  
  .cart-header {
    padding: 1rem 1.25rem;
  }
  
  .cart-items-list {
    padding: 1rem 1.25rem;
  }
  
  .cart-footer {
    padding: 1rem 1.25rem 1.5rem;
  }
  
  .cart-total-label,
  .cart-total-value {
    font-size: 0.85rem;
  }
}

/* Cart item - ensure proper sizing */
.cart-item {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.85rem;
  border: 1px solid #f0f0f0;
  border-radius: 12px;
  background: #fafafa;
  width: 100%;
  box-sizing: border-box;
}

.cart-item-img {
  width: 65px;
  height: 65px;
  object-fit: cover;
  border-radius: 8px;
  flex-shrink: 0;
}

.cart-item-details {
  flex: 1;
  min-width: 0; /* Allows text truncation */
}

.cart-item-name {
  font-size: 0.85rem;
  font-weight: 600;
  color: #1a1a1a;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.cart-item-meta {
  font-size: 0.7rem;
  color: #888;
  margin-top: 0.2rem;
}

.cart-item-price-inline {
  font-size: 0.85rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-top: 0.3rem;
}

.cart-item-remove {
  background: none;
  border: none;
  cursor: pointer;
  color: #ccc;
  padding: 6px;
  border-radius: 6px;
  transition: color 0.2s, background 0.2s;
  flex-shrink: 0;
}

/* Empty cart styling */
.cart-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  height: 100%;
  min-height: 250px;
  color: #ccc;
  text-align: center;
  padding: 1rem;
}

.cart-empty p {
  font-size: 0.85rem;
  color: #aaa;
  line-height: 1.6;
}

/* Backdrop - ensure it covers everything */
.cart-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: 999;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}

.cart-backdrop.open {
  opacity: 1;
  pointer-events: all;
}

/* Ensure body doesn't scroll when cart is open */
body.cart-open {
  overflow: hidden;
}

/* ============================================
   CHECKOUT VIEW
   ============================================ 

.checkout-header-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.checkout-back-btn {
  background: none;
  border: none;
  cursor: pointer;
  color: #888;
  padding: 4px;
  border-radius: 8px;
  transition: color 0.2s, background 0.2s;
}
.checkout-back-btn:hover { color: #1a1a1a; background: #f5f5f5; }

.checkout-body {
  flex: 1;
  overflow-y: auto;
  padding: 1.5rem 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.checkout-section-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  color: #888;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin: 0;
}

/* Order summary in checkout 
.checkout-order-summary {
  background: #fafafa;
  border: 1px solid #f0f0f0;
  border-radius: 12px;
  padding: 1rem;
}
.checkout-summary-item {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}
.checkout-summary-img {
  width: 54px;
  height: 54px;
  object-fit: cover;
  border-radius: 8px;
  flex-shrink: 0;
}
.checkout-summary-details {
  flex: 1;
  min-width: 0;
}
.checkout-summary-name {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  color: #1a1a1a;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.checkout-summary-meta {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.75rem;
  color: #888;
  margin-top: 0.15rem;
}
.checkout-summary-price {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  color: #1a1a1a;
  flex-shrink: 0;
}
.checkout-summary-divider {
  border: none;
  border-top: 1px solid #ebebeb;
  margin: 0.75rem 0 0.5rem;
}
.checkout-summary-total {
  display: flex;
  justify-content: space-between;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  color: #1a1a1a;
} */

/* Form layout 
.checkout-form {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.checkout-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}
.form-field {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}
.form-field label {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  color: #555;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.form-field input,
.form-field select {
  padding: 0.65rem 0.85rem;
  border: 1.5px solid #e5e5e5;
  border-radius: 10px;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.85rem;
  color: #1a1a1a;
  background: #ffffff;
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
  width: 100%;
}
.form-field input:focus,
.form-field select:focus {
  border-color: #1a1a1a;
  box-shadow: 0 0 0 3px rgba(26,26,26,0.08);
}
.form-field input::placeholder { color: #bbb; } */

/* Secure badge 
.secure-badge {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.72rem;
  color: #aaa;
  justify-content: center;
  padding-top: 0.25rem;
}
.secure-badge svg { flex-shrink: 0; }

/* Checkout footer 
.checkout-footer {
  padding: 1.25rem 1.75rem 1.75rem;
  border-top: 1px solid #f0f0f0;
  flex-shrink: 0;
  background: #ffffff;
}
.checkout-pay-btn {
  width: 100%;
  padding: 1rem;
  background: #1a1a1a;
  color: #ffffff;
  border: none;
  border-radius: 12px;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}
.checkout-pay-btn:hover:not(:disabled) {
  background: #000;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.2);
}
.checkout-pay-btn:disabled {
  background: #888;
  cursor: not-allowed;
  transform: none;
}

/* Form error toast 
.form-error-toast {
  position: fixed;
  bottom: 24px;
  right: 24px;
  background: #c0392b;
  color: #fff;
  padding: 12px 20px;
  border-radius: 10px;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  z-index: 9999;
  box-shadow: 0 4px 20px rgba(0,0,0,0.2);
  animation: slideUp 0.3s ease;
}
@keyframes slideUp {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}

@media (max-width: 480px) {
  .cart-sidebar { width: 100vw; }
  .checkout-form-row { grid-template-columns: 1fr; }
} */


