/** Shopify CDN: Minification failed

Line 189:17 Expected identifier but found whitespace
Line 189:19 Unexpected "{"
Line 189:29 Expected ":"
Line 189:63 Expected ":"

**/
:root {
  --teal: #1197b8;
  --deep-teal: #0d7f9f;
  --seafoam: #dff5f7;
  --pink: #f48ea4;
  --sun: #f5b041;
  --sand: #f8edd4;
  --palm: #3f8c62;
  --ink: #1e293b;
  --muted: #5f7284;
  --white: #ffffff;
  --line: rgba(17, 151, 184, 0.14);
  --shadow: 0 18px 45px rgba(17, 151, 184, 0.12);
  --radius: 28px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  font-family: Inter, system-ui, sans-serif;
  background:
    radial-gradient(circle at top left, rgba(245,176,65,.18), transparent 26%),
    radial-gradient(circle at top right, rgba(17,151,184,.12), transparent 30%),
    linear-gradient(180deg, #fffdfa 0%, #f7fdff 100%);
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
h1, h2, h3, h4 { font-family: "Playfair Display", Georgia, serif; }
.page-width { width: min(1180px, calc(100% - 32px)); margin: 0 auto; }
.announcement-bar { background: linear-gradient(90deg, var(--deep-teal), var(--teal)); color: #fff; text-align: center; padding: 12px 16px; font-size: 14px; letter-spacing: .03em; }
.site-header { display: flex; justify-content: space-between; align-items: center; gap: 24px; padding: 20px 0; position: sticky; top: 0; z-index: 20; backdrop-filter: blur(16px); }
.brand { display: flex; align-items: center; gap: 14px; }
.brand__logo { width: 64px; height: 64px; object-fit: cover; border-radius: 50%; border: 2px solid rgba(17,151,184,.14); background: #fff; }
.brand__logo--placeholder { display: grid; place-items: center; font-size: 24px; }
.brand__title { margin: 0; font-size: 22px; color: var(--deep-teal); }
.brand__tag { margin: 4px 0 0; font-size: 12px; color: var(--muted); text-transform: uppercase; letter-spacing: .08em; }
.site-nav { display: flex; align-items: center; gap: 20px; font-weight: 600; color: #28556a; flex-wrap: wrap; }
.button { display: inline-flex; align-items: center; justify-content: center; border-radius: 999px; padding: 14px 22px; background: linear-gradient(135deg, #f97316, #e85d04); color: #fff; font-weight: 700; border: none; box-shadow: 0 8px 24px rgba(249,115,22,.28); cursor: pointer; }
.button--secondary { background: #fff; color: #c2410c; border: 1.5px solid rgba(249,115,22,.40); box-shadow: none; }
.button--small { padding: 10px 14px; font-size: 14px; }
.button--newsletter { width: 100%; background: #fff4d4; color: #c2410c; font-weight: 800; box-shadow: none; }
.eyebrow { display: inline-flex; align-items: center; gap: 8px; padding: 9px 14px; border-radius: 999px; background: rgba(255,255,255,.88); border: 1px solid rgba(17,151,184,.14); color: var(--deep-teal); font-size: 13px; font-weight: 700; letter-spacing: .05em; text-transform: uppercase; }
.hero { display: grid; grid-template-columns: 1.05fr .95fr; gap: 34px; align-items: center; padding: 46px 0 26px; }
.hero h2 { margin: 18px 0 16px; font-size: clamp(42px, 6vw, 72px); line-height: .98; letter-spacing: -.04em; max-width: 10.5ch; }
.hero__text, .section-copy { color: #496173; line-height: 1.72; font-size: 18px; }
.hero__actions { display: flex; gap: 14px; flex-wrap: wrap; margin: 28px 0; }
.hero__stats { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 14px; }
.stat-card, .review-card, .product-card, .story-box, .newsletter-box { background: rgba(255,255,255,.88); border: 1px solid var(--line); border-radius: 28px; box-shadow: var(--shadow); }
.stat-card { padding: 18px; }
.stat-card strong { display: block; color: var(--deep-teal); font-size: 24px; margin-bottom: 6px; }
.stat-card span { color: var(--muted); font-size: 14px; }
.hero__visual { position: relative; min-height: 660px; padding: 28px; background: linear-gradient(180deg, #fff 0%, #f8feff 100%); border: 1px solid rgba(17,151,184,.12); border-radius: 36px; box-shadow: 0 30px 70px rgba(17,151,184,.18); overflow: hidden; }
.hero__visual::before, .hero__visual::after { content: ""; position: absolute; border-radius: 50%; opacity: .6; }
.hero__visual::before { width: 180px; height: 180px; background: rgba(245,176,65,.18); top: -40px; right: -20px; }
.hero__visual::after { width: 220px; height: 220px; background: rgba(244,142,164,.14); bottom: -60px; left: -30px; }
.hero__logo { width: 100%; max-width: 460px; margin: 32px auto 0; border-radius: 28px; background: linear-gradient(180deg, white 0%, #fbffff 100%); border: 1px solid rgba(17,151,184,.10); box-shadow: 0 18px 40px rgba(0,0,0,.08); padding: 12px; position: relative; z-index: 1; }
.floating-card { position: absolute; background: rgba(255,255,255,.95); border-radius: 22px; border: 1px solid rgba(17,151,184,.14); box-shadow: var(--shadow); padding: 14px 16px; max-width: 220px; z-index: 2; }
.floating-card strong { color: var(--deep-teal); }
.floating-card p { margin: 6px 0 0; font-size: 13px; line-height: 1.5; color: var(--muted); }
.floating-card--top { left: 18px; top: 22px; }
.floating-card--bottom { right: 18px; bottom: 24px; }
.section { padding: 34px 0; }
.section--tint { background: linear-gradient(135deg, rgba(17,151,184,.08), rgba(245,176,65,.10)); border-top: 1px solid rgba(17,151,184,.08); border-bottom: 1px solid rgba(17,151,184,.08); }
.section-head { display: flex; justify-content: space-between; align-items: end; gap: 18px; margin-bottom: 22px; }
.section-head--center { justify-content: center; text-align: center; }
.section-head h3, .story-box--copy h3, .newsletter-box h3 { margin: 0; font-size: clamp(28px, 3vw, 42px); line-height: 1.05; letter-spacing: -.03em; }
.pill-row { display: flex; flex-wrap: wrap; gap: 12px; }
.pill { padding: 10px 16px; border-radius: 999px; background: rgba(255,255,255,.86); border: 1px solid rgba(17,151,184,.12); color: var(--deep-teal); font-weight: 700; font-size: 14px; }
.products-grid { display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap: 20px; }
.product-card__media { height: 220px; padding: 18px; background: linear-gradient(180deg, #fff 0%, #f3fdff 100%); display: flex; align-items: center; justify-content: center; position: relative; border-radius: 28px 28px 0 0; }
.tag { position: absolute; top: 16px; left: 16px; padding: 8px 12px; border-radius: 999px; background: #fff; color: var(--deep-teal); font-size: 12px; font-weight: 800; border: 1px solid rgba(17,151,184,.10); }
.soap-bar { width: 148px; height: 148px; border-radius: 34px; transform: rotate(-8deg); box-shadow: inset 0 0 0 1px rgba(0,0,0,.05), 0 18px 30px rgba(0,0,0,.08); position: relative; }
.soap-bar::before { content: "Florida Sun & Skin"; position: absolute; inset: 0; display: grid; place-items: center; font-size: 14px; color: rgba(0,0,0,.48); font-weight: 700; text-align: center; padding: 18px; }
.soap-bar--teal { background: linear-gradient(145deg, #bff5ff, #4fc8e0); }
.soap-bar--pink { background: linear-gradient(145deg, #ffd6df, #f48ea4); }
.soap-bar--sun { background: linear-gradient(145deg, #ffe7b9, #f5b041); }
.soap-bar--sand { background: linear-gradient(145deg, #fff6dd, #e9cf92); }
.product-card__body { padding: 18px; }
.product-card__body h4 { margin: 0 0 8px; font-size: 20px; }
.product-card__body p, .review-card p, .mini-card p, .feature-item p, .newsletter-box p { margin: 0 0 14px; color: var(--muted); line-height: 1.65; font-size: 14px; }
.price-row { display: flex; justify-content: space-between; align-items: center; gap: 12px; }
.price strong { font-size: 24px; color: var(--deep-teal); margin-right: 8px; }
.price span { color: var(--muted); text-decoration: line-through; font-size: 14px; }
.section--split { display: grid; grid-template-columns: .95fr 1.05fr; gap: 24px; }
.story-box { padding: 34px; }
.story-box--visual { background: radial-gradient(circle at 20% 20%, rgba(245,176,65,.25), transparent 20%), radial-gradient(circle at 80% 25%, rgba(244,142,164,.22), transparent 18%), linear-gradient(180deg, #eafcff, #fffdf9 80%); }
.story-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 16px; }
.mini-card { border-radius: 22px; padding: 18px; background: white; border: 1px solid rgba(17,151,184,.10); }
.mini-card strong, .feature-item strong, .review-card strong { color: var(--deep-teal); }
.feature-list { display: grid; gap: 14px; margin-top: 24px; }
.feature-item { display: grid; grid-template-columns: auto 1fr; gap: 14px; padding: 16px 18px; border-radius: 20px; background: #fbfeff; border: 1px solid rgba(17,151,184,.10); }
.feature-item span { width: 16px; height: 16px; margin-top: 4px; border-radius: 50%; background: linear-gradient(135deg, var(--sun), var(--pink)); }
.reviews-grid { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 18px; }
.review-card { padding: 22px; }
.newsletter-box { padding: 34px; display: grid; grid-template-columns: 1.1fr .9fr; gap: 22px; align-items: center; background: linear-gradient(135deg, #0c89a9, #19a4c5); color: #fff; box-shadow: 0 28px 60px rgba(17,151,184,.24); }
.newsletter-box .eyebrow { background: rgba(255,255,255,.12); color: #fff; border-color: rgba(255,255,255,.18); }
.newsletter-box p { color: rgba(255,255,255,.88); }
.newsletter-form { background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.18); padding: 18px; border-radius: 26px; display: grid; gap: 12px; }
.newsletter-form input { width: 100%; border: none; outline: none; border-radius: 999px; padding: 16px 18px; font-size: 16px; }
@media (max-width: 1024px) {
  .hero, .section--split, .newsletter-box { grid-template-columns: 1fr; }
  .products-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .reviews-grid { grid-template-columns: 1fr; }
}
@media (max-width: 760px) {
  .site-header, .section-head, .price-row { flex-direction: column; align-items: flex-start; }
  .hero__stats, .story-grid, .products-grid { grid-template-columns: 1fr; }
  .hero__visual { min-height: auto; }
  .floating-card { position: static; margin-top: 14px; max-width: none; }
}


.rte p:first-child { margin-top: 0; }
.rte p:last-child { margin-bottom: 0; }
.pagination { display: flex; gap: 12px; justify-content: center; margin-top: 24px; }
.product-detail-grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 32px; align-items: start; }
.product-form__options, .product-form__actions { display: grid; gap: 12px; margin-top: 20px; }
.product-form__options label, .product-form__actions label { font-weight: 600; }
.product-form__options select, .product-form__actions input { width: 100%; padding: 12px 14px; border-radius: 14px; border: 1px solid rgba(17, 151, 184, 0.2); font: inherit; }
.product-card__body h4 a { color: inherit; text-decoration: none; }
.product-card__body h4 a:hover { text-decoration: underline; }
@media (max-width: 768px) { .product-detail-grid { grid-template-columns: 1fr; } }


.collection-grid, .article-grid, .search-results-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 20px; }
.collection-card .price span { text-decoration: none; }
.contact-layout, .cart-layout { display: grid; grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr); gap: 24px; align-items: start; }
.contact-form, .form-grid { display: grid; gap: 14px; }
.form-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.contact-form input, .contact-form textarea, .search-form input, .cart-qty {
  width: 100%; padding: 14px 16px; border-radius: 16px; border: 1px solid rgba(17,151,184,.18); font: inherit; background: #fff;
}
.contact-form textarea { resize: vertical; }
.form-message { padding: 14px 16px; border-radius: 16px; }
.form-message--success { background: rgba(63,140,98,.12); color: #1f6d48; }
.search-bar-wrap { max-width: 760px; margin: 18px auto 0; }
.search-form { display: grid; grid-template-columns: 1fr auto; gap: 12px; }
.article-single { max-width: 900px; }
.article-header { margin-bottom: 24px; }
.article-header h1 { margin: 14px 0 10px; font-size: clamp(36px, 5vw, 62px); line-height: 1; }
.article-hero { border-radius: 28px; overflow: hidden; border: 1px solid var(--line); box-shadow: var(--shadow); margin-bottom: 28px; }
.article-body { background: rgba(255,255,255,.86); border: 1px solid var(--line); border-radius: 28px; padding: 28px; }
.not-found-box { text-align: center; max-width: 760px; margin: 0 auto; }
.cart-items { display: grid; gap: 18px; }
.cart-item { display: grid; grid-template-columns: 140px 1fr; gap: 18px; align-items: start; }
.cart-item__media img { border-radius: 22px; border: 1px solid var(--line); }
.cart-summary { position: sticky; top: 110px; display: grid; gap: 14px; }
@media (max-width: 1024px) {
  .collection-grid, .article-grid, .search-results-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .contact-layout, .cart-layout { grid-template-columns: 1fr; }
}
@media (max-width: 760px) {
  .collection-grid, .article-grid, .search-results-grid, .form-grid, .cart-item, .search-form { grid-template-columns: 1fr; }
}


body { background: var(--color-bg); color: var(--color-text); }
.page-width { width: min(calc(100% - 32px), var(--page-width)); margin: 0 auto; }
img { max-width: 100%; height: auto; display: block; }
.button { background: var(--color-accent); }
.button--secondary { border-color: var(--color-accent); color: var(--color-accent); }
.product-card, .newsletter-box, .cart-item, .site-footer, .product-card__media { border-radius: var(--radius-md); }
.site-footer { margin: 3rem 0 0; padding: 3rem 0; background: rgba(17,151,184,0.08); }
.site-footer__grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 2rem; }
.site-footer__links { list-style: none; padding: 0; margin: 0; display: grid; gap: .5rem; }
.site-footer__social { display: flex; flex-wrap: wrap; gap: .75rem; margin-top: 1rem; }
.site-footer__note { opacity: .8; margin-top: 1rem; }
.app-blocks-stack { display: grid; gap: 1rem; margin-top: 1.5rem; }
.product-thumbs { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: .75rem; margin-top: 1rem; }
.product-thumb img { border-radius: 12px; }
.share-links { display: flex; flex-wrap: wrap; align-items: center; gap: .75rem; margin-top: 1.25rem; }
.section-head--split { display: flex; justify-content: space-between; align-items: end; gap: 1rem; }
.collection-count { margin: 0; font-weight: 600; }
.cart-summary__actions { display: flex; flex-wrap: wrap; gap: .75rem; margin: 1rem 0; }
.additional-checkout-buttons { margin-top: 1rem; }
.cart-note textarea { width: 100%; min-height: 120px; margin-top: .5rem; }
@media (max-width: 900px) { .site-footer__grid, .section-head--split { grid-template-columns: 1fr; display: grid; } }


body { font-size: {{ settings.base_font_size | default: 16 }}px; background: var(--color-bg); color: var(--color-text); }
h1, h2, h3, h4 { transform: scale(calc({{ settings.heading_scale | default: 100 }} / 100)); transform-origin: left top; }
.page-width { width: min(var(--page-width), calc(100% - 32px)); }
.section { padding: var(--section-spacing) 0; }
.rte p:last-child { margin-bottom: 0; }
.site-header-wrapper { background: rgba(255,255,255,.88); border-bottom: 1px solid rgba(17,151,184,.08); }
.site-header-wrapper--sticky { position: sticky; top: 0; z-index: 30; backdrop-filter: blur(18px); }
.site-header { padding: 18px 0; }
.brand__link { display:flex; align-items:center; gap:14px; }
.header-icons { display:flex; gap:14px; align-items:center; font-weight:600; }
.announcement-bar__inner { display:flex; justify-content:center; gap:12px; flex-wrap:wrap; }
.mobile-nav { display:none; margin-bottom: 12px; }
.mobile-nav summary { cursor:pointer; font-weight:700; }
.mobile-nav__panel { display:grid; gap:10px; padding:14px 0 4px; }
.breadcrumbs-wrap { padding-top: 18px; }
.breadcrumbs { display:flex; gap:8px; flex-wrap:wrap; color: var(--color-text-soft); font-size:14px; }
.rich-text-block--center { text-align:center; max-width: 760px; margin: 0 auto; }
.media-split { display:grid; grid-template-columns: 1fr 1fr; gap: 24px; align-items:center; }
.media-split--reverse .media-split__media { order: 2; }
.media-split__media img, .placeholder-box { width:100%; border-radius: var(--radius-lg); border:1px solid rgba(17,151,184,.1); background:#fff; min-height:320px; object-fit:cover; display:grid; place-items:center; }
.multicolumn-grid { display:grid; gap:18px; }
.multicolumn-grid--2 { grid-template-columns:repeat(2,minmax(0,1fr)); }
.multicolumn-grid--3 { grid-template-columns:repeat(3,minmax(0,1fr)); }
.multicolumn-grid--4 { grid-template-columns:repeat(4,minmax(0,1fr)); }
.multicolumn-icon { font-size:28px; margin:0 0 10px; }
.promo-banner { display:flex; justify-content:space-between; gap:24px; align-items:center; padding:30px; border-radius:var(--radius-lg); border:1px solid rgba(17,151,184,.12); box-shadow: var(--card-shadow); }
.promo-banner--teal { background: linear-gradient(135deg, rgba(17,151,184,.12), rgba(255,255,255,.9)); }
.promo-banner--pink { background: linear-gradient(135deg, rgba(244,142,164,.14), rgba(255,255,255,.9)); }
.promo-banner--sun, .promo-banner--sand { background: linear-gradient(135deg, rgba(245,176,65,.14), rgba(255,255,255,.9)); }
.trust-bar { display:grid; gap:14px; grid-template-columns:repeat(3,minmax(0,1fr)); }
.trust-bar--boxed .trust-bar__item, .trust-bar__item { background: rgba(255,255,255,.88); border:1px solid rgba(17,151,184,.12); border-radius: var(--radius-md); padding:18px; box-shadow: var(--card-shadow); }
.trust-bar__item strong { display:block; color: var(--deep-teal); margin-bottom:6px; }
.faq-list { display:grid; gap:14px; }
.faq-item { background:#fff; border:1px solid rgba(17,151,184,.12); border-radius: var(--radius-md); padding:16px 18px; box-shadow: var(--card-shadow); }
.faq-item summary { cursor:pointer; font-weight:700; }
.app-blocks-stack { display:grid; gap:16px; margin-top:20px; }
.product-detail-grid { display:grid; grid-template-columns: 1.1fr .9fr; gap: 28px; }
.product-thumbs { display:grid; grid-template-columns:repeat(4,minmax(0,1fr)); gap:12px; margin-top:14px; }
.product-thumb img { border-radius: var(--radius-sm); border:1px solid rgba(17,151,184,.1); }
.product-form { display:grid; gap:16px; margin-top:18px; }
.product-form__options, .product-form__actions { display:grid; gap:10px; }
.product-form select, .product-form input, .contact-form input, .contact-form textarea, .cart-note textarea, .cart-item input, .newsletter-form input, .main-search__form input { width:100%; border:1px solid rgba(17,151,184,.16); border-radius: 14px; padding:14px 16px; font:inherit; }
.share-links { display:flex; gap:12px; flex-wrap:wrap; margin-top:16px; font-weight:600; }
.products-grid--2 { grid-template-columns: repeat(2,minmax(0,1fr)); }
.products-grid--3 { grid-template-columns: repeat(3,minmax(0,1fr)); }
.products-grid--4 { grid-template-columns: repeat(4,minmax(0,1fr)); }
.collection-count { color: var(--color-text-soft); }
.collection-grid { display:grid; grid-template-columns:repeat(3,minmax(0,1fr)); gap:20px; }
.contact-layout { display:grid; grid-template-columns: .9fr 1.1fr; gap:24px; }
.form-grid { display:grid; grid-template-columns:repeat(2,minmax(0,1fr)); gap:16px; }
.form-message { margin-bottom:12px; padding:14px 16px; border-radius:14px; }
.form-message--success { background: rgba(63,140,98,.12); color:#255438; }
.cart-list { display:grid; gap:18px; }
.cart-item { display:grid; grid-template-columns:140px 1fr; gap:18px; padding:18px; background:#fff; border:1px solid rgba(17,151,184,.12); border-radius: var(--radius-md); box-shadow: var(--card-shadow); }
.cart-item__media img { border-radius: var(--radius-sm); }
.cart-summary, .cart-note, .main-search__form { margin-top:20px; background:#fff; border:1px solid rgba(17,151,184,.12); border-radius: var(--radius-md); padding:18px; box-shadow: var(--card-shadow); }
.cart-summary__actions { display:flex; gap:12px; flex-wrap:wrap; margin-top:10px; }
.pagination { display:flex; gap:12px; margin-top:20px; }
.site-footer { padding: 0 0 42px; }
.site-footer__grid { display:grid; grid-template-columns: 1.2fr .9fr .9fr; gap: 24px; background:#fff; border:1px solid rgba(17,151,184,.12); border-radius: var(--radius-lg); box-shadow: var(--card-shadow); padding:28px; }
.site-footer__links { list-style:none; padding:0; margin:0; display:grid; gap:10px; }
.site-footer__social { display:flex; gap:12px; flex-wrap:wrap; }
@media (max-width: 1024px) {
  .product-detail-grid, .contact-layout, .media-split, .site-footer__grid, .promo-banner, .hero, .section--split, .newsletter-box { grid-template-columns:1fr; }
  .collection-grid, .multicolumn-grid--4 { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .trust-bar { grid-template-columns:1fr; }
}
@media (max-width: 760px) {
  .site-nav--desktop, .header-icons { display:none; }
  .mobile-nav { display:block; }
  .form-grid, .collection-grid, .multicolumn-grid--2, .multicolumn-grid--3, .multicolumn-grid--4, .products-grid--2, .products-grid--3, .products-grid--4, .products-grid { grid-template-columns:1fr; }
  .cart-item { grid-template-columns:1fr; }
}


/* ============================================================
   HEADER — Nav links & icon buttons
   ============================================================ */
.site-nav__link {
  position: relative;
  font-weight: 600;
  color: #28556a;
  padding: 6px 2px;
  letter-spacing: .01em;
  transition: color .2s;
}
.site-nav__link::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0; right: 0;
  height: 2px;
  background: var(--teal);
  border-radius: 99px;
  transform: scaleX(0);
  transition: transform .2s;
}
.site-nav__link:hover,
.site-nav__link--active { color: var(--teal); }
.site-nav__link--active::after,
.site-nav__link:hover::after { transform: scaleX(1); }

.header-icons { display: flex; gap: 6px; align-items: center; }

.header-icon-btn {
  position: relative;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  padding: 8px;
  border-radius: 12px;
  color: #28556a;
  transition: background .18s, color .18s;
  text-decoration: none;
}
.header-icon-btn:hover { background: rgba(17,151,184,.08); color: var(--teal); }
.header-icon-label { font-size: 10px; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; color: var(--muted); }

.cart-badge {
  position: absolute;
  top: 4px; right: 4px;
  min-width: 18px; height: 18px;
  padding: 0 4px;
  border-radius: 99px;
  background: var(--pink);
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  display: grid;
  place-items: center;
  line-height: 1;
}

/* Mobile nav icons row */
.mobile-nav__icons {
  display: flex;
  gap: 18px;
  padding-top: 14px;
  border-top: 1px solid rgba(17,151,184,.10);
  margin-top: 6px;
  font-size: 14px;
  font-weight: 600;
  color: #28556a;
}
.mobile-nav__icons a {
  display: flex;
  align-items: center;
  gap: 6px;
  color: inherit;
  text-decoration: none;
}
.mobile-nav__toggle {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  cursor: pointer;
  list-style: none;
  padding: 14px 0;
}
.mobile-nav__toggle::-webkit-details-marker { display: none; }

/* ============================================================
   WHY US SECTION
   ============================================================ */
.why-us__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.why-us__heading {
  margin: 16px 0 16px;
  font-size: clamp(28px, 3.5vw, 46px);
  line-height: 1.08;
  letter-spacing: -.03em;
  color: var(--ink);
}
.why-us__body { color: #496173; font-size: 17px; line-height: 1.7; margin-bottom: 24px; }
.why-us__benefits { list-style: none; padding: 0; margin: 0 0 28px; display: grid; gap: 14px; }
.why-us__benefit {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 14px 16px;
  background: rgba(255,255,255,.88);
  border: 1px solid rgba(17,151,184,.10);
  border-radius: 18px;
  box-shadow: 0 4px 14px rgba(17,151,184,.07);
}
.why-us__benefit-icon { font-size: 22px; line-height: 1; flex-shrink: 0; margin-top: 1px; }
.why-us__benefit-dot {
  width: 14px; height: 14px; border-radius: 50%;
  background: linear-gradient(135deg, var(--sun), var(--pink));
  flex-shrink: 0; margin-top: 4px;
}
.why-us__benefit strong { display: block; color: var(--deep-teal); margin-bottom: 3px; font-size: 15px; }
.why-us__benefit p { margin: 0; color: var(--muted); font-size: 14px; line-height: 1.55; }
.why-us__visual img {
  width: 100%;
  border-radius: 32px;
  border: 1px solid rgba(17,151,184,.12);
  box-shadow: 0 24px 56px rgba(17,151,184,.14);
  object-fit: cover;
}
@media (max-width: 900px) { .why-us__inner { grid-template-columns: 1fr; } }

/* ============================================================
   ABOUT US PREVIEW SECTION
   ============================================================ */
.about-preview__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.about-preview__inner--reverse .about-preview__copy { order: -1; }
.about-preview__visual img {
  width: 100%;
  border-radius: 32px;
  border: 1px solid rgba(17,151,184,.12);
  box-shadow: 0 24px 56px rgba(17,151,184,.14);
  object-fit: cover;
}
.about-preview__visual--placeholder {
  min-height: 360px;
  border-radius: 32px;
  background: linear-gradient(135deg, rgba(17,151,184,.10), rgba(245,176,65,.12));
  border: 1px dashed rgba(17,151,184,.20);
  display: grid;
  place-items: center;
  font-size: 64px;
}
.about-preview__heading {
  margin: 14px 0 16px;
  font-size: clamp(26px, 3vw, 42px);
  line-height: 1.1;
  letter-spacing: -.03em;
}
.about-preview__body { color: #496173; font-size: 17px; line-height: 1.7; margin-bottom: 24px; }
@media (max-width: 900px) {
  .about-preview__inner { grid-template-columns: 1fr; }
  .about-preview__inner--reverse .about-preview__copy { order: 0; }
}

/* ============================================================
   CUSTOMER REVIEWS — enhanced
   ============================================================ */
.reviews-section__heading {
  margin: 12px 0 6px;
  font-size: clamp(26px, 3vw, 40px);
  letter-spacing: -.03em;
}
.reviews-section__sub { color: var(--muted); margin: 0 0 28px; font-size: 17px; }
.reviews-grid--1 { grid-template-columns: 1fr; max-width: 640px; margin: 0 auto; }
.reviews-grid--2 { grid-template-columns: repeat(2, minmax(0,1fr)); }
.reviews-grid--3 { grid-template-columns: repeat(3, minmax(0,1fr)); }
.review-card { display: flex; flex-direction: column; gap: 14px; }
.review-card__stars { display: flex; gap: 3px; }
.star { font-size: 18px; }
.star--full  { color: var(--sun); }
.star--empty { color: #dde4ea; }
.review-card__quote { font-size: 16px; line-height: 1.68; color: var(--ink); margin: 0; flex-grow: 1; }
.review-card__footer { display: flex; align-items: center; gap: 12px; padding-top: 14px; border-top: 1px solid rgba(17,151,184,.08); }
.review-card__avatar {
  width: 40px; height: 40px; border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(17,151,184,.15);
  flex-shrink: 0;
}
.review-card__avatar-placeholder {
  width: 40px; height: 40px; border-radius: 50%;
  background: linear-gradient(135deg, var(--teal), var(--deep-teal));
  color: #fff;
  font-weight: 800;
  font-size: 16px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.review-card__author { display: block; color: var(--deep-teal); font-size: 14px; }
.review-card__location { display: block; color: var(--muted); font-size: 12px; margin-top: 1px; }
.reviews-section__cta { text-align: center; margin-top: 32px; }
@media (max-width: 900px) {
  .reviews-grid--3, .reviews-grid--2 { grid-template-columns: 1fr; }
}

/* ============================================================
   NEWSLETTER — enhanced
   ============================================================ */
.newsletter-box {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 40px;
  align-items: center;
  background: linear-gradient(135deg, #0c89a9, #19a4c5);
  color: #fff;
  border-radius: 32px;
  box-shadow: 0 28px 60px rgba(17,151,184,.24);
  padding: 40px 44px;
}
.newsletter-box__heading {
  margin: 12px 0 12px;
  font-size: clamp(24px, 2.8vw, 38px);
  letter-spacing: -.03em;
  line-height: 1.1;
}
.newsletter-box__text { color: rgba(255,255,255,.88); font-size: 16px; line-height: 1.65; margin: 0 0 18px; }
.newsletter-box .eyebrow { background: rgba(255,255,255,.12); color: #fff; border-color: rgba(255,255,255,.18); }
.newsletter-perks { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.newsletter-perk { display: flex; align-items: center; gap: 10px; font-size: 14px; font-weight: 600; color: rgba(255,255,255,.92); }
.newsletter-perk span { font-size: 18px; }
.newsletter-form { background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.22); padding: 22px; border-radius: 26px; display: grid; gap: 12px; }
.newsletter-form input {
  width: 100%;
  border: none;
  outline: none;
  border-radius: 999px;
  padding: 15px 18px;
  font: inherit;
  font-size: 15px;
  background: rgba(255,255,255,.95);
  color: var(--ink);
}
.newsletter-form input::placeholder { color: var(--muted); }
.newsletter-disclaimer { color: rgba(255,255,255,.6); font-size: 12px; margin: 0; text-align: center; }
@media (max-width: 900px) { .newsletter-box { grid-template-columns: 1fr; padding: 28px 24px; } }

/* ============================================================
   FOOTER — enhanced
   ============================================================ */
.site-footer { padding: 0 0 0; background: transparent; }
.site-footer__inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 40px;
  padding: 44px 40px;
  background: #fff;
  border: 1px solid rgba(17,151,184,.10);
  border-radius: 28px;
  box-shadow: 0 8px 32px rgba(17,151,184,.08);
  margin-bottom: 20px;
}
.site-footer__logo { max-width: 160px; height: auto; margin-bottom: 14px; }
.site-footer__brand-name { font-family: "Playfair Display", Georgia, serif; font-size: 20px; color: var(--deep-teal); margin: 0 0 10px; font-weight: 700; }
.site-footer__brand-text { color: var(--muted); font-size: 14px; line-height: 1.65; margin-bottom: 18px; }
.site-footer__brand-text p { margin: 0; }

/* Social icons */
.site-footer__social { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 4px; }
.social-icon {
  display: grid;
  place-items: center;
  width: 38px; height: 38px;
  border-radius: 10px;
  background: rgba(17,151,184,.08);
  color: var(--deep-teal);
  border: 1px solid rgba(17,151,184,.12);
  transition: background .18s, color .18s, transform .18s;
  text-decoration: none;
}
.social-icon:hover {
  background: var(--teal);
  color: #fff;
  border-color: var(--teal);
  transform: translateY(-2px);
}

/* Footer columns */
.site-footer__col-heading { font-size: 14px; font-weight: 800; text-transform: uppercase; letter-spacing: .07em; color: var(--deep-teal); margin: 0 0 16px; }
.site-footer__links { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.site-footer__links a { color: var(--muted); font-size: 14px; font-weight: 500; transition: color .18s; }
.site-footer__links a:hover { color: var(--teal); }

/* Contact list */
.site-footer__contact-list { list-style: none; padding: 0; margin: 0 0 18px; display: grid; gap: 10px; }
.site-footer__contact-list li { display: flex; align-items: flex-start; gap: 8px; color: var(--muted); font-size: 14px; }
.site-footer__contact-list svg { flex-shrink: 0; margin-top: 1px; color: var(--teal); }
.site-footer__contact-list a { color: var(--muted); transition: color .18s; }
.site-footer__contact-list a:hover { color: var(--teal); }
.site-footer__contact-btn { margin-top: 4px; font-size: 13px !important; padding: 10px 16px !important; }

/* Bottom bar */
.site-footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  padding: 16px 0 28px;
  border-top: 1px solid rgba(17,151,184,.08);
}
.site-footer__copyright { color: var(--muted); font-size: 13px; margin: 0; }
.site-footer__policies { display: flex; gap: 18px; flex-wrap: wrap; }
.site-footer__policies a { color: var(--muted); font-size: 13px; font-weight: 500; transition: color .18s; }
.site-footer__policies a:hover { color: var(--teal); }

@media (max-width: 900px) {
  .site-footer__inner { grid-template-columns: 1fr; padding: 28px 20px; }
  .site-footer__bottom { flex-direction: column; align-items: flex-start; }
}

/* Contact page */
.contact-social-note { margin-top: 24px; padding-top: 20px; border-top: 1px solid rgba(17,151,184,.08); color: var(--muted); font-size: 14px; line-height: 1.65; }
.contact-social-note p { margin: 0; }


/* ============================================================
   CORAL/ORANGE BUTTON OVERRIDES & ADD TO CART
   ============================================================ */
.button:hover { background: linear-gradient(135deg, #ea6c0d, #c2410c); transform: translateY(-1px); box-shadow: 0 12px 28px rgba(249,115,22,.34); transition: all .18s; }
.button--secondary:hover { background: rgba(249,115,22,.06); border-color: rgba(249,115,22,.5); }
.button--atc {
  background: linear-gradient(135deg, #f97316, #e85d04);
  color: #fff;
  font-weight: 800;
  font-size: 17px;
  padding: 18px 36px;
  border-radius: 999px;
  border: none;
  box-shadow: 0 10px 28px rgba(249,115,22,.30);
  cursor: pointer;
  letter-spacing: .01em;
  width: auto;
  min-width: 200px;
  transition: all .18s;
}
.button--atc:hover { background: linear-gradient(135deg, #ea6c0d, #c2410c); transform: translateY(-2px); box-shadow: 0 14px 32px rgba(249,115,22,.38); }
.button--atc-full { width: 100%; }
.button--soldout {
  background: #e5e7eb;
  color: #9ca3af;
  font-weight: 700;
  font-size: 16px;
  padding: 18px 36px;
  border-radius: 999px;
  border: none;
  cursor: not-allowed;
  min-width: 200px;
}

/* Featured-products card button override */
.product-card .button--small { background: linear-gradient(135deg, #f97316, #e85d04); color: #fff; border: none; }
.product-card .button--small:hover { background: linear-gradient(135deg, #ea6c0d, #c2410c); }
.product-card .button--secondary { background: linear-gradient(135deg, #f97316, #e85d04); color: #fff; border: none; box-shadow: 0 6px 16px rgba(249,115,22,.24); }

/* ============================================================
   PRODUCT DETAIL PAGE
   ============================================================ */
.product-detail__title { font-size: clamp(28px, 4vw, 44px); margin: 0 0 14px; letter-spacing: -.03em; line-height: 1.08; }
.product-detail__price-row { display: flex; align-items: baseline; gap: 12px; margin-bottom: 18px; }
.product-detail__price { font-size: 28px; color: var(--deep-teal); font-weight: 800; }
.product-detail__compare { font-size: 16px; color: var(--muted); text-decoration: line-through; }
.product-detail__description { color: #496173; font-size: 16px; line-height: 1.72; margin-bottom: 22px; }
.product-form__qty { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.product-form__qty label { font-weight: 600; color: var(--deep-teal); font-size: 14px; }
.product-form__qty input { width: 72px; padding: 10px 12px; border-radius: 12px; border: 1.5px solid rgba(17,151,184,.18); font-size: 15px; font-weight: 700; text-align: center; }
.product-form__actions { display: flex; flex-direction: column; gap: 10px; margin-top: 8px; margin-bottom: 20px; }
.additional-checkout-buttons { margin-top: 4px; }

/* ============================================================
   INGREDIENTS — Beautiful pill display
   ============================================================ */
.product-detail__tabs { margin-top: 24px; border-top: 1px solid rgba(17,151,184,.10); }
.product-tab { border-bottom: 1px solid rgba(17,151,184,.10); }
.product-tab__summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 4px;
  font-weight: 700;
  font-size: 16px;
  color: var(--deep-teal);
  cursor: pointer;
  list-style: none;
  user-select: none;
}
.product-tab__summary::-webkit-details-marker { display: none; }
.product-tab__chevron { transition: transform .2s; flex-shrink: 0; color: var(--teal); }
details[open] .product-tab__chevron { transform: rotate(180deg); }
.product-tab__body { padding: 0 4px 20px; }

.ingredients-showcase { padding: 18px 0 4px; }
.ingredients-list {
  list-style: none;
  padding: 0;
  margin: 0 0 16px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.ingredient-chip {
  display: inline-flex;
  align-items: center;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(17,151,184,.07);
  border: 1px solid rgba(17,151,184,.14);
  color: var(--deep-teal);
  font-size: 13px;
  font-weight: 600;
  line-height: 1;
  transition: background .15s;
}
.ingredient-chip:hover { background: rgba(17,151,184,.14); }
.ingredients-note {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.6;
  padding: 12px 14px;
  background: rgba(17,151,184,.04);
  border-radius: 14px;
  border-left: 3px solid var(--teal);
  margin: 0;
}

/* ============================================================
   BUNDLES PAGE
   ============================================================ */
.bundles-page__heading { font-size: clamp(32px, 5vw, 52px); margin: 14px 0 10px; letter-spacing: -.04em; }
.bundles-page__sub { color: var(--muted); font-size: 18px; max-width: 560px; margin: 0 auto 42px; text-align: center; }
.bundles-page__note { text-align: center; color: var(--muted); font-size: 13px; margin-top: 32px; }

.bundles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  align-items: start;
}

.bundle-card {
  position: relative;
  background: #fff;
  border: 1.5px solid rgba(17,151,184,.10);
  border-radius: 28px;
  box-shadow: 0 8px 28px rgba(17,151,184,.08);
  overflow: hidden;
  transition: transform .2s, box-shadow .2s;
}
.bundle-card:hover { transform: translateY(-4px); box-shadow: 0 18px 42px rgba(17,151,184,.14); }
.bundle-card--featured {
  border-color: #f97316;
  box-shadow: 0 12px 40px rgba(249,115,22,.18);
  transform: scale(1.03);
}
.bundle-card--featured:hover { transform: scale(1.03) translateY(-4px); }

.bundle-card__badge {
  position: absolute;
  top: 16px; right: 16px;
  background: linear-gradient(135deg, #f97316, #e85d04);
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 999px;
  z-index: 2;
}

.bundle-card__visual {
  height: 180px;
  display: grid;
  place-items: center;
  position: relative;
}
.bundle-card__visual--teal { background: linear-gradient(145deg, #bff5ff, #4fc8e0); }
.bundle-card__visual--sun  { background: linear-gradient(145deg, #ffe7b9, #f5b041); }
.bundle-card__visual--sand { background: linear-gradient(145deg, #fdf6ec, #f5e0c0); }
.bundle-card__visual--pink { background: linear-gradient(145deg, #ffd6df, #f48ea4); }
.bundle-card__visual img { width: 100%; height: 100%; object-fit: cover; }
.bundle-card__icon { font-size: 64px; filter: drop-shadow(0 4px 12px rgba(0,0,0,.12)); }

.bundle-card__body { padding: 22px 22px 24px; }
.bundle-card__name { font-size: 22px; margin: 0 0 14px; letter-spacing: -.02em; color: var(--ink); }
.bundle-card__includes {
  list-style: none;
  padding: 0;
  margin: 0 0 14px;
  display: grid;
  gap: 7px;
}
.bundle-card__includes li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--muted);
  font-weight: 500;
}
.bundle-card__includes li::before {
  content: '✓';
  display: grid;
  place-items: center;
  width: 18px; height: 18px;
  border-radius: 50%;
  background: rgba(249,115,22,.10);
  color: #e85d04;
  font-size: 10px;
  font-weight: 900;
  flex-shrink: 0;
}
.bundle-card__desc { font-size: 14px; color: var(--muted); line-height: 1.6; margin: 0 0 16px; }
.bundle-card__price-row { margin-bottom: 16px; }
.bundle-card__price { font-size: 28px; font-weight: 800; color: var(--deep-teal); margin-right: 8px; }
.bundle-card__compare { font-size: 15px; color: var(--muted); text-decoration: line-through; margin-right: 6px; }
.bundle-card__savings {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  background: rgba(249,115,22,.10);
  color: #c2410c;
  padding: 3px 9px;
  border-radius: 999px;
}
.bundle-atc-form { margin: 0; }

@media (max-width: 900px) {
  .bundles-grid { grid-template-columns: 1fr; }
  .bundle-card--featured { transform: none; }
}


/* ============================================================
   GLOBAL BUTTON WHITE FONT FIX
   ============================================================ */
.button,
.button--atc,
.button--newsletter,
.button--secondary,
.button--small { color: #fff !important; }
.button--secondary { background: transparent; color: #c2410c !important; border: 1.5px solid rgba(249,115,22,.5); }
.button--secondary:hover { background: rgba(249,115,22,.07); color: #c2410c !important; }

/* Newsletter subscribe button — orange with white font */
.button--newsletter {
  background: linear-gradient(135deg, #f97316, #e85d04) !important;
  color: #fff !important;
  font-weight: 800;
  box-shadow: 0 6px 18px rgba(249,115,22,.28);
}
.button--newsletter:hover { background: linear-gradient(135deg, #ea6c0d, #c2410c) !important; }

/* ============================================================
   WHY-US — Compact pill row + CTA above the fold
   ============================================================ */
.why-us__pills {
  list-style: none;
  padding: 0;
  margin: 0 0 26px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.why-us__pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 9px 16px;
  border-radius: 999px;
  background: rgba(255,255,255,.9);
  border: 1px solid rgba(249,115,22,.20);
  color: #c2410c;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .01em;
  box-shadow: 0 2px 8px rgba(249,115,22,.08);
}
.why-us__pill span { font-size: 15px; }

/* ============================================================
   SHOP PAGE — 3 sections + hoverable cards
   ============================================================ */
.shop-section { margin-bottom: 56px; }
.shop-section__head { margin-bottom: 24px; }
.shop-section__heading {
  font-size: clamp(24px, 3vw, 36px);
  letter-spacing: -.03em;
  margin: 0 0 8px;
  color: var(--ink);
}
.shop-section__sub { color: var(--muted); font-size: 15px; margin: 0; }

/* Fully clickable hoverable product card */
.shop-card {
  background: #fff;
  border: 1.5px solid rgba(17,151,184,.10);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 4px 18px rgba(17,151,184,.07);
  display: flex;
  flex-direction: column;
  transition: transform .22s cubic-bezier(.34,1.56,.64,1), box-shadow .22s;
  cursor: pointer;
}
.shop-card:hover {
  transform: translateY(-6px) scale(1.015);
  box-shadow: 0 18px 42px rgba(17,151,184,.15);
}
.shop-card__link {
  display: flex;
  flex-direction: column;
  flex: 1;
  text-decoration: none;
  color: inherit;
}
.shop-card__media {
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: linear-gradient(145deg, #bff5ff, #eaf9fd);
}
.shop-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}
.shop-card:hover .shop-card__media img { transform: scale(1.04); }
.shop-card__body { padding: 16px 18px 10px; flex: 1; }
.shop-card__title { font-size: 16px; font-weight: 700; margin: 0 0 6px; color: var(--ink); }
.shop-card__desc  { font-size: 13px; color: var(--muted); margin: 0 0 8px; line-height: 1.55; }
.shop-card__price { font-size: 18px; font-weight: 800; color: var(--deep-teal); margin: 0; }
.shop-card__footer { padding: 0 18px 18px; }
.shop-card__form { margin: 0; }

/* Smaller Add to Cart button for cards */
.button--atc-card {
  padding: 11px 18px !important;
  font-size: 14px !important;
  min-width: unset !important;
  width: 100%;
}

/* ============================================================
   STICKY ADD TO CART BAR
   ============================================================ */
.sticky-atc {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(18px);
  border-top: 1px solid rgba(17,151,184,.12);
  box-shadow: 0 -8px 32px rgba(17,151,184,.12);
  transform: translateY(100%);
  transition: transform .28s cubic-bezier(.4,0,.2,1);
  padding: 12px 0;
}
.sticky-atc--visible { transform: translateY(0); }
.sticky-atc__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.sticky-atc__product { display: flex; align-items: center; gap: 14px; }
.sticky-atc__img { width: 52px; height: 52px; object-fit: cover; border-radius: 12px; border: 1px solid rgba(17,151,184,.12); flex-shrink: 0; }
.sticky-atc__title { font-weight: 700; font-size: 15px; margin: 0; color: var(--ink); }
.sticky-atc__price { font-size: 14px; color: var(--muted); margin: 2px 0 0; }
.sticky-atc__actions { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.sticky-atc__btn { padding: 13px 28px !important; font-size: 15px !important; min-width: unset !important; }
.sticky-atc__form { display: flex; gap: 10px; align-items: center; }
@media (max-width: 640px) {
  .sticky-atc__product { display: none; }
  .sticky-atc__inner { justify-content: center; }
}

/* ============================================================
   CART — Trash icon, qty stepper, recommendations, tracker
   ============================================================ */
.cart-item__header { display: flex; justify-content: space-between; align-items: flex-start; gap: 12px; }
.cart-item__variant { font-size: 13px; color: var(--muted); margin: 2px 0 4px; }
.cart-item__price   { font-size: 15px; font-weight: 700; color: var(--deep-teal); margin: 0; }
.cart-item__remove {
  background: none;
  border: none;
  cursor: pointer;
  color: #9ca3af;
  padding: 6px;
  border-radius: 8px;
  transition: color .16s, background .16s;
  flex-shrink: 0;
  display: grid;
  place-items: center;
}
.cart-item__remove:hover { color: #ef4444; background: rgba(239,68,68,.08); }

.cart-item__qty-row { margin-top: 10px; }
.qty-stepper { display: inline-flex; align-items: center; border: 1.5px solid rgba(17,151,184,.18); border-radius: 999px; overflow: hidden; }
.qty-stepper__btn {
  background: none;
  border: none;
  padding: 6px 14px;
  font-size: 18px;
  font-weight: 700;
  cursor: pointer;
  color: var(--deep-teal);
  line-height: 1;
  transition: background .15s;
}
.qty-stepper__btn:hover { background: rgba(17,151,184,.08); }
.qty-stepper__input { width: 40px; text-align: center; border: none; font-size: 14px; font-weight: 700; padding: 6px 0; -moz-appearance: textfield; }
.qty-stepper__input::-webkit-outer-spin-button,
.qty-stepper__input::-webkit-inner-spin-button { -webkit-appearance: none; }

.cart-summary__totals { border-bottom: 1px solid rgba(17,151,184,.10); padding-bottom: 14px; margin-bottom: 14px; display: grid; gap: 8px; }
.cart-summary__row { display: flex; justify-content: space-between; font-size: 15px; }
.cart-summary__row strong { font-size: 18px; color: var(--deep-teal); }
.cart-summary__shipping-note { color: var(--muted); font-size: 13px; }
.cart-summary__shipping-note--free { color: var(--palm); font-weight: 700; }
.cart-summary__disclaimer { font-size: 12px; color: var(--muted); margin: 0 0 14px; }
.cart-summary__actions { display: flex; flex-direction: column; gap: 10px; }

.shipping-tracker {
  background: linear-gradient(135deg, rgba(249,115,22,.08), rgba(249,115,22,.04));
  border: 1px solid rgba(249,115,22,.15);
  border-radius: 18px;
  padding: 14px 18px;
  margin-bottom: 24px;
}
.shipping-tracker__msg { margin: 0 0 10px; font-size: 14px; font-weight: 600; color: var(--ink); }
.shipping-tracker__msg--achieved { color: var(--palm); }
.shipping-tracker__bar { height: 8px; background: rgba(17,151,184,.12); border-radius: 999px; overflow: hidden; }
.shipping-tracker__fill { height: 100%; background: linear-gradient(90deg, #f97316, #e85d04); border-radius: 999px; transition: width .5s ease; }

.cart-empty { text-align: center; padding: 64px 24px; }
.cart-empty__icon { font-size: 56px; margin: 0 0 16px; }
.cart-empty h2 { margin: 0 0 8px; }
.cart-empty p { color: var(--muted); margin: 0 0 24px; }

/* Cart recommendations */
.cart-recommendations { margin-top: 48px; padding-top: 32px; border-top: 1px solid rgba(17,151,184,.10); }
.cart-recommendations__heading { font-size: 22px; margin: 0 0 20px; letter-spacing: -.02em; }
.cart-recs-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.cart-rec-card {
  background: #fff;
  border: 1.5px solid rgba(17,151,184,.10);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 14px rgba(17,151,184,.07);
  display: flex;
  flex-direction: column;
  position: relative;
}
.cart-rec-card__label {
  position: absolute;
  top: 10px; left: 10px;
  background: rgba(255,255,255,.92);
  color: var(--deep-teal);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 999px;
  border: 1px solid rgba(17,151,184,.12);
  z-index: 1;
}
.cart-rec-card__media { display: block; aspect-ratio: 1/1; overflow: hidden; background: linear-gradient(145deg, #bff5ff, #eaf9fd); }
.cart-rec-card__media img { width: 100%; height: 100%; object-fit: cover; }
.cart-rec-card__body { padding: 14px; display: flex; flex-direction: column; gap: 8px; }
.cart-rec-card__title { font-size: 14px; font-weight: 700; color: var(--ink); text-decoration: none; }
.cart-rec-card__title:hover { color: var(--teal); }
.cart-rec-card__price { font-size: 15px; font-weight: 800; color: var(--deep-teal); margin: 0; }
@media (max-width: 640px) { .cart-recs-grid { grid-template-columns: 1fr; } }

/* ============================================================
   SITEWIDE FREE SHIPPING TRACKER (header)
   ============================================================ */
.sitewide-tracker {
  background: linear-gradient(90deg, #fff7ed, #fff3e0);
  border-bottom: 1px solid rgba(249,115,22,.12);
  padding: 8px 0;
  font-size: 13px;
}
.sitewide-tracker__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.sitewide-tracker__msg {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #92400e;
  font-weight: 600;
  margin: 0;
}
.sitewide-tracker__msg--achieved { color: #166534; }
.sitewide-tracker__bar-wrap { display: flex; align-items: center; gap: 8px; flex: 1; min-width: 120px; max-width: 220px; }
.sitewide-tracker__bar { flex: 1; height: 6px; background: rgba(249,115,22,.15); border-radius: 999px; overflow: hidden; }
.sitewide-tracker__fill { height: 100%; background: linear-gradient(90deg, #f97316, #e85d04); border-radius: 999px; transition: width .5s ease; min-width: 4px; }
.sitewide-tracker__pct { font-size: 11px; font-weight: 700; color: #c2410c; white-space: nowrap; }
@media (max-width: 640px) { .sitewide-tracker__bar-wrap { display: none; } }

/* ============================================================
   REVIEWS — product name chip + leave-a-review
   ============================================================ */
.review-card__product {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: #c2410c;
  background: rgba(249,115,22,.08);
  border-radius: 999px;
  padding: 3px 10px;
  margin: 0 0 8px;
}
.reviews-section__cta { text-align: center; margin-top: 36px; }
.reviews-section__cta-text { color: var(--muted); margin: 0 0 14px; font-size: 15px; }

/* ============================================================
   LEAVE A REVIEW FORM
   ============================================================ */
.review-form-wrap { max-width: 680px; margin: 0 auto; }
.review-form__intro { color: var(--muted); font-size: 16px; line-height: 1.7; max-width: 520px; margin: 0 auto 32px; text-align: center; }
.review-form { display: grid; gap: 20px; }
.review-form__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.review-form__field { display: flex; flex-direction: column; gap: 6px; }
.review-form__field label { font-weight: 700; font-size: 14px; color: var(--deep-teal); }
.review-form__optional { font-weight: 400; color: var(--muted); }
.review-form__field input,
.review-form__field select,
.review-form__field textarea {
  border: 1.5px solid rgba(17,151,184,.16);
  border-radius: 14px;
  padding: 13px 16px;
  font: inherit;
  font-size: 15px;
  color: var(--ink);
  transition: border-color .16s;
  background: #fff;
}
.review-form__field input:focus,
.review-form__field select:focus,
.review-form__field textarea:focus { outline: none; border-color: var(--teal); box-shadow: 0 0 0 3px rgba(17,151,184,.10); }
.review-form__consent { flex-direction: row; align-items: flex-start; }
.review-form__checkbox-label { display: flex; gap: 10px; align-items: flex-start; cursor: pointer; font-size: 14px; color: var(--muted); line-height: 1.55; }
.review-form__checkbox-label input { margin-top: 2px; flex-shrink: 0; accent-color: #f97316; width: 16px; height: 16px; }
.review-form__note { text-align: center; font-size: 12px; color: var(--muted); margin: 0; }
.review-form__success { text-align: center; padding: 48px 24px; background: rgba(22,101,52,.05); border: 1px solid rgba(22,101,52,.15); border-radius: 24px; }
.review-form__success-icon { font-size: 48px; margin: 0 0 12px; }
.review-form__success h3 { margin: 0 0 8px; color: #166534; }
.review-form__success p { color: var(--muted); margin: 0; }
@media (max-width: 640px) { .review-form__grid { grid-template-columns: 1fr; } }

/* sr-only utility */
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }

/* ============================================================
   FEATURED PRODUCTS — small card link button (fits in card)
   ============================================================ */
.button--card-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 9px 16px;
  font-size: 13px;
  font-weight: 700;
  background: linear-gradient(135deg, #f97316, #e85d04);
  color: #fff !important;
  border-radius: 999px;
  border: none;
  box-shadow: 0 4px 12px rgba(249,115,22,.22);
  text-decoration: none;
  white-space: nowrap;
  transition: background .16s, transform .16s;
  flex-shrink: 0;
}
.button--card-link:hover {
  background: linear-gradient(135deg, #ea6c0d, #c2410c);
  transform: translateY(-1px);
}

/* Make price-row not overflow — price on left, button on right, both fitting */
.product-card .price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  flex-wrap: nowrap;
}
.product-card .price strong { font-size: 18px; }

/* ============================================================
   FOOTER — ensure it renders visibly on all pages
   ============================================================ */
.site-footer {
  margin-top: 56px;
  padding-top: 0;
}
.site-footer__inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 40px;
  padding: 44px 40px;
  background: #fff;
  border: 1px solid rgba(17,151,184,.10);
  border-radius: 28px 28px 0 0;
  box-shadow: 0 -4px 24px rgba(17,151,184,.06);
  margin-bottom: 0;
}
.site-footer__bottom {
  background: #f8f9fa;
  border-top: 1px solid rgba(17,151,184,.08);
  padding: 16px 40px 24px;
  border-radius: 0 0 0 0;
}

/* ============================================================
   ABOUT PAGE — ensure brand-story section renders cleanly
   ============================================================ */
.template-page .section--split,
.template-page-about .section--split {
  min-height: 400px;
}

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.about-hero { text-align: center; padding: 48px 0 40px; max-width: 720px; margin: 0 auto; }
.about-hero__heading { font-size: clamp(36px, 5vw, 62px); letter-spacing: -.04em; margin: 14px 0 18px; line-height: 1.04; }
.about-hero__sub { font-size: 18px; color: var(--muted); line-height: 1.7; max-width: 560px; margin: 0 auto; }

.about-split { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; margin: 48px 0 64px; }
.about-split__visual img { width: 100%; border-radius: 32px; box-shadow: 0 24px 56px rgba(17,151,184,.14); object-fit: cover; }
.about-split__visual--placeholder { min-height: 380px; border-radius: 32px; background: linear-gradient(135deg, rgba(17,151,184,.10), rgba(245,176,65,.12)); border: 1px dashed rgba(17,151,184,.20); display: grid; place-items: center; font-size: 72px; }
.about-split__heading { font-size: clamp(26px, 3vw, 40px); letter-spacing: -.03em; margin: 14px 0 18px; }
.about-split__body { color: #496173; font-size: 17px; line-height: 1.72; }
.about-split__body p { margin: 0 0 14px; }

.about-values { text-align: center; margin: 0 0 64px; }
.about-values__heading { font-size: clamp(26px, 3vw, 40px); letter-spacing: -.03em; margin: 0 0 32px; }
.about-values__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.about-value-card { background: #fff; border: 1.5px solid rgba(17,151,184,.10); border-radius: 24px; padding: 28px 20px; box-shadow: 0 4px 18px rgba(17,151,184,.07); text-align: center; }
.about-value-card__icon { font-size: 36px; display: block; margin-bottom: 14px; }
.about-value-card__title { font-size: 16px; font-weight: 700; color: var(--deep-teal); margin: 0 0 8px; }
.about-value-card__text { font-size: 14px; color: var(--muted); line-height: 1.6; margin: 0; }

.about-cta { text-align: center; background: linear-gradient(135deg, rgba(249,115,22,.06), rgba(249,115,22,.02)); border: 1.5px solid rgba(249,115,22,.14); border-radius: 28px; padding: 48px 40px; margin: 0 0 32px; }
.about-cta__heading { font-size: clamp(28px, 3.5vw, 46px); letter-spacing: -.03em; margin: 0 0 12px; }
.about-cta__text { color: var(--muted); font-size: 18px; margin: 0 0 28px; }

@media (max-width: 900px) {
  .about-split { grid-template-columns: 1fr; }
  .about-values__grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .about-values__grid { grid-template-columns: 1fr; }
}


/* ============================================================
   FOOTER TIGHTENING PATCH — compact editable footer, no Help column
   ============================================================ */
.site-footer {
  margin-top: 32px !important;
  padding: 0 0 18px !important;
}
.site-footer__inner {
  display: grid !important;
  grid-template-columns: minmax(220px, 1.25fr) minmax(140px, .75fr) minmax(160px, .85fr) !important;
  gap: 22px !important;
  padding: 28px 28px 22px !important;
  border-radius: 22px 22px 0 0 !important;
}
.site-footer__brand-name {
  margin: 0 0 8px !important;
  font-size: 18px !important;
}
.site-footer__brand-text,
.site-footer__brand-text p {
  margin: 0 !important;
  font-size: 14px !important;
  line-height: 1.55 !important;
}
.site-footer__brand p[style] {
  margin-top: 8px !important;
  line-height: 1.45 !important;
}
.site-footer__col-heading {
  margin: 0 0 10px !important;
  font-size: 12px !important;
}
.site-footer__links {
  gap: 6px !important;
}
.site-footer__links a {
  font-size: 13px !important;
}
.site-footer__social {
  margin-top: 12px !important;
  gap: 8px !important;
}
.site-footer__contact-btn {
  margin-top: 12px !important;
  padding: 8px 13px !important;
  font-size: 12px !important;
}
.site-footer__location {
  margin: 10px 0 0 !important;
  font-size: 13px !important;
}
.site-footer__bottom {
  padding: 12px 28px 18px !important;
  gap: 10px !important;
  font-size: 12px !important;
}
.site-footer__policies {
  gap: 8px !important;
}
.site-footer__policies a,
.site-footer__policies span {
  font-size: 12px !important;
}
@media (max-width: 900px) {
  .site-footer__inner {
    grid-template-columns: 1fr !important;
    gap: 18px !important;
    padding: 24px 20px 20px !important;
  }
  .site-footer__bottom {
    padding: 12px 20px 18px !important;
  }
}

/* Button row section base layout. Visual styles are scoped in sections/button-row.liquid. */
.button-row-section__inner {
  max-width: var(--page-width, 1100px);
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
}

/* ============================================================
   MASTER 1 — editability, featured-product links, shop sorting,
   compact sticky ATC, and bundle dropdowns
   ============================================================ */
.featured-products-card {
  background: var(--card-bg, #fff);
  color: var(--card-text, var(--ink));
  border-radius: var(--card-radius, 28px);
  overflow: hidden;
}
.featured-products-card .product-card__body,
.featured-products-card .product-card__body h4,
.featured-products-card .product-card__body p { color: var(--card-text, var(--ink)); }
.featured-products-card__media { background: var(--media-bg, #f3fdff); }
.featured-products-card__media-link { display: block; color: inherit; text-decoration: none; }
.featured-products-card__media-link:hover img { transform: scale(1.025); }
.featured-products-card__media img { transition: transform .22s ease; }
.featured-products-card__button {
  background: var(--button-bg, var(--color-accent));
  color: var(--button-text, #fff);
  border: 1.5px solid var(--button-border, var(--button-bg, var(--color-accent)));
  box-shadow: none;
}

.shop-page__top h1 { margin: 10px 0 8px; font-size: clamp(34px, 4vw, 56px); line-height: 1; }
.shop-sort-form { display: grid; gap: 6px; min-width: min(260px, 100%); }
.shop-sort-form label { font-weight: 800; color: var(--deep-teal); font-size: 13px; letter-spacing: .04em; text-transform: uppercase; }
.shop-sort-form select {
  width: 100%;
  border: 1px solid rgba(17,151,184,.18);
  border-radius: 14px;
  padding: 12px 14px;
  background: #fff;
  font: inherit;
}
.shop-category-strip {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(170px, 220px);
  gap: 14px;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  padding: 4px 2px 18px;
  margin: 8px 0 20px;
  scroll-snap-type: inline mandatory;
}
.shop-category-card {
  min-height: 116px;
  scroll-snap-align: start;
  display: grid;
  align-content: end;
  gap: 5px;
  border-radius: 22px;
  border: 1px solid rgba(17,151,184,.14);
  background: linear-gradient(135deg, rgba(17,151,184,.08), rgba(245,176,65,.12));
  padding: 16px;
  color: var(--ink);
  text-decoration: none;
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 28px rgba(17,151,184,.08);
}
.shop-category-card:hover { transform: translateY(-1px); }
.shop-category-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: .28; }
.shop-category-card span, .shop-category-card small { position: relative; z-index: 1; }
.shop-category-card span { font-weight: 900; color: var(--deep-teal); font-size: 18px; }
.shop-category-card small { color: var(--muted); font-weight: 650; }
.shop-section { margin-top: 34px; }
.shop-section__head--with-link { display: flex; justify-content: space-between; gap: 18px; align-items: end; }
.shop-scroll-row {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(240px, 300px);
  gap: 18px;
  overflow-x: auto;
  padding: 2px 2px 16px;
  scroll-snap-type: inline mandatory;
}
.shop-scroll-row .shop-card { scroll-snap-align: start; }
.shop-card { background: rgba(255,255,255,.9); border: 1px solid rgba(17,151,184,.12); border-radius: var(--radius-md); overflow: hidden; box-shadow: var(--card-shadow); }
.shop-card__link { display: block; color: inherit; text-decoration: none; }
.shop-card__media { aspect-ratio: 1 / 1; display: grid; place-items: center; background: #f7fdff; overflow: hidden; }
.shop-card__media img { width: 100%; height: 100%; object-fit: cover; }
.shop-card__body, .shop-card__footer { padding: 16px; }
.shop-card__footer { padding-top: 0; }
.shop-card__title { margin: 0 0 8px; }
.shop-card__desc { color: var(--muted); line-height: 1.55; font-size: 14px; }
.shop-card__price { color: var(--deep-teal); font-weight: 900; font-size: 18px; }
.shop-card__form { display: grid; }

.bundle-choice-fields { display: grid; gap: 10px; padding: 16px; border: 1px solid rgba(17,151,184,.12); border-radius: var(--radius-md); background: rgba(17,151,184,.045); }
.bundle-choice-fields__note { margin: 0; color: var(--muted); line-height: 1.5; }
.bundle-choice-fields label { font-weight: 800; color: var(--deep-teal); }
.bundle-choice-fields select { width: 100%; border: 1px solid rgba(17,151,184,.18); border-radius: 14px; padding: 13px 14px; background: #fff; font: inherit; }
.sticky-atc { position: fixed; left: 0; right: 0; bottom: 0; z-index: 60; transform: translateY(115%); transition: transform .2s ease; background: rgba(255,255,255,.96); border-top: 1px solid rgba(17,151,184,.16); box-shadow: 0 -12px 28px rgba(17,151,184,.12); }
.sticky-atc--visible { transform: translateY(0); }
.sticky-atc__inner { display: flex; justify-content: space-between; gap: 14px; align-items: center; padding-top: 10px; padding-bottom: 10px; }
.sticky-atc__product { min-width: 0; display: flex; gap: 10px; align-items: center; }
.sticky-atc__img { width: 46px; height: 46px; object-fit: cover; border-radius: 12px; border: 1px solid rgba(17,151,184,.12); }
.sticky-atc__title { margin: 0; font-weight: 850; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; max-width: 42vw; }
.sticky-atc__price { margin: 2px 0 0; color: var(--deep-teal); font-weight: 800; }
.sticky-atc__form { display: flex; gap: 8px; align-items: center; }
.sticky-atc__btn { padding: 11px 18px; min-height: 44px; }
@media (max-width: 760px) {
  .sticky-atc--hide-mobile { display: none !important; }
  .sticky-atc__inner { width: min(100% - 20px, var(--page-width)); }
  .sticky-atc__title { max-width: 45vw; font-size: 14px; }
  .sticky-atc__price { font-size: 13px; }
  .sticky-atc__btn { padding: 10px 14px; font-size: 14px; }
  .shop-section__head--with-link { display: grid; align-items: start; }
}

/* Master 1.1 — improved mobile sticky add-to-cart */
.sticky-atc {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 100;
  transform: translateY(110%);
  transition: transform .22s ease;
  background: rgba(255, 255, 255, .98);
  border-top: 1px solid rgba(17,151,184,.14);
  box-shadow: 0 -14px 34px rgba(20, 73, 82, .14);
  padding: 10px 0 calc(10px + env(safe-area-inset-bottom));
  backdrop-filter: blur(14px);
}
.sticky-atc--visible { transform: translateY(0); }
.sticky-atc__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.sticky-atc__product {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  flex: 1 1 auto;
}
.sticky-atc__img {
  width: 44px;
  height: 44px;
  object-fit: cover;
  border-radius: 12px;
  border: 1px solid rgba(17,151,184,.14);
  flex: 0 0 auto;
}
.sticky-atc__copy { min-width: 0; }
.sticky-atc__title {
  margin: 0;
  font-size: 14px;
  line-height: 1.2;
  font-weight: 850;
  color: var(--ink);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 46vw;
}
.sticky-atc__price {
  margin: 3px 0 0;
  font-size: 12px;
  line-height: 1.2;
  font-weight: 800;
  color: var(--deep-teal);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 46vw;
}
.sticky-atc__support { color: var(--muted); font-weight: 650; }
.sticky-atc__actions { flex: 0 0 auto; display: flex; align-items: center; }
.sticky-atc__btn {
  min-height: 46px !important;
  min-width: 132px !important;
  padding: 11px 18px !important;
  border-radius: 999px !important;
  font-size: 14px !important;
  line-height: 1.1 !important;
  white-space: nowrap;
}
@media (max-width: 760px) {
  .sticky-atc--hide-mobile { display: none !important; }
  .sticky-atc__inner { width: min(100% - 20px, var(--page-width)); }
  .sticky-atc__product { flex: 1 1 0; }
  .sticky-atc__img { width: 40px; height: 40px; border-radius: 11px; }
  .sticky-atc__title, .sticky-atc__price { max-width: 42vw; }
  .sticky-atc__btn { min-width: 124px !important; padding-left: 14px !important; padding-right: 14px !important; }
}
@media (max-width: 390px) {
  .sticky-atc__support { display: none; }
  .sticky-atc__title, .sticky-atc__price { max-width: 38vw; }
  .sticky-atc__btn { min-width: 112px !important; font-size: 13px !important; }
}
html.has-sticky-atc body { padding-bottom: 76px; }
@media (min-width: 761px) { html.has-sticky-atc body { padding-bottom: 0; } }


/* Florida Sun & Skin safe product media + Bundler placement
   Keeps the free-shipping tracker untouched. */
.product-detail__media-col .product-card__media {
  width: 100%;
  aspect-ratio: 1 / 1;
  height: auto;
  min-height: 0;
  padding: 0;
  overflow: hidden;
  border: 2px solid rgba(17, 151, 184, 0.22);
  border-radius: var(--radius-md);
  background: #fff;
}

.product-detail__media-col .product-card__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.product-thumbs {
  overflow: hidden;
}

.product-thumb {
  display: block;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border: 1px solid rgba(17, 151, 184, 0.18);
  border-radius: 12px;
  background: #fff;
}

.product-thumb img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.bundler-product-section {
  padding-top: 0;
  padding-bottom: 1.5rem;
}

.bundler-product-section #bundler-target-element {
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
}


/* Florida Sun & Skin Alpha 2 homepage foundation */
.fs-section-spacing {
  padding-top: var(--fs-pad-top, var(--section-spacing, 34px)) !important;
  padding-bottom: var(--fs-pad-bottom, var(--section-spacing, 34px)) !important;
  background: var(--fs-section-bg, transparent);
  color: var(--fs-section-text, inherit);
}
.why-us.fs-section-spacing { margin-bottom: 0; }
.why-us__inner { align-items: center; }
.featured-products-section.fs-section-spacing { margin-top: 0; }
.featured-products-grid .product-card { height: 100%; }
.featured-products-card__button { margin-top: auto; }
.product-card__body { display: flex; flex-direction: column; gap: 10px; }
.product-card__body p { margin: 0; }
.jdgm-all-reviews-widget:empty::before {
  content: "Judge.me reviews will appear here once the Judge.me widget is enabled for this theme.";
  display: block;
  padding: 24px;
  border: 1px dashed rgba(17,151,184,.35);
  border-radius: var(--radius-md, 20px);
  background: rgba(255,255,255,.72);
  color: var(--muted, #5f7284);
  text-align: center;
}
@media (max-width: 760px) {
  .fs-section-spacing {
    padding-top: var(--fs-pad-top-mobile, var(--fs-pad-top, 28px)) !important;
    padding-bottom: var(--fs-pad-bottom-mobile, var(--fs-pad-bottom, 28px)) !important;
  }
  .why-us__pills { gap: 8px; }
  .section-head { margin-bottom: 16px; }
}


/* ============================================================
   ALPHA 3 — Product gallery, app zones, mobile refinements
   ============================================================ */
.product-gallery { width: 100%; }
.product-gallery__viewport {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: #fff;
  border: 1px solid rgba(17,151,184,.10);
  box-shadow: 0 12px 30px rgba(17,151,184,.08);
}
.product-gallery__slide { display: none; width: 100%; }
.product-gallery__slide.is-active { display: block; }
.product-gallery__slide img { width: 100%; height: 100%; display: block; object-position: center; }
.product-gallery--fit-cover .product-gallery__slide img { object-fit: cover; }
.product-gallery--fit-contain .product-gallery__slide img { object-fit: contain; background: #fff; }
.product-gallery--ratio-square .product-gallery__viewport { aspect-ratio: 1 / 1; }
.product-gallery--ratio-portrait .product-gallery__viewport { aspect-ratio: 4 / 5; }
.product-gallery--ratio-landscape .product-gallery__viewport { aspect-ratio: 4 / 3; }
.product-gallery--ratio-natural .product-gallery__viewport { aspect-ratio: auto; }
.product-gallery--ratio-natural .product-gallery__slide img { height: auto; }
.product-gallery__placeholder { min-height: 420px; display: grid !important; place-items: center; }
.product-gallery__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 42px;
  height: 42px;
  border-radius: 999px;
  border: 1px solid rgba(17,151,184,.15);
  background: rgba(255,255,255,.92);
  color: var(--deep-teal);
  font-size: 34px;
  line-height: 1;
  display: grid;
  place-items: center;
  cursor: pointer;
  box-shadow: 0 8px 18px rgba(17,151,184,.12);
}
.product-gallery__arrow--prev { left: 14px; }
.product-gallery__arrow--next { right: 14px; }
.product-gallery__counter {
  position: absolute;
  right: 14px;
  bottom: 14px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(20,54,66,.72);
  color: #fff;
  font-size: 12px;
  font-weight: 800;
}
.product-gallery__thumbs { display: grid; grid-template-columns: repeat(5,minmax(0,1fr)); gap: 10px; margin-top: 12px; }
.product-gallery__thumb { padding: 0; border: 2px solid transparent; border-radius: 14px; overflow: hidden; background: #fff; cursor: pointer; aspect-ratio: 1 / 1; }
.product-gallery__thumb.is-active { border-color: var(--color-accent); }
.product-gallery__thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.judgeme-preview-badge { margin: -4px 0 12px; min-height: 22px; }
.app-blocks-stack { margin: 18px 0; padding: 16px; border-radius: 18px; background: rgba(255,255,255,.72); border: 1px solid rgba(17,151,184,.10); }
.bundler-product-section { padding-top: 18px; }
.bundler-product-section__inner, .product-reviews-section__inner { background: rgba(255,255,255,.82); border: 1px solid rgba(17,151,184,.10); border-radius: var(--radius-lg); padding: clamp(20px, 4vw, 34px); box-shadow: 0 10px 26px rgba(17,151,184,.07); }
.bundler-product-section__heading, .product-reviews-section h2 { margin: 0 0 8px; font-size: clamp(24px, 3vw, 34px); }
.bundler-product-section__sub { margin: 0 0 18px; color: var(--muted); line-height: 1.6; }
.bundler-theme-zone:empty::before { content: "Bundler offers will appear here after Bundler is enabled/configured for this product."; display: block; color: var(--muted); font-size: 14px; padding: 14px; border: 1px dashed rgba(17,151,184,.22); border-radius: 14px; }
.jdgm-widget:empty::before { content: "Judge.me will appear here after the Judge.me app widgets are enabled for this theme."; color: var(--muted); font-size: 14px; display: block; padding: 12px 0; }

@media (max-width: 768px) {
  .sitewide-tracker__inner { gap: 6px; padding-top: 6px; padding-bottom: 6px; }
  .sitewide-tracker__msg { font-size: 12px; }
  .brand__tag { display: none; }
  .site-header { padding-top: 10px; padding-bottom: 8px; }
  .mobile-nav__toggle { padding: 8px 0 10px; }
  .mobile-nav__panel { gap: 6px; padding: 8px 0 8px; }
  .mobile-nav__panel > a { padding: 8px 10px; border-radius: 12px; background: rgba(255,255,255,.72); text-decoration: none; color: var(--deep-teal); font-weight: 700; }
  .mobile-nav__icons { gap: 8px; padding-top: 8px; flex-wrap: wrap; }
  .mobile-nav__icons a { flex: 1 1 auto; min-width: 88px; justify-content: center; padding: 8px; border-radius: 999px; background: rgba(17,151,184,.06); }
  .product-gallery__viewport { border-radius: 20px; }
  .product-gallery__arrow { width: 36px; height: 36px; font-size: 28px; }
  .product-gallery__thumbs { display: flex; overflow-x: auto; scroll-snap-type: x mandatory; padding-bottom: 4px; }
  .product-gallery__thumb { flex: 0 0 62px; scroll-snap-align: start; }
  .product-detail__description { font-size: 15px; line-height: 1.6; max-height: 8.2em; overflow: hidden; position: relative; }
  .product-form__actions .button, .button--atc { width: 100%; min-height: 50px; }
  .reviews-grid--mobile-swipe { display: flex !important; overflow-x: auto; scroll-snap-type: x mandatory; gap: 14px; padding-bottom: 8px; }
  .reviews-grid--mobile-swipe .review-card { flex: 0 0 82%; scroll-snap-align: center; }
  .hero .button, .hero__actions .button { opacity: 1 !important; transform: none !important; animation: none !important; }
  .hero__copy, .hero p, .section-copy { line-height: 1.55; }
}


/* ============================================================
   ALPHA 4A — Safe mobile/image refinements
   ============================================================ */
.product-gallery__viewport { background: #fffdfa; }
.product-gallery__slide img { vertical-align: middle; }
.product-gallery--fit-cover .product-gallery__slide img { object-position: center center; }
@media (min-width: 769px) {
  .product-gallery--ratio-square .product-gallery__viewport { aspect-ratio: 1 / 0.92; }
}
@media (max-width: 768px) {
  .product-gallery--ratio-square .product-gallery__viewport { aspect-ratio: 1 / 0.86; }
  .product-gallery--ratio-portrait .product-gallery__viewport { aspect-ratio: 1 / 1.05; }
  .product-gallery--ratio-landscape .product-gallery__viewport { aspect-ratio: 1 / .78; }
  .why-us__inner { display: flex; flex-direction: column; gap: 18px; }
  .why-us__visual { order: 1; width: 100%; }
  .why-us__copy { order: 2; width: 100%; }
  .why-us__visual img { display: block; width: 100%; max-height: 420px; object-fit: cover; object-position: center; border-radius: 24px; }
  .why-us__mobile-cta { display: flex; width: 100%; justify-content: center; margin: 14px 0 4px; }
  .why-us__desktop-cta { display: none !important; }
  .why-us__copy .eyebrow { margin-top: 4px; }
  .why-us__heading { font-size: clamp(26px, 8vw, 34px); margin-top: 8px; }
  .why-us__body { font-size: 15px; line-height: 1.55; }
  .featured-products-carousel { position: relative; margin-left: -18px; margin-right: -18px; }
  .featured-products-grid {
    display: flex !important;
    overflow-x: auto;
    gap: 14px;
    scroll-snap-type: x mandatory;
    padding: 2px 18px 14px;
    -webkit-overflow-scrolling: touch;
  }
  .featured-products-grid::-webkit-scrollbar { display: none; }
  .featured-products-grid .product-card { flex: 0 0 82%; max-width: 82%; scroll-snap-align: center; }
  .featured-products-carousel__arrow {
    position: absolute;
    top: 40%;
    z-index: 2;
    width: 36px;
    height: 36px;
    border-radius: 999px;
    border: 1px solid rgba(17,151,184,.16);
    background: rgba(255,255,255,.96);
    color: var(--deep-teal);
    display: grid;
    place-items: center;
    box-shadow: 0 8px 20px rgba(17,151,184,.15);
    font-size: 28px;
    line-height: 1;
  }
  .featured-products-carousel__arrow--prev { left: 6px; }
  .featured-products-carousel__arrow--next { right: 6px; }
}
@media (min-width: 769px) {
  .why-us__mobile-cta, .featured-products-carousel__arrow { display: none !important; }
}


/* ============================================================
   ALPHA 4B — Gallery crop controls + mobile overflow guard
   ============================================================ */
html, body { max-width: 100%; overflow-x: hidden; }
*, *::before, *::after { box-sizing: border-box; }
img, video, iframe, svg { max-width: 100%; }

.product-detail-grid,
.product-detail__media-col,
.product-detail__info-col,
.page-width,
.section { min-width: 0; }

.product-gallery__viewport {
  background: #fffdfa;
  line-height: 0;
}
.product-gallery__slide {
  height: 100%;
  overflow: hidden;
  background: #fffdfa;
}
.product-gallery__slide img {
  object-position: var(--gallery-focus-x, 50%) var(--gallery-focus-y, 50%) !important;
  transform: scale(var(--gallery-zoom, 1));
  transform-origin: var(--gallery-focus-x, 50%) var(--gallery-focus-y, 50%);
  will-change: transform;
}
.product-gallery--fit-contain .product-gallery__slide img {
  transform: none;
}
.product-gallery--fit-cover .product-gallery__slide img {
  object-fit: cover !important;
}

@media (max-width: 768px) {
  body { width: 100%; }
  .product-detail-grid { grid-template-columns: 1fr !important; overflow: hidden; }
  .product-gallery, .product-gallery__viewport, .product-gallery__slide { max-width: 100%; }
  .product-gallery__thumbs,
  .featured-products-grid,
  .reviews-grid--mobile-swipe {
    max-width: 100vw;
    overscroll-behavior-x: contain;
  }
  .featured-products-carousel { max-width: 100vw; overflow: hidden; }
  .product-gallery--ratio-square .product-gallery__viewport { aspect-ratio: 1 / 0.82; }
}

/* ALPHA 4C — Fix mobile product description overlap
   Mobile descriptions should show fully instead of being clipped or covered. */
@media (max-width: 760px) {
  .product-detail__description,
  .product-detail__description.rte {
    max-height: none !important;
    overflow: visible !important;
    position: relative !important;
    margin-bottom: 28px !important;
    padding-bottom: 4px !important;
    z-index: 1;
  }

  .product-detail__info,
  .product-detail__content,
  .product-detail__meta {
    overflow: visible !important;
  }

  .product-detail__description + *,
  .product-detail__description.rte + * {
    clear: both;
    margin-top: 18px !important;
  }

  html.has-sticky-atc body {
    padding-bottom: 96px !important;
  }
}

/* Alpha 5 product sprint: premium product experience */
.product-detail-grid {
  gap: clamp(24px, 4vw, 52px) !important;
  align-items: start !important;
}
.product-detail__info-col {
  background: rgba(255,255,255,.78);
  border: 1px solid rgba(17,151,184,.10);
  border-radius: var(--radius, 28px);
  padding: clamp(20px, 3vw, 34px);
  box-shadow: 0 18px 50px rgba(17,151,184,.08);
}
.product-detail__title { margin-bottom: 10px !important; }
.judgeme-preview-badge { margin: 0 0 12px; min-height: 22px; }
.judgeme-preview-badge:empty::before,
.jdgm-preview-badge:empty::before {
  content: "Reviews will appear here after Judge.me is enabled";
  display: inline-block;
  color: var(--muted);
  font-size: 13px;
}
.product-detail__description {
  border-top: 1px solid rgba(17,151,184,.10);
  border-bottom: 1px solid rgba(17,151,184,.10);
  padding: 18px 0;
  margin: 18px 0 20px !important;
}
.product-form { background: #fff; border: 1px solid rgba(17,151,184,.10); border-radius: 22px; padding: 18px; }
.product-form__actions .button,
.product-form__actions button { width: 100%; min-height: 52px; }
.product-trust-strip {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 18px 0 0;
}
.product-trust-strip__item {
  display: flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
  padding: 12px 13px;
  background: rgba(223,245,247,.55);
  border: 1px solid rgba(17,151,184,.12);
  border-radius: 16px;
  color: var(--deep-teal);
}
.product-trust-strip__item span { flex: 0 0 auto; }
.product-trust-strip__item strong { font-size: 13px; line-height: 1.2; }
.app-blocks-stack--purchase {
  background: linear-gradient(180deg, rgba(255,255,255,.95), rgba(248,253,255,.95));
  border: 1px dashed rgba(17,151,184,.24);
  border-radius: 22px;
  padding: 16px;
}
.app-zone-label { margin: 0 0 8px; font-size: 12px; text-transform: uppercase; letter-spacing: .08em; color: var(--deep-teal); font-weight: 800; }
.product-detail__tabs { background: rgba(255,255,255,.72); border-radius: 22px; overflow: hidden; border: 1px solid rgba(17,151,184,.10); }
.product-tab { background: transparent; }
.product-tab__summary { padding-left: 16px !important; padding-right: 16px !important; }
.product-tab__body { padding: 0 16px 20px !important; }
.bundler-product-section { padding-top: 24px !important; padding-bottom: 24px !important; }
.bundler-product-section__inner {
  background: rgba(255,255,255,.86);
  border: 1px solid rgba(17,151,184,.12);
  border-radius: 28px;
  padding: clamp(20px, 3vw, 34px);
  box-shadow: 0 18px 45px rgba(17,151,184,.08);
}
.bundler-product-section__heading { margin-top: 0; margin-bottom: 8px; }
.bundler-theme-zone:empty::before {
  content: "Bundler offers will display here after the Bundler product-page widget is enabled.";
  display: block;
  padding: 16px;
  border-radius: 16px;
  background: rgba(223,245,247,.55);
  color: var(--muted);
}
.product-reviews-section__inner {
  background: rgba(255,255,255,.86);
  border: 1px solid rgba(17,151,184,.12);
  border-radius: 28px;
  padding: clamp(20px, 3vw, 34px);
  box-shadow: 0 18px 45px rgba(17,151,184,.08);
}
.product-reviews-section .jdgm-review-widget:empty::before {
  content: "Judge.me reviews will display here after the Judge.me widget is installed/enabled for this theme.";
  display: block;
  color: var(--muted);
  padding: 16px;
  background: rgba(223,245,247,.55);
  border-radius: 16px;
}
.product-gallery__slide img[data-gallery-lightbox] { cursor: zoom-in; }
.product-gallery-modal[hidden] { display: none !important; }
.product-gallery-modal {
  position: fixed;
  inset: 0;
  z-index: 999;
  background: rgba(15, 32, 42, .84);
  display: grid;
  place-items: center;
  padding: 24px;
}
.product-gallery-modal img {
  max-width: min(96vw, 1400px);
  max-height: 88vh;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 22px;
  background: #fff;
}
.product-gallery-modal__close {
  position: fixed;
  top: 16px;
  right: 18px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 0;
  background: #fff;
  color: var(--ink);
  font-size: 30px;
  line-height: 1;
  cursor: pointer;
}
html.gallery-modal-open, html.gallery-modal-open body { overflow: hidden; }
@media (min-width: 900px) {
  .product-detail__info-col { position: sticky; top: 110px; }
}
@media (max-width: 760px) {
  .product-detail__info-col { padding: 18px; border-radius: 22px; }
  .product-detail__description { font-size: 15px; line-height: 1.65; }
  .product-trust-strip { grid-template-columns: 1fr 1fr; gap: 8px; }
  .product-trust-strip__item { padding: 10px; }
  .product-trust-strip__item strong { font-size: 12px; }
  .app-blocks-stack--purchase { padding: 13px; }
}

/* ============================================================
   ALPHA 6 — Product content organization + performance polish
   ============================================================ */
.product-detail__description--summary {
  color: #415d70;
  font-size: 16px;
  line-height: 1.7;
}
.product-detail__description--summary p { margin: 0; }
.product-detail__tabs .product-tab:first-child .product-tab__summary {
  border-top: 0;
}
.product-tab__summary {
  cursor: pointer;
  user-select: none;
}
.product-tab[open] .product-tab__chevron { transform: rotate(180deg); }
.product-tab__chevron { transition: transform .18s ease; }
.product-gallery__slide img {
  backface-visibility: hidden;
}
.product-gallery__thumb img {
  transform: translateZ(0);
}
@media (max-width: 760px) {
  .product-detail__info-col {
    box-shadow: 0 10px 28px rgba(17,151,184,.06);
  }
  .product-detail__description--summary {
    font-size: 15px;
    line-height: 1.62;
    padding-top: 14px;
    padding-bottom: 14px;
  }
  .product-detail__tabs {
    margin-top: 18px !important;
  }
}

/* ============================================================
   ALPHA 7 — Native app integration polish: Judge.me, Bundler, Seal
   ============================================================ */
.fs-app-integration-card,
.jdgm-widget,
.bundler-theme-zone,
.seal-subscription-widget,
.seal-subscription-container,
.sealsubs-container {
  max-width: 100%;
}

/* Judge.me native-feeling styling */
.jdgm-widget {
  font-family: inherit !important;
  color: var(--ink, #253746) !important;
}
.jdgm-preview-badge,
.judgeme-preview-badge {
  line-height: 1.3;
}
.jdgm-star,
.jdgm-star.jdgm--on,
.jdgm-star.jdgm--half { color: #f5b041 !important; }
.jdgm-prev-badge__text,
.jdgm-rev-widg__summary-text,
.jdgm-rev__author,
.jdgm-rev__body { font-family: inherit !important; }
.jdgm-rev-widg,
.jdgm-all-reviews-widget,
.jdgm-review-widget {
  border: 0 !important;
  background: transparent !important;
}
.jdgm-rev,
.jdgm-widget .jdgm-rev {
  border-color: rgba(17,151,184,.12) !important;
}
.jdgm-write-rev-link,
.jdgm-submit-rev,
.jdgm-btn,
.jdgm-btn--solid {
  border-radius: 999px !important;
  font-family: inherit !important;
  font-weight: 800 !important;
}

/* Seal Subscription app zone polish */
.app-blocks-stack--purchase .seal-subscription-widget,
.app-blocks-stack--purchase .seal-subscription-container,
.app-blocks-stack--purchase .sealsubs-container,
.app-blocks-stack--purchase [class*="seal"],
.app-blocks-stack--purchase [id*="seal"] {
  font-family: inherit !important;
  max-width: 100% !important;
}
.app-blocks-stack--purchase [class*="seal"] input[type="radio"],
.app-blocks-stack--purchase [class*="seal"] input[type="checkbox"] {
  accent-color: var(--color-accent, #1197B8);
}

/* Bundler app zone polish */
.bundler-product-section [class*="bundler"],
.bundler-product-section [id*="bundler"],
.bundler-theme-zone [class*="bundler"],
.bundler-theme-zone [id*="bundler"] {
  font-family: inherit !important;
  max-width: 100% !important;
}
.bundler-product-section button,
.bundler-theme-zone button,
.bundler-product-section .button,
.bundler-theme-zone .button {
  border-radius: 999px !important;
}

/* Cleaner mobile product app stack */
@media (max-width: 760px) {
  .app-zone-label { font-size: 11px; }
  .app-blocks-stack--purchase,
  .bundler-product-section__inner,
  .product-reviews-section__inner {
    padding: 14px !important;
    border-radius: 20px !important;
  }
  .product-reviews-section h2,
  .bundler-product-section__heading {
    font-size: 24px !important;
  }
}


/* Florida Sun & Skin Alpha 8: Global section controls */
.fs-global-section {
  padding-top: var(--fs-pt, 0);
  padding-bottom: var(--fs-pb, 0);
  background: var(--fs-bg, transparent);
  color: var(--fs-color, inherit);
  max-width: none;
  margin-left: auto;
  margin-right: auto;
  box-sizing: border-box;
  overflow-x: clip;
}
.fs-global-section *, .fs-global-section *::before, .fs-global-section *::after { box-sizing: border-box; }
.fs-global-section img, .fs-global-section video, .fs-global-section iframe { max-width: 100%; }
.fs-width-page { max-width: var(--page-width, 1200px); }
.fs-width-narrow { max-width: 880px; }
.fs-width-full { max-width: none; width: 100%; }
.fs-radius-soft { border-radius: 12px; overflow: hidden; }
.fs-radius-rounded { border-radius: 24px; overflow: hidden; }
.fs-radius-pill { border-radius: 999px; overflow: hidden; }
.fs-shadow-soft { box-shadow: 0 10px 30px rgba(31, 42, 46, .08); }
.fs-shadow-medium { box-shadow: 0 16px 44px rgba(31, 42, 46, .14); }
.fs-visibility-hidden { display: none !important; }
@media (min-width: 750px) { .fs-visibility-mobile_only { display: none !important; } }
@media (max-width: 749px) {
  .fs-global-section { padding-top: var(--fs-pt-mobile, var(--fs-pt, 0)); padding-bottom: var(--fs-pb-mobile, var(--fs-pb, 0)); }
  .fs-visibility-desktop_only { display: none !important; }
}


/* Florida Sun & Skin Alpha 9: non-app polish + global product card system */
html, body { max-width: 100%; overflow-x: clip; }
.shop-card {
  border-radius: var(--product-card-radius, var(--radius-md));
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
  min-width: 0;
}
.shop-card--shadow-none { box-shadow: none !important; }
.shop-card--shadow-soft { box-shadow: 0 12px 32px rgba(17,151,184,.10) !important; }
.shop-card--shadow-medium { box-shadow: 0 18px 44px rgba(17,151,184,.16) !important; }
.shop-card:hover { transform: translateY(-3px); border-color: rgba(17,151,184,.24); }
.shop-card__media { position: relative; background: #f8fdff; }
.shop-card--ratio-square .shop-card__media { aspect-ratio: 1 / 1; }
.shop-card--ratio-portrait .shop-card__media { aspect-ratio: 4 / 5; }
.shop-card--ratio-landscape .shop-card__media { aspect-ratio: 5 / 4; }
.shop-card--ratio-natural .shop-card__media { aspect-ratio: auto; min-height: 220px; }
.shop-card__img { width: 100%; height: 100%; object-fit: var(--product-card-fit, cover); display: block; transition: opacity .24s ease, transform .28s ease; }
.shop-card--fit-contain .shop-card__img { object-fit: contain; padding: 8px; }
.shop-card__img--secondary { position: absolute; inset: 0; opacity: 0; }
@media (hover:hover) {
  .shop-card:hover .shop-card__img--primary:not(:only-child) { opacity: 0; }
  .shop-card:hover .shop-card__img--secondary { opacity: 1; transform: scale(1.02); }
}
.shop-card__badge { position: absolute; top: 10px; left: 10px; z-index: 2; padding: 5px 10px; border-radius: 999px; background: var(--color-accent, #1197b8); color: #fff; font-size: 12px; font-weight: 800; letter-spacing: .02em; }
.shop-card__badge--soldout { background: #6b7280; }
.shop-card__price { display: flex; align-items: baseline; gap: 8px; }
.shop-card__price span { color: var(--muted); text-decoration: line-through; font-weight: 600; font-size: .9em; }
.products-grid, .shop-scroll-row, .featured-products-grid { max-width: 100%; }
.shop-scroll-row { overflow-x: auto; overscroll-behavior-inline: contain; scroll-padding-inline: 16px; }
@media (max-width: 749px) {
  .shop-card__body, .shop-card__footer { padding: 12px !important; }
  .shop-card__desc { display: none; }
  .shop-card__title { font-size: 14px; line-height: 1.25; }
  .shop-card__price { font-size: 15px; }
  .button--atc-card { min-height: 40px; font-size: 13px; }
}

/* ============================================================
   ALPHA 11 — Florida Sun & Skin product layout rebuild
   Goal: keep purchase area compact, move long content full-width,
   and make app zones/bundles feel less like a pasted-in right column.
   ============================================================ */
.template-product .product-detail-grid,
.product-detail-grid {
  display: grid !important;
  grid-template-columns: minmax(320px, 1.04fr) minmax(320px, .86fr) !important;
  gap: clamp(28px, 5vw, 68px) !important;
  align-items: start !important;
}
.product-detail__media-col {
  min-width: 0;
}
.product-detail__info-col {
  min-width: 0;
  max-width: 560px;
  justify-self: stretch;
  background: rgba(255,255,255,.84);
  border: 1px solid rgba(17,151,184,.12);
  border-radius: 28px;
  padding: clamp(20px, 3vw, 34px);
  box-shadow: 0 18px 44px rgba(17,151,184,.075);
}
.product-detail__title {
  font-size: clamp(30px, 3.4vw, 48px) !important;
  line-height: 1.05 !important;
  margin-bottom: 12px !important;
}
.product-detail__price-row { margin-bottom: 18px !important; }
.product-detail__description {
  padding: 16px 0 !important;
  margin: 14px 0 18px !important;
  border-top: 1px solid rgba(17,151,184,.10);
  border-bottom: 1px solid rgba(17,151,184,.10);
}
.product-form {
  background: linear-gradient(180deg, #ffffff 0%, #fffaf3 100%);
  border: 1px solid rgba(17,151,184,.12);
  border-radius: 22px;
  padding: clamp(16px, 2vw, 22px);
  box-shadow: 0 10px 26px rgba(17,151,184,.05);
}
.product-form__actions .button,
.product-form__actions button { width: 100%; min-height: 54px; }
.product-trust-strip {
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 10px;
  margin-top: 18px;
}
.product-trust-strip__item {
  display:flex;
  align-items:center;
  gap:8px;
  padding:12px 13px;
  border-radius:16px;
  background: rgba(234,249,253,.78);
  border:1px solid rgba(17,151,184,.12);
  color: var(--deep-teal);
}
.product-trust-strip__item strong { font-size:13px; line-height:1.2; }

/* App area in purchase column: compact, neutral, not oversized. */
.app-blocks-stack--purchase,
.app-blocks-stack {
  margin: 18px 0 0 !important;
  padding: 14px !important;
  border-radius: 20px !important;
  background: rgba(255,255,255,.78) !important;
  border: 1px solid rgba(17,151,184,.10) !important;
  box-shadow: none !important;
}
.app-zone-label {
  margin: 0 0 8px;
  color: var(--deep-teal);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

/* Long content now lives full-width below the purchase/gallery row. */
.product-content-section { padding-top: clamp(18px, 3vw, 34px) !important; }
.product-content-section__inner {
  max-width: 1120px;
  margin: 0 auto;
}
.product-content-section .product-detail__tabs {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin: 0;
  border: 0;
  background: transparent;
}
.product-content-section .product-tab {
  border: 1px solid rgba(17,151,184,.12) !important;
  background: rgba(255,255,255,.84);
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(17,151,184,.055);
}
.product-content-section .product-tab:first-child {
  grid-column: 1 / -1;
}
.product-content-section .product-tab__summary {
  padding: 18px 20px !important;
  font-size: 17px;
  background: linear-gradient(180deg, rgba(234,249,253,.70), rgba(255,255,255,.45));
}
.product-content-section .product-tab__body {
  padding: 0 20px 22px !important;
  color: #496173;
}
.product-content-section .product-tab__body.rte,
.product-content-section .rte { line-height: 1.72; }

/* Bundler zone: full-width card below product details, matching theme. */
.bundler-product-section {
  padding-top: clamp(18px, 3vw, 34px) !important;
  padding-bottom: clamp(18px, 3vw, 34px) !important;
}
.bundler-product-section__inner {
  max-width: 1120px;
  margin: 0 auto;
  background: linear-gradient(135deg, rgba(234,249,253,.95), rgba(255,250,243,.95)) !important;
  border: 1px solid rgba(17,151,184,.14) !important;
  border-radius: 30px !important;
  padding: clamp(22px, 4vw, 42px) !important;
  box-shadow: 0 18px 48px rgba(17,151,184,.08) !important;
}
.bundler-product-section__heading {
  margin: 0 0 8px !important;
  color: var(--deep-teal);
}
.bundler-product-section__sub {
  max-width: 680px;
  color: var(--muted);
  margin-bottom: 18px !important;
}
.bundler-theme-zone,
#bundler-target-element {
  background: rgba(255,255,255,.76);
  border-radius: 22px;
  padding: 14px;
  border: 1px solid rgba(17,151,184,.10);
}
.bundler-theme-zone:empty::before {
  content: "Bundler offers will display here after Bundler is enabled for this product.";
  display:block;
  color: var(--muted);
  padding: 16px;
  border-radius: 16px;
  background: rgba(255,255,255,.78);
  border: 1px dashed rgba(17,151,184,.20);
}
/* Best-effort styling for common Bundler injected markup/classes. */
#bundler-target-element .bndlr-product,
#bundler-target-element .bndlr-bundle,
#bundler-target-element [class*="bundle"],
#bundler-target-element [class*="bndlr"] {
  font-family: inherit !important;
}
#bundler-target-element button,
#bundler-target-element .bndlr-add-to-cart,
#bundler-target-element [class*="add"] button {
  border-radius: 999px !important;
  background: linear-gradient(135deg, #f97316, #e85d04) !important;
  color: #fff !important;
  border: 0 !important;
  font-weight: 800 !important;
}

@media (max-width: 900px) {
  .product-detail-grid { grid-template-columns: 1fr !important; gap: 22px !important; }
  .product-detail__info-col { max-width: none; }
}
@media (max-width: 768px) {
  .product-detail__info-col {
    padding: 18px;
    border-radius: 22px;
  }
  .product-trust-strip { grid-template-columns: 1fr 1fr; gap: 8px; }
  .product-trust-strip__item { padding: 10px; }
  .product-content-section .product-detail__tabs {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .product-content-section .product-tab:first-child { grid-column: auto; }
  .product-content-section .product-tab__summary { padding: 16px !important; }
  .product-content-section .product-tab__body { padding: 0 16px 18px !important; }
  .bundler-product-section__inner { border-radius: 24px !important; padding: 18px !important; }
  .bundler-theme-zone, #bundler-target-element { padding: 10px; }
}

/* Alpha 14 — modular product sections (no flexible columns) */
.product-bundle-complete__wrap,
.product-reviews-section {
  clear: both;
}
.product-bundle-complete__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(1rem, 3vw, 2rem);
  align-items: stretch;
}
.product-bundle-complete__featured,
.product-bundle-complete__app,
.product-reviews-section__inner {
  background: rgba(255,255,255,0.78);
  border: 1px solid rgba(17,151,184,0.12);
  border-radius: var(--card-radius, 18px);
  padding: clamp(1rem, 3vw, 1.75rem);
  box-shadow: 0 12px 30px rgba(31,42,46,0.06);
}
.product-bundle-complete__featured {
  display: grid;
  grid-template-columns: 110px minmax(0, 1fr);
  gap: 1rem;
  align-items: center;
}
.product-bundle-complete__image {
  display: block;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: 14px;
  background: #f8faf8;
}
.product-bundle-complete__image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.product-bundle-complete__copy h3 {
  margin: 0 0 .35rem;
}
.product-bundle-complete__copy h3 a {
  color: inherit;
  text-decoration: none;
}
.product-bundle-complete__price {
  margin: 0 0 .85rem;
  font-weight: 700;
}
.product-bundle-complete .bundler-theme-zone:empty::before {
  content: 'Bundler app block/offer will appear here once configured.';
  display: block;
  padding: 1rem;
  border: 1px dashed rgba(17,151,184,0.35);
  border-radius: 14px;
  color: rgba(31,42,46,0.72);
  background: rgba(234,249,253,0.65);
  text-align: center;
}
.app-blocks-stack--bundle:not(:empty) {
  margin-top: 1rem;
}
.product-judgeme-reviews .jdgm-review-widget:empty::before,
.product-reviews-section .jdgm-review-widget:empty::before {
  content: 'Judge.me reviews will appear here after the app widget is enabled.';
  display: block;
  padding: 1rem;
  border: 1px dashed rgba(17,151,184,0.35);
  border-radius: 14px;
  color: rgba(31,42,46,0.72);
  background: rgba(234,249,253,0.65);
}
@media (max-width: 749px) {
  .product-bundle-complete__grid,
  .product-bundle-complete__featured {
    grid-template-columns: 1fr;
  }
  .product-bundle-complete__image {
    max-width: 180px;
  }
}

/* Alpha 15 — product recommendations and full-width Bundler refinement */
.product-recommendations-grid .shop-card,
.product-recommendations-grid .product-card {
  height: 100%;
}
.product-recommendations-empty {
  max-width: 720px;
  margin: 0 auto;
  padding: 1rem 1.25rem;
  border: 1px dashed rgba(17,151,184,.35);
  border-radius: 16px;
  background: rgba(234,249,253,.55);
  text-align: center;
  color: rgba(31,42,46,.72);
}
.product-bundle-complete__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(1rem, 3vw, 1.5rem);
}
.product-bundle-complete__featured,
.product-bundle-complete__app {
  width: 100%;
  max-width: 100%;
}
.product-bundle-complete__app {
  grid-column: 1 / -1;
  min-height: 110px;
}
.product-bundle-complete .bundler-theme-zone,
.product-bundle-complete #bundler-target-element,
.product-bundle-complete .app-blocks-stack--bundle,
.product-bundle-complete .app-blocks-stack--bundle > * {
  width: 100%;
  max-width: 100%;
}
@media (min-width: 750px) {
  .product-bundle-complete__featured {
    max-width: 920px;
    margin-inline: auto;
  }
}


/* ============================================================
   ALPHA 17 — Premium product page layout based on approved mockup
   Three-part hero: gallery + product story + purchase card.
   Product content, recommendations, bundle, and reviews follow as clean rows.
   ============================================================ */
.template-product .product-detail-grid,
.product-detail-grid {
  display: grid !important;
  grid-template-columns: minmax(300px, 1.08fr) minmax(260px, .82fr) minmax(310px, .95fr) !important;
  gap: clamp(22px, 3vw, 44px) !important;
  align-items: start !important;
  max-width: 1440px;
  margin-inline: auto;
}
.product-detail__media-col,
.product-detail__story-col,
.product-detail__purchase-col { min-width: 0; }
.product-detail__story-col,
.product-detail__info-col.product-detail__story-col {
  background: transparent !important;
  border: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  padding: clamp(8px, 1.5vw, 18px) 0 !important;
  max-width: none !important;
  position: static !important;
}
.product-detail__purchase-col { align-self: start; }
.product-purchase-card {
  background: rgba(255,255,255,.88);
  border: 1px solid rgba(17,151,184,.14);
  border-radius: 28px;
  padding: clamp(18px, 2.4vw, 30px);
  box-shadow: 0 20px 50px rgba(17,151,184,.08);
}
@media (min-width: 990px) {
  .product-detail__purchase-col { position: sticky; top: 112px; }
}
.product-gallery__viewport {
  border-radius: 24px !important;
  box-shadow: 0 16px 42px rgba(17,151,184,.08);
  background: #f8fdff !important;
}
.product-gallery__arrow {
  background: rgba(255,255,255,.92) !important;
  box-shadow: 0 8px 24px rgba(31,42,46,.12) !important;
}
.product-gallery__thumbs { gap: 12px !important; margin-top: 14px !important; }
.product-gallery__thumb {
  border-radius: 14px !important;
  box-shadow: 0 8px 20px rgba(17,151,184,.07);
  background: #fff !important;
}
.product-gallery__thumb.is-active { border-color: var(--color-accent, #1197b8) !important; }
.product-detail__rating { margin-bottom: 12px !important; }
.product-detail__title {
  font-size: clamp(32px, 3.2vw, 50px) !important;
  line-height: 1.05 !important;
  margin: 0 0 14px !important;
}
.product-detail__price-row { margin: 0 0 18px !important; }
.product-detail__price { font-size: 24px !important; color: var(--ink, #1f2a2e) !important; }
.product-detail__description--summary,
.product-detail__description {
  border-top: 0 !important;
  border-bottom: 0 !important;
  padding: 0 !important;
  margin: 0 0 26px !important;
  color: #435b6b !important;
  line-height: 1.7 !important;
}
.product-trust-strip--inline,
.product-trust-strip {
  display: grid !important;
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  gap: 12px !important;
  margin-top: 22px !important;
}
.product-trust-strip__item {
  display: grid !important;
  place-items: center !important;
  text-align: center !important;
  min-height: 82px;
  padding: 14px 8px !important;
  border-radius: 18px !important;
  background: rgba(255,255,255,.72) !important;
  border: 1px solid rgba(17,151,184,.10) !important;
  box-shadow: 0 10px 25px rgba(17,151,184,.045);
}
.product-trust-strip__item span { font-size: 23px; line-height: 1; }
.product-trust-strip__item strong { font-size: 13px !important; color: var(--deep-teal, #0d6e87); }
.product-purchase-card .product-form {
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  padding: 0 !important;
}
.product-purchase-card .app-blocks-stack--purchase,
.product-purchase-card .app-blocks-stack {
  background: transparent !important;
  border: 0 !important;
  padding: 0 !important;
  margin: 0 0 22px !important;
}
.product-purchase-card .app-zone-label {
  color: var(--ink, #1f2a2e);
  font-size: 18px;
  letter-spacing: 0;
  text-transform: none;
  margin-bottom: 12px;
  font-weight: 700;
}
.product-purchase-card .product-form__qty {
  display: flex !important;
  align-items: center;
  gap: 14px;
  margin: 18px 0 20px !important;
}
.product-purchase-card .product-form__qty label { margin: 0; color: var(--deep-teal); font-weight: 800; }
.product-purchase-card .product-form__qty input { max-width: 92px; min-height: 52px; text-align: center; border-radius: 16px; }
.product-purchase-card .product-form__actions .button,
.product-purchase-card .product-form__actions button[type="submit"] {
  min-height: 58px !important;
  border-radius: 999px !important;
  font-size: 18px !important;
}
.product-content-section { padding-top: clamp(26px, 4vw, 56px) !important; }
.product-content-section .product-detail__tabs {
  max-width: 1200px;
  margin-inline: auto;
  grid-template-columns: repeat(2, minmax(0,1fr)) !important;
  gap: 18px !important;
}
.product-content-section .product-tab {
  border-radius: 24px !important;
  background: rgba(255,255,255,.86) !important;
}
.product-content-section .product-tab:first-child { grid-column: 1 / -1; }
.product-content-section .product-tab__summary { font-size: 18px; }

/* Premium product recommendation row */
.template-product .product-recommendations-grid {
  display: grid !important;
  grid-template-columns: repeat(var(--recommendation-columns, 4), minmax(0,1fr)) !important;
  gap: 16px !important;
}
.template-product [data-product-recommendations] {
  background: linear-gradient(180deg, rgba(255,255,255,.86), rgba(255,250,243,.78));
  border: 1px solid rgba(17,151,184,.12);
  border-radius: 28px;
  padding: clamp(18px, 3vw, 32px) !important;
  box-shadow: 0 16px 42px rgba(17,151,184,.065);
}
.template-product [data-product-recommendations] .section-head { text-align: left; justify-content: flex-start; margin-bottom: 18px; }
.template-product [data-product-recommendations] .section-head--center { text-align: left; }
.template-product [data-product-recommendations] h2 { margin-bottom: 6px; }

/* Complete Your Routine — full-width, centered app/product card */
.product-bundle-complete__wrap {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}
.product-bundle-complete__wrap > .section-head,
.product-bundle-complete .section-head {
  text-align: left !important;
  justify-content: flex-start !important;
  margin-bottom: 18px !important;
}
.product-bundle-complete__wrap {
  background: linear-gradient(135deg, rgba(255,250,243,.96), rgba(234,249,253,.88));
  border: 1px solid rgba(17,151,184,.12);
  border-radius: 28px;
  padding: clamp(18px, 3vw, 32px) !important;
  box-shadow: 0 16px 42px rgba(17,151,184,.065);
}
.product-bundle-complete__grid {
  display: grid !important;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.55fr) !important;
  gap: clamp(16px, 3vw, 30px) !important;
  align-items: stretch;
}
.product-bundle-complete__featured,
.product-bundle-complete__app {
  background: rgba(255,255,255,.84) !important;
  border: 1px solid rgba(17,151,184,.11) !important;
  border-radius: 22px !important;
  box-shadow: 0 10px 26px rgba(17,151,184,.055) !important;
}
.product-bundle-complete__app { display: flex; flex-direction: column; justify-content: center; }
.product-bundle-complete .bundler-theme-zone,
.product-bundle-complete #bundler-target-element,
.product-bundle-complete .app-blocks-stack--bundle {
  background: transparent !important;
  border: 0 !important;
  padding: 0 !important;
  width: 100%;
}
.product-bundle-complete #bundler-target-element:empty::before,
.product-bundle-complete .bundler-theme-zone:empty::before {
  background: rgba(255,255,255,.72) !important;
  border: 1px dashed rgba(17,151,184,.26) !important;
  min-height: 118px;
  display: grid !important;
  place-items: center;
}
.product-reviews-section__inner {
  max-width: 1200px;
  margin: 0 auto;
  border-radius: 28px !important;
}

@media (max-width: 1180px) {
  .template-product .product-detail-grid,
  .product-detail-grid {
    grid-template-columns: minmax(300px, 1fr) minmax(320px, .88fr) !important;
  }
  .product-detail__story-col { grid-column: 1 / -1; grid-row: 2; }
  .product-detail__purchase-col { grid-column: 2; grid-row: 1; }
  .product-detail__media-col { grid-column: 1; grid-row: 1; }
  .product-trust-strip { grid-template-columns: repeat(4, minmax(0,1fr)) !important; }
}
@media (max-width: 900px) {
  .template-product .product-detail-grid,
  .product-detail-grid { grid-template-columns: 1fr !important; gap: 20px !important; }
  .product-detail__media-col,
  .product-detail__story-col,
  .product-detail__purchase-col { grid-column: auto !important; grid-row: auto !important; }
  .product-detail__purchase-col { position: static !important; }
  .product-purchase-card { border-radius: 22px; padding: 18px; }
  .product-trust-strip { grid-template-columns: repeat(2, minmax(0,1fr)) !important; }
  .product-content-section .product-detail__tabs { grid-template-columns: 1fr !important; }
  .product-bundle-complete__grid { grid-template-columns: 1fr !important; }
  .template-product .product-recommendations-grid { display: flex !important; overflow-x: auto; scroll-snap-type: x mandatory; padding-bottom: 8px; }
  .template-product .product-recommendations-grid > * { flex: 0 0 72%; scroll-snap-align: start; }
}
@media (max-width: 520px) {
  .product-detail__title { font-size: 32px !important; }
  .product-trust-strip__item { min-height: 70px; }
  .template-product .product-recommendations-grid > * { flex-basis: 82%; }
}

/* Alpha 20: app block sections */
.app-blocks-stack:empty { display: none; }
.app-blocks-stack > * + * { margin-top: 18px; }
.fs-global-section .app-blocks-stack { width: 100%; }
.template-product .app-blocks-stack { max-width: 1180px; margin-inline: auto; }
.template-product .app-blocks-stack:has(*) { padding: 6px 0; }


/* Alpha 21: Judge.me placement + bundle-product Bundler slot */
.shop-card__rating,
.featured-products-card__rating,
.product-detail__rating {
  min-height: 18px;
  margin-top: 6px;
  margin-bottom: 8px;
  line-height: 1.2;
}
.product-detail__rating {
  margin-top: -4px;
  margin-bottom: 12px;
}
.shop-card__rating:empty,
.featured-products-card__rating:empty,
.product-detail__rating:empty {
  display: none;
}
.product-form__bundle-app-zone {
  margin: 18px 0 16px;
  padding: 18px;
  border: 1px solid rgba(17, 151, 184, 0.18);
  border-radius: 16px;
  background: #F7FCFE;
}
.product-form__bundle-heading {
  margin: 0 0 6px;
  font-weight: 800;
  color: #28556A;
  letter-spacing: .01em;
}
.product-form__bundle-text {
  margin-bottom: 12px;
  font-size: .95rem;
}
.product-form__bundle-text p { margin: 0; }
.bundler-theme-zone--before-atc {
  min-height: 24px;
}
.product-reviews-section .jdgm-review-widget {
  margin-top: 20px;
}
@media (max-width: 749px) {
  .product-form__bundle-app-zone {
    padding: 14px;
    border-radius: 14px;
  }
}

/* Alpha 23 — Easy Bundle Builder product support */
.shop-card--bundle {
  border-color: rgba(17,151,184,.25);
}
.shop-card__bundle-kicker {
  margin: .25rem 0 0;
  font-size: .78rem;
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;
  color: #1197B8;
}
.product-form__bundle-app-zone--easy-builder {
  margin: 0 0 1.25rem;
  padding: 1rem;
  border: 1px solid rgba(17,151,184,.18);
  border-radius: 18px;
  background: #F3FBFD;
}
.product-form__bundle-heading {
  margin: 0 0 .35rem;
  font-weight: 800;
  color: #1F2A2E;
  font-size: 1.05rem;
}
.product-form__bundle-text {
  margin: 0 0 .85rem;
  font-size: .95rem;
  color: rgba(31,42,46,.78);
}
.product-form__bundle-app-blocks > * + * {
  margin-top: .75rem;
}
.product-form__app-block,
.product-form__app-block > * {
  max-width: 100%;
}
.product-form__actions--after-builder {
  margin-top: .75rem;
}
@media (max-width: 749px) {
  .product-form__bundle-app-zone--easy-builder {
    padding: .85rem;
    border-radius: 14px;
  }
}

.template-index .product-card .button,
.template-index .product-card__button,
.template-index .card__button,
.template-index a[href*="/products/"].button {
  display: inline-flex !important;
  visibility: visible !important;
  opacity: 1 !important;
  pointer-events: auto !important;
}
.template-index .product-card .price,
.template-index .product-card__price,
.template-index .card__price,
.template-index .price,
.template-index [class*="price"] {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
}
.why-us__review-proof {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 18px 0 28px;
  padding: 10px 18px;
  border-radius: 999px;
  background: #f6fbfd;
  border: 1px solid #c8e7f2;
  font-size: 17px;
  font-weight: 600;
  color: #1f3b52;
}

.homepage-review-proof {
  margin: 18px 0 24px;
}

.homepage-review-proof .jdgm-prev-badge,
.homepage-review-proof .jdgm-all-reviews-rating {
  display: flex !important;
  justify-content: center;
  align-items: center;
  gap: 8px;
  font-size: 18px;
}

.homepage-review-proof .jdgm-star {
  color: #F5B301 !important;
}
/* Custom recommended bundle cards for individual soap product pages */
.product-form__recommended-bundles {
  margin: 0 0 1.25rem;
  padding: 1rem;
  border: 1px solid rgba(17,151,184,.18);
  border-radius: 18px;
  background: #F3FBFD;
}
.recommended-bundle-cards {
  display: grid;
  gap: .75rem;
}
.recommended-bundle-card {
  display: grid;
  grid-template-columns: 82px 1fr;
  gap: .85rem;
  align-items: center;
  padding: .75rem;
  border: 1px solid rgba(40,85,106,.12);
  border-radius: 16px;
  background: #fff;
  text-decoration: none;
  color: inherit;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.recommended-bundle-card:hover {
  transform: translateY(-1px);
  border-color: rgba(17,151,184,.35);
  box-shadow: 0 10px 24px rgba(31,42,46,.08);
}
.recommended-bundle-card__image-wrap {
  display: block;
  aspect-ratio: 1;
  border-radius: 14px;
  overflow: hidden;
  background: #F7FCFE;
}
.recommended-bundle-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.recommended-bundle-card__content {
  display: grid;
  gap: .18rem;
}
.recommended-bundle-card__kicker {
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: #1197B8;
}
.recommended-bundle-card__title {
  font-size: .98rem;
  line-height: 1.2;
  color: #1F2A2E;
}
.recommended-bundle-card__price {
  font-weight: 700;
  color: rgba(31,42,46,.72);
}
.recommended-bundle-card__button {
  width: fit-content;
  margin-top: .35rem;
  padding: .45rem .7rem;
  border-radius: 999px;
  background: #1197B8;
  color: #fff;
  font-size: .82rem;
  font-weight: 800;
}
@media (max-width: 749px) {
  .product-form__recommended-bundles { padding: .85rem; border-radius: 14px; }
  .recommended-bundle-card { grid-template-columns: 70px 1fr; }
}

/* Product page: app-rendered soap bundle cards */
.product-purchase-card [data-fs-custom-bundle-title-applied] .fs-app-bundle-card-title,
.product-purchase-card [data-fs-custom-bundle-title-applied] legend.fs-app-bundle-card-title,
.product-purchase-card [data-fs-custom-bundle-title-applied] h2.fs-app-bundle-card-title,
.product-purchase-card [data-fs-custom-bundle-title-applied] h3.fs-app-bundle-card-title,
.product-purchase-card [data-fs-custom-bundle-title-applied] h4.fs-app-bundle-card-title {
  color: var(--deep-teal) !important;
  font-family: var(--font-heading-family, inherit) !important;
  font-size: 1.05rem !important;
  font-weight: 900 !important;
  line-height: 1.15 !important;
}

/* FS GLOBAL EDITABLE BUTTON CONTROLS */

.button,
a.button,
button.button,
input.button {
  border-radius: var(--section-button-radius, var(--global-button-radius, 999px)) !important;
  border-style: solid !important;
  border-width: var(--section-button-border-width, var(--global-button-border-width, 1px)) !important;
  border-color: var(--section-button-border, var(--global-button-border, #e85d04)) !important;
  background: var(--section-button-bg, var(--global-button-bg, #e85d04)) !important;
  color: var(--section-button-text, var(--global-button-text, #fff)) !important;
}
.button:hover,
a.button:hover,
button.button:hover,
input.button:hover {
  border-color: var(--section-button-hover-border, var(--global-button-hover-border, #c2410c)) !important;
  background: var(--section-button-hover-bg, var(--global-button-hover-bg, #c2410c)) !important;
  color: var(--section-button-hover-text, var(--global-button-hover-text, #fff)) !important;
}
.button--secondary,
a.button--secondary,
button.button--secondary {
  background: var(--section-secondary-button-bg, var(--global-secondary-button-bg, #fff)) !important;
  color: var(--section-secondary-button-text, var(--global-secondary-button-text, #c2410c)) !important;
  border-color: var(--section-secondary-button-border, var(--global-secondary-button-border, #f97316)) !important;
}
.button--secondary:hover,
a.button--secondary:hover,
button.button--secondary:hover {
  background: var(--section-secondary-button-hover-bg, var(--global-secondary-button-hover-bg, #fff4ed)) !important;
  color: var(--section-secondary-button-hover-text, var(--global-secondary-button-hover-text, #c2410c)) !important;
  border-color: var(--section-secondary-button-hover-border, var(--global-secondary-button-hover-border, #c2410c)) !important;
}
html[data-global-button-style="outline"] .button:not(.button--secondary),
html[data-global-button-style="outline"] a.button:not(.button--secondary),
html[data-global-button-style="outline"] button.button:not(.button--secondary) {
  background: transparent !important;
  color: var(--section-button-border, var(--global-button-border, #e85d04)) !important;
}
.featured-products-section[data-button-style="outline"] .featured-products-card__button {
  background: transparent !important;
  color: var(--section-button-border, var(--global-button-border, #e85d04)) !important;
}

/* Featured products: section defaults with optional per-card size variation */
.featured-products-section .featured-products-card__button {
  font-size: var(--card-button-font-size, var(--section-button-font-size, 14px)) !important;
  min-height: var(--card-button-min-height, var(--section-button-min-height, 44px)) !important;
  min-width: var(--card-button-min-width, var(--section-button-min-width, 0px)) !important;
  padding-block: var(--card-button-padding-block, var(--section-button-padding-block, 10px)) !important;
  padding-inline: var(--card-button-padding-inline, var(--section-button-padding-inline, 20px)) !important;
  line-height: 1.15 !important;
}


/* Why Us: optional section-specific button appearance and sizing */
.why-us--custom-button .why-us__desktop-cta,
.why-us--custom-button .why-us__mobile-cta {
  font-size: var(--why-button-font-size, 16px) !important;
  min-height: var(--why-button-min-height, 48px);
  min-width: var(--why-button-min-width, 0px);
  padding: var(--why-button-padding-block, 12px) var(--why-button-padding-inline, 28px) !important;
}
.why-us--custom-button[data-button-style="secondary"] .why-us__desktop-cta,
.why-us--custom-button[data-button-style="secondary"] .why-us__mobile-cta {
  background: transparent !important;
  color: var(--section-button-border, #e85d04) !important;
}
.why-us--custom-button[data-button-style="secondary"] .why-us__desktop-cta:hover,
.why-us--custom-button[data-button-style="secondary"] .why-us__mobile-cta:hover {
  background: var(--section-button-hover-bg, #fff4ed) !important;
  color: var(--section-button-hover-text, #c2410c) !important;
}
