/* ============================================================
   HAMEED STUDIO — Design tokens
   Change the values in :root to re-theme the whole site.
   ============================================================ */
:root{
  --navy-dark:#0e1a3f;
  --navy:#16244f;
  --navy-soft:#1d2c5c;
  --gold:#b9873c;
  --gold-light:#d9a95e;
  --cream:#faf7f2;
  --white:#ffffff;
  --text:#1b2233;
  --muted:#6b7280;
  --border:#e7e5df;
  --success:#1f9d55;
  --danger:#d64545;
  --radius-sm:8px;  
  --radius:14px;
  --radius-lg:22px;
  --shadow-sm:0 2px 8px rgba(16,26,63,.06);
  --shadow:0 8px 28px rgba(16,26,63,.10);
  --shadow-lg:0 18px 45px rgba(16,26,63,.16);
  --maxw:1240px;
  --font-display:'Fraunces', 'Georgia', serif;
  --font-body:'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

*,*::before,*::after{box-sizing:border-box;}
html{scroll-behavior:smooth;}
body{
  margin:0;
  font-family:var(--font-body);
  color:var(--text);
  background:var(--cream);
  -webkit-font-smoothing:antialiased;
}
img{max-width:100%;display:block;}
a{color:inherit;text-decoration:none;}
/* Remove underlines everywhere — overrides Bootstrap or inline link styles */
a, a * , u, .underline{ 
  text-decoration: none !important;
  box-shadow: none !important;
}
button{font-family:inherit;cursor:pointer;}
ul{list-style:none;margin:0;padding:0;}
h1,h2,h3,h4{font-family:var(--font-display);margin:0;line-height:1.15;}
:focus-visible{outline:2px solid var(--gold);outline-offset:2px;}

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

/* ---------- Utility strip (trust badges) ---------- */
.trust-strip{
  background:var(--navy);
  color:#fff;
}
.trust-strip .container{
  display:flex;
  align-items:center;
  justify-content:space-evenly;
  flex-wrap:wrap;
  gap:20px;
  padding-top:14px;
  padding-bottom:14px;
}
.trust-item{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  white-space:nowrap;
  font-size:.82rem;
  flex:1 1 auto;
}
.trust-item svg{flex:none;width:20px;height:20px;stroke:var(--gold-light);}
.trust-item b{display:block;font-size:.86rem;font-weight:600;}
.trust-item span{color:#b9c0d8;font-size:.76rem;}

/* Backwards compatibility for new trust-strip markup (container-fluid) */
.container-fluid.text-white.py-2{
  background:var(--navy);
  color:#fff;
}
.container-fluid.text-white.py-2 .container{
  display:flex;
  align-items:center;
  justify-content:space-evenly;
  flex-wrap:wrap;
  gap:20px; 
  padding-top:8px;
  padding-bottom:8px;
}
.container-fluid.text-white.py-2 .col-4{display:flex;align-items:center;justify-content:center;gap:10px;white-space:nowrap;}
.container-fluid.text-white.py-2 i{color:var(--gold-light);}



.site-header{
  background:#fff;
  border-bottom:1px solid var(--border);
  position:sticky;
  top:0;
  z-index:50;
}
.site-header .container{
  display:flex;
  align-items:center;
  justify-content:space-between;
  height:78px;
}
.logo{
  font-family:var(--font-display);
  font-weight:600;
  font-size:1.5rem;
  color:var(--gold);
  letter-spacing:.3px;
  text-decoration: none;
}
.logo span{color:var(--navy);}
.main-nav{
  display:flex;
  align-items:center;
  gap:34px;
}
.main-nav a{
  font-size:.94rem;
  font-weight:500;
  color:var(--text);
  position:relative;
  padding:4px 0;
}
.main-nav a.active,.main-nav a:hover{color:var(--gold);}
.header-icons{
  display:flex;
  align-items:center;
  gap:20px;
}
.icon-btn{
  position:relative;
  width:38px;height:38px;
  display:flex;align-items:center;justify-content:center;
  border-radius:50%;
  border:1px solid var(--border);
  background:#fff;
  color:var(--navy);
}
.icon-btn:hover{background:var(--cream);}
.icon-btn svg{width:18px;height:18px;}
.cart-count{
  position:absolute;
  top:-6px;right:-6px;
  background:var(--gold);
  color:#fff;
  font-size:.65rem;
  font-weight:700;
  min-width:18px;height:18px;
  border-radius:50%;
  display:flex;align-items:center;justify-content:center;
  padding:0 3px;
}
.hamburger{
  display:none;
  width:38px;height:38px;
  border:none;background:none;
  align-items:center;justify-content:center;
}
.hamburger svg{width:24px;height:24px;}

.mobile-nav{
  display:none;
  flex-direction:column;
  background:#fff;
  border-bottom:1px solid var(--border);
  padding:8px 24px 18px;
}
.mobile-nav.open{display:flex;}
.mobile-nav a{
  padding:12px 0;
  border-bottom:1px solid var(--border);
  font-weight:500;
}
.mobile-nav a.active,
.mobile-nav a:hover{color:var(--gold);}
.mobile-nav a:last-child{border-bottom:none;}
/* =====================================
   HERO — REBUILT
   Rectangle 16:9 slider at every screen size (mobile included).
   6 slides, swipe/drag + arrow buttons + dots, no crossfade hacks —
   real transform-based track (see the script at the bottom of
   index.html for the swipe/drag/dots logic).
   To change images: swap the <img src> on each .hero-slide in
   index.html. Keep photos roughly 16:9 (e.g. 1600x900) so
   object-fit:cover doesn't crop faces/text awkwardly.
===================================== */

.hero{
  padding:16px 0 32px;
  background:none;
}

.hero .container{
  display:flex;
  flex-direction:column;
  gap:18px;
}

/* ---- Slider shell: fixed rectangle, never distorts ---- */
.hero-slider{
  position:relative;
  width:100%;
  aspect-ratio:16 / 9;
  border-radius:18px;
  overflow:hidden;
  background:#0f172a;
  box-shadow:var(--shadow);
  touch-action:pan-y;
  -webkit-user-select:none;
  user-select:none;
  margin-bottom:18px;
}

.hero-slider-track{
  display:flex;
  width:100%;
  height:100%;
  transition:transform .4s cubic-bezier(.22,.61,.36,1);
  will-change:transform;
}

.hero-slide{
  flex:0 0 100%;
  width:100%;
  height:100%;
}

.hero-slide img{
  width:100%;
  height:100%;
  object-fit:cover;
  object-position:center;
  pointer-events:none;
  -webkit-user-drag:none;
}

.hero-slider-btn{
  position:absolute;
  top:50%;
  transform:translateY(-50%);
  z-index:3;
  width:36px;
  height:36px;
  border:none;
  border-radius:50%;
  background:rgba(255,255,255,.85);
  color:var(--navy);
  display:flex;
  align-items:center;
  justify-content:center;
  box-shadow:0 6px 16px rgba(0,0,0,.2);
  cursor:pointer;
}
.hero-slider-btn.prev{left:10px;}
.hero-slider-btn.next{right:10px;}
.hero-slider-btn svg{width:18px;height:18px;}

.hero-dots{
  position:absolute;
  left:0;
  right:0;
  bottom:10px;
  z-index:3;
  display:flex;
  justify-content:center;
  gap:6px;
}
.hero-dot{
  width:7px;
  height:7px;
  padding:0;
  border:none;
  border-radius:50%;
  background:rgba(255,255,255,.55);
  cursor:pointer;
  transition:background .2s ease, width .2s ease;
}
.hero-dot.active{
  width:20px;
  border-radius:4px;
  background:#fff;
}

/* ---- Content panel ---- */
.hero-content{
  width:100%;
  background:var(--navy);
  color:#fff;
  border-radius:18px;
  padding:26px 22px;
  text-align:left;
  box-sizing:border-box;
}

.hero-eyebrow{
  display:block;
  color:var(--gold-light);
  font-size:13px;
  font-weight:700;
  letter-spacing:1px;
  margin-bottom:8px;
}

.hero h1{
  font-size:1.55rem;
  line-height:1.2;
  margin:0 0 10px;
  color:#fff;
}
.hero h1 em{
  color:var(--gold-light);
  font-style:normal;
}

.hero p{
  font-size:15px;
  line-height:1.7;
  color:#d9ddea;
  margin:0 0 20px;
  max-width:100%;
}

.hero .btn{
  width:100%;
  height:50px;
  display:flex;
  align-items:center;
  justify-content:center;
  background-color:var(--gold);
  color:#fff;
}

/* ---- Desktop / tablet: slider gets bigger, content sits below it ---- */
@media (min-width:769px){
  .hero{padding:24px 0 0;}
  .hero .container{position:relative;display:block;}

  .hero-slider{
    border-radius:28px;
    box-shadow:0 16px 40px rgba(0,0,0,.16);
  }
  .hero-slider-btn{width:46px;height:46px;}
  .hero-slider-btn.prev{left:20px;}
  .hero-slider-btn.next{right:20px;}
  .hero-slider-btn svg{width:20px;height:20px;}
  .hero-dots{bottom:18px;gap:8px;}
  .hero-dot{width:8px;height:8px;}
  .hero-dot.active{width:24px;}

  .hero-content{
    margin-top:24px;
    width:100%;
    background:linear-gradient(135deg, rgba(22,36,79,.96), rgba(22,36,79,.84));
    border-radius:24px;
    padding:28px 32px;
    box-shadow:0 12px 30px rgba(16,26,63,.25);
  }

  .hero h1{font-size:2.6rem;margin-bottom:14px;}
  .hero p{font-size:1.08rem;line-height:1.8;margin-bottom:24px;max-width:520px;}
  .hero .btn{width:auto;padding:15px 34px;height:auto;}
}

@media (min-width:1100px){
  .hero h1{font-size:3.1rem;}
}

/* Reusable hero-sized button used outside the hero section */
.btn-hero{
  padding:15px 34px;
  color: white;
  font-size:1rem;
  border-radius:6px;
}
/* ---------- Buttons ---------- */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  padding:13px 26px;
  border-radius:var(--radius-sm);
  border:1px solid transparent;
  font-weight:600;
  font-size:.92rem;
  text-decoration: none;
  transition:transform .15s ease, background .15s ease;
}
.btn-primary{background:var(--navy);color:#fff;}
.btn-primary:hover{background:var(--navy-soft);}
.btn-gold{background:var(--gold);color:#fff;}
.btn-gold:hover{background:var(--gold-light);}
.btn-outline{background:#fff;color:var(--navy);border-color:var(--border);}
.btn-outline:hover{border-color:var(--navy);}
.btn-block{width:100%;}
.btn svg{width:17px;height:17px;}
.btn:active{transform:scale(.98);}
.btn:disabled{opacity:.5;cursor:not-allowed;}

/* ---------- Category chips ---------- */
.chip-row{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin:28px 0;
  align-items:flex-start;
}
.chip-row.filter-row{
  margin:18px 0 30px;
  overflow-x:auto;
  padding-bottom:4px;
  -webkit-overflow-scrolling:touch;
  flex-wrap:nowrap;
}
.chip-row.filter-row::-webkit-scrollbar{
  height:6px;
}
.chip-row.filter-row::-webkit-scrollbar-thumb{
  background:rgba(0,0,0,.15);
  border-radius:999px;
}
.chip{
  background:#fff;
  border:1px solid var(--border);
  border-radius:999px;
  padding:10px 16px;
  display:flex;
  align-items:center;
  gap:8px;
  min-width:auto;
  height:42px;
  transition:box-shadow .15s ease, transform .15s ease, border-color .15s ease;
  white-space:nowrap;
}
.chip:hover{
  box-shadow:var(--shadow-sm);
  transform:translateY(-1px);
}
.chip.active{
  background:var(--navy);
  color:#fff;
  border-color:var(--navy);
}
.chip.active svg{color:#fff;}
.chip svg{width:18px;height:18px;color:var(--navy);}
.chip b{font-size:.92rem;}
.chip span{font-size:.78rem;color:var(--gold);font-weight:600;}

/* ---------- Section heading ---------- */
.section{padding:48px 0;}
.section-head{
  text-align:center;
  margin-bottom:34px;
}
.eyebrow{
  color:var(--gold);
  font-weight:700;
  letter-spacing:1.5px;
  font-size:.78rem;
  text-transform:uppercase;
}
.section-head h2{
  font-size:clamp(1.5rem,3vw,2.1rem);
  margin-top:6px;
}
.divider-heart{
  color:var(--gold);
  margin-top:10px;
}

/* ---------- Product grid & card ---------- */
.product-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:22px;
}
.product-card{
  background:#fff;
  border:1px solid var(--border);
  border-radius:var(--radius);
  overflow:hidden;
  display:flex;
  flex-direction:column;
  position:relative;
  transition:box-shadow .15s ease, transform .15s ease;
}
.product-card:hover{box-shadow:var(--shadow);transform:translateY(-3px);}
.product-thumb{
  position:relative;
  width:100%;
  aspect-ratio:1/1;
  overflow:hidden;
  background:var(--cream);
}
.product-thumb img{
  width:100%;height:100%;
  object-fit:contain;
  background:#fff;
  transition:transform .3s ease;
}

/* Make product cards square on homepage product grids */
.product-grid.square-cards .product-thumb{
  aspect-ratio:1/1;
}
.product-card:hover .product-thumb img{transform:scale(1.05);}
.badge{
  position:absolute;
  top:10px;left:10px;
  background:var(--gold);
  color:#fff;
  font-size:.68rem;
  font-weight:700;
  padding:4px 9px;
  border-radius:999px;
  z-index:2;
}
.product-info{
  padding:16px 16px 18px;
  display:flex;
  flex-direction:column;
  gap:6px;
  flex:1;
}
.product-info h3{font-size:1rem;font-weight:600;}
.product-info .desc{font-size:.8rem;color:var(--muted);}
.price-row{
  display:flex;
  align-items:baseline;
  gap:8px;
  margin:4px 0 10px;
}
.price{font-weight:700;color:var(--navy);font-size:1.05rem;}
.price-strike{color:var(--muted);text-decoration:line-through;font-size:.85rem;}
.add-cart-btn{
  margin-top:auto;
  background:var(--navy);
  color:#fff;
  border:none;
  border-radius:var(--radius-sm);
  padding:10px;
  font-weight:600;
  font-size:.86rem;
  display:flex;align-items:center;justify-content:center;gap:6px;
}
.add-cart-btn:hover{background:var(--navy-soft);}
.add-cart-btn svg{width:16px;height:16px;}

.view-all-wrap{
  text-align:center;
  margin-top:48px;
  margin-bottom:48px;
  padding:40px 20px;
  background:linear-gradient(135deg, #16244f08 0%, #b9873c08 100%);
  border-radius:var(--radius-lg);
  border:1px solid var(--border);
}

.view-all-wrap .btn{
  font-size:1rem;
  font-weight:600;
  display:inline-flex;
  align-items:center;
  gap:8px;
  transition:all 0.3s ease;
}

.view-all-wrap .btn:hover{
  transform:translateX(4px);
}

/* ---------- Feature footer strip ---------- */
.feature-strip{
  background:#fff;
  border:1px solid var(--border);
  border-radius:var(--radius-lg);
  padding:30px;
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:20px;
  margin:44px 0;
}
.feature-item{display:flex;gap:12px;align-items:flex-start;}
.feature-item svg{width:24px;height:24px;color:var(--gold);flex:none;}
.feature-item b{display:block;font-size:.9rem;}
.feature-item span{font-size:.78rem;color:var(--muted);}

/* ---------- Newsletter ---------- */
.newsletter{
  background:var(--navy);
  border-radius:var(--radius-lg);
  padding:36px;
  text-align:center;
  color:#fff;
  margin-bottom:44px;
}
.newsletter h3{font-size:1.3rem;margin-bottom:8px;}
.newsletter p{color:#c4cae0;margin-bottom:18px;font-size:.9rem;}
.newsletter-form{
  display:flex;
  max-width:420px;
  margin:0 auto;
  gap:10px;
}
.newsletter-form input{
  flex:1;
  padding:12px 16px;
  border-radius:var(--radius-sm);
  border:1px solid rgba(255,255,255,.25);
  background:rgba(255,255,255,.08);
  color:#fff;
}
.newsletter-form input::placeholder{color:#a9b0c8;}

/* ---------- Footer ---------- */
.site-footer{
  background:var(--navy-dark);
  color:#c4cae0;
  padding:44px 0 22px;
}
.footer-grid{
  display:grid;
  grid-template-columns:2fr 1fr 1fr 1fr;
  gap:30px;
  margin-bottom:30px;
}
.footer-grid h4{color:#fff;font-size:.95rem;margin-bottom:14px;font-family:var(--font-body);}
.footer-grid li{margin-bottom:9px;font-size:.85rem;}
.footer-grid p{font-size:.85rem;line-height:1.6;}
.social-row{display:flex;gap:10px;margin-top:14px;}
.social-row a{
  width:34px;height:34px;
  border-radius:50%;
  border:1px solid rgba(255,255,255,.2);
  display:flex;align-items:center;justify-content:center;
}
.social-row svg{width:15px;height:15px;}

/* ---------- Footer: Stores ---------- */
.footer-stores{
  border-top:1px solid rgba(255,255,255,.12);
  padding-top:26px;
  margin-bottom:26px;
}
.footer-stores h4{
  color:#fff;
  font-size:.95rem;
  margin-bottom:16px;
  font-family:var(--font-body);
}
.store-grid{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:14px;
}
.store-item{
  display:flex;
  align-items:center;
  gap:10px;
  background:rgba(255,255,255,.04);
  border:1px solid rgba(255,255,255,.1);
  border-radius:var(--radius-sm);
  padding:13px 16px;
  transition:background .15s ease, border-color .15s ease;
}
.store-item:hover{
  background:rgba(255,255,255,.08);
  border-color:var(--gold-light);
}
.store-item i.bi-geo-alt-fill{
  color:var(--gold-light);
  font-size:1.05rem;
  flex:none;
}
.store-name{
  font-size:.86rem;
  font-weight:600;
  color:#fff;
  flex:1;
}
.store-view{
  display:flex;
  align-items:center;
  gap:4px;
  font-size:.75rem;
  color:#b9c0d8;
  white-space:nowrap;
}
.store-view i{font-size:.8rem;}

.footer-bottom{
  border-top:1px solid rgba(255,255,255,.12);
  padding-top:18px;
  text-align:center;
  font-size:.78rem;
  color:#8b92ac;
}

/* ---------- Breadcrumb ---------- */
.breadcrumb{
  font-size:.85rem;
  color:var(--muted);
  padding:18px 0 0;
}
.breadcrumb a:hover{color:var(--gold);}
.breadcrumb .sep{margin:0 6px;}
.breadcrumb .current{color:var(--navy);font-weight:600;}

.page-title-row{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:16px 0 8px;
  flex-wrap:wrap;
  gap:12px;
}
.page-title-row h1{font-size:clamp(1.6rem,3vw,2.2rem);}

/* ---------- All products page ---------- */
.products-layout{
  padding:26px 0 60px;
}
.category-tabs{
  display:flex;
  align-items:center;
  justify-content:center;
  flex-wrap:wrap;
  gap:12px;
  margin-bottom:26px;
}
.cat-tab{
  background:#fff;
  border:1.5px solid var(--border);
  color:var(--navy);
  padding:11px 22px;
  border-radius:999px;
  font-weight:600;
  font-size:.9rem;
  transition:background .15s ease, color .15s ease, border-color .15s ease;
}
.cat-tab:hover{border-color:var(--navy);}
.cat-tab.active{background:var(--navy);border-color:var(--navy);color:#fff;}
.results-bar{
  display:flex;
  justify-content:space-between;
  align-items:center;
  margin-bottom:18px;
  flex-wrap:wrap;
  gap:10px;
}
.results-bar select{
  border:1px solid var(--border);
  border-radius:var(--radius-sm);
  padding:8px 12px;
  font-size:.85rem;
  background:#fff;
}

/* ---------- Product detail ---------- */
.pd-layout{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:50px;
  padding:22px 0 60px;
  align-items:flex-start;
}
.pd-gallery{
  display:grid;
  grid-template-columns:72px minmax(220px, 1fr);
  gap:12px;
  align-items:start;
}
.pd-thumbs{
  display:flex;
  flex-direction:column;
  gap:10px;
}
.pd-thumb{
  aspect-ratio:1/1;
  border-radius:var(--radius-sm);
  overflow:hidden;
  border:2px solid transparent;
  cursor:pointer;
  background:var(--cream);
}
.pd-thumb img{width:100%;height:100%;object-fit:cover;}
.pd-thumb.active{border-color:var(--gold);}
.pd-main-image{
  position:relative;
  border-radius:var(--radius);
  overflow:hidden;
  background:var(--cream);
  aspect-ratio:1/1;
  max-width:560px;
  width:100%;
}
.pd-main-image img{width:100%;height:100%;object-fit:cover;}
.pd-nav-arrow{
  position:absolute;
  top:50%;transform:translateY(-50%);
  width:38px;height:38px;
  border-radius:50%;
  background:#fff;
  border:1px solid var(--border);
  display:flex;align-items:center;justify-content:center;
}
.pd-nav-arrow.prev{left:12px;}
.pd-nav-arrow.next{right:12px;}
.pd-nav-arrow svg{width:16px;height:16px;}
.pd-zoom{
  position:absolute;
  bottom:12px;right:12px;
  width:36px;height:36px;
  border-radius:50%;
  background:#fff;
  border:1px solid var(--border);
  display:flex;align-items:center;justify-content:center;
}
.pd-zoom svg{width:16px;height:16px;}

.pd-info .badge{position:static;display:inline-block;margin-bottom:12px;}
.pd-info h1{font-size:clamp(1.5rem,3vw,2rem);margin-bottom:8px;}
.pd-rating{
  display:flex;
  align-items:center;
  gap:8px;
  color:var(--gold);
  font-size:.85rem;
  margin-bottom:14px;
}
.pd-rating .stars{letter-spacing:2px;}
.pd-rating span{color:var(--muted);}
.pd-price-row{
  display:flex;
  align-items:baseline;
  gap:12px;
  margin-bottom:16px;
}
.pd-price-row .price{font-size:1.7rem;}
.pd-desc{color:var(--muted);font-size:.92rem;line-height:1.6;margin-bottom:18px;}
.pd-specs{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:10px;
  margin-bottom:22px;
}
.pd-spec{
  display:flex;
  align-items:center;
  gap:8px;
  font-size:.82rem;
  color:var(--text);
}
.pd-spec svg{width:17px;height:17px;color:var(--gold);flex:none;}

.option-group{margin-bottom:22px;}
.option-group h4{font-size:.92rem;margin-bottom:10px;font-family:var(--font-body);font-weight:600;}
.swatches{display:flex;gap:10px;flex-wrap:wrap;}
.swatch{
  width:60px;
  border-radius:var(--radius-sm);
  overflow:hidden;
  border:2px solid var(--border);
  cursor:pointer;
  aspect-ratio:16/9;
  background:var(--cream);
  position:relative;
}
.swatch img{width:100%;height:100%;object-fit:cover;}
.swatch.selected{border-color:var(--gold);box-shadow:0 0 0 1px var(--gold);}
.color-dot{
  width:34px;height:34px;
  border-radius:50%;
  border:2px solid var(--border);
  cursor:pointer;
  position:relative;
}
.color-dot.selected{border-color:var(--gold);box-shadow:0 0 0 2px #fff, 0 0 0 4px var(--gold);}
.size-pill{
  padding:9px 18px;
  border-radius:999px;
  border:1.5px solid var(--border);
  font-size:.85rem;
  font-weight:600;
  background:#fff;
}
.size-pill.selected{border-color:var(--navy);background:var(--navy);color:#fff;}
.size-row{display:flex;gap:10px;flex-wrap:wrap;}
.option-selected-label{font-weight:400;color:var(--muted);font-size:.85rem;}

.qty-row{
  display:flex;
  align-items:center;
  gap:16px;
  margin-bottom:22px;
}
.qty-control{
  display:flex;
  align-items:center;
  border:1px solid var(--border);
  border-radius:var(--radius-sm);
  overflow:hidden;
}
.qty-control button{
  width:38px;height:40px;
  background:#fff;
  border:none;
  font-size:1.1rem;
}
.qty-control button:hover{background:var(--cream);}
.qty-control input{
  width:44px;
  text-align:center;
  border:none;
  border-left:1px solid var(--border);
  border-right:1px solid var(--border);
  height:40px;
  font-weight:600;
}
.stock-ok{color:var(--success);font-size:.85rem;font-weight:600;display:flex;align-items:center;gap:6px;}
.stock-ok svg{width:16px;height:16px;}

.pd-actions{display:flex;gap:12px;margin-bottom:24px;}
.pd-actions .btn{flex:1;}

/* ---------- Cart page ---------- */
.cart-layout{
  display:grid;
  grid-template-columns:1fr 360px;
  gap:26px;
  padding:26px 0 60px;
  align-items:flex-start;
}
.cart-items{
  background:#fff;
  border:1px solid var(--border);
  border-radius:var(--radius);
  overflow:hidden;
}
.cart-row{
  display:grid;
  grid-template-columns:110px 1fr auto auto;
  gap:18px;
  align-items:center;
  padding:20px;
  border-bottom:1px solid var(--border);
}
.cart-row:last-child{border-bottom:none;}
.cart-thumb{
  width:110px;
  aspect-ratio:16/9;
  border-radius:var(--radius-sm);
  overflow:hidden;
  background:var(--cream);
}
.cart-thumb img{width:100%;height:100%;object-fit:cover;}
.cart-thumb-fallback{
  width:100%;height:100%;
  display:flex;align-items:center;justify-content:center;
  background:var(--cream);
  color:var(--border);
}
.cart-thumb-fallback svg{width:32px;height:32px;}
.cart-item-info h3{font-size:1rem;margin-bottom:4px;}
.cart-item-info .variant-tags{color:var(--muted);font-size:.78rem;margin-bottom:6px;}
.cart-item-info .price{font-size:1.02rem;}
.cart-qty-col{display:flex;flex-direction:column;align-items:center;gap:10px;}
.remove-btn{
  width:38px;height:38px;
  border-radius:var(--radius-sm);
  border:1px solid var(--border);
  background:#fff;
  display:flex;align-items:center;justify-content:center;
}
.remove-btn:hover{border-color:var(--danger);color:var(--danger);}
.remove-btn svg{width:16px;height:16px;}

.promo-row{
  background:#fff;
  border:1px solid var(--border);
  border-radius:var(--radius);
  padding:18px 20px;
  display:flex;
  align-items:center;
  gap:14px;
  margin-top:20px;
  flex-wrap:wrap;
}
.promo-row svg{width:20px;height:20px;color:var(--gold);}
.promo-row input{
  flex:1;
  min-width:160px;
  padding:11px 14px;
  border:1px solid var(--border);
  border-radius:var(--radius-sm);
}

.order-summary{
  background:#fff;
  border:1px solid var(--border);
  border-radius:var(--radius);
  padding:24px;
}
.order-summary h3{font-size:1.2rem;margin-bottom:18px;}
.summary-line{
  display:flex;
  justify-content:space-between;
  font-size:.9rem;
  margin-bottom:12px;
  color:var(--text);
}
.summary-line.discount{color:var(--success);}
.summary-total{
  display:flex;
  justify-content:space-between;
  align-items:baseline;
  border-top:1px solid var(--border);
  margin-top:14px;
  padding-top:16px;
  font-family:var(--font-display);
  font-size:1.3rem;
  font-weight:600;
}
.summary-note{font-size:.75rem;color:var(--muted);margin-top:4px;margin-bottom:18px;}
.order-summary .btn{margin-bottom:10px;}
.trust-mini{
  background:#fff;
  border:1px solid var(--border);
  border-radius:var(--radius);
  padding:18px 20px;
  margin-top:18px;
}
.trust-mini .feature-item{margin-bottom:16px;}
.trust-mini .feature-item:last-child{margin-bottom:0;}

.empty-cart{
  text-align:center;
  padding:70px 20px;
  background:#fff;
  border:1px solid var(--border);
  border-radius:var(--radius);
}
.empty-cart svg{width:56px;height:56px;color:var(--border);margin-bottom:16px;}
.empty-cart h3{margin-bottom:8px;}
.empty-cart p{color:var(--muted);margin-bottom:20px;}

/* Toast */
.toast{
  position:fixed;
  bottom:24px;
  left:50%;
  transform:translateX(-50%) translateY(20px);
  background:var(--navy);
  color:#fff;
  padding:13px 22px;
  border-radius:999px;
  font-size:.86rem;
  font-weight:600;
  display:flex;
  align-items:center;
  gap:8px;
  opacity:0;
  pointer-events:none;
  transition:all .25s ease;
  z-index:200;
  box-shadow:var(--shadow-lg);
}
.toast.show{opacity:1;transform:translateX(-50%) translateY(0);}
.toast svg{width:16px;height:16px;color:var(--gold-light);}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width:1024px){
  .product-grid{grid-template-columns:repeat(3,1fr);}
  .chip-row{grid-template-columns:repeat(4,1fr);}
  .feature-strip{grid-template-columns:repeat(2,1fr);}
  .pd-layout{grid-template-columns:1fr;gap:30px;}
  .cart-layout{grid-template-columns:1fr;}
  .store-grid{grid-template-columns:repeat(2, 1fr);}
}

@media (max-width:840px){
  .main-nav{display:none;}
  .hamburger{display:flex;}
}

@media (max-width:768px){
  .container{padding:0 16px;}
  .trust-strip .container{gap:26px;}
  .trust-item span{display:none;}
  .chip-row{grid-template-columns:repeat(2,1fr);gap:12px;margin:24px 0;}
  .product-grid{grid-template-columns:repeat(2,1fr);gap:14px;}
  .feature-strip{grid-template-columns:1fr;padding:22px;gap:18px;}
  .footer-grid{grid-template-columns:1fr 1fr;}
  .newsletter-form{flex-direction:column;}
  .pd-gallery{grid-template-columns:1fr;}
  .pd-thumbs{flex-direction:row;overflow-x:auto;}
  .pd-thumb{min-width:76px;}
  .cart-row{grid-template-columns:80px 1fr;grid-template-areas:"thumb info" "thumb qty";}
  .cart-thumb{grid-area:thumb;width:80px;}
  .cart-item-info{grid-area:info;}
  .cart-qty-col{grid-area:qty;flex-direction:row;justify-content:space-between;}
  .site-header .container{height:64px;}
  .logo{font-size:1.25rem;}
}

@media (max-width:520px){
  .footer-grid{grid-template-columns:1fr;text-align:left;}
  .store-grid{grid-template-columns:1fr;}
  .section{padding:34px 0;}
  .pd-actions{flex-direction:column;}
  .category-tabs{
    flex-wrap:nowrap;
    overflow-x:auto;
    justify-content:flex-start;
    padding-bottom:4px;
    -webkit-overflow-scrolling:touch;
  }
  .cat-tab{flex:none;white-space:nowrap;}
}

/* ========== CHECKOUT MODAL ========== */
.modal-overlay{
  position:fixed;
  inset:0;
  background:rgba(0,0,0,.5);
  display:flex;
  align-items:center;
  justify-content:center;
  z-index:1000;
  padding:20px;
  backdrop-filter:blur(3px);
}

.modal-content{
  background:#fff;
  border-radius:var(--radius-lg);
  max-width:500px;
  width:100%;
  max-height:90vh;
  overflow-y:auto;
  box-shadow:var(--shadow-lg);
}

.modal-header{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:24px 28px;
  border-bottom:1px solid var(--border);
  position:sticky;
  top:0;
  background:#fff;
}

.modal-header h2{
  font-size:1.4rem;
  margin:0;
  color:var(--navy);
}

.modal-close{
  background:none;
  border:none;
  font-size:2rem;
  color:var(--muted);
  width:32px;
  height:32px;
  display:flex;
  align-items:center;
  justify-content:center;
  cursor:pointer;
  transition:color .15s ease;
}

.modal-close:hover{
  color:var(--navy);
}

#checkout-form{
  padding:28px;
}

.form-group{
  margin-bottom:20px;
}

.form-group label{
  display:block;
  font-weight:600;
  font-size:.9rem;
  margin-bottom:8px;
  color:var(--navy);
}

.form-group input,
.form-group textarea{
  width:100%;
  padding:12px 14px;
  border:1px solid var(--border);
  border-radius:var(--radius-sm);
  font-family:inherit;
  font-size:.9rem;
  transition:border-color .15s ease;
  color:var(--text);
}

.form-group input:focus,
.form-group textarea:focus{
  outline:none;
  border-color:var(--gold);
  box-shadow:0 0 0 3px rgba(185,135,60,.1);
}

.form-group textarea{
  resize:vertical;
  min-height:80px;
}

.form-actions{
  display:flex;
  gap:12px;
  margin-top:28px;
  border-top:1px solid var(--border);
  padding-top:20px;
}

.form-actions .btn{
  flex:1;
  justify-content:center;
}
@media (max-width:768px){

.container-fluid.text-white.py-2 .col-4{
    padding:0 2px;
    gap:5px;
}

.container-fluid.text-white.py-2 .fw-bold{
    font-size:.62rem !important;
    white-space:nowrap;
}

.container-fluid.text-white.py-2 i{
    font-size:1rem !important;
}

}
@media (max-width:520px){
  .modal-content{
    max-width:100%;
    border-radius:var(--radius);
  }
  .modal-header{
    padding:20px 18px;
  }
  .modal-header h2{
    font-size:1.2rem;
  }
  #checkout-form{
    padding:20px;
  }
  .form-actions{
    flex-direction:column-reverse;
  }
}
/* ============================================================
   PACKAGES PAGE — Photography & Videography pricing cards
   ============================================================ */
.pkg-hero{
  background:var(--navy);
  color:#fff;
  border-radius:var(--radius-lg);
  padding:40px 30px;
  text-align:center;
  margin:24px 0 8px;
}
.pkg-hero .eyebrow{color:var(--gold-light);}
.pkg-hero h1{color:#fff;font-size:clamp(1.6rem,3.4vw,2.3rem);margin:8px 0 10px;}
.pkg-hero p{color:#c4cae0;max-width:620px;margin:0 auto;font-size:.95rem;line-height:1.7;}

.pkg-tabs{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  justify-content:center;
  margin:30px 0 8px;
}
.pkg-tab{
  background:#fff;
  border:1px solid var(--border);
  border-radius:999px;
  padding:11px 18px;
  font-size:.86rem;
  font-weight:600;
  color:var(--text);
  transition:box-shadow .15s ease, transform .15s ease, border-color .15s ease, background .15s ease, color .15s ease;
}
.pkg-tab:hover{box-shadow:var(--shadow-sm);transform:translateY(-1px);}
.pkg-tab.active{background:var(--navy);border-color:var(--navy);color:#fff;}

.pkg-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:22px;
  padding:30px 0 10px;
}
.pkg-card{
  background:#fff;
  border:1px solid var(--border);
  border-radius:var(--radius);
  padding:26px 24px 24px;
  display:flex;
  flex-direction:column;
  position:relative;
  transition:box-shadow .15s ease, transform .15s ease;
}
.pkg-card:hover{box-shadow:var(--shadow);transform:translateY(-3px);}
.pkg-card.highlight{
  border-color:var(--gold);
  box-shadow:0 10px 30px rgba(185,135,60,.16);
}
.pkg-ribbon{
  position:absolute;
  top:-12px;
  left:24px;
  background:var(--gold);
  color:#fff;
  font-size:.68rem;
  font-weight:700;
  letter-spacing:.4px;
  text-transform:uppercase;
  padding:5px 12px;
  border-radius:999px;
}
.pkg-duration{
  color:var(--gold);
  font-size:.76rem;
  font-weight:700;
  letter-spacing:.4px;
  text-transform:uppercase;
  margin-bottom:6px;
}
.pkg-card h3{font-size:1.15rem;margin-bottom:14px;line-height:1.3;}
.pkg-price{
  font-family:var(--font-display);
  font-size:2rem;
  font-weight:700;
  color:var(--navy);
  margin-bottom:18px;
}
.pkg-price span{font-size:.85rem;color:var(--muted);font-weight:500;font-family:var(--font-body);}
.pkg-features{
  display:flex;
  flex-direction:column;
  gap:10px;
  margin-bottom:22px;
  flex:1;
}
.pkg-features li{
  display:flex;
  align-items:flex-start;
  gap:9px;
  font-size:.86rem;
  line-height:1.5;
  color:var(--text);
}
.pkg-features svg{width:17px;height:17px;flex:none;margin-top:2px;color:var(--success);}
.pkg-card-actions{display:flex;gap:10px;margin-top:auto;}
.pkg-card-actions .btn{flex:1;}
.pkg-card h3{transition:color .15s ease;}
.pkg-card h3:hover{color:var(--gold);}

.pkg-addons{
  background:#fff;
  border:1px solid var(--border);
  border-radius:var(--radius-lg);
  padding:30px;
  margin:34px 0 50px;
}
.pkg-addons h3{font-size:1.2rem;margin-bottom:18px;}
.pkg-addons ul{display:flex;flex-direction:column;gap:0;}
.pkg-addons li{
  display:flex;
  justify-content:space-between;
  gap:14px;
  padding:13px 0;
  border-bottom:1px solid var(--border);
  font-size:.9rem;
}
.pkg-addons li:last-child{border-bottom:none;}
.pkg-addons li b{color:var(--navy);white-space:nowrap;}

.pkg-note{
  text-align:center;
  color:var(--muted);
  font-size:.82rem;
  margin-bottom:40px;
}

@media (max-width:1024px){
  .pkg-grid{grid-template-columns:repeat(2,1fr);}
}
@media (max-width:768px){
  .pkg-grid{grid-template-columns:1fr;gap:16px;}
  .pkg-hero{padding:30px 20px;}
  .pkg-addons{padding:22px;}
  .pkg-addons li{flex-direction:column;gap:2px;}
}

/* ---------- Packages page: selection "cart" + WhatsApp checkout ---------- */
.pkg-order-section{
  background:#fff;
  border:1px solid var(--border);
  border-radius:var(--radius-lg);
  padding:30px;
  margin:0 0 24px;
}
.pkg-order-head h3{font-size:1.2rem;margin-bottom:6px;}
.pkg-order-head p{font-size:.85rem;color:var(--muted);margin-bottom:20px;}
.pkg-selection-empty{
  text-align:center;
  color:var(--muted);
  font-size:.88rem;
  padding:30px 10px;
  border:1px dashed var(--border);
  border-radius:var(--radius-sm);
}
.pkg-selection-list{display:flex;flex-direction:column;}
.pkg-selected-row{
  display:grid;
  grid-template-columns:1fr auto auto auto;
  align-items:center;
  gap:16px;
  padding:16px 0;
  border-bottom:1px solid var(--border);
}
.pkg-selected-row:last-child{border-bottom:none;}
.pkg-selected-info{display:flex;flex-direction:column;gap:2px;}
.pkg-selected-info b{font-size:.92rem;color:var(--navy);}
.pkg-selected-info span{font-size:.76rem;color:var(--muted);}
.pkg-qty-col{display:flex;align-items:center;gap:10px;}
.pkg-qty-btn{
  width:28px;height:28px;
  border-radius:50%;
  border:1px solid var(--border);
  background:#fff;
  display:flex;align-items:center;justify-content:center;
  font-weight:700;
  color:var(--navy);
  padding:0;
}
.pkg-qty-btn:hover{border-color:var(--navy);}
.pkg-qty-col span{min-width:16px;text-align:center;font-weight:600;}
.pkg-selected-price{font-weight:700;color:var(--navy);white-space:nowrap;}
.pkg-remove-btn{
  width:30px;height:30px;
  border-radius:50%;
  border:1px solid var(--border);
  background:#fff;
  color:var(--muted);
  font-size:1.1rem;
  line-height:1;
  display:flex;align-items:center;justify-content:center;
  padding:0;
}
.pkg-remove-btn:hover{border-color:var(--danger);color:var(--danger);}
.pkg-order-total-row{
  display:flex;
  justify-content:space-between;
  align-items:baseline;
  border-top:1px solid var(--border);
  margin-top:6px;
  padding-top:18px;
  font-family:var(--font-display);
  font-size:1.25rem;
  font-weight:600;
  margin-bottom:20px;
}
.btn-whatsapp{background:#25D366;color:#fff;}
.btn-whatsapp:hover{background:#1ebe5b;}
.btn-whatsapp svg{width:19px;height:19px;}
.btn.disabled{opacity:.5;pointer-events:none;}
.pkg-order-note{
  text-align:center;
  font-size:.78rem;
  color:var(--muted);
  margin-top:14px;
}
.pkg-add-btn{
  background:var(--navy);
  color:#fff;
  border:none;
  border-radius:999px;
  padding:6px 14px;
  font-size:.76rem;
  font-weight:600;
}
.pkg-add-btn:hover{background:var(--navy-soft);}
.pkg-addon-right{display:flex;align-items:center;gap:12px;}

.pkg-floating{
  position:fixed;
  right:20px;
  bottom:20px;
  background:var(--navy);
  color:#fff;
  padding:13px 20px;
  border-radius:999px;
  font-size:.85rem;
  font-weight:600;
  box-shadow:var(--shadow-lg);
  z-index:150;
  cursor:pointer;
  align-items:center;
  gap:8px;
}
.pkg-floating:hover{background:var(--navy-soft);}
.pkg-floating svg{width:18px;height:18px;flex:none;}

@media (max-width:768px){
  .pkg-order-section{padding:20px;}
  .pkg-selected-row{
    grid-template-columns:1fr auto;
    grid-template-areas:"info remove" "qty price";
    row-gap:10px;
  }
  .pkg-selected-info{grid-area:info;}
  .pkg-remove-btn{grid-area:remove;justify-self:end;}
  .pkg-qty-col{grid-area:qty;}
  .pkg-selected-price{grid-area:price;justify-self:end;}
  .pkg-floating{right:12px;bottom:12px;padding:11px 16px;font-size:.78rem;}
}

/* ---------- Package Detail page ---------- */
.pkg-detail-layout{
  display:grid;
  grid-template-columns:1fr 340px;
  gap:30px;
  padding:26px 0 10px;
  align-items:flex-start;
}
.pkg-detail-main{
  background:#fff;
  border:1px solid var(--border);
  border-radius:var(--radius-lg);
  padding:32px;
}
.pkg-detail-badge{
  display:inline-block;
  color:var(--gold);
  font-size:.78rem;
  font-weight:700;
  letter-spacing:.4px;
  text-transform:uppercase;
  margin-bottom:10px;
}
.pkg-detail-main h1{font-size:clamp(1.5rem,2.6vw,2rem);margin-bottom:14px;}
.pkg-detail-desc{color:var(--muted);font-size:.92rem;line-height:1.7;margin-bottom:26px;}
.pkg-detail-main h4{font-size:1rem;margin-bottom:14px;}
.pkg-detail-side{
  background:#fff;
  border:1px solid var(--border);
  border-radius:var(--radius-lg);
  padding:26px;
  position:sticky;
  top:96px;
}
.pkg-detail-price{
  font-family:var(--font-display);
  font-size:2rem;
  font-weight:700;
  color:var(--navy);
  margin-bottom:16px;
}
.pkg-detail-price span{font-size:.82rem;color:var(--muted);font-weight:500;font-family:var(--font-body);}
.pkg-detail-side .btn{margin-bottom:10px;}
.pkg-detail-note{font-size:.8rem;color:var(--muted);margin:16px 0 18px;line-height:1.6;}
.pkg-detail-note a{color:var(--gold);font-weight:600;}

@media (max-width:1024px){
  .pkg-detail-layout{grid-template-columns:1fr;}
  .pkg-detail-side{position:static;}
}
@media (max-width:768px){
  .pkg-detail-main,.pkg-detail-side{padding:22px;}
}

/* hide slider navigation dots */
.hero-dots, .gallery-slider-dots { display: none !important; }
