 :root{
    --cream:#FBF5E8;
    --cream-deep:#F1E4C8;
    --ink:#2B1E13;
    --ink-soft:#5A4A38;
    --gold:#BE9A46;
    --gold-bright:#D8B563;
    --maroon:#7C2233;
    --maroon-dark:#5C1826;
    --pista:#69805A;
    --pista-deep:#4E6042;
    --line:rgba(43,30,19,0.14);
    --paper:#FFFDF8;
    --radius:6px;
    --shadow:0 18px 40px -20px rgba(43,30,19,0.35);
    --container:1240px;
    --sp-section:80px;
    --sp-section-m:44px;
    --font-display:"Fraunces", Georgia, serif;
    --font-body:"Work Sans", -apple-system, sans-serif;
  }
  *{box-sizing:border-box;margin:0;padding:0;}
  html{scroll-behavior:smooth;}
  @media (prefers-reduced-motion: reduce){
    html{scroll-behavior:auto;}
    *{animation-duration:0.001ms !important;animation-iteration-count:1 !important;transition-duration:0.001ms !important;}
  }
  body{
    font-family:var(--font-body);
    color:var(--ink);
    background:var(--cream);
    line-height:1.55;
    -webkit-font-smoothing:antialiased;
  }
  /* ---------- HEADER & ANNOUNCEMENT BARS ---------- */
header.site-header {
  position: sticky;
  top: 0;
  z-index: 10000;
  background: #ffffff;
  border-bottom: 1px solid var(--line);
}

.announcement-bar-light {
  background: #ffffff;
  color: #333333;
  font-size: 13px;
  text-align: center;
  padding: 8px 24px;
  border-bottom: 1px solid #e5e5e5;
  line-height: 1.4;
}

.announcement-bar-dark {
  background: #222222;
  color: #ffffff;
  font-size: 13.5px;
  text-align: center;
  padding: 8px 16px;
  font-weight: 500;
  letter-spacing: 0.02em;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 32px;
  max-width: 100%;
  background: #ffffff;
}

.header-left, .header-right {
  display: flex;
  align-items: center;
  gap: 16px;
  flex: 1;
}

.header-right {
  justify-content: flex-end;
}

.hamburger-btn, .icon-btn {
  width: 60px;
  height: 60px;
  color: #111111;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: none;
  cursor: pointer;
}

.hamburger-btn svg, .icon-btn svg {
  width: 100%;
  height: 100%;
}

.logo {
  font-family: var(--font-body);
  font-size: clamp(24px, 4vw, 36px);
  font-weight: 800;
  color: #000000;
  letter-spacing: -0.02em;
  text-align: center;
  text-transform: none;
  white-space: nowrap;
}

/* ==========================================================================
   SITE HEADER & NAVIGATION STYLES
   ========================================================================== */

.site-header {
  width: 100%;
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: #ffffff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

/* Announcement Bars */
.announcement-bar-light {
  background-color: #f9f6f0;
  color: #555555;
  font-size: 12px;
  text-align: center;
  padding: 6px 16px;
  line-height: 1.4;
  border-bottom: 1px solid #eae2d5;
}

.announcement-bar-dark {
  background-color: #1a1a1a;
  color: #ffffff;
  font-size: 13px;
  font-weight: 500;
  text-align: center;
  padding: 8px 16px;
  letter-spacing: 0.02em;
}

/* Main Navigation Bar */
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 24px;
  max-width: 1300px;
  margin: 0 auto;
}

.header-left, 
.header-right {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* Icon Buttons */
.hamburger-btn,
.icon-btn {
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #1a1a1a;
  border-radius: 50%;
  transition: background-color 0.2s ease;
}

.hamburger-btn svg,
.icon-btn svg {
  width: 22px;
  height: 22px;
}

.hamburger-btn:hover,
.icon-btn:hover {
  background-color: #f0f0f0;
}

/* Logo Image Styling */
.logo {
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.logo-img {
  height: 42px;          /* Adjust height to fit your design */
  width: auto;           /* Keeps image aspect ratio intact */
  max-width: 180px;      /* Prevents oversized logo layout shifts */
  object-fit: contain;
  transition: transform 0.2s ease;
}

.logo:hover .logo-img {
  transform: scale(1.02);
}

/* Side Drawer Navigation */
.side-drawer-overlay {
  position: fixed;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.5);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  z-index: 1001;
}

.side-drawer-overlay.open {
  opacity: 1;
  visibility: visible;
}

.side-drawer {
  position: fixed;
  top: 0;
  left: 0;
  width: 300px;
  height: 100%;
  background-color: #ffffff;
  z-index: 1002;
  transform: translateX(-100%);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  box-shadow: 4px 0 20px rgba(0, 0, 0, 0.15);
}

.side-drawer.open {
  transform: translateX(0);
}

.drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 20px;
  border-bottom: 1px solid #eeeeee;
}

.drawer-title {
  font-size: 18px;
  font-weight: 600;
}

.close-btn {
  background: none;
  border: none;
  font-size: 28px;
  cursor: pointer;
  line-height: 1;
  color: #666666;
}

.drawer-nav {
  display: flex;
  flex-direction: column;
  padding: 20px 0;
}

.drawer-nav a {
  padding: 12px 24px;
  color: #1a1a1a;
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.drawer-nav a:hover {
  background-color: #f9f9f9;
  color: #70161e;
}

/* Mobile Responsiveness */
@media (max-width: 600px) {
  .header-inner {
    padding: 10px 16px;
  }

  .logo-img {
    height: 32px;
    max-width: 140px;
  }
}

/* Enable smooth height and opacity transitions on announcement bars */
.announcement-bar-light,
.announcement-bar-dark {
  max-height: 80px; /* High enough to contain the text */
  opacity: 1;
  overflow: hidden;
  transition: max-height 0.4s ease, opacity 0.3s ease, padding 0.4s ease;
}

/* Hide bars when scrolled */
.site-header.is-scrolled .announcement-bar-light,
.site-header.is-scrolled .announcement-bar-dark {
  max-height: 0;
  opacity: 0;
  padding-top: 0;
  padding-bottom: 0;
  border: none;
}

/* ==========================================================================
   HEADER LOGO STYLES
   ========================================================================== */

.logo {
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  height: 100%;
}

.logo-img {
    height: auto;
    width: 100%;
    max-width: 200px;
    object-fit: contain;
    transition: transform 0.2s ease;
}

.logo:hover .logo-img {
  transform: scale(1.03); /* Subtle zoom effect on hover */
}

/* Responsive adjustment for smaller mobile screens */
@media (max-width: 480px) {
  .logo-img {
    height: 32px;
    max-width: 140px;
  }
}

/* ---------- FULL SCREEN SIDE NAVIGATION DRAWER ---------- */
.side-drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(3px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  z-index: 99999; /* Higher layer to stay above all hero & section contents */
}

.side-drawer-overlay.open {
  opacity: 1;
  visibility: visible;
}

.side-drawer {
  position: fixed;
  top: 0;
  left: 0;
  width: 320px;
  max-width: 85vw;
  /* Guarantees true full viewport height across desktop and mobile devices */
  height: 100vh;
  height: 100dvh;
  background: var(--paper);
  z-index: 100000;
  transform: translateX(-100%);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 6px 0 30px rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
  overflow-y: auto; /* Adds smooth scrolling inside drawer if links exceed height */
}

.side-drawer.open {
  transform: translateX(0);
}

.drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  border-bottom: 1px solid var(--line);
  flex-shrink: 0;
}

.drawer-title {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
}

.close-btn {
  font-size: 28px;
  line-height: 1;
  color: var(--ink);
  cursor: pointer;
  background: none;
  border: none;
}

.drawer-nav {
  display: flex;
  flex-direction: column;
  padding: 16px 0;
  flex: 1;
}

.drawer-nav a {
  padding: 16px 24px;
  font-size: 16px;
  font-weight: 600;
  color: var(--ink);
  border-bottom: 1px solid rgba(0, 0, 0, 0.04);
  transition: background 0.2s ease, color 0.2s ease;
}

.drawer-nav a:hover {
  background: var(--cream-deep);
  color: var(--maroon);
}



  img{max-width:100%;display:block;}
  a{color:inherit;text-decoration:none;}
  button{font-family:inherit;cursor:pointer;border:none;background:none;}
  .container{max-width:var(--container);margin:0 auto;padding:0 24px;}
  h1,h2,h3,h4{font-family:var(--font-display);font-weight:600;color:var(--ink);}
  .eyebrow{
    font-family:var(--font-body);
    text-transform:uppercase;
    letter-spacing:0.16em;
    font-size:12px;
    font-weight:600;
    color:var(--maroon);
    display:inline-flex;
    align-items:center;
    gap:10px;
  }
  .eyebrow::before{content:"";width:22px;height:1px;background:var(--gold);display:inline-block;}
  :focus-visible{outline:2px solid var(--maroon);outline-offset:3px;}

  /* paisley divider signature */
  .jali-divider{
    height:22px;
    background-image: radial-gradient(circle at 10px 10px, var(--gold) 2px, transparent 2.4px);
    background-size: 24px 24px;
    background-position:center;
    opacity:0.55;
  }
  .jali-divider.dense{background-size:16px 16px;height:14px;opacity:0.4;}

  /* ---------- HEADER ---------- */
  header.site-header{
    position:sticky;top:0;z-index:100;
    background: #fff;
    backdrop-filter:blur(6px);
    border-bottom:1px solid var(--line);
  }
  .header-inner{
    display:flex;align-items:center;justify-content:space-between;
    padding:18px 24px;max-width:var(--container);margin:0 auto;
  }
  .logo{
    font-family:var(--font-display);font-size:26px;font-weight:700;
    letter-spacing:0.01em;color:var(--maroon);
  }
  .logo span{color:var(--pista);}
  nav.main-nav{display:flex;gap:36px;}
  nav.main-nav a{
    font-size:14.5px;font-weight:600;letter-spacing:0.02em;
    position:relative;padding:4px 0;color:var(--ink-soft);
    transition:color 0.2s ease;
  }
  nav.main-nav a::after{
    content:"";position:absolute;left:0;bottom:-2px;width:0;height:1.5px;
    background:var(--gold);transition:width 0.25s ease;
  }
  nav.main-nav a:hover, nav.main-nav a:focus-visible{color:var(--maroon);}
  nav.main-nav a:hover::after, nav.main-nav a:focus-visible::after{width:100%;}
  .header-icons{display:flex;align-items:center;gap:20px;}
  .icon-btn{width:20px;height:20px;color:var(--ink);opacity:0.85;transition:opacity 0.2s, transform 0.2s;}
  .icon-btn:hover{opacity:1;transform:translateY(-1px);}
  .hamburger{display:none;flex-direction:column;gap:5px;width:26px;}
  .hamburger span{display:block;height:2px;background:var(--ink);border-radius:2px;transition:all 0.25s ease;}
  .mobile-nav{
    display:none;flex-direction:column;gap:2px;
    background:var(--paper);border-top:1px solid var(--line);
    padding:8px 24px 18px;
  }
  .mobile-nav a{padding:12px 0;font-weight:600;font-size:15px;border-bottom:1px solid var(--line);}
  .mobile-nav.open{display:flex;}
  @media (max-width:900px){
    nav.main-nav{display:none;}
    .header-icons .icon-search, .header-icons .icon-account{display:none;}
    .hamburger{display:flex;}
  }

/* ---------- HERO SLIDER (IMAGE DRIVEN & RESPONSIVE) ---------- */
.hero {
  position: relative;
  overflow: hidden;
  height: clamp(480px, 75vh, 640px);
  width: 100%;
}

.hero-track {
  display: flex;
  height: 100%;
  transition: transform 0.7s cubic-bezier(0.65, 0, 0.35, 1);
}

.hero-slide {
  min-width: 100%;
  height: 100%;
  position: relative;
  display: flex;
  align-items: center;
}

/* Background Image Styling */
.hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
}

/* Dark Gradient Overlay for Text Contrast */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg, 
    rgba(20, 10, 12, 0.82) 0%, 
    rgba(20, 10, 12, 0.55) 50%, 
    rgba(20, 10, 12, 0.2) 100%
  );
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px;
  width: 100%;
}

.hero-content-inner {
  max-width: 560px;
  color: var(--cream);
}

.hero-content .eyebrow {
  color: var(--gold-bright);
}

.hero-content .eyebrow::before {
  background: var(--gold-bright);
}

.hero-content h1 {
  font-size: clamp(28px, 4.5vw, 54px);
  line-height: 1.1;
  margin: 16px 0 14px;
  color: #ffffff;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hero-content p {
  font-size: clamp(14px, 1.8vw, 16.5px);
  color: rgba(255, 253, 248, 0.9);
  max-width: 440px;
  margin-bottom: 26px;
  line-height: 1.5;
}

/* Controls */
.hero-arrows {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
  z-index: 3;
  pointer-events: none;
}

.hero-arrow {
  pointer-events: all;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(4px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.25s ease;
  cursor: pointer;
}

.hero-arrow:hover {
  background: rgba(0, 0, 0, 0.7);
  border-color: #ffffff;
}

.hero-dots {
  position: absolute;
  bottom: 20px;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  gap: 8px;
  z-index: 3;
}

.hero-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  border: none;
  cursor: pointer;
  transition: all 0.25s ease;
}

.hero-dot.active {
  background: #ffffff;
  width: 24px;
  border-radius: 4px;
}

/* Mobile Responsiveness Adjustments */
@media (max-width: 768px) {
  .hero {
    height: 520px;
  }

  /* Soft full-screen gradient on mobile for readability */
  .hero-overlay {
    background: linear-gradient(
      180deg, 
      rgba(15, 8, 10, 0.4) 0%, 
      rgba(15, 8, 10, 0.8) 100%
    );
  }

  .hero-content {
    padding: 0 20px;
  }

  .hero-content-inner {
    text-align: center;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .hero-content .eyebrow::before {
    display: none;
  }

  .hero-arrow {
    width: 38px;
    height: 38px;
  }

  .hero-arrows {
    padding: 0 10px;
  }
}

  /* ---------- ABOUT ---------- */
  .about{padding:var(--sp-section) 0;background: #fff;}
  .about-grid{display:grid;grid-template-columns:1fr 1fr;gap:64px;align-items:center;max-width:var(--container);margin:0 auto;padding:0 24px;}
  .about-video-wrap{position:relative;border-radius:var(--radius);overflow:hidden;box-shadow:var(--shadow);aspect-ratio:4/3;}
  .about-video-wrap video{width:100%;height:100%;object-fit:cover;}
  .video-frame-note{
    position:absolute;inset:0;display:flex;align-items:center;justify-content:center;flex-direction:column;gap:14px;
    background:linear-gradient(160deg,#5C1826,#2B1E13);color:var(--cream);text-align:center;padding:24px;
  }
  .play-btn{width:64px;height:64px;border-radius:50%;background:rgba(251,245,232,0.16);border:1.5px solid rgba(251,245,232,0.6);display:flex;align-items:center;justify-content:center;}
  .video-frame-note small{opacity:0.7;font-size:12px;max-width:260px;}
  .about-text h2{font-size:clamp(28px,3vw,40px);margin-bottom:22px;}
  .about-text p{font-size:16.5px;color:var(--ink-soft);margin-bottom:16px;max-width:480px;}
  .about-text .signature-line{width:60px;height:3px;background:var(--pista);margin:26px 0;border-radius:3px;}
  @media (max-width:860px){
    .about-grid{grid-template-columns:1fr;gap:36px;}
  }

  /* ---------- SECTION HEADERS ---------- */
  .section-head{text-align:center;max-width:600px;margin:0 auto 48px;}
  .section-head h2{font-size:clamp(28px,3.4vw,42px);margin-top:16px;}
  .section-head p{color:var(--ink-soft);margin-top:14px;font-size:16px;}


  /* ==========================================================================
   PRODUCTS SECTION (No JavaScript, Clean Grid Layout)
   ========================================================================== */

.products-section {
  padding: var(--sp-section) 0;
  background-color: #fff;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 40px;
}

/* --- Card Structure --- */
.product-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px -10px rgba(43, 30, 19, 0.15);
}

/* --- Image & Media Container --- */
.product-media {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background-color: var(--cream-deep);
}

.product-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.product-card:hover .product-media img {
  transform: scale(1.05);
}

/* Badges */
.badge {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 2;
  background: var(--maroon);
  color: #ffffff;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 4px 8px;
  border-radius: 2px;
}

.badge-sold {
  background: var(--ink-soft);
}

/* Hover Action Button Overlay */
.product-actions-overlay {
  position: absolute;
  inset: 0;
  background: rgba(43, 30, 19, 0.25);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 16px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.product-card:hover .product-actions-overlay {
  opacity: 1;
}

.btn-card {
  width: 100%;
  padding: 10px;
  text-align: center;
  font-size: 13px;
  font-weight: 600;
  border-radius: 4px;
  transition: background 0.2s ease, transform 0.2s ease;
  display: inline-block;
}

.btn-card.primary {
  background: var(--maroon);
  color: var(--cream);
}

.btn-card.primary:hover {
  background: var(--maroon-dark);
}

.btn-card.disabled {
  background: var(--cream-deep);
  color: var(--ink-soft);
  cursor: not-allowed;
}

/* --- Content Body --- */
.product-info {
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex-grow: 1;
  text-align: center;
}

.product-title {
  font-size: 16px;
  font-weight: 600;
  line-height: 1.35;
  margin: 0;
}

.product-title a {
  color: var(--ink);
  transition: color 0.2s ease;
}

.product-title a:hover {
  color: var(--maroon);
}

.product-price {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 700;
  color: var(--maroon);
  margin-top: auto;
}

/* --- Responsive Adjustments --- */
@media (max-width: 1024px) {
  .product-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  /* Always keep cart button visible on mobile devices */
  .product-actions-overlay {
    position: relative;
    inset: auto;
    opacity: 1;
    background: transparent;
    padding: 0;
    margin-top: 8px;
  }

  .btn-card {
    border: 1px solid var(--maroon);
    background: transparent;
    color: var(--maroon);
  }
  .logo {
    font-family: var(--font-display);
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.01em;
    color: var(--maroon);
}
}

@media (max-width: 480px) {
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
}
/* --- Owl Carousel Custom Styles --- */
.product-carousel {
  margin-top: 30px;
  position: relative;
}

/* Custom Navigation Buttons */
.product-carousel .owl-nav button.owl-prev,
.product-carousel .owl-nav button.owl-next {
  position: absolute;
  top: 40%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  background: var(--paper) !important;
  color: var(--maroon) !important;
  border: 1px solid var(--line) !important;
  border-radius: 50%;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  font-size: 18px !important;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}

.product-carousel .owl-nav button.owl-prev:hover,
.product-carousel .owl-nav button.owl-next:hover {
  background: var(--maroon) !important;
  color: var(--cream) !important;
}

.product-carousel .owl-nav button.owl-prev {
  left: -20px;
}

.product-carousel .owl-nav button.owl-next {
  right: -20px;
}

/* Custom Pagination Dots */
.product-carousel .owl-dots {
  margin-top: 20px !important;
}

.product-carousel .owl-theme .owl-dots .owl-dot span {
  background: var(--line);
  transition: background 0.2s ease;
}

.product-carousel .owl-theme .owl-dots .owl-dot.active span,
.product-carousel .owl-theme .owl-dots .owl-dot:hover span {
  background: var(--maroon);
}

/* ==========================================================================
   HERO BANNER SECTION STYLES
   ========================================================================== */

.hero-banner-section {
  position: relative;
  width: 100%;
  min-height: 480px;
  display: flex;
  align-items: center;
  justify-content: center;
  /* Replace with your exact image path */
  background-image: url('./img/slide/7.jpg'); 
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  padding: 80px 24px;
  box-sizing: border-box;
}

/* Overlay for text readability */
.hero-banner-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.2); 
  z-index: 1;
}

/* Centered Container */
.hero-banner-content {
  position: relative;
  z-index: 2;
  max-width: 820px;
  text-align: center;
  color: #ffffff;
}

/* Text Styling */
.hero-banner-text {
  font-family: inherit;
  font-size: 26px;
  line-height: 1.5;
  font-weight: 400;
  margin-bottom: 32px;
  color: #ffffff;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.hero-banner-text strong {
  font-weight: 700;
}

/* Rounded Pill Button */
.hero-banner-btn {
  display: inline-block;
  padding: 14px 40px;
  border: 2px solid #ffffff;
  border-radius: 50px;
  color: #ffffff;
  text-decoration: none;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.03em;
  background: transparent;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.hero-banner-btn:hover {
  background: #ffffff;
  color: #1a1a1a;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
  transform: translateY(-2px);
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
  .hero-banner-section {
    min-height: 380px;
    padding: 50px 20px;
  }
  
  .hero-banner-text {
    font-size: 20px;
    line-height: 1.4;
    margin-bottom: 24px;
  }
  
  .hero-banner-btn {
    padding: 10px 30px;
    font-size: 14px;
  }
}
/* --- Product Card Container --- */
.product-card {
  background: var(--paper, #ffffff);
  border: 1px solid var(--line, #e5e5e5);
  border-radius: var(--radius, 8px);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
}

/* --- Image Swap Styling --- */
.product-media {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background-color: var(--cream-deep, #f9f6f0);
}

.product-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  transition: opacity 0.4s ease, transform 0.5s ease;
}

/* Default state: show primary, hide hover image */
.product-media .img-primary {
  opacity: 1;
  z-index: 1;
}

.product-media .img-hover {
  opacity: 0;
  z-index: 2;
}

/* Hover state: fade in secondary image and slight zoom */
.product-card:hover .img-primary {
  opacity: 0;
}

.product-card:hover .img-hover {
  opacity: 1;
  transform: scale(1.05);
}

/* ==========================================================================
   VIDEO SECTION STYLES
   ========================================================================== */

.video-section {
  width: 100%;
  background-color: #000;
}

.video-container {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  max-height: 80vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #000;
}

/* Background Image Overlay */
.video-poster-bg {
  position: absolute;
  inset: 0;
  /* Replace with your exact background image path */
  background-image: url('./img/video-poster.jpg'); 
  background-size: cover;
  background-position: center;
  z-index: 2;
  transition: opacity 0.4s ease;
}

/* Video Styling */
.video-container video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: relative;
  z-index: 1;
}

/* Play Button Styling */
.play-trigger-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 70px;
  height: 70px;
  background-color: #ffffff;
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 3;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, background-color 0.3s ease, opacity 0.4s ease;
}

.play-trigger-btn svg {
  width: 28px;
  height: 28px;
  color: #1a1a1a;
  margin-left: 4px; /* Optical center adjustment */
}

.play-trigger-btn:hover {
  transform: translate(-50%, -50%) scale(1.1);
  background-color: #f5f5f5;
}

/* Active State: Hide background image & play button when video runs */
.video-container.is-playing .video-poster-bg,
.video-container.is-playing .play-trigger-btn {
  opacity: 0;
  pointer-events: none;
}

/* ==========================================================================
   CONTINUOUS SCROLL CAROUSEL STYLES
   ========================================================================== */

.continuous-carousel-section {
  width: 100%;
  padding: 40px 0;
  background-color: #fafafa;
  overflow: hidden;
}

.continuous-carousel .carousel-item {
  border-radius: 8px;
  overflow: hidden;
  aspect-ratio: 4 / 3;
}

.continuous-carousel .carousel-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* --- Essential CSS Override for Continuous Smooth Motion --- */
.continuous-carousel .owl-stage {
  display: flex;
  align-items: center;
  /* Replaces default ease with linear transition for seamless scrolling */
  transition-timing-function: linear !important;
  -webkit-transition-timing-function: linear !important;
}

/* Ensure link fills container */
.continuous-carousel .carousel-link {
  display: block;
  width: 100%;
  height: 100%;
  text-decoration: none;
}

.continuous-carousel .carousel-item {
  border-radius: 8px;
  overflow: hidden;
  aspect-ratio: 4 / 3;
}

.continuous-carousel .carousel-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}


/* Prevents vibration and ensures fluid linear sliding */
.continuous-carousel .owl-stage {
  display: flex !important;
  align-items: center;
  transition-timing-function: linear !important;
  -webkit-transition-timing-function: linear !important;
  will-change: transform;
}

.continuous-carousel .owl-item {
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  transform: translate3d(0, 0, 0);
}

/* --- Badges & Overlay Action --- */
.badge {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 3;
  background: var(--maroon, #70161e);
  color: #ffffff;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 30px;
}

.product-actions-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 4;
  padding: 16px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.4), transparent);
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.product-card:hover .product-actions-overlay {
  transform: translateY(0);
}

.btn-card {
  display: block;
  width: 100%;
  padding: 10px;
  text-align: center;
  font-size: 13px;
  font-weight: 600;
  border-radius: 4px;
  background: #ffffff;
  color: #1a1a1a;
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease;
}

.btn-card:hover {
  background: var(--maroon, #70161e);
  color: #ffffff;
}
 
  /* ---------- FAQ ---------- */
  .faq{padding:var(--sp-section) 0;background:var(--cream);}
  .faq-list{max-width:760px;margin:0 auto;display:flex;flex-direction:column;}
  .faq-item{border-bottom:1px solid var(--line);}
  .faq-q{
    width:100%;display:flex;align-items:center;justify-content:space-between;gap:20px;
    padding:22px 4px;text-align:left;font-family:var(--font-display);font-size:18px;font-weight:600;
    color:var(--ink);
  }
  .faq-q .plus{
    flex:0 0 auto;width:26px;height:26px;border-radius:50%;border:1.4px solid var(--maroon);
    position:relative;transition:transform 0.3s ease, background 0.3s ease;
  }
  .faq-q .plus::before, .faq-q .plus::after{
    content:"";position:absolute;background:var(--maroon);top:50%;left:50%;
    transform:translate(-50%,-50%);transition:opacity 0.2s ease;
  }
  .faq-q .plus::before{width:10px;height:1.6px;}
  .faq-q .plus::after{width:1.6px;height:10px;}
  .faq-item.open .faq-q .plus{background:var(--maroon);transform:rotate(180deg);}
  .faq-item.open .faq-q .plus::before, .faq-item.open .faq-q .plus::after{background:var(--cream);}
  .faq-item.open .faq-q .plus::after{opacity:0;}
  .faq-answer{max-height:0;overflow:hidden;transition:max-height 0.35s ease;}
  .faq-answer-inner{padding:0 30px 24px 4px;color:var(--ink-soft);font-size:15.5px;}
  .faq-answer-inner .faq-contact{display:inline-block;margin-top:10px;font-weight:600;color:var(--maroon);}

  /* ---------- FOOTER ---------- */
  footer{background:var(--ink);color:var(--cream);padding:var(--sp-section) 0 0;}
  .footer-grid{
    max-width:var(--container);margin:0 auto;padding:0 24px;
    display:grid;grid-template-columns:1.4fr 1fr 1fr 1.2fr;gap:48px;padding-bottom:56px;
  }
  .footer-logo{font-family:var(--font-display);font-size:24px;font-weight:700;color:var(--gold-bright);margin-bottom:14px;}
  .footer-tagline{color:rgba(251,245,232,0.65);font-size:14.5px;max-width:260px;}
  footer h4{color:var(--cream);font-size:13px;text-transform:uppercase;letter-spacing:0.1em;margin-bottom:18px;font-family:var(--font-body);font-weight:700;}
  .footer-links{display:flex;flex-direction:column;gap:11px;}
  .footer-links a{color:rgba(251,245,232,0.72);font-size:14.5px;transition:color 0.2s ease;}
  .footer-links a:hover{color:var(--gold-bright);}
  .footer-contact{display:flex;flex-direction:column;gap:12px;font-size:14.5px;color:rgba(251,245,232,0.72);}
  .footer-contact div{display:flex;gap:10px;align-items:flex-start;}
  .footer-contact svg{flex:0 0 auto;margin-top:2px;color:var(--gold-bright);}
  .newsletter-form{display:flex;margin-top:6px;border:1px solid rgba(251,245,232,0.3);border-radius:2px;overflow:hidden;}
  .newsletter-form input{
    flex:1;background:transparent;border:none;padding:11px 12px;color:var(--cream);font-size:13.5px;
  }
  .newsletter-form input::placeholder{color:rgba(251,245,232,0.45);}
  .newsletter-form button{padding:11px 16px;background:var(--gold-bright);color:var(--ink);font-weight:700;font-size:13px;}
  .newsletter-note{font-size:12px;color:rgba(251,245,232,0.5);margin-top:10px;}
  .social-row{display:flex;gap:12px;margin-top:20px;}
  .social-row a{
    width:34px;height:34px;border-radius:50%;border:1px solid rgba(251,245,232,0.3);
    display:flex;align-items:center;justify-content:center;transition:all 0.2s ease;
  }
  .social-row a:hover{background:var(--gold-bright);border-color:var(--gold-bright);color:var(--ink);}
  .footer-bottom{
    border-top:1px solid rgba(251,245,232,0.14);padding:20px 24px;
    display:flex;justify-content:space-between;flex-wrap:wrap;gap:10px;
    max-width:var(--container);margin:0 auto;font-size:12.5px;color:rgba(251,245,232,0.5);
  }
  .footer-bottom a{color:rgba(251,245,232,0.5);}
  .footer-bottom a:hover{color:var(--gold-bright);}
  @media (max-width:900px){
    .footer-grid{grid-template-columns:1fr 1fr;}
  }
  @media (max-width:560px){
    .footer-grid{grid-template-columns:1fr;}
  }

  @media (max-width:600px){
    :root{--sp-section:var(--sp-section-m);}
    .about-grid{gap:28px;}
  }