/* ============================================================
   BLOSSOM HONEY & ORGANICS - Home sections
   ============================================================ */

/* ---------- hero ---------- */
.hero {
  position: relative; min-height: 100svh; display: flex; align-items: center;
  color: var(--ivory); overflow: hidden; isolation: isolate;
}
.hero .hero-bg { position: absolute; inset: 0; z-index: -2; }
.hero .hero-bg img { width: 100%; height: 100%; object-fit: cover; object-position: center 32%; }
.hero .hero-shade {
  position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(80deg, rgba(22,15,10,.94) 0%, rgba(27,19,12,.78) 44%, rgba(27,19,12,.34) 82%),
    linear-gradient(0deg, rgba(22,15,10,.6), transparent 45%);
}
.hero-inner { width: min(var(--maxw), calc(100% - 48px)); margin-inline: auto; padding: 150px 0 128px; }
.hero-copy { max-width: 690px; }
.hero-title { font-size: clamp(2.6rem, 6.2vw, 4.8rem); line-height: 1.02; color: var(--ivory); font-weight: 470; }
.hero-title em { font-style: italic; color: var(--gold); font-weight: 400; }
.hero-sub { margin-top: 26px; font-size: clamp(1.02rem, 1.5vw, 1.16rem); color: rgba(251,247,239,.82); max-width: 56ch; line-height: 1.72; }
.hero-ctas { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 38px; }
.hero-chips { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 44px; }
.hero-chips .chip {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 10px 16px; border-radius: var(--r-full);
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.18);
  backdrop-filter: blur(8px); font-size: 13px; font-weight: 500; color: rgba(251,247,239,.92);
}
.hero-chips .chip svg { width: 16px; height: 16px; color: var(--gold); }
.hero-scroll {
  position: absolute; bottom: 26px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  color: rgba(251,247,239,.55); font-size: 10.5px; letter-spacing: .24em; text-transform: uppercase;
}
.hero-scroll .line { width: 1px; height: 40px; background: linear-gradient(var(--gold), transparent); animation: drop 2.2s var(--ease) infinite; }
@keyframes drop {
  0% { transform: scaleY(0); transform-origin: top; }
  45% { transform: scaleY(1); transform-origin: top; }
  55% { transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}
@media (max-width: 640px) {
  .hero-inner { padding: 128px 0 92px; }
  .hero-sub { margin-top: 18px; }
  .hero-chips { margin-top: 28px; gap: 8px; }
  .hero-chips .chip { padding: 8px 13px; font-size: 12px; }
}

/* ---------- trust strip ---------- */
.trust-bar { background: var(--white); border-block: 1px solid var(--line); }
.trust-grid { display: grid; grid-template-columns: repeat(2, 1fr); }
@media (min-width: 860px) { .trust-grid { grid-template-columns: repeat(4, 1fr); } }
.trust-item { display: flex; align-items: center; gap: 14px; padding: 26px 22px; }
@media (min-width: 860px) { .trust-item + .trust-item { border-left: 1px solid var(--line); } }
@media (max-width: 860px) {
  .trust-item:nth-child(odd) { border-right: 1px solid var(--line); }
  .trust-item:nth-child(n+3) { border-top: 1px solid var(--line); }
}
.trust-item .t-ic { width: 46px; height: 46px; flex: none; border-radius: 14px; background: var(--cream); display: grid; place-items: center; color: var(--honey-2); }
.trust-item .t-ic svg { width: 22px; height: 22px; }
.trust-item b { display: block; font-size: 14.5px; color: var(--ink); }
.trust-item span { font-size: 12.5px; color: var(--muted); }

/* ---------- categories ---------- */
.cat-grid { display: grid; gap: 18px; grid-template-columns: repeat(2, 1fr); margin-top: 48px; }
@media (min-width: 640px) { .cat-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1024px) {
  .cat-grid { grid-template-columns: repeat(6, 1fr); }
  .cat-card:nth-child(1), .cat-card:nth-child(2), .cat-card:nth-child(3) { grid-column: span 2; }
  .cat-card:nth-child(4), .cat-card:nth-child(5) { grid-column: span 3; aspect-ratio: 16 / 9; min-height: 0; }
}
.cat-card {
  position: relative; border-radius: var(--r-lg); overflow: hidden; display: block;
  aspect-ratio: 4 / 5; min-height: 250px; isolation: isolate;
}
.cat-card .cc-img { position: absolute; inset: 0; z-index: -1; transition: transform .8s var(--ease); }
.cat-card .cc-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease); }
.cat-card:hover .cc-img img { transform: scale(1.07); }
.cat-card .cc-shade { position: absolute; inset: 0; z-index: -1; background: linear-gradient(0deg, rgba(24,17,11,.82), rgba(24,17,11,.12) 55%, transparent); transition: background .5s; }
.cat-card:hover .cc-shade { background: linear-gradient(0deg, rgba(24,17,11,.9), rgba(24,17,11,.18) 60%, transparent); }
.cat-card .cc-label { position: absolute; left: 20px; right: 20px; bottom: 18px; }
.cat-card .cc-label h3 { color: var(--ivory); font-size: clamp(1.15rem, 1.7vw, 1.45rem); }
.cat-card .cc-label span { display: inline-flex; align-items: center; gap: 7px; margin-top: 6px; font-size: 12.5px; font-weight: 600; color: var(--gold); }
.cat-card .cc-label span svg { width: 13px; height: 13px; }
@media (max-width: 639px) {
  .cat-grid { gap: 12px; }
  .cat-card { aspect-ratio: 3 / 3.6; min-height: 0; }
  .cat-card .cc-label { left: 14px; bottom: 14px; right: 14px; }
  .cat-card .cc-label h3 { font-size: 1.05rem; }
}

/* ---------- product card ---------- */
.products-grid { display: grid; gap: 22px; grid-template-columns: repeat(2, 1fr); margin-top: 48px; }
@media (min-width: 640px) { .products-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1024px) { .products-grid.cols-4 { grid-template-columns: repeat(4, 1fr); } }
@media (min-width: 1024px) { .products-grid:not(.cols-4) { grid-template-columns: repeat(3, 1fr); } }

.p-card {
  position: relative; background: var(--white); border: 1px solid var(--line);
  border-radius: var(--r-md); overflow: hidden; display: flex; flex-direction: column;
  transition: transform .45s var(--ease), box-shadow .45s var(--ease), border-color .45s;
}
.p-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: var(--beige); }
.p-media { position: relative; aspect-ratio: 1 / 1; background: var(--cream); overflow: hidden; }
.p-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .9s var(--ease); }
.p-card:hover .p-media img { transform: scale(1.06); }
.p-media .p-badge { position: absolute; top: 14px; left: 14px; z-index: 3; }
.p-media .p-wish {
  position: absolute; top: 12px; right: 12px; z-index: 3; width: 38px; height: 38px;
  border-radius: 50%; background: rgba(251,247,239,.92); backdrop-filter: blur(4px);
  display: grid; place-items: center; color: var(--ink-2);
  transition: transform .3s var(--ease), background .3s, color .3s;
}
.p-media .p-wish:hover { transform: scale(1.1); }
.p-media .p-wish.on { color: #fff; background: var(--honey); }
.p-media .p-wish svg { width: 18px; height: 18px; }
.p-media .p-wish .fill { display: none; }
.p-media .p-wish.on .fill { display: block; }
.p-media .p-wish.on .stroke { display: none; }
.p-media .p-quick {
  position: absolute; left: 14px; right: 14px; bottom: 14px; z-index: 3;
  background: rgba(251,247,239,.94); backdrop-filter: blur(6px);
  color: var(--ink); font-weight: 600; font-size: 13.5px;
  padding: 11px; border-radius: var(--r-full); text-align: center;
  opacity: 0; transform: translateY(10px); transition: all .4s var(--ease);
}
.p-card:hover .p-quick { opacity: 1; transform: none; }
.p-media .p-quick:hover { background: var(--ink); color: var(--ivory); }
.p-info { padding: 16px 18px 18px; display: flex; flex-direction: column; gap: 6px; flex: 1; }
.p-info .p-cat { font-size: 11px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--soft); }
.p-info .p-name { font-family: var(--font-display); font-size: 17px; font-weight: 500; line-height: 1.2; color: var(--ink); }
.p-info .p-name a:hover { color: var(--honey-2); }
.p-info .p-desc { font-size: 13px; color: var(--muted); line-height: 1.5; }
.p-info .p-rate { display: flex; align-items: center; gap: 8px; }
.p-info .p-foot { display: flex; align-items: center; justify-content: space-between; margin-top: auto; padding-top: 8px; }
.p-price { font-family: var(--font-display); font-weight: 600; font-size: 17.5px; color: var(--ink); }
.p-price .mrp { font-size: 13px; color: var(--soft); text-decoration: line-through; font-weight: 400; margin-left: 6px; font-family: var(--font-body); }
.p-add {
  width: 42px; height: 42px; border-radius: 50%; background: var(--ink); color: var(--ivory);
  display: grid; place-items: center; transition: all .3s var(--ease);
}
.p-add:hover { background: var(--honey-2); transform: scale(1.08); }
.p-add svg { width: 18px; height: 18px; }
.p-card.gone { opacity: 0; }
@media (max-width: 560px) {
  .products-grid { gap: 12px; }
  .p-info { padding: 12px 12px 14px; }
  .p-name { font-size: 15px; }
  .p-add { width: 38px; height: 38px; }
}

/* section header shared */
.sec-head { display: grid; gap: 14px; margin-bottom: 44px; }
.sec-head.light .h-title { color: var(--ivory); }

/* ---------- brand story ---------- */
.story { background: var(--white); }
.story-grid { display: grid; gap: 48px; align-items: center; grid-template-columns: 1fr; }
@media (min-width: 960px) { .story-grid { grid-template-columns: 1.05fr 1fr; gap: 72px; } }
.story-media { position: relative; }
.story-media .sm-main { border-radius: var(--r-lg); aspect-ratio: 4 / 5; overflow: hidden; box-shadow: var(--shadow-md); }
.story-media .sm-main img { width: 100%; height: 100%; object-fit: cover; }
.story-media .sm-float {
  position: absolute; right: -14px; bottom: -24px; width: 46%;
  border-radius: var(--r-md); overflow: hidden; box-shadow: var(--shadow-lg);
  border: 6px solid var(--white);
}
.story-media .sm-float img { width: 100%; aspect-ratio: 1; object-fit: cover; }
.story-copy { display: grid; gap: 20px; align-content: start; }
.story-copy p { color: var(--ink-2); font-size: 16px; line-height: 1.75; }
.story-copy .lead { font-size: 18px; }
.story-points { display: grid; gap: 14px; margin-top: 6px; }
.story-point { display: flex; gap: 14px; align-items: flex-start; }
.story-point .sp-ic { width: 42px; height: 42px; flex: none; border-radius: 13px; background: var(--cream); display: grid; place-items: center; color: var(--honey-2); }
.story-point .sp-ic svg { width: 20px; height: 20px; }
.story-point b { display: block; font-size: 15.5px; color: var(--ink); }
.story-point span { font-size: 13.5px; color: var(--muted); }

/* ---------- featured product ---------- */
.featured { background: var(--espresso); color: rgba(251,247,239,.8); overflow: hidden; }
.featured::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(52% 70% at 12% 20%, rgba(201,154,62,.14), transparent 62%),
    radial-gradient(40% 60% at 95% 90%, rgba(110,108,77,.2), transparent 60%);
  pointer-events: none;
}
.featured-wrap { position: relative; display: grid; gap: 56px; align-items: center; grid-template-columns: 1fr; }
@media (min-width: 960px) { .featured-wrap { grid-template-columns: 1.05fr 1fr; gap: 84px; } }
.featured-media { position: relative; }
.featured-media .fm-main { border-radius: var(--r-lg); aspect-ratio: 4 / 4.6; overflow: hidden; box-shadow: var(--shadow-lg); }
.featured-media .fm-main img { width: 100%; height: 100%; object-fit: cover; }
.featured-media .fm-tag {
  position: absolute; top: 20px; left: 20px; background: rgba(251,247,239,.95);
  color: var(--ink); font-size: 12px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
  padding: 8px 15px; border-radius: var(--r-full); box-shadow: var(--shadow-md);
}
.featured-copy { display: grid; gap: 22px; align-content: start; }
.featured-copy h2 { color: var(--ivory); }
.featured-copy .f-desc { font-size: 16px; line-height: 1.75; max-width: 56ch; color: rgba(251,247,239,.78); }
.f-price-row { display: flex; align-items: center; gap: 16px; }
.f-price-row .price { font-family: var(--font-display); font-size: 34px; font-weight: 600; color: var(--gold); }
.f-price-row .mrp { color: rgba(251,247,239,.4); text-decoration: line-through; font-size: 16px; }
.f-price-row .save { background: rgba(217,180,94,.16); color: var(--gold); font-size: 12px; font-weight: 700; padding: 6px 12px; border-radius: var(--r-full); }
.sizes { display: flex; flex-wrap: wrap; gap: 10px; }
.size-pill {
  position: relative; padding: 11px 20px; border: 1.5px solid rgba(251,247,239,.25);
  border-radius: var(--r-full); color: rgba(251,247,239,.86); font-size: 14px; font-weight: 500;
  cursor: pointer; transition: all .25s;
}
.size-pill:hover { border-color: var(--gold); color: var(--gold); }
.size-pill input { position: absolute; opacity: 0; pointer-events: none; }
.size-pill.on { border-color: var(--gold); background: var(--gold); color: var(--espresso); font-weight: 700; }
.f-cta-row { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 6px; }
.featured .connect { display: flex; flex-wrap: wrap; gap: 22px; margin-top: 10px; }
.featured .connect .c-item { display: flex; align-items: center; gap: 10px; font-size: 13.5px; color: rgba(251,247,239,.64); }
.featured .connect .c-item svg { width: 17px; height: 17px; color: var(--gold); }
.qty-lg { transform: scale(1.15); margin: 0 6px; }
@media (max-width: 640px) {
  .f-price-row .price { font-size: 28px; }
  .featured-wrap { gap: 36px; }
}

/* ---------- dry fruit lifestyle ---------- */
.dryfruit { background: var(--cream); }
.df-grid { display: grid; gap: 60px; align-items: center; grid-template-columns: 1fr; }
@media (min-width: 960px) { .df-grid { grid-template-columns: 1fr 1.05fr; } }
.df-copy { display: grid; gap: 22px; align-content: start; }
.df-list { display: grid; grid-template-columns: 1fr; gap: 12px; }
@media (min-width: 560px) { .df-list { grid-template-columns: 1fr 1fr; } }
.df-tag { display: flex; align-items: center; gap: 12px; padding: 13px 16px; background: var(--white); border: 1px solid var(--line); border-radius: var(--r-sm); }
.df-tag .dt-ic { width: 34px; height: 34px; flex: none; border-radius: 10px; background: var(--cream); display: grid; place-items: center; color: var(--olive); }
.df-tag .dt-ic svg { width: 17px; height: 17px; }
.df-tag b { font-size: 14px; color: var(--ink); display: block; line-height: 1.2; }
.df-tag span { font-size: 12px; color: var(--muted); }
.df-media { position: relative; }
.df-media .dm-main { border-radius: var(--r-lg); aspect-ratio: 5 / 4; overflow: hidden; box-shadow: var(--shadow-md); }
.df-media .dm-main img { width: 100%; height: 100%; object-fit: cover; }
.df-strip { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-top: 16px; }
.df-strip .strip-item { border-radius: var(--r-sm); overflow: hidden; aspect-ratio: 1; }
.df-strip .strip-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s var(--ease); }
.df-strip .strip-item:hover img { transform: scale(1.08); }

/* ---------- why blossom ---------- */
.why-grid { display: grid; gap: 18px; grid-template-columns: repeat(2, 1fr); margin-top: 48px; }
@media (min-width: 1024px) { .why-grid { grid-template-columns: repeat(4, 1fr); } }
@media (max-width: 560px) { .why-grid { gap: 12px; } }
.why-card {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--r-md);
  padding: 30px 24px; display: grid; gap: 14px; transition: transform .4s var(--ease), box-shadow .4s, border-color .4s;
}
.why-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: var(--beige); }
.why-card .w-ic { width: 52px; height: 52px; border-radius: 16px; background: linear-gradient(140deg, var(--cream), var(--sand)); display: grid; place-items: center; color: var(--honey-2); }
.why-card .w-ic svg { width: 24px; height: 24px; }
.why-card h3 { font-size: 18px; }
.why-card p { font-size: 13.5px; color: var(--muted); }

/* ---------- reviews ---------- */
.reviews { background: var(--white); }
.rev-grid { display: grid; gap: 20px; grid-template-columns: 1fr; margin-top: 48px; }
@media (min-width: 700px) { .rev-grid { grid-template-columns: repeat(3, 1fr); } }
.rev-card {
  background: var(--ivory); border: 1px solid var(--line); border-radius: var(--r-md);
  padding: 28px 26px; display: flex; flex-direction: column; gap: 14px;
  transition: transform .4s var(--ease), box-shadow .4s;
}
.rev-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.rev-card .rev-top { display: flex; align-items: center; gap: 13px; }
.rev-card .rev-avatar { width: 46px; height: 46px; border-radius: 50%; background: linear-gradient(140deg, var(--honey), var(--honey-2)); color: var(--ivory); display: grid; place-items: center; font-family: var(--font-display); font-weight: 600; font-size: 17px; }
.rev-card .rev-who b { display: block; font-size: 15px; color: var(--ink); }
.rev-card .rev-who span { font-size: 12.5px; color: var(--muted); }
.rev-card .rev-txt { font-size: 14.5px; color: var(--ink-2); line-height: 1.7; }
.rev-card .rev-bottom { margin-top: auto; display: flex; align-items: center; justify-content: space-between; }
.rev-card .rev-prod { font-size: 12px; color: var(--soft); }
.rev-tag-ok { display: inline-flex; align-items: center; gap: 6px; font-size: 12px; font-weight: 600; color: var(--olive-2); }
.rev-tag-ok svg { width: 14px; height: 14px; }

/* ---------- instagram ---------- */
.insta-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; margin-top: 48px; }
@media (min-width: 640px) { .insta-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1024px) { .insta-grid { grid-template-columns: repeat(6, 1fr); } }
.insta-item { position: relative; aspect-ratio: 1; border-radius: var(--r-sm); overflow: hidden; display: block; }
.insta-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s var(--ease); }
.insta-item:hover img { transform: scale(1.08); }
.insta-item .in-overlay {
  position: absolute; inset: 0; display: grid; place-items: center;
  background: rgba(32,24,18,.45); color: var(--ivory); opacity: 0; transition: opacity .35s;
}
.insta-item:hover .in-overlay { opacity: 1; }
.insta-item .in-overlay svg { width: 26px; height: 26px; }

/* ---------- faq ---------- */
.faq-wrap { max-width: 820px; margin-inline: auto; margin-top: 48px; }
.faq-item { border-bottom: 1.5px solid var(--line); }
.faq-q {
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 18px;
  padding: 22px 4px; text-align: left; font-family: var(--font-display); font-size: clamp(1.05rem, 1.6vw, 1.25rem); font-weight: 500; color: var(--ink);
  transition: color .25s;
}
.faq-q:hover { color: var(--honey-2); }
.faq-q .faq-ic { width: 34px; height: 34px; flex: none; border-radius: 50%; border: 1.5px solid var(--beige); display: grid; place-items: center; color: var(--honey-2); transition: transform .45s var(--ease), background .3s, color .3s; }
.faq-q .faq-ic svg { width: 15px; height: 15px; }
.faq-item.open .faq-ic { transform: rotate(45deg); background: var(--honey); color: var(--ivory); border-color: var(--honey); }
.faq-a { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .5s var(--ease); }
.faq-a > div { overflow: hidden; }
.faq-item.open .faq-a { grid-template-rows: 1fr; }
.faq-a p { padding: 0 34px 24px 4px; font-size: 15px; color: var(--ink-2); line-height: 1.75; }

/* ---------- contact ---------- */
.contact { background: var(--white); }
.contact-grid { display: grid; gap: 48px; grid-template-columns: 1fr; margin-top: 44px; }
@media (min-width: 960px) { .contact-grid { grid-template-columns: 1fr 1.15fr; gap: 72px; } }
.contact-info { display: grid; gap: 24px; align-content: start; }
.contact-info h2 { margin-bottom: 4px; }
.contact-channels { display: grid; gap: 14px; margin-top: 8px; }
.channel {
  display: flex; align-items: center; gap: 16px; padding: 16px 18px;
  background: var(--ivory); border: 1px solid var(--line); border-radius: var(--r-sm);
  transition: all .35s var(--ease);
}
.channel:hover { transform: translateX(6px); border-color: var(--beige); box-shadow: var(--shadow-sm); }
.channel .ch-ic { width: 46px; height: 46px; flex: none; border-radius: 14px; display: grid; place-items: center; color: var(--ivory); }
.channel .ch-ic svg { width: 21px; height: 21px; }
.channel .ch-ic.wa { background: #2E7D4F; }
.channel .ch-ic.ig { background: linear-gradient(45deg, #D8A03C, #A87E2C); }
.channel .ch-ic.em { background: var(--olive); }
.channel b { display: block; font-size: 15px; color: var(--ink); }
.channel span { font-size: 13px; color: var(--muted); }
.contact-form-card { background: var(--ivory); border: 1px solid var(--line); border-radius: var(--r-lg); padding: 32px 30px; }
.contact-form-card h3 { margin-bottom: 6px; font-size: 22px; }
.contact-form-card .sub { font-size: 13.5px; color: var(--muted); margin-bottom: 24px; }
.form-row { display: grid; gap: 16px; grid-template-columns: 1fr; }
@media (min-width: 560px) { .form-row.two { grid-template-columns: 1fr 1fr; } }