/* ==========================================================================
   LUXORA — Luxury Home Furniture
   ========================================================================== */

:root{
  /* Colors */
  --luxora-black:      #111111;
  --luxora-dark:        #171717;
  --luxora-near-black:  #0D0D0D;
  --luxora-gold:        #C8A15A;
  --luxora-gold-light:  #D8B875;
  --luxora-cream:       #F4F1EA;
  --luxora-white:       #FAF9F6;
  --luxora-beige:       #E8E1D5;
  --luxora-gray-light:  #D8D5CE;
  --luxora-text:        #242424;
  --luxora-muted:       #6F6B63;
  --luxora-pure-white:  #FFFFFF;
  --luxora-border:      #DDD8CE;

  /* Type */
  --font-heading: "Playfair Display", "Cormorant Garamond", serif;
  --font-body: "Inter", -apple-system, sans-serif;

  /* Radius */
  --r-card: 10px;
  --r-btn: 6px;
  --r-banner: 12px;

  /* Motion */
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --dur: 0.4s;

  /* Layout */
  --container: 1200px;
  --header-h: 74px;
}

/* ---------- Reset ---------- */
*, *::before, *::after{ box-sizing: border-box; }
html{ scroll-behavior: smooth; scroll-padding-top: var(--header-h); }
body{
  margin:0;
  font-family: var(--font-body);
  color: var(--luxora-text);
  background: var(--luxora-white);
  -webkit-font-smoothing: antialiased;
  line-height: 1.6;
}
img{ max-width:100%; display:block; }
a{ color:inherit; text-decoration:none; }
ul{ list-style:none; margin:0; padding:0; }
button{ font-family: inherit; cursor:pointer; }
input{ font-family: inherit; }
h1,h2,h3,h4{ font-family: var(--font-heading); font-weight:600; margin:0; color: var(--luxora-text); }
p{ margin:0; }
[data-lucide]{ width:18px; height:18px; stroke-width: 1.6; }

@media (prefers-reduced-motion: reduce){
  *{ animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; scroll-behavior:auto !important; }
}

:focus-visible{ outline: 2px solid var(--luxora-gold); outline-offset: 2px; }

.lx-visually-hidden{
  position:absolute; width:1px; height:1px; overflow:hidden;
  clip:rect(0 0 0 0); white-space:nowrap;
}

.lx-container{
  max-width: var(--container);
  margin:0 auto;
  padding: 0 24px;
}

/* ---------- Buttons ---------- */
.lx-btn{
  display:inline-flex; align-items:center; justify-content:center; gap:8px;
  font-family: var(--font-body); font-size:14px; font-weight:600;
  padding: 14px 26px; border-radius: var(--r-btn);
  border:1px solid transparent; white-space:nowrap;
  transition: background var(--dur) var(--ease), color var(--dur) var(--ease), border-color var(--dur) var(--ease), transform var(--dur) var(--ease);
}
.lx-btn [data-lucide]{ width:15px; height:15px; transition: transform var(--dur) var(--ease); }
.lx-btn:hover [data-lucide]{ transform: translateX(3px); }

.lx-btn--dark{ background: var(--luxora-black); color: var(--luxora-white); }
.lx-btn--dark:hover{ background: var(--luxora-near-black); }

.lx-btn--outline{ background: var(--luxora-white); color: var(--luxora-text); border-color: var(--luxora-border); }
.lx-btn--outline:hover{ border-color: var(--luxora-gold); color: var(--luxora-gold); }

.lx-btn--gold{ background: var(--luxora-gold); color: var(--luxora-near-black); }
.lx-btn--gold:hover{ background: var(--luxora-gold-light); }

.lx-btn--sm{ padding: 10px 18px; font-size:13px; }
.lx-btn--block{ width:100%; }

.lx-link-arrow{
  display:inline-flex; align-items:center; gap:6px;
  font-size:14px; font-weight:600; color: var(--luxora-text);
  transition: color var(--dur) var(--ease);
}
.lx-link-arrow [data-lucide]{ width:15px; height:15px; color: var(--luxora-gold); transition: transform var(--dur) var(--ease); }
.lx-link-arrow:hover{ color: var(--luxora-gold); }
.lx-link-arrow:hover [data-lucide]{ transform: translateX(4px); }

.lx-eyebrow{
  font-size:12px; font-weight:600; letter-spacing: 2.2px; text-transform: uppercase;
  color: #B89555; margin-bottom:14px;
}
.lx-eyebrow--light{ color: var(--luxora-gold-light); }

.lx-circle-btn{
  width:42px; height:42px; border-radius:50%; border:1px solid var(--luxora-border);
  background: var(--luxora-white); display:flex; align-items:center; justify-content:center;
  color: var(--luxora-text); transition: all var(--dur) var(--ease); flex-shrink:0;
}
.lx-circle-btn:hover{ border-color: var(--luxora-gold); color: var(--luxora-gold); }
.lx-circle-btn--gold{ background: var(--luxora-gold); border-color: var(--luxora-gold); color: var(--luxora-near-black); }
.lx-circle-btn--gold:hover{ background: var(--luxora-gold-light); color: var(--luxora-near-black); }
.lx-circle-btn--dark{ background: var(--luxora-black); border-color: var(--luxora-black); color: var(--luxora-white); }
.lx-circle-btn--dark:hover{ background: var(--luxora-near-black); color: var(--luxora-gold); }

/* ==========================================================================
   HEADER
   ========================================================================== */
.lx-header{
  position: sticky; top:0; z-index: 500;
  background: var(--luxora-black);
  height: var(--header-h);
  transition: box-shadow var(--dur) var(--ease);
}
.lx-header.is-scrolled{ box-shadow: 0 8px 30px rgba(0,0,0,0.35); }

.lx-header__inner{
  max-width: var(--container);
  margin:0 auto;
  height:100%;
  padding: 0 24px;
  display:flex; align-items:center; justify-content: space-between;
  gap: 24px;
}

.lx-logo{ display:flex; align-items:center; gap:10px; flex-shrink:0; }
.lx-logo__mark{
  font-family: var(--font-heading); font-size:20px; font-weight:700;
  color: var(--luxora-gold);
  border: 1px solid var(--luxora-gold);
  width:38px; height:38px; border-radius:4px;
  display:flex; align-items:center; justify-content:center;
  letter-spacing: 0.5px;
}
.lx-logo__text{ display:flex; flex-direction:column; line-height:1.15; }
.lx-logo__name{ font-family: var(--font-heading); font-size:19px; font-weight:700; letter-spacing:2px; color: var(--luxora-white); }
.lx-logo__tag{ font-size:9px; letter-spacing:2px; text-transform:uppercase; color: var(--luxora-gold); }

.lx-nav__list{ display:flex; align-items:center; gap:34px; }
.lx-nav__link{
  font-size:14px; font-weight:500; color: #D9D6CF;
  display:flex; align-items:center; gap:4px;
  padding: 8px 0; position:relative;
  transition: color var(--dur) var(--ease);
}
.lx-nav__link [data-lucide]{ width:13px; height:13px; }
.lx-nav__link.is-active,
.lx-nav__link:hover{ color: var(--luxora-gold); }
.lx-nav__link.is-active::after{
  content:""; position:absolute; left:0; right:0; bottom:0; height:2px; background: var(--luxora-gold);
}

.has-dropdown{ position:relative; }
.lx-dropdown{
  position:absolute; top: 100%; left:50%; transform: translate(-50%, 8px);
  background: var(--luxora-dark); border:1px solid rgba(255,255,255,0.08);
  border-radius: var(--r-card); padding:10px; min-width:180px;
  opacity:0; visibility:hidden; pointer-events:none;
  transition: opacity var(--dur) var(--ease), transform var(--dur) var(--ease);
  box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}
.has-dropdown:hover .lx-dropdown,
.has-dropdown:focus-within .lx-dropdown{
  opacity:1; visibility:visible; pointer-events:auto; transform: translate(-50%, 4px);
}
.lx-dropdown a{
  display:block; padding:9px 12px; border-radius:5px; font-size:13.5px; color:#CFCBC3;
  transition: background var(--dur) var(--ease), color var(--dur) var(--ease);
}
.lx-dropdown a:hover{ background: rgba(200,161,90,0.12); color: var(--luxora-gold-light); }

.lx-header__actions{ display:flex; align-items:center; gap:6px; flex-shrink:0; }
.lx-icon-btn{
  position:relative; width:38px; height:38px; border-radius:50%;
  display:flex; align-items:center; justify-content:center;
  background:transparent; border:none; color:#E7E4DC;
  transition: background var(--dur) var(--ease), color var(--dur) var(--ease);
}
.lx-icon-btn:hover{ background: rgba(255,255,255,0.08); color: var(--luxora-gold); }
.lx-badge{
  position:absolute; top:1px; right:1px; min-width:15px; height:15px; padding:0 3px;
  background: var(--luxora-gold); color: var(--luxora-near-black);
  border-radius:50%; font-size:9.5px; font-weight:700; line-height:15px; text-align:center;
}
.lx-header__cta{ margin-left:10px; }

.lx-burger{
  display:none; flex-direction:column; justify-content:center; gap:5px;
  width:38px; height:38px; background:none; border:none; margin-left:4px;
}
.lx-burger span{ display:block; width:20px; height:1.5px; background: var(--luxora-white); margin:0 auto; transition: all var(--dur) var(--ease); }
.lx-burger[aria-expanded="true"] span:nth-child(1){ transform: translateY(6.5px) rotate(45deg); }
.lx-burger[aria-expanded="true"] span:nth-child(2){ opacity:0; }
.lx-burger[aria-expanded="true"] span:nth-child(3){ transform: translateY(-6.5px) rotate(-45deg); }

/* ---------- Mobile drawer (nav) ---------- */
.lx-drawer-overlay{
  position: fixed; inset:0; background: rgba(13,13,13,0.55);
  opacity:0; visibility:hidden; transition: opacity var(--dur) var(--ease);
  z-index: 600;
}
.lx-drawer-overlay.is-open{ opacity:1; visibility:visible; }

.lx-mobile-drawer{
  position: fixed; top:0; right:0; height:100%; width: min(320px, 84vw);
  background: var(--luxora-black); z-index: 700;
  transform: translateX(100%); transition: transform var(--dur) var(--ease);
  padding: 22px; display:flex; flex-direction:column;
}
.lx-mobile-drawer.is-open{ transform: translateX(0); }
.lx-mobile-drawer__head{ display:flex; align-items:center; justify-content:space-between; margin-bottom:30px; }
.lx-mobile-drawer__list{ display:flex; flex-direction:column; gap:4px; margin-bottom:auto; }
.lx-mobile-drawer__list a{
  display:block; padding:14px 4px; font-size:16px; color:#E7E4DC; border-bottom:1px solid rgba(255,255,255,0.08);
  transition: color var(--dur) var(--ease);
}
.lx-mobile-drawer__list a:hover{ color: var(--luxora-gold); }

/* ==========================================================================
   HERO
   ========================================================================== */
.lx-hero{
  position:relative;
  display:flex;
  align-items:stretch;
  min-height: 620px;
  background: var(--luxora-cream);
  overflow:hidden;
}
.lx-hero__content{
  position:relative; z-index:2;
  width: 46%;
  display:flex; flex-direction:column; justify-content:center;
  padding: 60px 5vw 60px calc((100vw - var(--container))/2 + 24px);
  max-width: 620px;
  animation: lxFadeUp 0.8s var(--ease) both;
}
.lx-hero__title{
  font-size: clamp(34px, 4vw, 52px);
  line-height:1.12; letter-spacing:-0.5px;
  margin-bottom:20px;
}
.lx-hero__desc{
  font-size:15.5px; color: var(--luxora-muted); max-width:420px; margin-bottom:34px; line-height:1.75;
}
.lx-hero__actions{ display:flex; gap:14px; margin-bottom:46px; flex-wrap:wrap; }

.lx-hero__slider{ display:flex; align-items:center; gap:18px; max-width:340px; }
.lx-hero__slide-num{ font-size:13px; color: var(--luxora-muted); font-weight:500; }
.lx-hero__track{ flex:1; height:2px; background: var(--luxora-border); position:relative; border-radius:2px; overflow:hidden; }
.lx-hero__progress{ position:absolute; left:0; top:0; height:100%; width:33.33%; background: var(--luxora-gold); transition: width var(--dur) var(--ease), left var(--dur) var(--ease); }
.lx-hero__controls{ display:flex; gap:8px; }

.lx-hero__media{
  position:relative; width:56%; margin-left:-2%;
}
.lx-hero__media::before{
  content:""; position:absolute; inset:0; z-index:1;
  width: 220px; left:-1px;
  background: linear-gradient(to right, var(--luxora-cream), rgba(244,241,234,0));
}
.lx-hero__media img{ width:100%; height:100%; object-fit:cover; min-height:620px; }

@keyframes lxFadeUp{
  from{ opacity:0; transform: translateY(18px); }
  to{ opacity:1; transform: translateY(0); }
}

/* ==========================================================================
   BENEFITS BAR
   ========================================================================== */
.lx-benefits{ background: #151515; padding: 42px 0; }
.lx-benefits__grid{
  display:grid; grid-template-columns: repeat(4, 1fr); gap: 30px;
}
.lx-benefit{ display:flex; align-items:flex-start; gap:16px; }
.lx-benefit [data-lucide]{ width:26px; height:26px; color: var(--luxora-gold); flex-shrink:0; margin-top:2px; }
.lx-benefit h3{ font-family: var(--font-body); font-size:14.5px; font-weight:600; color: var(--luxora-white); margin-bottom:5px; }
.lx-benefit p{ font-size:13px; color: #9C988F; line-height:1.6; }

/* ==========================================================================
   SECTIONS (shared)
   ========================================================================== */
.lx-section{ padding: 78px 0; background: var(--luxora-white); }
.lx-section--cream{ background: var(--luxora-cream); }
.lx-section--tight{ padding-top:0; padding-bottom: 78px; background: var(--luxora-white); }

.lx-section__head{
  display:flex; align-items:flex-end; justify-content:space-between; margin-bottom: 36px; gap:20px; flex-wrap:wrap;
}
.lx-section__head-right{ display:flex; align-items:center; gap:26px; }
.lx-section__title{ font-size: clamp(26px, 3vw, 34px); }

.lx-carousel-controls{ display:flex; gap:8px; }

/* ---------- reveal-on-scroll ---------- */
.lx-reveal{ opacity:0; transform: translateY(22px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.lx-reveal.is-visible{ opacity:1; transform: translateY(0); }

/* ==========================================================================
   CATEGORY CARDS
   ========================================================================== */
.lx-cat-grid{
  display:grid; grid-template-columns: repeat(6, 1fr); gap:18px;
}
.lx-cat-card{
  background: var(--luxora-white); border:1px solid var(--luxora-border);
  border-radius: var(--r-card); overflow:hidden;
  box-shadow: 0 1px 2px rgba(20,17,10,0.04);
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.lx-cat-card:hover{ transform: translateY(-4px); box-shadow: 0 16px 34px rgba(20,17,10,0.1); }
.lx-cat-card__img{ display:block; aspect-ratio: 4/3; overflow:hidden; }
.lx-cat-card__img img{ width:100%; height:100%; object-fit:cover; transition: transform 0.7s var(--ease); }
.lx-cat-card:hover .lx-cat-card__img img{ transform: scale(1.07); }

.lx-cat-card__body{
  padding: 14px 16px; display:flex; align-items:center; justify-content:space-between;
}
.lx-cat-card__body h3{ font-size:15px; font-weight:600; margin-bottom:2px; }
.lx-cat-card__body span{ font-size:12px; color: var(--luxora-muted); }
.lx-cat-card__body [data-lucide]{ width:16px; height:16px; color: var(--luxora-gold); transition: transform var(--dur) var(--ease); }
.lx-cat-card:hover .lx-cat-card__body [data-lucide]{ transform: translateX(4px); }

/* ==========================================================================
   PRODUCT CARDS
   ========================================================================== */
.lx-product-track{
  display:grid; grid-template-columns: repeat(4, 1fr); gap:20px;
}
.lx-product-card{
  background: var(--luxora-white); border:1px solid var(--luxora-border);
  border-radius: var(--r-card); overflow:hidden;
  box-shadow: 0 1px 2px rgba(20,17,10,0.04);
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
  display:flex; flex-direction:column;
}
.lx-product-card:hover{ transform: translateY(-4px); box-shadow: 0 16px 34px rgba(20,17,10,0.1); }
.lx-product-card__img{ position:relative; aspect-ratio: 1/1; overflow:hidden; }
.lx-product-card__img img{ width:100%; height:100%; object-fit:cover; transition: transform 0.6s var(--ease); }
.lx-product-card:hover .lx-product-card__img img{ transform: scale(1.04); }

.lx-tag{
  position:absolute; top:12px; left:12px;
  background: var(--luxora-white); color: var(--luxora-text);
  font-size:10px; font-weight:700; letter-spacing:0.6px; text-transform:uppercase;
  padding:5px 9px; border-radius:4px; box-shadow: 0 2px 8px rgba(0,0,0,0.12);
}

.lx-product-card__body{
  padding:16px; display:flex; align-items:flex-start; justify-content:space-between; gap:10px; flex:1;
}
.lx-product-card__body h3{ font-size:15.5px; font-weight:600; margin-bottom:6px; }
.lx-price{ font-family: var(--font-body); font-size:14.5px; font-weight:600; color: var(--luxora-gold); }
.lx-product-card__actions{ display:flex; gap:2px; flex-shrink:0; }
.lx-product-card__actions .lx-icon-btn{ color: var(--luxora-text); width:34px; height:34px; }
.lx-product-card__actions .lx-icon-btn:hover{ background: var(--luxora-beige); color: var(--luxora-gold); }
.lx-wishlist-btn.is-active{ color:#C0483D; }
.lx-wishlist-btn.is-active [data-lucide]{ fill:#C0483D; }
.lx-cart-btn.is-active{ color: var(--luxora-gold); }

/* ==========================================================================
   NEWSLETTER
   ========================================================================== */
.lx-newsletter{
  position:relative; border-radius: var(--r-banner); overflow:hidden;
  min-height: 220px;
  display:flex; flex-wrap:wrap; align-items:center; justify-content:space-between;
  gap: 30px; padding: 44px 44px;
  background: url("https://images.unsplash.com/photo-1592078615290-033ee584e267?auto=format&fit=crop&w=1600&q=70") center/cover no-repeat, var(--luxora-black);
}
.lx-newsletter__overlay{
  position:absolute; inset:0;
  background: linear-gradient(100deg, rgba(10,10,10,0.92) 25%, rgba(10,10,10,0.55) 100%);
}
.lx-newsletter__content{ position:relative; z-index:1; max-width:480px; }
.lx-newsletter__title{ font-size: clamp(22px, 2.4vw, 30px); color: var(--luxora-white); margin-bottom:12px; }
.lx-newsletter__desc{ font-size:14px; color:#C9C6BD; line-height:1.7; max-width:440px; }

.lx-newsletter__form{
  position:relative; z-index:1; display:flex; gap:10px; flex-shrink:0;
}
.lx-newsletter__form input{
  width: 260px; max-width:56vw; padding:14px 16px; border-radius: var(--r-btn);
  border:1px solid rgba(255,255,255,0.25); background: rgba(255,255,255,0.06); color: var(--luxora-white);
  font-size:14px;
}
.lx-newsletter__form input::placeholder{ color:#B7B3A9; }
.lx-newsletter__form input:focus{ outline:none; border-color: var(--luxora-gold); background: rgba(255,255,255,0.1); }

.lx-newsletter__success{
  display:none; position:relative; z-index:1; width:100%; color: var(--luxora-gold-light); font-size:13.5px; margin-top:-14px;
}
.lx-newsletter__success.is-visible{ display:block; }

/* ==========================================================================
   FOOTER
   ========================================================================== */
.lx-footer{ background: var(--luxora-black); padding-top: 68px; }
.lx-footer__grid{
  display:grid; grid-template-columns: 1.5fr 1fr 1fr 1fr 1.2fr; gap: 30px;
  padding-bottom: 50px; border-bottom:1px solid rgba(255,255,255,0.08);
}
.lx-footer__brand p{ font-size:13.5px; color:#9C988F; margin: 16px 0 20px; line-height:1.7; max-width:240px; }
.lx-socials{ display:flex; gap:10px; }
.lx-socials a{
  width:36px; height:36px; border-radius:50%; border:1px solid rgba(255,255,255,0.15);
  display:flex; align-items:center; justify-content:center; color:#C9C6BD;
  transition: all var(--dur) var(--ease);
}
.lx-socials a:hover{ border-color: var(--luxora-gold); color: var(--luxora-gold); }
.lx-socials [data-lucide]{ width:15px; height:15px; }

.lx-footer__col h4{
  font-family: var(--font-body); font-size:13px; font-weight:700; letter-spacing:1px; text-transform:uppercase;
  color: var(--luxora-gold-light); margin-bottom:18px;
}
.lx-footer__col ul{ display:flex; flex-direction:column; gap:11px; }
.lx-footer__col a{ font-size:13.5px; color:#B7B3A9; transition: color var(--dur) var(--ease); }
.lx-footer__col a:hover{ color: var(--luxora-gold); }

.lx-footer__contact ul{ gap:14px; }
.lx-footer__contact li{ display:flex; align-items:flex-start; gap:10px; font-size:13.5px; color:#B7B3A9; }
.lx-footer__contact [data-lucide]{ width:15px; height:15px; color: var(--luxora-gold); margin-top:2px; flex-shrink:0; }
.lx-footer__contact a{ color:#B7B3A9; }
.lx-footer__contact a:hover{ color: var(--luxora-gold); }

.lx-footer__bottom-inner{
  display:flex; align-items:center; justify-content:space-between; gap:20px; flex-wrap:wrap;
  padding: 22px 0;
}
.lx-footer__bottom-inner p{ font-size:12.5px; color:#8B877D; }
.lx-payments{ display:flex; gap:14px; }
.lx-payments span{
  font-size:11px; font-weight:600; letter-spacing:0.5px; color:#9C988F;
  border:1px solid rgba(255,255,255,0.15); border-radius:4px; padding:5px 9px;
}

/* ==========================================================================
   SEARCH OVERLAY
   ========================================================================== */
.lx-search-overlay{
  position:fixed; inset:0; z-index:900; background: rgba(13,13,13,0.97);
  display:flex; align-items:center; justify-content:center;
  opacity:0; visibility:hidden; transition: opacity var(--dur) var(--ease);
}
.lx-search-overlay.is-open{ opacity:1; visibility:visible; }
.lx-search-close{ position:absolute; top:26px; right:26px; color:#E7E4DC; }
.lx-search-overlay__inner{ width:min(640px, 88vw); text-align:center; }
.lx-search-overlay__inner .lx-eyebrow{ justify-content:center; text-align:center; }
#searchForm{ display:flex; align-items:center; border-bottom:1px solid rgba(255,255,255,0.25); padding-bottom:14px; gap:14px; }
#searchInput{
  flex:1; background:none; border:none; color: var(--luxora-white);
  font-family: var(--font-heading); font-size: clamp(22px, 4vw, 32px); outline:none;
}
#searchInput::placeholder{ color:#6F6B63; }
#searchForm button{ background:none; border:none; color: var(--luxora-gold); }
.lx-search-suggest{ margin-top:26px; display:flex; align-items:center; justify-content:center; gap:10px; flex-wrap:wrap; }
.lx-search-suggest span{ font-size:12.5px; color:#8B877D; }
.lx-search-suggest button{
  font-size:12.5px; color:#CFCBC3; background: rgba(255,255,255,0.06); border:1px solid rgba(255,255,255,0.14);
  padding:7px 14px; border-radius:20px; transition: all var(--dur) var(--ease);
}
.lx-search-suggest button:hover{ border-color: var(--luxora-gold); color: var(--luxora-gold); }

/* ==========================================================================
   CART DRAWER
   ========================================================================== */
.lx-cart-drawer{
  position:fixed; top:0; right:0; height:100%; width:min(380px, 88vw);
  background: var(--luxora-white); z-index:700;
  transform: translateX(100%); transition: transform var(--dur) var(--ease);
  display:flex; flex-direction:column;
}
.lx-cart-drawer.is-open{ transform: translateX(0); }
.lx-cart-drawer__head{
  display:flex; align-items:center; justify-content:space-between;
  padding: 20px 22px; border-bottom:1px solid var(--luxora-border);
}
.lx-cart-drawer__head h3{ font-size:19px; }
.lx-cart-drawer__head .lx-icon-btn{ color: var(--luxora-text); }
.lx-cart-drawer__head .lx-icon-btn:hover{ background: var(--luxora-beige); color: var(--luxora-text); }
.lx-cart-drawer__items{ flex:1; overflow-y:auto; padding:18px 22px; }
.lx-cart-empty{ color: var(--luxora-muted); font-size:14px; text-align:center; margin-top:40px; }

.lx-cart-item{ display:flex; gap:12px; padding:12px 0; border-bottom:1px solid var(--luxora-border); }
.lx-cart-item img{ width:64px; height:64px; object-fit:cover; border-radius:8px; flex-shrink:0; }
.lx-cart-item__info{ flex:1; }
.lx-cart-item__info h4{ font-family: var(--font-body); font-size:13.5px; font-weight:600; margin-bottom:4px; }
.lx-cart-item__info p{ font-size:13px; color: var(--luxora-gold); font-weight:600; }
.lx-cart-item__remove{ background:none; border:none; color: var(--luxora-muted); font-size:12px; text-decoration:underline; padding:0; margin-top:6px; }
.lx-cart-item__remove:hover{ color:#C0483D; }

.lx-cart-drawer__foot{ padding:20px 22px; border-top:1px solid var(--luxora-border); }
.lx-cart-total{ display:flex; justify-content:space-between; font-size:14.5px; font-weight:600; margin-bottom:14px; }

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */

/* ----- Tablet: 768–1199 ----- */
@media (max-width: 1199px){
  :root{ --container: 960px; }
  .lx-section{ padding: 58px 0; }
  .lx-cat-grid{ grid-template-columns: repeat(3, 1fr); }
  .lx-product-track{ grid-template-columns: repeat(2, 1fr); }
  .lx-hero__content{ padding-left: 40px; }
}

@media (max-width: 1080px){
  .lx-nav{ display:none; }
  .lx-burger{ display:flex; }
}

/* ----- Mobile: <= 767 ----- */
@media (max-width: 767px){
  :root{ --header-h: 66px; }
  .lx-header__inner{ padding: 0 16px; }
  .lx-header__cta{ display:none; }
  .lx-logo__tag{ display:none; }
  .lx-icon-btn{ width:34px; height:34px; }

  .lx-hero{ flex-direction:column; min-height:auto; }
  .lx-hero__content{
    width:100%; max-width:none; padding: 40px 20px 34px; order:2;
  }
  .lx-hero__media{ width:100%; margin-left:0; height: 320px; order:1; }
  .lx-hero__media img{ min-height:320px; }
  .lx-hero__media::before{ display:none; }
  .lx-hero__actions{ margin-bottom:30px; }
  .lx-hero__actions .lx-btn{ flex:1; }

  .lx-benefits__grid{ grid-template-columns: 1fr 1fr; gap:26px 18px; }

  .lx-section{ padding: 40px 0; }
  .lx-container{ padding: 0 18px; }
  .lx-section__head{ flex-direction:column; align-items:flex-start; gap:14px; }
  .lx-section__head-right{ width:100%; justify-content:space-between; }

  .lx-cat-grid{ grid-template-columns: 1fr 1fr; gap:14px; }
  .lx-cat-card__body{ padding:11px 12px; }

  .lx-product-track{
    grid-template-columns: none; grid-auto-flow: column; grid-auto-columns: 78%;
    overflow-x:auto; scroll-snap-type: x mandatory; gap:14px;
    margin: 0 -18px; padding: 0 18px 8px;
  }
  .lx-product-card{ scroll-snap-align:start; }

  .lx-newsletter{ flex-direction:column; align-items:flex-start; padding: 32px 22px; }
  .lx-newsletter__form{ width:100%; flex-direction:column; }
  .lx-newsletter__form input{ width:100%; max-width:none; }
  .lx-newsletter__form .lx-btn{ width:100%; }

  .lx-footer{ padding-top:46px; }
  .lx-footer__grid{ grid-template-columns: 1fr 1fr; gap: 34px 20px; padding-bottom:36px; }
  .lx-footer__brand{ grid-column: 1 / -1; }
  .lx-footer__bottom-inner{ flex-direction:column; align-items:flex-start; gap:14px; }
  .lx-payments{ flex-wrap:wrap; }
}

@media (max-width: 420px){
  .lx-hero__actions{ flex-direction:column; }
  .lx-hero__actions .lx-btn{ width:100%; }
}


/* =====================================================
   BOMBAY HANDLOOM — ABOUT SECTION
===================================================== */

.bh-about-section{
    position:relative;
    padding:100px 0;
    background:var(--luxora-white);
    overflow:hidden;
}

.bh-about-section::before{
    content:"";
    position:absolute;
    width:360px;
    height:360px;
    right:-180px;
    top:50%;
    transform:translateY(-50%);
    border-radius:50%;
    background:rgba(200,161,90,0.06);
    pointer-events:none;
}


/* ---------- GRID ---------- */

.bh-about-grid{
    display:grid;
    grid-template-columns:0.95fr 1.05fr;
    gap:85px;
    align-items:center;
}


/* ---------- IMAGE ---------- */

.bh-about-image{
    position:relative;
    padding-right:28px;
    padding-bottom:28px;
}

.bh-about-image-main{
    position:relative;
    height:570px;
    overflow:hidden;
    border-radius:var(--r-card);
    background:var(--luxora-beige);
}

.bh-about-image-main::after{
    content:"";
    position:absolute;
    inset:0;
    background:linear-gradient(
        180deg,
        rgba(17,17,17,0) 60%,
        rgba(17,17,17,0.18)
    );
    pointer-events:none;
}

.bh-about-image-main img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:transform .8s var(--ease);
}

.bh-about-image:hover .bh-about-image-main img{
    transform:scale(1.04);
}


/* ---------- GOLD BACK FRAME ---------- */

.bh-about-image::after{
    content:"";
    position:absolute;
    right:0;
    bottom:0;
    width:72%;
    height:78%;
    border:1px solid var(--luxora-gold);
    border-radius:var(--r-card);
    z-index:0;
}

.bh-about-image-main{
    position:relative;
    z-index:1;
}


/* ---------- EXPERIENCE BADGE ---------- */

.bh-about-experience{
    position:absolute;
    z-index:3;
    left:-22px;
    bottom:55px;

    display:flex;
    align-items:center;
    gap:14px;

    min-width:190px;
    padding:17px 20px;

    background:var(--luxora-black);
    border-radius:6px;
    box-shadow:0 18px 35px rgba(0,0,0,.18);
}

.bh-about-experience-number{
    font-family:var(--font-heading);
    font-size:30px;
    line-height:1;
    color:var(--luxora-gold);
}

.bh-about-experience-text{
    font-size:11px;
    line-height:1.5;
    text-transform:uppercase;
    letter-spacing:1.4px;
    color:#D9D6CF;
}


/* ---------- CONTENT ---------- */

.bh-about-content{
    position:relative;
    z-index:2;
}

.bh-about-title{
    font-size:clamp(34px,4vw,52px);
    line-height:1.12;
    letter-spacing:-.6px;
    margin-bottom:24px;
}

.bh-about-title span{
    color:var(--luxora-gold);
}

.bh-about-intro{
    max-width:610px;
    font-size:16px;
    line-height:1.8;
    color:var(--luxora-text);
    margin-bottom:16px;
}

.bh-about-description{
    max-width:600px;
    font-size:14px;
    line-height:1.8;
    color:var(--luxora-muted);
    margin-bottom:32px;
}


/* ---------- PRODUCT HIGHLIGHTS ---------- */

.bh-about-products{
    display:grid;
    grid-template-columns:1fr 1fr;
    border-top:1px solid var(--luxora-border);
    margin-bottom:34px;
}

.bh-about-product{
    display:flex;
    align-items:flex-start;
    gap:13px;
    padding:17px 16px 17px 0;
    border-bottom:1px solid var(--luxora-border);
}

.bh-about-product:nth-child(odd){
    border-right:1px solid var(--luxora-border);
    padding-right:20px;
}

.bh-about-product:nth-child(even){
    padding-left:20px;
}

.bh-product-number{
    font-size:11px;
    font-weight:600;
    letter-spacing:1px;
    color:var(--luxora-gold);
    margin-top:3px;
}

.bh-about-product h4{
    font-family:var(--font-body);
    font-size:14px;
    font-weight:600;
    margin-bottom:3px;
}

.bh-about-product p{
    font-size:12px;
    color:var(--luxora-muted);
    line-height:1.5;
}


/* ---------- BUTTON ---------- */

.bh-about-btn{
    padding:13px 23px;
}

.bh-about-btn [data-lucide]{
    width:15px;
    height:15px;
}


/* =====================================================
   RESPONSIVE
===================================================== */

@media (max-width:1199px){

    .bh-about-grid{
        gap:55px;
    }

    .bh-about-image-main{
        height:520px;
    }

    .bh-about-title{
        font-size:42px;
    }
}


@media (max-width:767px){

    .bh-about-section{
        padding:65px 0;
    }

    .bh-about-grid{
        grid-template-columns:1fr;
        gap:48px;
    }

    .bh-about-image{
        padding-right:16px;
        padding-bottom:20px;
    }

    .bh-about-image-main{
        height:420px;
    }

    .bh-about-image::after{
        width:75%;
        height:70%;
    }

    .bh-about-experience{
        left:0;
        bottom:35px;
        min-width:175px;
        padding:14px 17px;
    }

    .bh-about-experience-number{
        font-size:26px;
    }

    .bh-about-title{
        font-size:36px;
    }

    .bh-about-intro{
        font-size:14.5px;
    }

    .bh-about-products{
        grid-template-columns:1fr;
    }

    .bh-about-product:nth-child(odd){
        border-right:none;
        padding-right:0;
    }

    .bh-about-product:nth-child(even){
        padding-left:0;
    }
}


@media (max-width:420px){

    .bh-about-image-main{
        height:350px;
    }

    .bh-about-title{
        font-size:32px;
    }

    .bh-about-experience{
        bottom:25px;
        min-width:160px;
    }
}


/* =====================================================
   BOMBAY HANDLOOM — HERO FIX / OVERRIDE
   Put at the END of the stylesheet so it safely overrides
   the earlier Luxora hero rules.
===================================================== */

.lx-hero{
  position:relative;
  display:grid;
  grid-template-columns:minmax(0, 44%) minmax(0, 56%);
  align-items:stretch;
  min-height:680px;
  height:680px;
  background:var(--luxora-cream);
  overflow:hidden;
}

.lx-hero__content{
  position:relative;
  z-index:3;
  width:auto;
  max-width:none;
  min-width:0;
  display:flex;
  flex-direction:column;
  justify-content:center;
  padding:60px 40px 60px max(24px, calc((100vw - var(--container)) / 2 + 24px));
  animation:lxFadeUp .8s var(--ease) both;
}

.lx-hero__title{
  max-width:500px;
  font-size:clamp(38px, 4.1vw, 56px);
  line-height:1.08;
  letter-spacing:-.7px;
  margin-bottom:20px;
}

.lx-hero__desc{
  max-width:440px;
  font-size:15px;
  line-height:1.75;
  margin-bottom:32px;
}

.lx-hero__actions{
  display:flex;
  align-items:center;
  gap:12px;
  margin-bottom:42px;
  flex-wrap:wrap;
}

.lx-hero__slider{
  width:min(360px,100%);
  display:flex;
  align-items:center;
  gap:14px;
}

.lx-hero__track{
  flex:1 1 auto;
  min-width:80px;
  height:2px;
  background:var(--luxora-border);
  position:relative;
  border-radius:2px;
  overflow:hidden;
}

.lx-hero__progress{
  position:absolute;
  left:0;
  top:0;
  height:100%;
  width:33.333%;
  background:var(--luxora-gold);
  transition:left .45s var(--ease), width .45s var(--ease);
}

.lx-hero__controls{
  display:flex;
  gap:7px;
  flex-shrink:0;
}

.lx-hero__media{
  position:relative;
  width:auto;
  height:100%;
  min-width:0;
  margin-left:0;
  overflow:hidden;
  isolation:isolate;
}

.lx-hero__media::before{
  content:"";
  position:absolute;
  inset:0 auto 0 0;
  z-index:2;
  width:180px;
  pointer-events:none;
  background:linear-gradient(
    90deg,
    var(--luxora-cream) 0%,
    rgba(244,241,234,.92) 12%,
    rgba(244,241,234,.45) 42%,
    rgba(244,241,234,0) 100%
  );
}

.lx-hero__media::after{
  content:"";
  position:absolute;
  inset:0;
  z-index:1;
  pointer-events:none;
  background:linear-gradient(
    180deg,
    rgba(0,0,0,.02) 0%,
    rgba(0,0,0,0) 70%,
    rgba(0,0,0,.08) 100%
  );
}

.lx-hero__media img{
  display:block;
  width:100%;
  height:100%;
  min-height:0;
  object-fit:cover;
  object-position:center center;
  opacity:1;
  transform:scale(1.001);
  transition:opacity .35s ease, transform 7s ease;
  will-change:opacity,transform;
}

.lx-hero__media img.is-changing{
  opacity:0;
  transform:scale(1.025);
}

/* Better desktop composition */
@media (min-width:1200px){
  .lx-hero{
    min-height:700px;
    height:700px;
  }

  .lx-hero__content{
    padding-right:50px;
  }
}

/* Tablet */
@media (max-width:1199px){
  .lx-hero{
    grid-template-columns:minmax(0, 45%) minmax(0, 55%);
    min-height:600px;
    height:600px;
  }

  .lx-hero__content{
    padding:48px 30px 48px 40px;
  }

  .lx-hero__title{
    font-size:clamp(34px,4.5vw,48px);
  }

  .lx-hero__desc{
    font-size:14px;
  }
}

/* Mobile */
@media (max-width:767px){
  .lx-hero{
    display:flex;
    flex-direction:column;
    min-height:auto;
    height:auto;
    overflow:hidden;
  }

  .lx-hero__media{
    order:1;
    width:100%;
    height:390px;
    min-height:390px;
  }

  .lx-hero__media::before{
    display:block;
    width:100%;
    height:95px;
    inset:auto 0 0 0;
    background:linear-gradient(
      0deg,
      var(--luxora-cream) 0%,
      rgba(244,241,234,.72) 38%,
      rgba(244,241,234,0) 100%
    );
  }

  .lx-hero__content{
    order:2;
    width:100%;
    padding:34px 20px 42px;
    background:var(--luxora-cream);
  }

  .lx-hero__title{
    max-width:100%;
    font-size:clamp(34px,9vw,44px);
    line-height:1.08;
  }

  .lx-hero__desc{
    max-width:100%;
    font-size:14px;
    margin-bottom:26px;
  }

  .lx-hero__actions{
    width:100%;
    margin-bottom:30px;
  }

  .lx-hero__actions .lx-btn{
    flex:1 1 0;
    min-width:0;
  }

  .lx-hero__slider{
    max-width:100%;
  }
}

@media (max-width:420px){
  .lx-hero__media{
    height:330px;
    min-height:330px;
  }

  .lx-hero__actions{
    flex-direction:column;
    align-items:stretch;
  }

  .lx-hero__actions .lx-btn{
    width:100%;
    flex:none;
  }

  .lx-hero__slider{
    gap:10px;
  }
}

/* =====================================================
   BOMBAY HANDLOOM — PRODUCTS SECTION
===================================================== */

.bh-products-section{
    position:relative;
    padding:95px 0 100px;
    background:var(--luxora-cream);
    overflow:hidden;
}


/* ---------- HEADER ---------- */

.bh-products-head{
    display:grid;
    grid-template-columns:1.1fr .9fr;
    align-items:end;
    gap:60px;
    margin-bottom:48px;
}

.bh-products-title{
    font-size:clamp(36px,4vw,52px);
    line-height:1.1;
    letter-spacing:-.6px;
}

.bh-products-title span{
    color:var(--luxora-gold);
}

.bh-products-intro{
    max-width:440px;
    padding-bottom:4px;
}

.bh-products-intro p{
    color:var(--luxora-muted);
    font-size:14px;
    line-height:1.8;
    margin-bottom:18px;
}


/* ---------- GRID ---------- */

.bh-products-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:22px;
}


/* ---------- CARD ---------- */

.bh-product-card{
    background:var(--luxora-white);
    border:1px solid var(--luxora-border);
    border-radius:var(--r-card);
    overflow:hidden;
    transition:
        transform var(--dur) var(--ease),
        box-shadow var(--dur) var(--ease);
}

.bh-product-card:hover{
    transform:translateY(-7px);
    box-shadow:0 20px 45px rgba(20,17,10,.12);
}


/* ---------- IMAGE ---------- */

.bh-product-image{
    display:block;
    position:relative;
    height:320px;
    overflow:hidden;
    background:var(--luxora-beige);
}

.bh-product-image img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:
        transform .8s var(--ease),
        filter .5s var(--ease);
}

.bh-product-card:hover .bh-product-image img{
    transform:scale(1.07);
    filter:saturate(.96);
}


/* ---------- TAG ---------- */

.bh-product-tag{
    position:absolute;
    left:15px;
    top:15px;

    padding:6px 10px;

    background:rgba(250,249,246,.94);
    color:var(--luxora-text);

    border-radius:4px;

    font-size:9px;
    font-weight:700;
    letter-spacing:1px;
    text-transform:uppercase;

    box-shadow:0 3px 12px rgba(0,0,0,.1);
}


/* ---------- ARROW ---------- */

.bh-product-arrow{
    position:absolute;
    right:15px;
    bottom:15px;

    width:42px;
    height:42px;

    display:flex;
    align-items:center;
    justify-content:center;

    border-radius:50%;

    background:var(--luxora-gold);
    color:var(--luxora-near-black);

    opacity:0;
    transform:translateY(10px);

    transition:
        opacity var(--dur) var(--ease),
        transform var(--dur) var(--ease),
        background var(--dur) var(--ease);
}

.bh-product-arrow [data-lucide]{
    width:17px;
    height:17px;
}

.bh-product-card:hover .bh-product-arrow{
    opacity:1;
    transform:translateY(0);
}

.bh-product-arrow:hover{
    background:var(--luxora-gold-light);
}


/* ---------- INFO ---------- */

.bh-product-info{
    padding:21px 20px 23px;
    display:flex;
    justify-content:space-between;
    gap:15px;
}

.bh-product-number{
    display:block;

    font-size:10px;
    font-weight:700;
    letter-spacing:1.5px;

    color:var(--luxora-gold);

    margin-bottom:7px;
}

.bh-product-info h3{
    font-size:21px;
    line-height:1.2;
    margin-bottom:8px;
}

.bh-product-info p{
    color:var(--luxora-muted);
    font-size:12.5px;
    line-height:1.65;
    max-width:330px;
}


/* ---------- BOTTOM CTA ---------- */

.bh-products-bottom{
    display:flex;
    align-items:center;
    gap:24px;
    margin-top:48px;
}

.bh-products-line{
    flex:1;
    height:1px;
    background:var(--luxora-border);
}

.bh-products-bottom p{
    color:var(--luxora-muted);
    font-size:12px;
    letter-spacing:.3px;
    white-space:nowrap;
}

.bh-products-bottom .lx-btn{
    flex-shrink:0;
}


/* =====================================================
   TABLET
===================================================== */

@media(max-width:1199px){

    .bh-products-section{
        padding:75px 0 80px;
    }

    .bh-products-head{
        gap:40px;
    }

    .bh-products-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .bh-product-image{
        height:300px;
    }
}


/* =====================================================
   MOBILE
===================================================== */

@media(max-width:767px){

    .bh-products-section{
        padding:60px 0 65px;
    }

    .bh-products-head{
        grid-template-columns:1fr;
        gap:20px;
        margin-bottom:32px;
    }

    .bh-products-title{
        font-size:36px;
    }

    .bh-products-grid{
        grid-template-columns:1fr;
        gap:16px;
    }

    .bh-product-image{
        height:330px;
    }

    .bh-product-arrow{
        opacity:1;
        transform:none;
    }

    .bh-product-info{
        padding:18px;
    }

    .bh-products-bottom{
        flex-direction:column;
        align-items:stretch;
        gap:18px;
        margin-top:32px;
    }

    .bh-products-line{
        width:100%;
        flex:none;
    }

    .bh-products-bottom p{
        white-space:normal;
        text-align:center;
    }

    .bh-products-bottom .lx-btn{
        width:100%;
    }
}


/* =====================================================
   SMALL MOBILE
===================================================== */

@media(max-width:420px){

    .bh-products-title{
        font-size:31px;
    }

    .bh-product-image{
        height:280px;
    }

    .bh-product-info h3{
        font-size:19px;
    }
}



/* =====================================================
   BOMBAY HANDLOOM — CLEAN HEADER OVERRIDE
   Normal logo + Home / About / Products / Gallery / Contact
===================================================== */

.lx-header{
  height:82px;
  background:#111111;
  border-bottom:1px solid rgba(200,161,90,.18);
  box-shadow:none;
  z-index:9999;
}

.lx-header.is-scrolled{
  box-shadow:0 8px 28px rgba(0,0,0,.28);
}

.lx-header__inner{
  max-width:1280px;
  height:100%;
  padding:0 24px;
  gap:30px;
}

/* Logo */
.lx-logo.bh-logo{
  width:190px;
  height:82px;
  display:flex;
  align-items:center;
  flex-shrink:0;
  gap:0;
}

.bh-logo__img{
  width:172px;
  height:72px;
  display:block;
  object-fit:contain;
  object-position:left center;
}

/* Hide old text/mark if present */
.bh-logo .lx-logo__mark,
.bh-logo .lx-logo__text{
  display:none !important;
}

/* Main navigation */
.lx-nav.bh-nav{
  margin-left:auto;
}

.bh-nav .lx-nav__list{
  display:flex;
  align-items:center;
  gap:34px;
}

.bh-nav .lx-nav__link{
  position:relative;
  display:flex;
  align-items:center;
  gap:0;
  padding:8px 0;
  color:#e8e4dc;
  font-size:14px;
  font-weight:500;
  letter-spacing:.15px;
}

.bh-nav .lx-nav__link:hover,
.bh-nav .lx-nav__link.is-active{
  color:#c8a15a;
}

.bh-nav .lx-nav__link.is-active::after{
  content:"";
  position:absolute;
  left:0;
  right:0;
  bottom:0;
  height:2px;
  background:#c8a15a;
}

/* Products dropdown */
.bh-products-menu{
  position:relative;
}

.bh-products-menu .lx-nav__link{
  gap:5px;
}

.bh-products-menu .lx-nav__link [data-lucide]{
  display:block !important;
  width:13px;
  height:13px;
  transition:transform .3s ease;
}

.bh-product-dropdown{
  position:absolute;
  top:calc(100% + 4px);
  left:50%;
  transform:translate(-50%, 10px);
  min-width:245px;
  padding:9px;
  background:#171717;
  border:1px solid rgba(200,161,90,.28);
  border-radius:7px;
  box-shadow:0 20px 45px rgba(0,0,0,.38);
  opacity:0;
  visibility:hidden;
  pointer-events:none;
  transition:opacity .28s ease, transform .28s ease, visibility .28s ease;
}

.bh-product-dropdown::before{
  content:"";
  position:absolute;
  top:-6px;
  left:50%;
  width:11px;
  height:11px;
  background:#171717;
  border-left:1px solid rgba(200,161,90,.28);
  border-top:1px solid rgba(200,161,90,.28);
  transform:translateX(-50%) rotate(45deg);
}

.bh-product-dropdown a{
  display:flex;
  align-items:center;
  min-height:38px;
  padding:9px 12px;
  color:#d9d6cf;
  font-size:12.5px;
  border-radius:4px;
  transition:background .25s ease, color .25s ease, padding-left .25s ease;
}

.bh-product-dropdown a:hover{
  background:rgba(200,161,90,.11);
  color:#d8b875;
  padding-left:16px;
}

.bh-products-menu:hover .bh-product-dropdown,
.bh-products-menu:focus-within .bh-product-dropdown{
  opacity:1;
  visibility:visible;
  pointer-events:auto;
  transform:translate(-50%, 4px);
}

.bh-products-menu:hover .lx-nav__link [data-lucide],
.bh-products-menu:focus-within .lx-nav__link [data-lucide]{
  transform:rotate(180deg);
}

/* Header right-side CTA */
.lx-header__actions.bh-header-actions{
  display:flex;
  align-items:center;
  gap:0;
  margin-left:12px;
}

.bh-header-actions .bh-header-cta{
  margin-left:0;
  padding:11px 20px !important;
  background:#c8a15a;
  color:#111111;
  border-radius:5px;
  font-size:12px !important;
  font-weight:700;
  letter-spacing:.25px;
}

.bh-header-actions .bh-header-cta:hover{
  background:#d8b875;
  color:#111111;
}

/* Remove ecommerce/search controls from this header */
.bh-header-actions > .lx-icon-btn{
  display:none !important;
}

/* Mobile burger */
.bh-header-actions .lx-burger{
  display:none;
}

/* Tablet */
@media (max-width:1080px){
  .lx-header{
    height:76px;
  }

  .lx-header__inner{
    padding:0 20px;
  }

  .lx-logo.bh-logo{
    width:165px;
    height:76px;
  }

  .bh-logo__img{
    width:150px;
    height:64px;
  }

  .bh-nav .lx-nav__list{
    gap:23px;
  }

  .bh-nav .lx-nav__link{
    font-size:13px;
  }

  .bh-header-actions .bh-header-cta{
    padding:10px 16px !important;
  }
}

/* Mobile */
@media (max-width:767px){
  .lx-header{
    height:68px;
  }

  .lx-header__inner{
    height:68px;
    padding:0 16px;
  }

  .lx-logo.bh-logo{
    width:145px;
    height:68px;
  }

  .bh-logo__img{
    width:138px;
    height:58px;
  }

  .lx-nav.bh-nav{
    display:none !important;
  }

  .lx-header__actions.bh-header-actions{
    margin-left:auto;
  }

  .bh-header-actions .bh-header-cta{
    display:none;
  }

  .bh-header-actions .lx-burger{
    display:flex;
    width:40px;
    height:40px;
    margin-left:0;
  }

  .bh-header-actions .lx-burger span{
    width:21px;
    height:1.5px;
    background:#f7f4ed;
  }
}

/* Small phones */
@media (max-width:420px){
  .lx-logo.bh-logo{
    width:135px;
  }

  .bh-logo__img{
    width:130px;
  }

  .lx-header__inner{
    padding:0 13px;
  }
}

/* =====================================================
   BOMBAY HANDLOOM — MOBILE PRODUCTS DROPDOWN FIX
   Products dropdown works on phones/tablets inside drawer.
===================================================== */

.bh-mobile-drawer{
  overflow-y:auto;
  -webkit-overflow-scrolling:touch;
}

.bh-mobile-drawer__head{
  min-height:58px;
}

.bh-mobile-logo{
  display:flex;
  align-items:center;
  width:145px;
  height:55px;
}

.bh-mobile-logo img{
  width:135px;
  height:54px;
  object-fit:contain;
  object-position:left center;
}

.bh-drawer-close{
  color:#f4f1ea !important;
}

.bh-mobile-menu{
  gap:0 !important;
  margin-bottom:25px !important;
}

.bh-mobile-menu > li{
  width:100%;
  border-bottom:1px solid rgba(255,255,255,.08);
}

.bh-mobile-menu > li > a{
  border-bottom:0 !important;
  padding:15px 4px !important;
}

/* Products button */
.bh-mobile-products-toggle{
  width:100%;
  min-height:51px;
  padding:14px 4px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  background:transparent;
  border:0;
  color:#E7E4DC;
  font-family:var(--font-body);
  font-size:16px;
  font-weight:500;
  text-align:left;
}

.bh-mobile-products-toggle i,
.bh-mobile-products-toggle svg{
  width:17px;
  height:17px;
  color:var(--luxora-gold);
  flex-shrink:0;
  transition:transform .3s var(--ease);
}

.bh-mobile-products.is-open .bh-mobile-products-toggle{
  color:var(--luxora-gold);
}

.bh-mobile-products.is-open .bh-mobile-products-toggle svg{
  transform:rotate(180deg);
}

/* Hidden until Products is tapped */
.bh-mobile-products-list{
  display:grid;
  grid-template-rows:0fr;
  opacity:0;
  visibility:hidden;
  overflow:hidden;
  transition:grid-template-rows .35s var(--ease), opacity .25s ease, visibility .25s ease;
}

.bh-mobile-products-list::after{
  content:"";
  min-height:0;
}

.bh-mobile-products-list a{
  min-height:42px;
  display:flex;
  align-items:center;
  padding:10px 12px 10px 18px !important;
  margin:0;
  color:#aaa69d;
  font-size:13.5px;
  border:0 !important;
  background:rgba(255,255,255,.025);
  position:relative;
}

.bh-mobile-products-list a::before{
  content:"";
  width:4px;
  height:4px;
  border-radius:50%;
  background:var(--luxora-gold);
  margin-right:10px;
  flex-shrink:0;
}

.bh-mobile-products-list a:hover,
.bh-mobile-products-list a:active{
  color:var(--luxora-gold-light);
  background:rgba(200,161,90,.08);
}

.bh-mobile-products.is-open .bh-mobile-products-list{
  grid-template-rows:1fr;
  opacity:1;
  visibility:visible;
}

.bh-mobile-cta{
  width:100%;
  margin-top:auto;
  flex-shrink:0;
}

/* Make mobile drawer comfortably sized */
@media (max-width:767px){
  .bh-mobile-drawer{
    width:min(360px,88vw);
    padding:18px 20px 22px;
  }
}

@media (max-width:420px){
  .bh-mobile-drawer{
    width:90vw;
    padding-left:18px;
    padding-right:18px;
  }

  .bh-mobile-logo img{
    width:125px;
  }
}

/* Tablet uses the same mobile drawer once desktop nav disappears */
@media (min-width:768px) and (max-width:1080px){
  .bh-mobile-drawer{
    width:min(360px,84vw);
  }
}

/* =====================================================
   BOMBAY HANDLOOM — GALLERY
===================================================== */

.bh-gallery-section {
  padding: 110px 0;
  background: #f7f3ed;
  overflow: hidden;
}


/* ===============================
   HEADING
================================ */

.bh-gallery-heading {
  max-width: 720px;
  margin: 0 auto 58px;
  text-align: center;
}

.bh-gallery-heading > span {
  display: block;
  margin-bottom: 14px;

  font-family: "Inter", sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  color: #a17d43;
}

.bh-gallery-heading h2 {
  margin: 0;

  font-family: "Playfair Display", serif;
  font-size: clamp(40px, 5vw, 62px);
  font-weight: 500;
  line-height: 1.08;

  color: #171717;
}

.bh-gallery-heading h2 em {
  color: #a17d43;
  font-weight: 400;
}

.bh-gallery-divider {
  width: 70px;
  height: 1px;
  margin: 23px auto 20px;

  background: #b39562;

  position: relative;
}

.bh-gallery-divider::after {
  content: "";

  position: absolute;
  width: 22px;
  height: 3px;

  left: 50%;
  top: -1px;

  transform: translateX(-50%);

  background: #a17d43;
}

.bh-gallery-heading p {
  max-width: 580px;
  margin: 0 auto;

  font-family: "Inter", sans-serif;
  font-size: 14px;
  line-height: 1.8;

  color: #777;
}


/* ===============================
   GRID
================================ */

.bh-gallery-grid {
  display: grid;

  grid-template-columns:
    1.15fr
    .85fr
    .85fr;

  grid-auto-rows: 270px;

  gap: 16px;
}


/* ===============================
   ITEM
================================ */

.bh-gallery-item {
  position: relative;

  display: block;

  width: 100%;
  height: 100%;

  padding: 0;
  margin: 0;

  border: 0;
  outline: 0;

  overflow: hidden;

  cursor: zoom-in;

  background: #e7dfd4;

  border-radius: 3px;

  appearance: none;

  -webkit-appearance: none;
}

.bh-gallery-item img {
  display: block;

  width: 100%;
  height: 100%;

  object-fit: cover;

  transform: scale(1);

  transition:
    transform .8s cubic-bezier(.2,.65,.25,1),
    filter .5s ease;
}

.bh-gallery-item:hover img {
  transform: scale(1.06);
  filter: brightness(.94);
}


/* ===============================
   SPECIAL ITEMS
================================ */

.bh-gallery-item--large {
  grid-row: span 2;
}

.bh-gallery-item--wide {
  grid-column: span 2;
}


/* =====================================================
   LIGHTBOX
===================================================== */

.bh-lightbox {
  position: fixed;

  inset: 0;

  z-index: 999999;

  display: flex;

  align-items: center;
  justify-content: center;

  padding: 35px;

  background: rgba(8, 8, 8, .94);

  opacity: 0;
  visibility: hidden;

  pointer-events: none;

  transition:
    opacity .3s ease,
    visibility .3s ease;
}

.bh-lightbox.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}


/* ===============================
   IMAGE STAGE
================================ */

.bh-lightbox-stage {
  width: min(92vw, 1400px);
  height: min(88vh, 850px);

  display: flex;

  align-items: center;
  justify-content: center;

  overflow: hidden;

  position: relative;

  touch-action: pinch-zoom;
}

.bh-lightbox-stage img {
  display: block;

  max-width: 100%;
  max-height: 100%;

  width: auto;
  height: auto;

  object-fit: contain;

  user-select: none;
  -webkit-user-drag: none;

  cursor: zoom-in;

  transform-origin: center center;

  transition: transform .25s ease;
}

.bh-lightbox-stage img.is-zoomed {
  max-width: none;
  max-height: none;

  width: auto;
  height: auto;

  transform: scale(1.7);

  cursor: zoom-out;
}


/* ===============================
   CLOSE
================================ */

.bh-lightbox-close {
  position: fixed;

  top: 22px;
  right: 25px;

  width: 48px;
  height: 48px;

  border: 1px solid rgba(255,255,255,.35);
  border-radius: 50%;

  background: rgba(0,0,0,.3);

  color: #fff;

  font-size: 34px;
  font-weight: 200;

  line-height: 42px;

  cursor: pointer;

  z-index: 10;

  transition:
    background .25s ease,
    border-color .25s ease,
    transform .25s ease;
}

.bh-lightbox-close:hover {
  background: #a17d43;
  border-color: #a17d43;

  transform: rotate(90deg);
}


/* ===============================
   PREVIOUS / NEXT
================================ */

.bh-lightbox-prev,
.bh-lightbox-next {
  position: fixed;

  top: 50%;

  transform: translateY(-50%);

  width: 54px;
  height: 54px;

  border: 1px solid rgba(255,255,255,.3);
  border-radius: 50%;

  background: rgba(0,0,0,.35);

  color: #fff;

  font-size: 22px;

  cursor: pointer;

  z-index: 10;

  transition:
    background .25s ease,
    border-color .25s ease;
}

.bh-lightbox-prev {
  left: 25px;
}

.bh-lightbox-next {
  right: 25px;
}

.bh-lightbox-prev:hover,
.bh-lightbox-next:hover {
  background: #a17d43;
  border-color: #a17d43;
}


/* ===============================
   TABLET
================================ */

@media (max-width: 1199px) {

  .bh-gallery-section {
    padding: 85px 0;
  }

  .bh-gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 280px;
    gap: 14px;
  }
}


/* ===============================
   MOBILE
================================ */

@media (max-width: 767px) {

  .bh-gallery-section {
    padding: 65px 0;
  }

  .bh-gallery-heading {
    padding: 0 15px;
    margin-bottom: 38px;
  }

  .bh-gallery-heading h2 {
    font-size: 38px;
  }

  .bh-gallery-heading p {
    font-size: 13px;
  }

  .bh-gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 185px;
    gap: 10px;
  }

  .bh-gallery-item--large {
    grid-column: span 2;
    grid-row: span 2;
  }

  .bh-gallery-item--wide {
    grid-column: span 2;
  }


  /* LIGHTBOX MOBILE */

  .bh-lightbox {
    padding: 15px;
  }

  .bh-lightbox-stage {
    width: 100vw;
    height: 80vh;
  }

  .bh-lightbox-stage img {
    max-width: 94vw;
    max-height: 78vh;
  }

  .bh-lightbox-stage img.is-zoomed {
    transform: scale(1.45);
  }

  .bh-lightbox-close {
    top: 14px;
    right: 14px;

    width: 42px;
    height: 42px;

    font-size: 29px;
    line-height: 36px;
  }

  .bh-lightbox-prev,
  .bh-lightbox-next {
    width: 42px;
    height: 42px;

    font-size: 17px;
  }

  .bh-lightbox-prev {
    left: 10px;
  }

  .bh-lightbox-next {
    right: 10px;
  }
}


/* ===============================
   SMALL MOBILE
================================ */

@media (max-width: 480px) {

  .bh-gallery-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 260px;
  }

  .bh-gallery-item--large,
  .bh-gallery-item--wide {
    grid-column: auto;
    grid-row: auto;
  }

  .bh-gallery-heading h2 {
    font-size: 33px;
  }
}


/* =====================================================
   BOMBAY HANDLOOM — CONTACT US
===================================================== */

.bh-contact {
  padding: 100px 0;
  background: #f7f3ed;
}


/* ===============================
   HEADING
================================ */

.bh-contact-head {
  max-width: 700px;
  margin: 0 auto 60px;
  text-align: center;
}

.bh-contact-head > span {
  display: block;
  margin-bottom: 12px;

  font-family: "Inter", sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;

  color: #a17d43;
}

.bh-contact-head h2 {
  margin: 0;

  font-family: "Playfair Display", serif;
  font-size: clamp(38px, 5vw, 58px);
  font-weight: 500;
  line-height: 1.1;

  color: #171717;
}

.bh-contact-head h2 em {
  color: #a17d43;
  font-weight: 400;
}

.bh-contact-head p {
  max-width: 570px;
  margin: 18px auto 0;

  font-family: "Inter", sans-serif;
  font-size: 14px;
  line-height: 1.8;

  color: #777;
}


/* ===============================
   CONTENT
================================ */

.bh-contact-content {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;

  background: #fff;

  border: 1px solid #e5dfd5;
}


/* ===============================
   DETAILS
================================ */

.bh-contact-details {
  padding: 55px 50px;

  background: #151515;
  color: #fff;
}

.bh-contact-details h3,
.bh-contact-form h3 {
  margin: 0 0 35px;

  font-family: "Playfair Display", serif;
  font-size: 32px;
  font-weight: 500;
}

.bh-contact-details h3 {
  color: #fff;
}

.bh-contact-item {
  display: flex;
  align-items: flex-start;

  gap: 17px;

  padding: 20px 0;

  border-bottom: 1px solid rgba(255,255,255,.1);
}

.bh-contact-item:last-child {
  border-bottom: 0;
}

.bh-contact-icon {
  width: 40px;
  height: 40px;

  flex: 0 0 40px;

  display: flex;
  align-items: center;
  justify-content: center;

  border: 1px solid rgba(161,125,67,.55);

  color: #b99558;
}

.bh-contact-icon svg {
  width: 17px;
  height: 17px;
}

.bh-contact-item span {
  display: block;

  margin-bottom: 6px;

  font-family: "Inter", sans-serif;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 1.7px;

  color: #888;
}

.bh-contact-item p,
.bh-contact-item a {
  margin: 0;

  font-family: "Inter", sans-serif;
  font-size: 13px;
  line-height: 1.7;

  color: #ddd;

  text-decoration: none;
}

.bh-contact-item a:hover {
  color: #b99558;
}


/* ===============================
   FORM
================================ */

.bh-contact-form {
  padding: 55px 60px;
  background: #fff;
}

.bh-contact-form h3 {
  color: #171717;
}

.bh-input-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.bh-input {
  margin-bottom: 22px;
}

.bh-input label {
  display: block;

  margin-bottom: 8px;

  font-family: "Inter", sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1px;

  color: #555;

  text-transform: uppercase;
}

.bh-input input,
.bh-input textarea {
  width: 100%;
  box-sizing: border-box;

  padding: 14px 15px;

  border: 1px solid #ddd;
  border-radius: 0;

  outline: none;

  background: #faf9f7;

  font-family: "Inter", sans-serif;
  font-size: 13px;

  color: #222;

  transition: .25s ease;
}

.bh-input textarea {
  min-height: 120px;
  resize: vertical;
}

.bh-input input:focus,
.bh-input textarea:focus {
  border-color: #a17d43;
  background: #fff;
}

.bh-input input::placeholder,
.bh-input textarea::placeholder {
  color: #aaa;
}


/* ===============================
   BUTTON
================================ */

.bh-contact-form button {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  gap: 12px;

  padding: 15px 25px;

  border: 0;

  background: #151515;
  color: #fff;

  font-family: "Inter", sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;

  text-transform: uppercase;

  cursor: pointer;

  transition: .3s ease;
}

.bh-contact-form button svg {
  width: 16px;
  height: 16px;
}

.bh-contact-form button:hover {
  background: #a17d43;
}


/* ===============================
   TABLET
================================ */

@media (max-width: 991px) {

  .bh-contact {
    padding: 80px 0;
  }

  .bh-contact-content {
    grid-template-columns: 1fr;
  }

  .bh-contact-details {
    padding: 45px;
  }

  .bh-contact-form {
    padding: 45px;
  }
}


/* ===============================
   MOBILE
================================ */

@media (max-width: 600px) {

  .bh-contact {
    padding: 65px 0;
  }

  .bh-contact-head {
    padding: 0 15px;
    margin-bottom: 40px;
  }

  .bh-contact-head h2 {
    font-size: 36px;
  }

  .bh-contact-head p {
    font-size: 13px;
  }

  .bh-contact-details {
    padding: 35px 25px;
  }

  .bh-contact-details h3,
  .bh-contact-form h3 {
    font-size: 28px;
  }

  .bh-contact-form {
    padding: 35px 25px;
  }

  .bh-input-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .bh-contact-form button {
    width: 100%;
  }
}

/* =====================================================
   BOMBAY HANDLOOM — PROFESSIONAL FOOTER
===================================================== */

.bh-footer {
  background: #111111;
  color: #fff;
}


/* =====================================================
   MAIN FOOTER
===================================================== */

.bh-footer-main {
  padding: 75px 0 65px;
  border-bottom: 1px solid rgba(255,255,255,.10);
}

.bh-footer-grid {
  display: grid;

  grid-template-columns:
    1.5fr
    .8fr
    1fr
    1.2fr;

  gap: 60px;
}


/* =====================================================
   BRAND
===================================================== */

.bh-footer-brand {
  max-width: 350px;
}

.bh-footer-logo {
  display: inline-flex;
  align-items: center;

  margin-bottom: 22px;
}

.bh-footer-logo img {
  display: block;

  width: 180px;
  height: auto;

  max-height: 70px;

  object-fit: contain;
  object-position: left center;
}

.bh-footer-brand > p {
  margin: 0;

  font-family: "Inter", sans-serif;
  font-size: 13px;

  line-height: 1.9;

  color: rgba(255,255,255,.60);
}


/* =====================================================
   SOCIAL
===================================================== */

.bh-social-title {
  margin-top: 27px;
  margin-bottom: 13px;

  font-family: "Inter", sans-serif;

  font-size: 10px;
  font-weight: 700;

  letter-spacing: 1.8px;
  text-transform: uppercase;

  color: #b99558;
}

.bh-social-icons {
  display: flex;
  align-items: center;
  gap: 9px;
}

.bh-social-icons a {
  width: 37px;
  height: 37px;

  display: flex;
  align-items: center;
  justify-content: center;

  border: 1px solid rgba(255,255,255,.18);

  color: rgba(255,255,255,.75);

  text-decoration: none;

  transition:
    .3s ease;
}

.bh-social-icons a i {
  font-size: 14px;
}

.bh-social-icons a:hover {
  color: #fff;
  background: #a17d43;
  border-color: #a17d43;

  transform: translateY(-3px);
}


/* =====================================================
   FOOTER COLUMNS
===================================================== */

.bh-footer-column h4 {
  margin: 7px 0 25px;

  font-family: "Inter", sans-serif;

  font-size: 12px;
  font-weight: 700;

  letter-spacing: 1.4px;
  text-transform: uppercase;

  color: #fff;
}

.bh-footer-column ul {
  margin: 0;
  padding: 0;

  list-style: none;
}

.bh-footer-column li {
  margin-bottom: 13px;
}

.bh-footer-column li a {
  font-family: "Inter", sans-serif;

  font-size: 13px;

  color: rgba(255,255,255,.58);

  text-decoration: none;

  transition: .25s ease;
}

.bh-footer-column li a:hover {
  color: #b99558;

  padding-left: 4px;
}


/* =====================================================
   CONTACT
===================================================== */

.bh-footer-contact-item {
  display: flex;

  align-items: flex-start;

  gap: 14px;

  margin-bottom: 22px;
}

.bh-footer-contact-icon {
  width: 36px;
  height: 36px;

  flex: 0 0 36px;

  display: flex;
  align-items: center;
  justify-content: center;

  border: 1px solid rgba(185,149,88,.35);

  color: #b99558;
}

.bh-footer-contact-icon i {
  font-size: 13px;
}

.bh-footer-contact-item span {
  display: block;

  margin-bottom: 4px;

  font-family: "Inter", sans-serif;

  font-size: 9px;
  font-weight: 700;

  letter-spacing: 1.5px;
  text-transform: uppercase;

  color: #777;
}

.bh-footer-contact-item a,
.bh-footer-contact-item p {
  margin: 0;

  font-family: "Inter", sans-serif;

  font-size: 13px;

  line-height: 1.7;

  color: rgba(255,255,255,.68);

  text-decoration: none;
}

.bh-footer-contact-item a:hover {
  color: #b99558;
}


/* =====================================================
   BOTTOM
===================================================== */

.bh-footer-bottom {
  padding: 20px 0;
}

.bh-footer-bottom-inner {
  display: flex;

  align-items: center;
  justify-content: space-between;

  gap: 20px;
}

.bh-footer-bottom p {
  margin: 0;

  font-family: "Inter", sans-serif;

  font-size: 11px;

  color: rgba(255,255,255,.42);
}

.bh-footer-bottom p strong {
  color: rgba(255,255,255,.65);
}

.bh-footer-bottom-links {
  display: flex;
  gap: 25px;
}

.bh-footer-bottom-links a {
  font-family: "Inter", sans-serif;

  font-size: 11px;

  color: rgba(255,255,255,.42);

  text-decoration: none;

  transition: color .25s ease;
}

.bh-footer-bottom-links a:hover {
  color: #b99558;
}


/* =====================================================
   TABLET
===================================================== */

@media (max-width: 1000px) {

  .bh-footer-grid {
    grid-template-columns: 1.3fr 1fr 1fr;

    gap: 45px;
  }

  .bh-footer-brand {
    grid-column: span 3;
    max-width: 600px;
  }

}


/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 650px) {

  .bh-footer-main {
    padding: 55px 0 45px;
  }

  .bh-footer-grid {
    grid-template-columns: 1fr;

    gap: 35px;
  }

  .bh-footer-brand {
    grid-column: auto;
    max-width: 100%;
  }

  .bh-footer-logo img {
    width: 165px;
  }

  .bh-footer-column h4 {
    margin-bottom: 18px;
  }

  .bh-footer-column li {
    margin-bottom: 10px;
  }

  .bh-footer-contact-item {
    margin-bottom: 18px;
  }

  .bh-footer-bottom-inner {
    flex-direction: column;

    align-items: flex-start;

    gap: 12px;
  }

  .bh-footer-bottom-links {
    gap: 18px;
  }

}

.product-gallery {
  width: 100%;
  padding: 60px 20px;
  background: #fff;
}

.gallery-container {
  max-width: 1400px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.gallery-item {
  width: 100%;
  height: 280px;
  overflow: hidden;
  border-radius: 10px;
  background: #f5f5f5;
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-item:hover img {
  transform: scale(1.12);
}

/* Tablet */
@media (max-width: 992px) {
  .gallery-container {
    grid-template-columns: repeat(3, 1fr);
  }

  .gallery-item {
    height: 240px;
  }
}

/* Mobile */
@media (max-width: 600px) {
  .product-gallery {
    padding: 40px 15px;
  }

  .gallery-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .gallery-item {
    height: 180px;
  }
}

/* =========================================
   VIDEO GALLERY SECTION
========================================= */

.video-gallery-section {
  width: 100%;
  padding: 70px 20px;
  background: #ffffff;
}

/* =========================================
   HEADING
========================================= */

.video-section-heading {
  text-align: center;
  max-width: 750px;
  margin: 0 auto 40px;
}

.video-section-heading span {
  display: inline-block;
  margin-bottom: 10px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.video-section-heading h2 {
  margin: 0 0 12px;
  font-size: 38px;
  line-height: 1.2;
  font-weight: 700;
}

.video-section-heading p {
  margin: 0 auto;
  max-width: 650px;
  font-size: 16px;
  line-height: 1.6;
}

/* =========================================
   VIDEO GRID
========================================= */

.video-grid {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;

  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

/* =========================================
   VIDEO CARD
========================================= */

.video-card {
  width: 100%;
  aspect-ratio: 1 / 1;

  overflow: hidden;
  border-radius: 12px;
  background: #f5f5f5;
}

.video-card video {
  width: 100%;
  height: 100%;

  display: block;

  object-fit: cover;

  transition: transform 0.5s ease;
}

/* Zoom Effect */

.video-card:hover video {
  transform: scale(1.06);
}

/* =========================================
   TABLET
   3 COLUMNS
========================================= */

@media (max-width: 1024px) {

  .video-gallery-section {
    padding: 55px 18px;
  }

  .video-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }

  .video-section-heading h2 {
    font-size: 34px;
  }

}

/* =========================================
   MOBILE
   1 COLUMN
========================================= */

@media (max-width: 600px) {

  .video-gallery-section {
    padding: 40px 15px;
  }

  .video-section-heading {
    margin-bottom: 25px;
  }

  .video-section-heading span {
    font-size: 11px;
    letter-spacing: 1.5px;
  }

  .video-section-heading h2 {
    font-size: 28px;
    margin-bottom: 8px;
  }

  .video-section-heading p {
    font-size: 14px;
    line-height: 1.5;
  }

  .video-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .video-card {
    border-radius: 10px;
  }

}

/* =========================================
   SMALL PHONE
========================================= */

@media (max-width: 380px) {

  .video-gallery-section {
    padding: 35px 12px;
  }

  .video-section-heading h2 {
    font-size: 25px;
  }

  .video-card {
    border-radius: 8px;
  }

}