/* R&K flowers - upgraded styles (brand, gallery, checkout UI) */
:root{
  --bg:#fbfbfc;
  --surface:#ffffff;
  --text:#111827;
  --muted:#6b7280;
  --line:rgba(17,24,39,.12);

  --brand:#d9467a;       /* pink */
  --brand2:#2f7d63;      /* green */
  --accent:#f7e37a;      /* soft yellow highlight */
  --shadow: 0 10px 26px rgba(17,24,39,.08);

  --radius:16px;
}

html,body{ height:100%; }
body{
  margin:0;
  background:var(--bg);
  color:var(--text);
  font-family: "Manrope", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  line-height:1.6;
}

h1,h2,h3{
  font-family:"Playfair Display", Georgia, serif;
  letter-spacing:-.02em;
}

/* =========================
   LOGO SIZING (SLIGHTLY BIGGER)
   ========================= */

.site-logo{
  height:65px;          /* slightly bigger than before */
  width:auto;
  display:block;
  object-fit:contain;
}

/* Mobile */
@media(max-width:520px){
  .site-logo{
    height:48px;        /* proportional on small screens */
  }
}

/* Footer logo */
.footer-logo{
  height:56px;          /* keeps footer elegant, not overpowering */
  width:auto;
  display:block;
  object-fit:contain;
}

/* Bag icon sizing */
.bag-icon{
  width:20px;
  height:20px;
  object-fit:contain;
  display:block;
}

/* Feedback bouquet sizing */
.review-bouquet{
  width:100%;
  height:260px;
  object-fit:cover;
  border-radius:14px;
  display:block;
}
@media(max-width:820px){
  .review-bouquet{ height:220px; }
}

*{ box-sizing:border-box; }
html,body{ margin:0; padding:0; font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji","Segoe UI Emoji"; color:var(--text); background:linear-gradient(180deg,var(--bg),#ffffff); }
a{ color:inherit; text-decoration:none; }
.container{ width:min(1100px, 92vw); margin:0 auto; }

header{
  position:static; top:0; z-index:20;
  background:rgba(255,255,255,0.82);
  backdrop-filter: blur(10px);
  border-bottom:1px solid var(--line);
}

.nav{
  display:flex; align-items:center; justify-content:space-between;
  padding:14px 0;
  gap:16px;
}
.brand{
  display:flex; align-items:center; gap:10px;
  font-weight:900; letter-spacing:0.2px;
}
.logoWrap{
  width:44px; height:44px;
  border-radius:14px;
  background: linear-gradient(135deg, rgba(217,70,122,0.14), rgba(124,58,237,0.10));
  border:1px solid var(--line);
  box-shadow: var(--shadow);
  display:grid; place-items:center;
}
.logoWrap svg{ width:28px; height:28px; }
.badge{
  font-size:12px; padding:4px 8px; border-radius:999px;
  background:#fff0f7; border:1px solid var(--line); color:var(--brand);
}

.navlinks{ display:flex; gap:12px; align-items:center; flex-wrap:wrap; }
.navlinks a{ padding:8px 10px; border-radius:10px; }
.navlinks a:hover{ background:#fff0f7; }

.hero{ padding:48px 0 18px; }
.hero-grid{
  display:grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap:18px;
  align-items:stretch;
}
@media (max-width: 860px){ .hero-grid{ grid-template-columns:1fr; } }

.hero-card{
  background:linear-gradient(135deg, #ffffff, #fff0f7);
  border:1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding:26px;
  position:relative;
  overflow:hidden;
}
.hero-card:before{
  content:"";
  position:absolute;
  width:300px; height:300px;
  right:-140px; top:-150px;
  background: radial-gradient(circle at 35% 35%, rgba(217,70,122,0.26), rgba(124,58,237,0.14), transparent 60%);
  border-radius:50%;
}
.kicker{ color:var(--brand); font-weight:800; letter-spacing:0.3px; }
.h1{ font-size:42px; line-height:1.05; margin:10px 0 12px; font-weight:950; }
@media(max-width:520px){ .h1{ font-size:34px; } }
.lead{ color:var(--muted); font-size:16px; line-height:1.65; margin:0 0 18px; max-width:60ch; }

.cta-row{ display:flex; gap:10px; flex-wrap:wrap; margin-top:16px; }
.btn{
  border:1px solid var(--line);
  background:#fff;
  border-radius:12px;
  padding:10px 14px;
  font-weight:800;
  cursor:pointer;
  display:inline-flex;
  align-items:center;
  gap:8px;
}
.btn:hover{ transform: translateY(-1px); transition:0.15s; }
.btn-primary{
  background:linear-gradient(90deg, var(--brand), var(--brand2));
  border:none;
  color:white;
}
.btn-accent{
  background: linear-gradient(90deg, var(--accent), #49a987);
  border:none;
  color:white;
}
.btn-ghost{ background:#fff; }
.btn:disabled{ opacity:.55; cursor:not-allowed; transform:none; }

.side-card{
  background: var(--surface);
  border:1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding:20px;
}
.side-card h3{ margin:0 0 6px; }
.side-card p{ margin:0 0 10px; color:var(--muted); line-height:1.6; }

.small-list{ list-style:none; padding:0; margin:0; display:grid; gap:10px; }
.small-list li{
  display:flex; align-items:flex-start; gap:10px;
  padding:10px; border-radius:14px; background:#fff7fb; border:1px solid var(--line);
}
.icon{
  width:34px; height:34px; border-radius:12px;
  display:grid; place-items:center;
  background:linear-gradient(135deg, rgba(217,70,122,0.15), rgba(124,58,237,0.12));
  border:1px solid var(--line);
}

.section{ padding:18px 0 44px; }
.section h2{ margin:0 0 12px; font-size:22px; }

.grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:14px;
}
@media(max-width:900px){ .grid{ grid-template-columns: repeat(2, 1fr);} }
@media(max-width:560px){ .grid{ grid-template-columns: 1fr;} }

.card{
  background: var(--surface);
  border:1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow:hidden;
}
.card .img{
  height:140px;
  background: radial-gradient(circle at 30% 30%, #ffffff, #ffe0ec 35%, #ff8ab7 78%);
  border-bottom:1px solid var(--line);
  display:flex;
  align-items:flex-end;
  justify-content:flex-start;
  padding:14px;
  position:relative;
}
.card .img:after{
  content:"";
  position:absolute; inset:0;
  background: radial-gradient(circle at 70% 20%, rgba(124,58,237,0.14), transparent 55%);
}
.tag{
  position:relative; z-index:1;
  display:inline-flex; align-items:center; gap:6px;
  padding:6px 10px;
  background:rgba(255,255,255,0.92);
  border:1px solid var(--line);
  border-radius:999px;
  font-weight:900;
  font-size:12px;
}
.card .body{ padding:14px; }
.title-row{ display:flex; justify-content:space-between; gap:10px; align-items:flex-start; }
.card h3{ margin:0; font-size:16px; }
.price{ font-weight:950; color:var(--brand); }
.desc{ margin:8px 0 12px; color:var(--muted); line-height:1.55; font-size:14px; }
.card .actions{ display:flex; gap:10px; flex-wrap:wrap; align-items:center; }

.notice{
  padding:12px 14px;
  background:#fff0f7;
  border:1px solid var(--line);
  border-radius:14px;
  color:#9a1848;
  line-height:1.5;
}

footer{
  border-top:1px solid var(--line);
  padding:22px 0 34px;
  background:#fff;
}
.footer-grid{
  display:flex; justify-content:space-between; gap:20px; flex-wrap:wrap;
  align-items:flex-start;
}
.footer-grid p{ margin:6px 0 0; color:var(--muted); }
.foot-links{ display:flex; gap:12px; flex-wrap:wrap; margin-top:8px; }
.foot-links a{ padding:6px 10px; border-radius:10px; }
.foot-links a:hover{ background:#fff0f7; }

.form{
  display:grid; gap:10px;
  max-width:720px;
}
input, textarea, select{
  width:100%;
  border:1px solid var(--line);
  border-radius:12px;
  padding:10px 12px;
  font-size:15px;
  outline:none;
}
textarea{ min-height:120px; resize:vertical; }
label{ font-weight:900; font-size:13px; }
.row-2{ display:grid; grid-template-columns:1fr 1fr; gap:10px; }
@media(max-width:640px){ .row-2{ grid-template-columns:1fr; } }

.cartbar{
  position:fixed;
  right:16px;
  bottom:16px;
  z-index:50;
  display:flex;
  gap:10px;
  align-items:center;
}
.cartchip{
  background:#fff;
  border:1px solid var(--line);
  border-radius:999px;
  padding:10px 12px;
  box-shadow: var(--shadow);
  display:flex; gap:10px; align-items:center; flex-wrap:wrap;
}
.cartchip strong{ color:var(--brand); }

/* Gallery */
/* =========================
   NEWSROOM (Apple-style)
   Replace your entire NEWSROOM block with this
   ========================= */

.newsroom{
  padding: 34px 0 60px;
}

.newsroom-eyebrow{
  text-align:left;
  font-size:13px;
  font-weight:700;
  color: var(--muted);
  margin:0 0 6px;
}

.newsroom-title{
  text-align:left;              /* Apple style is left, not centered */
  font-size:32px;
  font-weight:950;
  margin:0 0 24px;
}

/* Grid */
.news-grid{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:20px;
}

/* Base card */
.news-card{
  background:#fff;
  border-radius:20px;
  overflow:hidden;
  box-shadow: var(--shadow);
  border:1px solid var(--line);
  display:flex;
  flex-direction:column;
}

/* Image wrapper */
.news-image{
  position:relative;
  overflow:hidden;
}

/* Default card image */
.news-image img{
  width:100%;
  height:260px;
  object-fit:cover;
  display:block;
}

/* Content */
.news-content{
  padding:18px;
}

.news-tag{
  display:inline-block;
  font-size:12px;
  font-weight:900;
  letter-spacing:.04em;
  color: var(--muted);
  margin-bottom:6px;
  text-transform:uppercase;
}

.news-content h3{
  margin:0 0 10px;
  font-size:20px;
  font-weight:950;
  line-height:1.25;
}

.news-content p{
  margin:0 0 12px;
  color: var(--muted);
  line-height:1.6;
  font-size:14px;
}

.news-content time{
  font-size:13px;
  color: var(--muted);
  display:inline-flex;
  gap:8px;
  align-items:center;
}

/* Optional: small clock dot like the reference */
.news-content time::before{
  content:"";
  width:8px;
  height:8px;
  border-radius:999px;
  border:2px solid rgba(17,24,39,.35);
  display:inline-block;
  opacity:.65;
}

/* =========================
   FEATURED CARD (top frame)
   Matches the photo layout: image left, text right
   ========================= */

.news-card--featured{
  grid-column: 1 / -1;
  display:grid;
  grid-template-columns: 58% 42%;
  min-height:360px;           /* makes it feel like the screenshot */
}

/* Featured image MUST fill the entire left area */
.news-card--featured .news-image{
  height:100%;
}

.news-card--featured .news-image img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}

/* Right panel content centered vertically like the photo */
.news-card--featured .news-content{
  display:flex;
  flex-direction:column;
  justify-content:center;
  padding:28px;
  border-left:1px solid var(--line); /* subtle divider like reference */
}

.news-card--featured .news-content h3{
  font-size:28px;
  line-height:1.2;
  margin:8px 0 14px;
}

/* =========================
   Responsive
   ========================= */

@media(max-width:900px){
  .news-grid{
    grid-template-columns:1fr;
  }

  .news-card--featured{
    grid-template-columns:1fr;
    min-height:auto;
  }

  .news-card--featured .news-image{
    height:260px;  /* stacked featured image height */
  }

  .news-card--featured .news-content{
    border-left:none;
    border-top:1px solid var(--line);
  }
}

.gallery-grid{
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap:12px;
}
@media(max-width:900px){ .gallery-grid{ grid-template-columns: repeat(2, 1fr);} }
@media(max-width:520px){ .gallery-grid{ grid-template-columns: 1fr;} }
.gallery-item{
  border:1px solid var(--line);
  border-radius:16px;
  overflow:hidden;
  background:#fff;
  box-shadow: var(--shadow);
}
.gallery-thumb{
  height:160px;
  background: radial-gradient(circle at 30% 30%, #ffffff, #ffe0ec 35%, #ff8ab7 78%);
  display:flex; align-items:flex-end; padding:12px;
  position:relative;
}
.gallery-thumb:after{
  content:"";
  position:absolute; inset:0;
  background: radial-gradient(circle at 70% 25%, rgba(47,125,99,0.18), transparent 55%);
}
.gallery-caption{
  position:relative; z-index:1;
  font-weight:900;
  font-size:13px;
  background:rgba(255,255,255,0.9);
  border:1px solid var(--line);
  padding:6px 10px;
  border-radius:999px;
}
.gallery-body{ padding:12px; }

/* About page layout (FloraQueen-style sections) */
/* ABOUT PAGE – FLAT BRAND BANNER (matches screenshot) */
.about-banner-image{
  position: relative;
  padding: 60px 0;
  background: #fde8e8; /* soft blush pink */
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}

/* Watermark logo on the left */
.about-banner-image::before{
  content:"";
  position:absolute;
  left: 6%;
  top: 50%;
  transform: translateY(-50%);
  width: 140px;
  height: 140px;
  background-image: url("images/brand-watermark-circle.png"); /* your circular logo */
  background-size: contain;
  background-repeat: no-repeat;
  opacity: 0.22;
}

/* Content wrapper */
.about-banner-inner{
  position: relative;
  z-index: 2;
  display:flex;
  align-items:center;
  justify-content:center; /* push text to the right */
  min-height:140px;
}

/* Title styling */
.about-banner-title{
  margin:0;
  font-size: clamp(26px, 3vw, 36px);
  font-weight: 700;
  letter-spacing: 1px;
  text-align:right;
  color:#111;
}

/* Mobile refinement */
@media(max-width:720px){
  .about-banner-inner{
    justify-content:center;
  }

  .about-banner-title{
    text-align:center;
  }

  .about-banner-image::before{
    left:50%;
    top:18px;
    transform:translateX(-50%);
    width:100px;
    height:100px;
    opacity:0.18;
  }
}
@media(max-width:560px){
  .about-banner-title{ font-size:32px; }
}
.about-watermark{
  position:absolute;
  left:22px;
  top:50%;
  transform: translateY(-50%);
  width:90px;
  height:90px;
  opacity:0.12;
}
.about-watermark svg{ width:100%; height:100%; }

.about-mission{
  padding:44px 0 18px;
}
.about-mission-inner{
  max-width:860px;
  margin:0 auto;
  text-align:center;
  color:var(--text);
  line-height:1.9;
  font-size:16px;
}
.about-mission-inner p{ margin:0 0 16px; }
.about-mission-inner strong{ font-weight:900; }

.about-split{
  padding:26px 0 36px;
}
.about-split-grid{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:18px;
  align-items:start;
}
.about-split-grid.reverse{
  grid-template-columns: 1fr 1fr;
}
@media(max-width:900px){
  .about-split-grid{ grid-template-columns:1fr; }
}
.about-photo{
  border-radius:16px;
  overflow:hidden;
  border:1px solid var(--line);
  box-shadow: var(--shadow);
  background:#fff;
}
.about-photo img{
  width:100%;
  height:100%;
  display:block;
  object-fit:cover;
  min-height:320px;
}
.about-copy{
  padding:8px 4px;
}
.about-copy h2{
  margin:0 0 10px;
  font-size:20px;
  letter-spacing:0.6px;
}
.about-copy p{
  margin:0 0 14px;
  color:var(--muted);
  line-height:1.75;
}
.about-subhead{
  margin:16px 0 8px;
  font-size:14px;
  letter-spacing:0.4px;
  font-weight:950;
  color:var(--text);
  text-transform:uppercase;
}

.about-values{
  padding:16px 0 60px;
}
.about-values-header{
  text-align:center;
  margin-bottom:14px;
}
.about-values-header h2{
  margin:0;
  font-size:20px;
  letter-spacing:0.8px;
  color:var(--brand);
}
.about-values-grid{
  background:#fff;
  border:1px solid var(--line);
  border-radius:16px;
  box-shadow: var(--shadow);
  padding:22px;
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:18px;
}
@media(max-width:900px){
  .about-values-grid{ grid-template-columns:1fr; }
}
.about-value h3{
  margin:0 0 8px;
  font-size:13px;
  letter-spacing:0.6px;
  color:var(--brand);
  text-transform:uppercase;
  font-weight:950;
  text-align:center;
}
.about-value p{
  margin:0;
  color:var(--muted);
  line-height:1.7;
  text-align:center;
}
/* Support/Contact page (FloraQueen-style) */
.support-banner{
  background:#e96b63; /* coral */
  color:#fff;
  padding:56px 0 62px;
  position:relative;
  overflow:hidden;
}
.support-banner-inner{
  position:relative;
  text-align:center;
  max-width:900px;
}
.support-title{
  margin:0;
  font-size:44px;
  letter-spacing:1px;
  font-weight:900;
}
.support-text{
  margin:12px auto 0;
  max-width:760px;
  line-height:1.9;
  font-size:16px;
  opacity:0.95;
}
@media(max-width:560px){
  .support-title{ font-size:34px; }
}

.support-watermark{
  position:absolute;
  right:10px;
  top:50%;
  transform: translateY(-50%);
  width:150px;
  height:150px;
  opacity:0.25;
}
@media(max-width:760px){
  .support-watermark{ display:none; }
}

.support-split{
  padding:34px 0;
}
.support-split-grid{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:18px;
  align-items:stretch;
}
.support-split-grid.reverse{
  grid-template-columns: 1fr 1fr;
}
@media(max-width:900px){
  .support-split-grid{ grid-template-columns:1fr; }
}

.support-photo{
  border-radius:16px;
  overflow:hidden;
  border:1px solid var(--line);
  box-shadow: var(--shadow);
  background:#fff;
}
.support-photo img{
  width:100%;
  height:100%;
  display:block;
  object-fit:cover;
  min-height:320px;
}

.support-copy{
  background:#fff;
  border:1px solid var(--line);
  border-radius:16px;
  box-shadow: var(--shadow);
  padding:24px;
  display:flex;
  flex-direction:column;
  justify-content:center;
}
.support-copy h2{
  margin:0 0 10px;
  color:#c75a3f; /* warm headline */
  letter-spacing:0.6px;
  font-size:18px;
  font-weight:950;
}
.support-copy p{
  margin:0 0 12px;
  line-height:1.75;
}
.support-email{
  font-weight:900;
  font-size:16px;
}
.support-email a{
  color:var(--text);
  text-decoration:underline;
  text-underline-offset:3px;
}
.gallery-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:12px;
}

.gallery-item{
  border-radius:16px;
  overflow:hidden;
}

.gallery-item img{
  width:100%;
  height:220px;
  object-fit:cover;
  display:block;
}
/* Product image as real photo + clickable */
.img-real{ padding:0; position:relative; overflow:hidden; }
.img-real img{
  width:100%;
  height:140px;
  object-fit:cover;
  display:block;
}
.img-link{ display:block; }
.img-real .tag{
  position:absolute;
  left:12px;
  bottom:12px;
}
/* Lightbox */
.lightbox{
  position:fixed;
  inset:0;
  background:rgba(0,0,0,0.85);
  display:none;
  align-items:center;
  justify-content:center;
  padding:18px;
  z-index:9999;
}
.lightbox.open{ display:flex; }

.lightbox img{
  max-width:min(1000px, 96vw);
  max-height:90vh;
  border-radius:16px;
  box-shadow:0 20px 60px rgba(0,0,0,0.35);
  background:#fff;
}
.lightbox-close{
  position:absolute;
  top:14px;
  right:14px;
  border:none;
  background:#fff;
  border-radius:999px;
  width:42px;
  height:42px;
  cursor:pointer;
  font-size:18px;
  font-weight:900;
}
.form-success{
  padding:12px 14px;
  background:#e6f4ef;
  border:1px solid #0a7a6a;
  border-radius:12px;
  color:#0a7a6a;
  font-weight:700;
  margin-top:10px;
}
/* HOME HERO (FloraQueen-style) */
.home-hero{
  position:relative;
  min-height:420px;
  display:flex;
  align-items:center;
  overflow:hidden;
}
.home-hero-bg{
  position:absolute;
  inset:0;
  background-size:cover;
  background-position:center;
  filter: blur(0px);
}
.home-hero:after{
  content:"";
  position:absolute;
  inset:0;
  background: linear-gradient(90deg, rgba(255,255,255,.92) 0%, rgba(255,255,255,.75) 45%, rgba(255,255,255,.15) 100%);
}
.home-hero-inner{
  position:relative;
  z-index:2;
  padding:52px 0;
}
.home-hero-copy{
  max-width:560px;
}
.home-hero-copy h1{
  margin:0 0 10px;
  font-size:46px;
  line-height:1.1;
}
.home-hero-copy h1 strong{ font-weight:950; }
.home-hero-copy p{
  margin:0 0 16px;
  color:var(--muted);
  line-height:1.7;
}

/* CATEGORY STRIP */
.home-strip{ margin-top:-36px; position:relative; z-index:3; }
.home-strip-card{
  background:#fff;
  border:1px solid var(--line);
  border-radius:16px;
  box-shadow: var(--shadow);
  padding:14px;
}
.home-strip-tabs{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
}
.home-strip-tabs .tab{
  border:1px solid var(--line);
  background:#fff;
  padding:10px 14px;
  border-radius:999px;
  cursor:pointer;
  font-weight:800;
}
.home-strip-tabs .tab.active{
  border-color: var(--brand);
}

/* FEATURED CARDS */
.home-featured{ padding:18px 0 56px; }
.home-featured-grid{
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap:16px;
}
@media(max-width:1000px){ .home-featured-grid{ grid-template-columns:repeat(2,1fr);} }
@media(max-width:560px){ .home-featured-grid{ grid-template-columns:1fr;} }

.sqcard{
  background:#fff;
  border:1px solid var(--line);
  border-radius:16px;
  overflow:hidden;
  box-shadow: var(--shadow);
}
.sqcard-img{ position:relative; }
.sqcard-img img{
  width:100%;
  height:190px;
  object-fit:cover;
  display:block;
}
.sqcard-tag{
  position:absolute;
  top:12px;
  left:12px;
  background:#d99a2b;
  color:#fff;
  font-weight:900;
  padding:6px 10px;
  border-radius:999px;
  font-size:12px;
}
.sqcard-body{ padding:14px; }
.sqcard-title{ font-weight:950; font-size:16px; margin-bottom:6px; }
.sqcard-stars{ letter-spacing:2px; margin-bottom:8px; }
.sqcard-desc{ color:var(--muted); line-height:1.6; min-height:52px; }
.sqcard-bottom{
  margin-top:12px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:10px;
}
.sqcard-price{ font-weight:950; font-size:16px; }
.btn-ghost{
  border:1px solid var(--line);
  background:#fff;
  color:var(--text);
}
/* NAV active + cart badge */
.navlinks a.active{
  font-weight:950;
  text-decoration:underline;
  text-underline-offset:6px;
}

.cartlink{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:8px 12px;
  border:1px solid var(--line);
  border-radius:999px;
  font-weight:900;
}
.cartCount{
  min-width:22px;
  height:22px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border-radius:999px;
  background:var(--brand);
  color:#fff;
  font-size:12px;
  padding:0 6px;
}
/* CART DRAWER */
.cart-drawer { 
  position: fixed;
  inset: 0; 
  background: rgba(0,0,0,.45);
  opacity: 0;
  pointer-events: none;
  transition: .2s;
  z-index: 9999;
}

/* ✅ Use ONE open class consistently: .open */
.cart-drawer.open { 
  opacity: 1;
  pointer-events: auto;
}

.cart-panel{
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  width: min(420px, 92vw);
  background: #fff;

  transform: translateX(100%);
  transition: .2s;

  /* ✅ KEY FIX: make it a column so only items scroll */
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

/* slide in */
.cart-drawer.open .cart-panel{
  transform: translateX(0);
}

.cart-header{
  flex: 0 0 auto;
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:16px;
  border-bottom:1px solid var(--line);
}
.cart-header h3{ margin:0; font-weight:900; }
.cart-header button{
  border:none;
  background:none;
  font-size:20px;
  cursor:pointer;
}

/* ✅ THIS becomes the scroll area */
.cart-items{
  flex: 1 1 auto;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  padding:16px;
}

/* Cart item row */
.cart-item{
  display:grid;
  grid-template-columns: 1fr auto;
  gap:10px;
  padding:12px 0;
  border-bottom:1px solid var(--line);
}
.cart-item:last-child{ border-bottom:none; }

.cart-item-title{
  font-weight:900;
  margin:0 0 6px;
}
.cart-item-meta{
  color:var(--muted);
  font-size:13px;
}

.cart-item-right{
  display:flex;
  flex-direction:column;
  align-items:flex-end;
  gap:8px;
}

.qty{
  display:inline-flex;
  align-items:center;
  border:1px solid var(--line);
  border-radius:999px;
  overflow:hidden;
}
.qty button{
  border:none;
  background:#fff;
  width:34px;
  height:34px;
  cursor:pointer;
  font-weight:900;
}
.qty span{
  min-width:36px;
  text-align:center;
  font-weight:900;
}

.icon-btn{
  border:1px solid var(--line);
  background:#fff;
  border-radius:10px;
  padding:6px 10px;
  cursor:pointer;
  font-weight:900;
}

/* ✅ Summary stays visible at bottom */
.cart-summary{
  flex: 0 0 auto;
  padding:16px;
  border-top:1px solid var(--line);
  background:#fff;
  padding-bottom: calc(16px + env(safe-area-inset-bottom));
}

.sum-row{
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:6px 0;
}
.sum-row.total{
  padding-top:10px;
  border-top:1px solid var(--line);
  margin-top:8px;
  font-size:16px;
}

.btn-ghost{
  border:1px solid var(--line);
  background:#fff;
  color:var(--text);
}

.note{
  margin:10px 0 0;
  color:var(--muted);
  font-size:13px;
  line-height:1.5;
}

/* Keep the button row visible while you scroll the extras */
.cta-row{
  position: sticky;
  bottom: 0;
  background: #fff;
  padding-top: 10px;
  padding-bottom: calc(10px + env(safe-area-inset-bottom));
  margin-top: 10px;
  border-top: 1px solid var(--line);
  display: flex;
  gap: 10px;
  justify-content: space-between;
}
/* SHOP PAGE (FloraQueen-style) */
.shop-layout{
  display:grid;
  grid-template-columns: 260px 1fr;
  gap:18px;
  padding:22px 0 60px;
}
@media(max-width:980px){
  .shop-layout{ grid-template-columns:1fr; }
}

@media(max-width:980px){
  .shop-filters{ position:relative; top:auto; }
}

.filter-box{
  background:#fff;
  border:1px solid var(--line);
  border-radius:14px;
  box-shadow: var(--shadow);
  padding:14px;
  margin-bottom:14px;
}
.filter-box h3{
  margin:0 0 10px;
  font-size:14px;
  font-weight:950;
  letter-spacing:.4px;
}
.filter-box label{
  display:flex;
  gap:10px;
  align-items:center;
  padding:6px 0;
  color:var(--text);
}
.filter-box input{ transform: translateY(1px); }

.shop-head{
  text-align:center;
  margin-bottom:16px;
}
.shop-head h1{
  margin:0 0 8px;
  font-size:22px;
  font-weight:950;
}

/* Product card style similar to screenshot */
.sq-card{
  background:#fff;
  border:1px solid var(--line);
  border-radius:16px;
  overflow:hidden;
  box-shadow: var(--shadow);
}
.sq-img{
  position:relative;
  background:#f5f5f5;
}
.sq-img img{
  width:100%;
  height:230px;
  object-fit:cover;
  display:block;
}
.sq-tag{
  position:absolute;
  top:12px;
  left:12px;
  background:#d99a2b;
  color:#fff;
  font-weight:950;
  padding:6px 10px;
  border-radius:999px;
  font-size:12px;
}
.sq-body{ padding:12px 14px 14px; }
.sq-title{ font-weight:950; margin-bottom:6px; }
.sq-stars{ letter-spacing:2px; margin-bottom:8px; }
.sq-small{ font-size:13px; margin-bottom:12px; }

.sq-bottom{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:10px;
}
.sq-price{ font-weight:950; font-size:16px; }
/* SHOP PAGE LAYOUT (sidebar + grid) */

@media(max-width:980px){
  .shop-filters{ position:relative; top:auto; }
}

.shop-head{
  text-align:center;
  margin-bottom:16px;
}
.shop-head h1{
  margin:0 0 8px;
  font-size:22px;
  font-weight:950;
}

/* Premium section */
.home-premium{ padding:18px 0 30px; }
.premium-grid{
  display:grid;
  grid-template-columns: 1.2fr 1fr 1fr 1fr;
  gap:16px;
}
@media(max-width:1000px){ .premium-grid{ grid-template-columns:1fr 1fr; } }
@media(max-width:560px){ .premium-grid{ grid-template-columns:1fr; } }

.premium-promo{
  background:#111;
  color:#fff;
  border-radius:16px;
  padding:22px;
  display:flex;
  flex-direction:column;
  justify-content:space-between;
  min-height:280px;
}
.premium-promo h3{ margin:0 0 10px; font-size:22px; font-weight:950; }
.premium-promo p{ margin:0 0 18px; opacity:.85; line-height:1.6; }
.btn-dark{
  background:#111;
  color:#fff;
  border:1px solid #111;
}
.btn-dark:hover{ opacity:.92; }

/* Reviews */
.home-reviews{ padding:30px 0 46px; text-align:center; }
.home-h2{ font-size:28px; margin:0 0 18px; font-weight:950; }
/* Outer reviews container */
.review-card{
  position:relative;
  margin:0 auto 34px;
  max-width:1100px;
  display:grid;
  grid-template-columns: 420px 1fr;
  gap:26px;
  background:#fff;
  border:1.5px solid rgba(17,24,39,.45); /* darker border like screenshot */
  border-radius:10px;
  box-shadow:none;                       /* screenshot is flat */
  padding:26px 28px;
  text-align:left;
}

@media(max-width:800px){
  .review-card{
    grid-template-columns:1fr;
    padding:18px;
  }
}

/* Left image block */
.review-left{
  display:flex;
  align-items:center;
  justify-content:center;
}
.review-left img{
  width:100%;
  height: 300px;              /* larger like screenshot */
  object-fit:cover;
  border-radius:14px;
  display:block;
  box-shadow: 0 10px 18px rgba(17,24,39,.10); /* slight photo depth */
}

/* Right side heading + subtitle */
.review-right h3{
  margin:6px 0 2px;
  font-weight:950;
  font-size:40px;            /* big heading */
  line-height:1.05;
  letter-spacing:-.02em;
}
.review-right .subhead,
.review-right small,
.review-right .muted{
  display:block;
  margin:0 0 14px;
  color:rgba(17,24,39,.55);
  font-weight:700;
  font-size:14px;
}

/* Review rows (no full-width dividers like your current design) */
.review-item{
  padding:14px 0;
  border-top:none;                          /* remove heavy lines */
}
.review-item + .review-item{
  margin-top:10px;
}

/* Stars + date row */
.stars{
  letter-spacing:2px;
  margin-bottom:8px;
  color:#d96a2b;                             /* warm orange like screenshot */
  font-weight:900;
}

/* Title + byline styling */
.review-item strong{
  display:block;
  font-weight:900;
  margin-bottom:4px;
}
.review-item .byline{
  color:rgba(17,24,39,.55);
  font-size:13px;
  font-weight:700;
}

/* Right-side next button: grey circle with chevron */
.review-next{
  position:absolute;
  right:26px;
  top:50%;
  transform:translateY(-50%);
  width:64px;
  height:64px;
  border-radius:999px;
  border:none;
  background:rgba(17,24,39,.25);            /* grey circle */
  color:#fff;
  font-size:30px;
  line-height:1;
  display:grid;
  place-items:center;
  cursor:pointer;
}
.review-next:hover{
  background:rgba(17,24,39,.35);
}

/* =========================================================
   ICON ROW — match screenshot (no boxes, centered)
   ========================================================= */

.icon-row{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:34px;
  max-width:1100px;
  margin:0 auto;
  padding:10px 0 10px;
}

@media(max-width:900px){
  .icon-row{ grid-template-columns:1fr; gap:22px; }
}

/* Remove card look */
.icon-box{
  padding:0;
  background:transparent;
  border:none;
  border-radius:0;
  text-align:center;
}

/* If using emoji icons */
.icon{
  font-size:44px;
  margin-bottom:10px;
}

/* If using <img class="feature-icon"> icons */
.feature-icon{
  width:54px;
  height:54px;
  object-fit:contain;
  margin:0 auto 10px;
  display:block;
}

/* Icon titles + text */
.icon-box h4{
  margin:0 0 6px;
  font-weight:950;
  font-size:18px;
}
.icon-box p{
  margin:0;
  color:rgba(17,24,39,.60);
  line-height:1.55;
  font-size:14px;
  max-width:260px;
  margin-left:auto;
  margin-right:auto;
}

/* =========================================
   STORY SECTION — match screenshot (green bar + h3 inside)
   Paste UNDER your current Story sections CSS
   ========================================= */

.home-story{
  padding:0;                 /* screenshot has the bar touching the top */
  background:#fff;
  border-top:1px solid var(--line);
  position:relative;
  overflow:visible;
}

/* This creates the green strip across the top */
.home-story.home-story-green::before{
  content:"";
  position:absolute;
  left:0; right:0; top:0;
  height:120px;              /* green bar height */
  background: var(--brand2); /* your brand green */
}

/* Keep your 2-column layout */
.home-story .story-grid{
  position:relative;
  z-index:2;                 /* above the green bar */
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:18px;
  align-items:start;
  padding:34px 0 26px;       /* space so content sits nicely */
}

/* Left text column */
.home-story .story-text{
  position:relative;
  padding-top:0;
}

/* ✅ Put the H3 inside the green bar (white text) */
.home-story.home-story-green .story-text h3{
  margin:0;
  color:#fff;
  font-size:34px;
  line-height:1.1;
  font-weight:900;
  max-width:420px;           /* similar to screenshot */
}

/* Paragraph + button stay under the bar */
.home-story .story-text p{
  margin:22px 0 16px;
  color:var(--muted);
  line-height:1.7;
  max-width:62ch;
}

/* If your button is inside .story-text, keep it centered-ish like screenshot */
.home-story .story-text .btn,
.home-story .story-text button{
  margin-top:10px;
}

/* Right image column — align like screenshot */
.home-story .story-img{
  position:relative;
  z-index:3;
  display:flex;
  justify-content:flex-end;
}

/* Image sits higher and overlaps the green bar slightly */
.home-story .story-img img{
  width:100%;
  max-width:620px;
  height:230px;
  object-fit:cover;
  border-radius: 16px;                 /* screenshot looks squared */
  border:1px solid var(--line);
  box-shadow: var(--shadow);
  transform: translateY(-22px);
  display:block;
}

/* Reverse layout support (keep your existing behavior) */
.home-story .story-grid.reverse{ grid-auto-flow:dense; }
.home-story .story-grid.reverse .story-img{ order:1; }
.home-story .story-grid.reverse .story-text{ order:2; }

/* Mobile */
@media(max-width:900px){
  .home-story.home-story-green::before{ height:110px; }

  .home-story .story-grid{
    grid-template-columns:1fr;
    padding:26px 0 22px;
  }

  .home-story .story-img{
    justify-content:center;
    margin-top:14px;
  }

  .home-story .story-img img{
    max-width:100%;
    height:240px;
    transform:none;
  }

  .home-story.home-story-green .story-text h3{
    font-size:28px;
    max-width:100%;
  }
}
/* Thin divider line at the end of the story section */
.home-story::after{
  content:"";
  display:block;
  width:100%;
  height:1px;
  background:rgba(17,24,39,.25);
  margin-top:34px;
}

/* How it works */
.how-it-works{ padding:32px 0 60px; }
.how-grid{
  display:grid;
  grid-template-columns: 1.1fr 1fr;
  gap:18px;
  align-items:start;
}
@media(max-width:900px){ .how-grid{ grid-template-columns:1fr; } }

.how-left h3{ margin:0 0 8px; font-size:26px; font-weight:950; }
.btn.wide{ display:inline-flex; padding:12px 18px; border-radius:14px; }

.how-steps .step{
  display:flex;
  gap:12px;
  padding:14px;
  background:#fff;
  border:1px solid var(--line);
  border-radius:16px;
  margin-bottom:12px;
}
.step-num{
  width:30px;
  height:30px;
  border-radius:999px;
  background:rgba(217,70,122,.12);
  display:flex;
  align-items:center;
  justify-content:center;
  font-weight:950;
}
.big-footer{
  border-top:1px solid var(--line);
  background:#fff;
}
.footer-topbar{
  background:#e11d67; /* hot pink bar like screenshot */
  color:#fff;
  font-weight:800;
}
.footer-topbar-inner{
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap:10px;
  padding:14px 0;
  text-align:center;
}
@media(max-width:900px){
  .footer-topbar-inner{ grid-template-columns:1fr 1fr; }
}
@media(max-width:520px){
  .footer-topbar-inner{ grid-template-columns:1fr; }
}

.footer-cols{
  display:grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap:18px;
  padding:26px 0;
}
@media(max-width:900px){
  .footer-cols{ grid-template-columns:1fr 1fr; }
}
@media(max-width:520px){
  .footer-cols{ grid-template-columns:1fr; }
}

.footer-cols h4{
  margin:0 0 10px;
  font-weight:950;
}
.footer-cols a{
  display:block;
  padding:6px 0;
  color:var(--text);
  text-decoration:none;
}
.footer-cols a:hover{ text-decoration:underline; }

.footer-logo{
  font-weight:950;
  font-size:20px;
  margin-bottom:6px;
}

.footer-bottom{
  padding:12px 0 22px;
  border-top:1px solid var(--line);
  display:flex;
  flex-wrap:wrap;
  gap:14px;
  align-items:center;
}
.footer-bottom a{ color:var(--text); text-decoration:none; }
.footer-bottom a:hover{ text-decoration:underline; }
/* Feature icons (replace emoji) */
.feature-icon{
  width:48px;
  height:48px;
  object-fit:contain;
  margin-bottom:10px;
  }
  .icon-box{
  text-align:center;
}
/* SHOP PAGE LAYOUT */

@media(max-width:980px){ .shop-filters{ position:relative; top:auto; } }

.filter-head{
  display:flex;
  justify-content:space-between;
  align-items:center;
  margin-bottom:6px;
}
.link-clear{
  border:none;
  background:none;
  font-weight:900;
  cursor:pointer;
  color:var(--muted);
}
.link-clear:hover{ text-decoration:underline; }

.filter-row{
  display:flex;
  gap:10px;
  align-items:center;
  padding:8px 10px;
  border-radius:8px;
}
.filter-row input{ transform:translateY(1px); }

/* Birthday highlight like screenshot */
.filter-row.selected{
  background:#f7e37a;
  font-weight:950;
}

/* Products grid */
.shop-head{ text-align:center; margin-bottom:16px; }

.sq-card{
  background:#fff;
  border:1px solid var(--line);
  border-radius:16px;
  overflow:hidden;
  box-shadow: var(--shadow);
}
.sq-img{ position:relative; background:#f5f5f5; }
.sq-img img{
  width:100%;
  height:250px;
  object-fit:cover;
  display:block;
}
.sq-tag{
  position:absolute;
  top:12px;
  left:12px;
  background:#d99a2b;
  color:#fff;
  font-weight:950;
  padding:6px 10px;
  border-radius:999px;
  font-size:12px;
}
.sq-discount{
  position:absolute;
  bottom:12px;
  left:12px;
  background:#c2410c;
  color:#fff;
  font-weight:950;
  padding:6px 10px;
  border-radius:10px;
  font-size:12px;
}
.sq-body{ padding:12px 14px 14px; }
.sq-title{ font-weight:950; margin-bottom:6px; }
.sq-stars{ letter-spacing:2px; margin-bottom:8px; }
.sq-small{ font-size:13px; margin-bottom:12px; }
.sq-bottom{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:10px;
}
.sq-price{ font-weight:950; font-size:16px; }
.nav-icon{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:8px 10px;
  border-radius:10px;
  text-decoration:none;
}

.bag-icon{
  width:20px;
  height:20px;
  fill:currentColor;
}

.nav-icon:hover{
  background:rgba(0,0,0,0.06);
}
.cart-header-row{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
}

.track-link{
  border:none;
  background:transparent;
  color:#0a7a6a; /* brand */
  font-weight:600;
  cursor:pointer;
  padding:6px 10px;
  border-radius:10px;
}

.track-link:hover{
  background:rgba(0,0,0,0.06);
}

.track-box{
  border:1px solid rgba(0,0,0,0.12);
  border-radius:14px;
  padding:12px;
  margin: 10px 0 14px 0;
  background:#fff;
}

.track-form{
  display:grid;
  gap:10px;
}

.field label{
  display:block;
  font-size:13px;
  margin-bottom:5px;
  font-weight:600;
}

.field input{
  width:100%;
  padding:9px 11px;
  border-radius:10px;
  border:1px solid rgba(0,0,0,0.18);
  outline:none;
}

.field input:focus{
  border-color:#0a7a6a;
}

.btn-track{
  padding:10px 14px;
  border:none;
  border-radius:10px;
  background:#0a7a6a;
  color:#fff;
  font-weight:700;
  cursor:pointer;
  width:fit-content;
}

.track-note{
  margin:0;
  font-size:13px;
  color:rgba(0,0,0,0.7);
}
.nav-icon{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:8px 10px;
  border-radius:10px;
  text-decoration:none;
}

.bag-icon{
  width:20px;
  height:20px;
  fill:currentColor;
}

.nav-icon:hover{
  background:rgba(0,0,0,0.06);
}
.cart-header-row{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
}

.track-link{
  border:none;
  background:transparent;
  color:#0a7a6a; /* brand */
  font-weight:600;
  cursor:pointer;
  padding:6px 10px;
  border-radius:10px;
}

.track-link:hover{
  background:rgba(0,0,0,0.06);
}

.track-box{
  border:1px solid rgba(0,0,0,0.12);
  border-radius:14px;
  padding:12px;
  margin: 10px 0 14px 0;
  background:#fff;
}

.track-form{
  display:grid;
  gap:10px;
}

.field label{
  display:block;
  font-size:13px;
  margin-bottom:5px;
  font-weight:600;
}

.field input{
  width:100%;
  padding:9px 11px;
  border-radius:10px;
  border:1px solid rgba(0,0,0,0.18);
  outline:none;
}

.field input:focus{
  border-color:#0a7a6a;
}

.btn-track{
  padding:10px 14px;
  border:none;
  border-radius:10px;
  background:#0a7a6a;
  color:#fff;
  font-weight:700;
  cursor:pointer;
  width:fit-content;
}

.track-note{
  margin:0;
  font-size:13px;
  color:rgba(0,0,0,0.7);
}
/* Track link button */
.track-link{
  border:none;
  background:transparent;
  color:#0a7a6a; /* brand */
  font-weight:600;
  cursor:pointer;
  padding:6px 10px;
  border-radius:10px;
}
.track-link:hover{ background:rgba(0,0,0,0.06); }

/* Modal */
.modal{
  position:fixed;
  inset:0;
  display:none;
  z-index:9999;
}
.modal.is-open{ display:block; }

.modal-overlay{
  position:absolute;
  inset:0;
  background:rgba(0,0,0,0.45);
}

.modal-card{
  position:relative;
  width:min(520px, 92vw);
  margin:10vh auto;
  background:#fff;
  border-radius:16px;
  padding:16px;
  box-shadow:0 18px 50px rgba(0,0,0,0.25);
}

.modal-head{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  margin-bottom:10px;
}

.modal-x{
  border:none;
  background:transparent;
  font-size:26px;
  line-height:1;
  cursor:pointer;
  padding:4px 10px;
  border-radius:10px;
}
.modal-x:hover{ background:rgba(0,0,0,0.06); }

.track-form{
  display:grid;
  gap:12px;
}

.field label{
  display:block;
  font-size:13px;
  margin-bottom:6px;
  font-weight:600;
}

.field input{
  width:100%;
  padding:10px 12px;
  border-radius:10px;
  border:1px solid rgba(0,0,0,0.18);
  outline:none;
}
.field input:focus{ border-color:#0a7a6a; }

.modal-actions{
  display:flex;
  justify-content:flex-end;
  gap:10px;
  margin-top:6px;
}

.btn-ghost{
  padding:10px 14px;
  border-radius:10px;
  border:1px solid rgba(0,0,0,0.18);
  background:#fff;
  cursor:pointer;
  font-weight:700;
}
.btn-ghost:hover{ background:rgba(0,0,0,0.04); }

.btn-track{
  padding:10px 14px;
  border:none;
  border-radius:10px;
  background:#0a7a6a;
  color:#fff;
  font-weight:700;
  cursor:pointer;
}
.btn-track:hover{ filter:brightness(0.95); }

.track-note{
  margin:0;
  font-size:13px;
  color:rgba(0,0,0,0.7);
}
.nav-orders{
  display:flex;
  align-items:center;
  gap:6px;
  background:none;
  border:none;
  cursor:pointer;
  font-weight:600;
  font-size:14px;
  color:#0a7a6a;
  padding:6px 10px;
  border-radius:10px;
}

.nav-orders img{
  width:18px;
  height:18px;
}

.nav-orders:hover{
  background:rgba(0,0,0,0.06);
}
.cart-link{
  display:flex;
  align-items:center;
  gap:6px;
  background:none;
  border:none;
  cursor:pointer;
  font-weight:600;
  font-size:14px;
  color:#0a7a6a;
  padding:6px 10px;
  border-radius:10px;
}

.cart-link img{
  width:18px;
  height:18px;
}

.cart-link:hover{
  background:rgba(0,0,0,0.06);
}
.modal{
  position:fixed;
  inset:0;
  display:none;
  z-index:9999;
}

.modal.is-open{ display:block; }

.modal-overlay{
  position:absolute;
  inset:0;
  background:rgba(0,0,0,0.45);
}

.modal-card{
  background:#fff;
  width:min(520px,92vw);
  margin:12vh auto;
  border-radius:16px;
  padding:18px;
  box-shadow:0 20px 50px rgba(0,0,0,0.25);
}

.modal-head{
  display:flex;
  justify-content:space-between;
  align-items:center;
}

.modal-x{
  font-size:26px;
  background:none;
  border:none;
  cursor:pointer;
}

.field{
  margin-bottom:12px;
}

.field input{
  width:100%;
  padding:10px;
  border-radius:10px;
  border:1px solid #ccc;
}

.modal-actions{
  display:flex;
  justify-content:flex-end;
  gap:10px;
}

.btn-track{
  background:#0a7a6a;
  color:#fff;
  border:none;
  padding:10px 16px;
  border-radius:10px;
  font-weight:700;
}

.btn-ghost{
  border:1px solid #ccc;
  background:#fff;
  padding:10px 14px;
  border-radius:10px;
}
.cart-bag{ gap:10px; }

.bag-icon{
  width:20px;
  height:20px;
  fill:currentColor;
  display:block;
}
/* Feedback bouquet image fit */
.review-left img,
.review-bouquet{
  width:100%;
  height:260px;
  object-fit:cover;
  border-radius:14px;
  display:block;
}

@media(max-width:820px){
  .review-left img,
  .review-bouquet{ height:220px; }
}
/* Hide the old top menu links */
.navlinks a[href="index.html"],
.navlinks a[href="shop.html"],
.navlinks a[href="gallery.html"],
.navlinks a[href="about.html"],
.navlinks a[href="contact.html"]{
  display:none !important;
}
.nav-stack{ display:block; }
.nav-top{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  padding:14px 0;
}
.nav-actions{
  display:flex;
  align-items:center;
  gap:10px;
}

/* Space below logo + menu row */
.nav-bottom{
  display:flex;
  align-items:center;
  gap:18px;
  padding:10px 0 14px 0;
  border-top:1px solid var(--line);
}

/* New menu style */
.nav-item{
  font-weight:800;
  letter-spacing:.04em;
  font-size:12.5px;
  text-decoration:none;
  color:var(--text);
  padding:10px 12px;
  border-radius:999px;
}
.nav-item:hover{
  background:rgba(0,0,0,.06);
}

/* Dropdown */
.nav-drop{ position:relative; }
.nav-drop-btn{
  border:none;
  background:transparent;
  cursor:pointer;
}
.caret{ margin-left:6px; opacity:.7; }

.nav-drop-menu{
  position:absolute;
  top:44px;
  left:0;
  min-width:240px;
  background:var(--surface);
  border:1px solid var(--line);
  border-radius:14px;
  padding:10px;
  box-shadow: var(--shadow);
  display:none;
  z-index:9999;
}

.nav-drop-menu a{
  display:block;
  padding:10px 10px;
  border-radius:10px;
  text-decoration:none;
  color:var(--text);
  font-weight:700;
}
.nav-drop-menu a:hover{
  background:rgba(0,0,0,.06);
}

/* Show menu on hover (desktop) */
.nav-drop:hover .nav-drop-menu{ display:block; }

/* Mobile: stack nicely */
@media(max-width:820px){
  .nav-bottom{
    flex-wrap:wrap;
    gap:10px;
  }
  .nav-drop-menu{
    position:static;
    box-shadow:none;
    border-radius:12px;
    margin-top:8px;
  }
  .nav-drop:hover .nav-drop-menu{ display:none; } /* disable hover on mobile */
  .nav-drop.open .nav-drop-menu{ display:block; }
}
/* Wall Art category header */
.shop-category { margin: 28px 0 46px; }
.cat-hero{
  max-width: 980px;
  margin: 0 auto 22px;
  text-align: center;
}
.cat-hero h1{
  font-family: "Playfair Display", serif;
  font-weight: 700;
  font-size: clamp(28px, 3vw, 44px);
  margin: 8px 0 10px;
}
.cat-hero p{
  margin: 0 auto 10px;
  max-width: 860px;
  color: #555;
  line-height: 1.6;
}

/* Product grid look like your photos */
.products-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr)); /* fixed 3 columns on desktop */
  gap: 2.5rem 2rem;
}



/* Responsive */
@media (max-width: 900px) {
  .products-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
@media (max-width: 600px) {
  .products-grid {
    grid-template-columns: 1fr;
  }
}
.nav-stack{ display:block; }
.nav-top{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  padding:14px 0;
}
.nav-actions{
  display:flex;
  align-items:center;
  gap:10px;
}

/* Space below logo + menu row */
.nav-bottom{
  display:flex;
  align-items:center;
  gap:18px;
  padding:10px 0 14px 0;
  border-top:1px solid var(--line);
}

/* New menu style */
.nav-item{
  font-weight:800;
  letter-spacing:.04em;
  font-size:12.5px;
  text-decoration:none;
  color:var(--text);
  padding:10px 12px;
  border-radius:999px;
}
.nav-item:hover{
  background:rgba(0,0,0,.06);
}

/* Dropdown */
.nav-drop{ position:relative; }
.nav-drop-btn{
  border:none;
  background:transparent;
  cursor:pointer;
}
.caret{ margin-left:6px; opacity:.7; }

.nav-drop-menu{
  position:absolute;
  top:44px;
  left:0;
  min-width:240px;
  background:var(--surface);
  border:1px solid var(--line);
  border-radius:14px;
  padding:10px;
  box-shadow: var(--shadow);
  display:none;
  z-index:9999;
}

.nav-drop-menu a{
  display:block;
  padding:10px 10px;
  border-radius:10px;
  text-decoration:none;
  color:var(--text);
  font-weight:700;
}
.nav-drop-menu a:hover{
  background:rgba(0,0,0,.06);
}

/* Show menu on hover (desktop) */
.nav-drop:hover .nav-drop-menu{ display:block; }

/* Mobile: stack nicely */
@media(max-width:820px){
  .nav-bottom{
    flex-wrap:wrap;
    gap:10px;
  }
  .nav-drop-menu{
    position:static;
    box-shadow:none;
    border-radius:12px;
    margin-top:8px;
  }
  .nav-drop:hover .nav-drop-menu{ display:none; } /* disable hover on mobile */
  .nav-drop.open .nav-drop-menu{ display:block; }
}
/* =========================================================
   HEADER: Keep logo + My Orders + Cart together (DO NOT BREAK)
   Paste at the very bottom of styles.css
   ========================================================= */

/* Keep header sticky + clean */
header{
  position: static;
  top: 0;
  z-index: 50;
}

/* Top row: logo on left, actions on right */
.nav-stack .nav-top{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
  padding:14px 0;
}

/* Left brand area stays stable */
.nav-stack .brand{
  display:flex;
  align-items:center;
  gap:10px;
  min-width: 0;
}
.brand .site-logo{
  height:44px;
  width:auto;
  display:block;
}

/* Right side actions: My Orders + Cart */
.nav-stack .nav-actions{
  display:flex;
  align-items:center;
  gap:10px;
  flex-wrap:nowrap;
  white-space:nowrap;
}

/* My Orders button */
.nav-actions .nav-orders{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:8px 12px;
  border-radius:999px;
  border:1px solid var(--line);
  background:#fff;
  font-weight:800;
  color:#0a7a6a;
}
.nav-actions .nav-orders:hover{
  background:rgba(0,0,0,0.05);
}

/* Cart button (bag + count) */
.nav-actions .cartlink,
.nav-actions .cart-link,
.nav-actions .cart-bag,
.nav-actions .nav-icon{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:8px 12px;
  border-radius:999px;
  border:1px solid var(--line);
  background:#fff;
  font-weight:800;
  color:#0a7a6a;
}

/* Bag icon sizing consistent */
.nav-actions .bag-icon{
  width:20px;
  height:20px;
  display:block;
  object-fit:contain;
}

/* Cart count badge */
.nav-actions .cartCount{
  min-width:22px;
  height:22px;
  padding:0 7px;
  border-radius:999px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  background:var(--brand);
  color:#fff;
  font-size:12px;
  font-weight:900;
}

/* Make sure it doesn’t wrap oddly on small screens */
@media(max-width:520px){
  .brand .site-logo{ height:38px; }
  .nav-stack .nav-top{ gap:10px; }
  .nav-stack .nav-actions{ gap:8px; }
  .nav-actions .nav-orders,
  .nav-actions .cartlink,
  .nav-actions .cart-link,
  .nav-actions .cart-bag,
  .nav-actions .nav-icon{
    padding:7px 10px;
  }
}

/* =========================================================
   FLORAQUEEN-STYLE LEFT FILTERS (Wall Art / Gift Baskets / Personalized)
   Paste THIS BLOCK at the VERY BOTTOM of styles.css to override duplicates
   ========================================================= */

/* Layout: sidebar + products */

/* Sticky sidebar (desktop) */

@media (max-width: 980px){
  .shop-filters{
    position:relative;
    top:auto;
  }
}

/* Sidebar wrapper spacing */
.shop-filters .filter-stack{
  display:grid;
  gap:14px;
}

/* Each filter panel box */

/* “Clear” link/button */
.link-clear{
  border:none;
  background:none;
  padding:4px 6px;
  border-radius:8px;
  cursor:pointer;
  font-weight:800;
  font-size:12px;
  color:rgba(17,24,39,.55);
}
.link-clear:hover{
  background:rgba(17,24,39,.05);
  color:rgba(17,24,39,.75);
}

/* Rows (checkbox/radio rows) */
.filter-row{
  display:flex;
  align-items:center;
  gap:10px;
  padding:8px 8px;
  border-radius:10px;
  color:rgba(17,24,39,.88);
}
.filter-row:hover{
  background:rgba(17,24,39,.04);
}

/* Label text */
.filter-row span,
.filter-row .label-text{
  font-size:13px;
  font-weight:650;
  line-height:1.2;
}

/* Inputs: keep simple + modern */
.filter-row input[type="checkbox"],
.filter-row input[type="radio"]{
  width:16px;
  height:16px;
  margin:0;
  accent-color: var(--brand);
}

/* Optional count on the right (if you add it later) */
.filter-row .count{
  margin-left:auto;
  font-size:12px;
  font-weight:750;
  color:rgba(17,24,39,.45);
}

/* Selected row highlight (like your screenshot “Birthday” highlight) */
.filter-row.selected,
.filter-row.is-active{
  background: rgba(247,227,122,.55);
  border:1px solid rgba(247,227,122,.75);
  padding:7px 7px; /* compensate for border */
}
.filter-row.selected span,
.filter-row.is-active span{
  font-weight:800;
}

/* List formatting inside a box */
.filter-list{
  display:grid;
  gap:2px;
  margin:0;
  padding:0;
}
.filter-list label{
  margin:0;
}

/* “Sort by” radios area (matches screenshot) */
.sort-box .filter-row{
  padding:7px 8px;
}
.sort-box .filter-row span{
  font-weight:650;
}

/* Small helper text under filter titles (optional) */
.filter-help{
  margin:6px 0 0;
  font-size:12px;
  color:rgba(17,24,39,.55);
  line-height:1.45;
}

/* Products header area (centered like the screenshots) */
.shop-head{
  text-align:center;
  margin:0 0 16px;
}
.shop-head h1{
  margin:0 0 8px;
  font-size:22px;
  font-weight:900;
  letter-spacing:.01em;
}
.shop-head p{
  margin:0 auto;
  max-width:760px;
  color:rgba(17,24,39,.60);
  line-height:1.6;
  font-size:14px;
}

/* Category hero (Wall Art / Gift Baskets / Personalized) */
.shop-category{
  margin: 18px 0 18px;
}
.cat-hero{
  max-width: 980px;
  margin: 0 auto 14px;
  text-align:center;
}
.cat-hero .pill{
  display:inline-block;
  padding:6px 14px;
  border-radius:999px;
  background:#fff;
  border:1px solid rgba(17,24,39,.10);
  font-weight:800;
  font-size:12px;
  color:rgba(17,24,39,.65);
  margin-bottom:10px;
}
.cat-hero h1{
  margin:0 0 8px;
  font-family:"Playfair Display", Georgia, serif;
  font-weight:700;
  font-size: clamp(28px, 3vw, 44px);
  letter-spacing:-.02em;
}
.cat-hero p{
  margin:0 auto;
  max-width: 860px;
  color:rgba(17,24,39,.60);
  line-height:1.6;
  font-size:14px;
}

/* Make the sidebar look like the screenshots (clean left column) */
@media (min-width: 981px){
  .shop-filters{
    padding-top:4px;
  }
}

/* Mobile: filter boxes become full width & nicer spacing */
@media (max-width: 980px){
  .filter-box{
    padding:14px;
  }
  .filter-head{
    padding-bottom:10px;
    margin-bottom:10px;
  }
}

/* If your filter labels are plain <label> without .filter-row,
   this makes them still look correct. */
.filter-box label{
  display:flex;
  align-items:center;
  gap:10px;
  padding:8px 8px;
  border-radius:10px;
  font-size:13px;
  font-weight:650;
}
.filter-box label:hover{
  background:rgba(17,24,39,.04);
}
.filter-box label input{
  accent-color: var(--brand);
}
.products-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr)); /* fixed 3 columns on desktop */
  gap: 2.5rem 2rem;
}

/* Optional: make it responsive */
@media (max-width: 900px) {
  .products-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 600px) {
  .products-grid {
    grid-template-columns: 1fr;
  }
}
/* =========================
   SHOP WIDE LAYOUT (FULL WIDTH)
   ========================= */

/* Make shop page wider than the normal container */
.shop-wrap{
  width: min(1320px, 94vw);
  margin: 0 auto;
}

/* Sidebar + products */
.shop-layout{
  display:grid;
  grid-template-columns: 280px 1fr;
  gap: 26px;
  padding: 22px 0 60px;
}

@media (max-width: 980px){
  .shop-layout{ grid-template-columns: 1fr; }
}

/* Sidebar */
@media (max-width: 980px){
  .shop-filters{ position: relative; top:auto; }
}

/* Products area fills remaining width */
.shop-main{ min-width: 0; }

/* Products grid (USE THIS EVERYWHERE) */
.products-grid{
  display:grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

@media (max-width: 1100px){
  .products-grid{ grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
@media (max-width: 900px){
  .products-grid{ grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 600px){
  .products-grid{ grid-template-columns: 1fr; }
}
/* =========================================
   WALLART: Make "Add to cart" match brand color
   Paste at VERY BOTTOM of styles.css
   ========================================= */

/* Covers <button class="btn">, <button class="btn-primary">, or plain buttons inside wallart cards */
#wallart .btn,
#wallart button.add-to-cart,
#wallart .add-to-cart,
#wallart .p-card button,
#wallart .sq-card button{
  background: linear-gradient(90deg, var(--brand), var(--brand2)) !important;
  color: #fff !important;
  border: none !important;
  border-radius: 12px;
  padding: 10px 14px;
  font-weight: 800;
  cursor: pointer;
}

/* Hover like the rest */
#wallart .btn:hover,
#wallart button.add-to-cart:hover,
#wallart .add-to-cart:hover,
#wallart .p-card button:hover,
#wallart .sq-card button:hover{
  filter: brightness(0.97);
  transform: translateY(-1px);
  transition: 0.15s;
}

/* Disabled state */
#wallart .btn:disabled,
#wallart button.add-to-cart:disabled,
#wallart .add-to-cart:disabled,
#wallart .p-card button:disabled,
#wallart .sq-card button:disabled{
  opacity: .55;
  cursor: not-allowed;
  transform: none;
}
.shop-head{ position: static !important; }

@media (max-width: 520px){
  .shop-category,
  .cat-hero{ top: 120px; }
}
/* =========================================================
   SHOP: One sticky category header (H1 + P) for ALL categories
   Wall Art / Gift Baskets / Personalized
   Paste at VERY BOTTOM of styles.css
   ========================================================= */

/* Turn OFF any older sticky attempts so we don't fight ourselves */
.shop-head{ position: static !important; }
.shop-category{ position: static !important; }

/* Make the category hero sticky for every category section */

/* Optional: subtle divider so it looks "attached" */
.cat-hero{
  border-bottom: 1px solid rgba(17,24,39,.10);
}

/* Mobile: header is taller, so push sticky lower */
@media (max-width: 520px){
  .cat-hero{ top: 120px; }
}

/* IMPORTANT: sticky breaks if any parent has overflow hidden/auto */
.shop-wrap,
.shop-layout,
.shop-main,
.shop-category{
  overflow: visible !important;
}
/* ================================
   SHOP: Make EVERYTHING scroll normally
   (category head + left occasions + products)
   Paste at VERY BOTTOM of styles.css
================================== */



/* Ensure no parent is accidentally “locking” scroll behavior */
.shop-wrap,
.shop-layout,
.shop-main{
  overflow: visible !important;
}
/* =========================================================
   HOME / INDEX: PCARD grid that MATCHES SHOP PREMIUM STYLE
   Paste at VERY BOTTOM of styles.css
   ========================================================= */

/* Desktop logo bigger (your request) */
@media (min-width: 821px){
  header .site-logo{ height:58px !important; }
}

/* Match your page container look */
.pcard-wrap{
  width: min(1100px, 92vw);   /* same as .container width */
  margin: 18px auto 56px;
}

/* Top “Our Favorites” row like screenshot */
.pcard-top{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  margin: 6px 0 14px;
}

.pcard-titlebar{
  font-weight:950;
  font-size:14px;
  color: rgba(17,24,39,.80);
}

.pcard-links{
  display:flex;
  gap:24px;
  align-items:center;
  flex-wrap:wrap;
}

.pcard-links a{
  font-weight:750;
  font-size:14px;
  color: rgba(17,24,39,.70);
}
.pcard-links a:hover{
  color: rgba(17,24,39,.92);
  text-decoration: underline;
  text-underline-offset: 5px;
}

/* 4 columns like screenshot */
.pcard-grid{
  display:grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap:18px;
}
@media(max-width:1000px){
  .pcard-grid{ grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media(max-width:560px){
  .pcard-grid{ grid-template-columns: 1fr; }
}

/* ✅ The key: shop-premium vibe = white surface + line + shadow + radius */
.pcard{
  background: transparent;
}

.pcard-img{
  position:relative;
  border-radius: 10px;                /* screenshot corners */
  overflow:hidden;
  border: 1px solid rgba(17,24,39,.10);
  background:#f4f4f5;
  box-shadow: 0 8px 20px rgba(17,24,39,.06);  /* softer than shop cards */
}

.pcard-img img{
  width:100%;
  height:220px;
  object-fit:cover;
  display:block;
}

/* Premium tag: SAME as your shop .sq-tag */
.pcard-tag{
  position:absolute;
  top:12px;
  left:12px;
  background:#d99a2b;
  color:#fff;
  font-weight:950;
  padding:6px 10px;
  border-radius:999px;
  font-size:12px;
}

/* Body text spacing like screenshot */
.pcard-body{
  padding: 10px 2px 0;
}

.pcard-name{
  margin:0 0 4px;
  font-weight:950;
  font-size:13.5px;
  color: rgba(17,24,39,.92);
  line-height:1.25;
}

.pcard-stars{
  font-size:12px;
  letter-spacing:2px;
  color:#d97706;
  margin: 0 0 6px;
}

.pcard-desc{
  margin:0 0 10px;
  color: rgba(17,24,39,.62);
  font-size:12.5px;
  line-height:1.35;
  min-height:34px; /* keeps all cards aligned */
}

.pcard-bottom{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:10px;
}

.pcard-price{
  font-weight:950;
  font-size:13px;
  color: rgba(17,24,39,.90);
}

/* View details button: screenshot style (thin border, uppercase) */
.pcard-btn{
  border:1px solid rgba(17,24,39,.30);
  background:#fff;
  color: rgba(17,24,39,.88);
  font-weight:950;
  font-size:11px;
  padding:6px 10px;
  border-radius:4px;
  letter-spacing:.05em;
  text-transform:uppercase;
  cursor:pointer;
}
.pcard-btn:hover{
  background: rgba(17,24,39,.04);
}

/* ✅ Promo tile: EXACT SHOP PREMIUM PROMO colors & structure */
.pcard-promo{
  background:#111;
  color:#fff;
  border-radius: var(--radius);   /* match your premium promo 16px */
  padding:22px;
  display:flex;
  flex-direction:column;
  justify-content:space-between;
  min-height: 310px;
  box-shadow: var(--shadow);
}

.pcard-promo h3{
  margin:0 0 10px;
  font-size:22px;
  font-weight:950;
}

.pcard-promo p{
  margin:0 0 18px;
  opacity:.85;
  line-height:1.6;
  font-size:13px;
}

/* Button in promo: same as .btn-dark but consistent */
.pcard-promo a{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:fit-content;
  border:1px solid #111;
  background:#111;
  color:#fff;
  padding:10px 14px;
  border-radius:12px;
  font-weight:900;
}
.pcard-promo a:hover{ opacity:.92; }

/* OPTIONAL: If some other rule is messing with your cards,
   these force the pcard look. */
.pcard *{ box-sizing:border-box; }

.cart-extras{
  padding: 10px 0 6px;
  border-top: 1px solid var(--line);
  margin-top: 10px;
}

.cart-field{
  padding: 10px 0;
}

.cart-field label{
  display:block;
  margin:0 0 6px;
  font-weight:900;
}

.cart-field input,
.cart-field textarea{
  width:100%;
  border:1px solid var(--line);
  border-radius:12px;
  padding:10px 12px;
  font:inherit;
  outline:none;
  background:#fff;
}

.cart-field textarea{ resize:vertical; }

.cart-field .muted{
  display:block;
  margin-top:6px;
  color:var(--muted);
  font-size:12px;
}

/* =========================
   R&K STABILIZER PATCH
   Paste at VERY BOTTOM
   ========================= */

/* 1) Missing var used all over */
:root{
  --card: var(--surface);
}

/* 2) Fix invalid border-radius value (if any rule still has 16 without px) */
.home-story .story-img img{
  border-radius: 16px !important;
}

/* 3) Keep your intended typography (prevents the later html,body reset from overriding Manrope) */
body{
  font-family: "Manrope", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}
h1,h2,h3{
  font-family:"Playfair Display", Georgia, serif;
}

/* 4) Normalize repeated utility buttons (prevents multiple .btn-ghost versions fighting) */
.btn-ghost{
  border:1px solid var(--line);
  background:#fff;
  color:var(--text);
}

/* 5) Bag icon: choose ONE definition */
.bag-icon{
  width:20px;
  height:20px;
  display:block;
  object-fit:contain;
}

/* 6) Gallery: choose ONE definition */
.gallery-grid{
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap:12px;
}
@media(max-width:900px){ .gallery-grid{ grid-template-columns: repeat(2, 1fr);} }
@media(max-width:520px){ .gallery-grid{ grid-template-columns: 1fr;} }

.gallery-item{
  border:1px solid var(--line);
  border-radius:16px;
  overflow:hidden;
  background:#fff;
  box-shadow: var(--shadow);
}
.gallery-item img{
  width:100%;
  height:220px;
  object-fit:cover;
  display:block;
}

/* 7) SHOP behavior (recommended): sticky sidebar, normal category header */


/* 8) Ensure no parent breaks sticky */
.shop-wrap,
.shop-layout,
.shop-main,
.shop-category{
  overflow: visible !important;
}

/* =========================================================
   SCROLL AS ONE (NO STICKY / NO FLOATING)
   Paste at VERY BOTTOM of styles.css
   ========================================================= */

/* 1) Header should NOT follow */
header{
  position: static !important;
  top: auto !important;
}


/* 3) Shop: left filters should NOT stick */
.shop-filters{
  position: static !important;
  top: auto !important;
}

/* 4) Remove floating cart chip/button (if you don’t want it following) */
.cartbar{
  position: static !important;
  right: auto !important;
  bottom: auto !important;
}

/* 5) Safety: ensure parents aren’t forcing weird scrolling behavior */
.shop-wrap,
.shop-layout,
.shop-main,
.shop-category,
body{
  overflow: visible !important;
}
/* =========================================================
   R&K — FINAL PATCH (put at VERY BOTTOM of styles.css)
   Fixes cart drawer + duplicate conflicts
   ========================================================= */

/* ---------- 0) Keep consistent fonts (your brand choice) ---------- */
body{
  font-family: "Manrope", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}
h1,h2,h3{
  font-family:"Playfair Display", Georgia, serif;
}

/* ---------- 1) CART DRAWER: match JS (#cartDrawer.open) ---------- */
/* Your JS toggles: drawer.classList.add("open") */
#cartDrawer{
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.45);
  opacity: 0;
  pointer-events: none;
  transition: opacity .2s ease;
  z-index: 9999;
}
#cartDrawer.open{
  opacity: 1;
  pointer-events: auto;
}

/* Panel slides in */
#cartDrawer .cart-panel{
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  width: min(420px, 92vw);
  background: #fff;
  transform: translateX(100%);
  transition: transform .2s ease;
  display: flex;
  flex-direction: column;
}
#cartDrawer.open .cart-panel{
  transform: translateX(0);
}

/* Scroll inside panel only */
#cartDrawer .cart-items{
  flex: 1;
  overflow: auto;
  padding: 16px;
}

/* IMPORTANT: do NOT force body overflow visible globally
   (it breaks the drawer + can cause odd scrolling)
*/
html, body{ overflow-x: hidden; }

/* ---------- 2) Remove conflicting “is-open” system if present ---------- */
.cart-drawer,
.cart-drawer.is-open{
  /* neutralize old class system so it doesn't fight #cartDrawer */
  all: unset;
}

/* ---------- 3) ONE bag icon + ONE ghost button ---------- */
.bag-icon{
  width: 20px;
  height: 20px;
  display: block;
  object-fit: contain;
}

.btn-ghost{
  border: 1px solid var(--line);
  background: #fff;
  color: var(--text);
}

/* ---------- 4) ONE gallery grid ---------- */
.gallery-grid{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
@media(max-width:900px){ .gallery-grid{ grid-template-columns: repeat(2, 1fr);} }
@media(max-width:520px){ .gallery-grid{ grid-template-columns: 1fr;} }

.gallery-item{
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
  background: #fff;
  box-shadow: var(--shadow);
}
.gallery-item img{
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

/* ---------- 5) STOP breaking normal scroll ---------- */
/* Remove the global “overflow:visible !important” rules you added earlier.
   If they still exist above, this ensures the page scrolls normally.
*/
body{ overflow-y: auto !important; }

.cart-zip { margin: 12px 0; }
.cart-zip-label { display:block; font-weight:800; margin-bottom:6px; }
.cart-zip-row { display:flex; gap:8px; align-items:center; }
#shippingZip {
  flex:1;
  padding:10px 12px;
  border:1px solid rgba(0,0,0,.15);
  border-radius:12px;
  font-weight:700;
}
.cart-zip-help { display:block; margin-top:6px; color:rgba(0,0,0,.55); }