/* =========================================================
   SEASIDE CARE — main stylesheet
   Ported from the approved static demo, adapted for
   WordPress + WooCommerce markup.
   ========================================================= */

:root{
  --teal-deep:#0B5E5B;
  --teal-mid:#12857E;
  --teal-pale:#DCEEEA;
  --leaf:#4B9F6E;
  --leaf-light:#8FC996;
  --sand:#EFE6D2;
  --cream:#FAF7EF;
  --ink:#122522;
  --ink-soft:#3F5652;
  --gold:#C99A3E;
  --coral-drop:#E0785B;
  --radius-lg:28px;
  --radius-sm:12px;
  --shadow-soft:0 20px 45px -25px rgba(11,94,91,0.35);
  --font-body:'Public Sans', sans-serif;
  --font-display:'Fraunces', serif;
  --ocean-top:#1A7FA3;
  --ocean-bottom:#0A3F57;
  --ocean-progress:0;
}

*{ box-sizing:border-box; }
html{ scroll-behavior:smooth; }
body{
  margin:0;
  background:var(--cream);
  color:var(--ink);
  font-family:var(--font-body);
  -webkit-font-smoothing:antialiased;
  overflow-x:hidden;
}
h1,h2,h3,.display{
  font-family:var(--font-display);
  letter-spacing:-0.01em;
  margin:0;
  color:var(--teal-deep);
}
a{ color:inherit; text-decoration:none; }
img{ max-width:100%; display:block; height:auto; }
ul{ margin:0; padding:0; list-style:none; }
button{ font-family:inherit; }
::selection{ background:var(--leaf-light); color:var(--teal-deep); }
:focus-visible{ outline:3px solid var(--gold); outline-offset:3px; }

.wrap{ max-width:1240px; margin:0 auto; padding:0 32px; }
.screen-reader-text{
  position:absolute !important; width:1px; height:1px; overflow:hidden;
  clip:rect(1px,1px,1px,1px); white-space:nowrap;
}

/* ---------- Rising ocean background ---------- */
.ocean-bg{ position:fixed; inset:0; z-index:-2; overflow:hidden; pointer-events:none; }
.ocean-shape{
  position:absolute; left:0; bottom:0; width:100%; height:220vh;
  transform:translateY(calc(140vh - (var(--ocean-progress) * 140vh)));
  will-change:transform;
}
body.ocean-active #products .section-head h2,
body.ocean-active #products .section-head p,
body.ocean-active #story .story-text h2,
body.ocean-active #story .story-text p,
body.ocean-active #story .story-list li{ color:#F1F8F4; transition:color .4s ease; }
body.ocean-active #products .eyebrow,
body.ocean-active #story .eyebrow{ background:rgba(255,255,255,0.16); color:#EAF4EE; }
body.ocean-active #story .story-list svg{ color:var(--leaf-light); }
.section-head h2,.section-head p,.story-text h2,.story-text p,.story-list li,.eyebrow{
  transition:color .4s ease, background .4s ease;
}
@media (prefers-reduced-motion:reduce){ .ocean-shape{ transition:none; } }

/* ---------- Notice bar ---------- */
.notice-bar{
  background:var(--teal-deep); color:var(--teal-pale);
  font-size:13px; letter-spacing:0.04em; text-align:center;
  padding:9px 12px; font-weight:500;
}
.notice-bar strong{ color:var(--gold); font-weight:700; }

/* ---------- Header ---------- */
.site-header{
  position:sticky; top:0; z-index:50;
  background:rgba(250,247,239,0.88); backdrop-filter:blur(10px);
  border-bottom:1px solid rgba(11,94,91,0.08);
}
.nav{ display:flex; align-items:center; justify-content:space-between; padding:16px 32px; gap:16px; flex-wrap:wrap; }
.brand{ display:flex; align-items:center; gap:12px; }
.brand img,.brand svg{ width:46px; height:46px; flex-shrink:0; }
.brand-text{ display:flex; flex-direction:column; line-height:1.05; }
.brand-text .name{ font-family:'Fraunces',serif; font-weight:700; font-size:20px; color:var(--teal-deep); }
.brand-text .name .dot{ color:var(--leaf); }
.brand-text .tag{ font-size:10.5px; letter-spacing:0.16em; text-transform:uppercase; color:var(--ink-soft); font-weight:600; margin-top:2px; }

nav.links{ display:flex; gap:36px; }
nav.links ul{ display:flex; gap:36px; }
nav.links a{ font-size:14.5px; font-weight:600; color:var(--ink-soft); position:relative; padding:4px 0; transition:color .2s ease; }
nav.links a::after{ content:''; position:absolute; left:0; bottom:-2px; height:2px; width:0; background:var(--leaf); transition:width .25s ease; }
nav.links a:hover{ color:var(--teal-deep); }
nav.links a:hover::after{ width:100%; }
nav.links .current-menu-item > a{ color:var(--teal-deep); }
nav.links .current-menu-item > a::after{ width:100%; }
nav.links .sub-menu{ display:none; }

.nav-actions{ display:flex; align-items:center; gap:14px; }
.icon-btn{
  width:40px; height:40px; border-radius:50%; display:flex; align-items:center; justify-content:center;
  background:transparent; border:1.5px solid rgba(11,94,91,0.18); cursor:pointer; color:var(--teal-deep);
  transition:background .2s ease, transform .2s ease; position:relative; flex-shrink:0;
}
.icon-btn:hover{ background:var(--teal-pale); transform:translateY(-1px); }

/* --- Expanding Search --- */
.header-search-wrap{ position:relative; display:flex; align-items:center; }
.header-search-container{
  position:absolute; right:0; top:50%; transform:translateY(-50%) translateX(10px);
  opacity:0; visibility:hidden; pointer-events:none;
  background:#fff; border-radius:100px; box-shadow:var(--shadow-soft); border:1.5px solid rgba(11,94,91,0.18);
  display:flex; align-items:center; transition:all .3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  width:0; z-index:100;
}
.header-search-wrap.is-active .search-toggle{ background:var(--teal-pale); color:var(--teal-deep); }
.header-search-wrap.is-active .header-search-container{
  opacity:1; visibility:visible; pointer-events:auto; width:280px; transform:translateY(-50%) translateX(0);
}
.header-search-input{
  width:100%; border:none; background:transparent; padding:10px 20px;
  font-family:inherit; font-size:14px; outline:none; border-radius:100px;
}
.header-search-results{
  position:absolute; top:calc(100% + 24px); right:0; width:340px;
  background:#fff; border-radius:16px; box-shadow:0 14px 40px -12px rgba(11,94,91,0.25); border:1px solid rgba(11,94,91,0.08);
  display:none; flex-direction:column; overflow:hidden; z-index:100; max-height:400px; overflow-y:auto;
}
.header-search-results.is-active{ display:flex; }
.search-result-item{
  display:flex; align-items:center; gap:12px; padding:14px 18px;
  border-bottom:1px solid rgba(11,94,91,0.08); transition:background .2s ease;
}
.search-result-item:last-child{ border-bottom:none; }
.search-result-item:hover{ background:var(--teal-pale); }
.search-result-img{ width:44px; height:44px; border-radius:8px; object-fit:contain; flex-shrink:0; background:#fff; border:1px solid rgba(11,94,91,0.08); }
.search-result-info{ display:flex; flex-direction:column; gap:4px; }
.search-result-title{ font-size:14.5px; font-weight:700; color:var(--teal-deep); font-family:var(--font-display); line-height:1.2; }
.search-result-price{ font-size:13.5px; font-weight:700; color:var(--leaf); }
.search-result-price del{ font-size:11px; color:#9BAEA9; text-decoration:line-through; font-weight:500; margin-right:4px; }
.search-no-results{ padding:18px; text-align:center; font-size:14px; color:var(--ink-soft); }
/* ------------------------ */

.cart-count{
  position:absolute; top:-6px; right:-6px; background:var(--coral-drop); color:#fff;
  font-size:10px; font-weight:700; width:18px; height:18px; border-radius:50%;
  display:flex; align-items:center; justify-content:center;
}
.btn{
  display:inline-flex; align-items:center; gap:8px; padding:13px 26px; border-radius:100px;
  font-weight:700; font-size:14.5px; cursor:pointer; border:none;
  transition:transform .2s ease, box-shadow .2s ease; font-family:var(--font-body);
}
.btn-primary{ background:linear-gradient(135deg, var(--leaf), var(--teal-mid)); color:#fff; box-shadow:0 14px 30px -12px rgba(18,133,126,0.55); }
.btn-primary:hover{ transform:translateY(-2px); box-shadow:0 18px 34px -12px rgba(18,133,126,0.65); color:#fff; }
.btn-ghost{ background:transparent; color:var(--teal-deep); border:1.5px solid var(--teal-deep); }
.btn-ghost:hover{ background:var(--teal-deep); color:#fff; }
.btn-sm{ padding:9px 18px; font-size:13px; }
.mobile-toggle{ display:none; background:none; border:none; cursor:pointer; }

.lang-switch{ display:flex; align-items:center; border:1.5px solid rgba(11,94,91,0.18); border-radius:100px; padding:3px; gap:2px; flex-shrink:0; }
.lang-switch a{ font-size:12.5px; font-weight:700; padding:7px 12px; border-radius:100px; color:var(--ink-soft); transition:background .2s ease, color .2s ease; }
.lang-switch a.active,.lang-switch a:hover{ background:linear-gradient(135deg, var(--leaf), var(--teal-mid)); color:#fff; }

/* ---------- Hero ---------- */
.hero{ position:relative; padding:88px 32px 0; overflow:hidden; background:var(--cream); z-index:1; }
.hero-inner{ max-width:1240px; margin:0 auto; display:grid; grid-template-columns:1.05fr 0.95fr; gap:40px; align-items:center; position:relative; z-index:2; padding-bottom:60px; }
.eyebrow{ display:inline-flex; align-items:center; gap:8px; font-size:12.5px; font-weight:700; letter-spacing:0.14em; text-transform:uppercase; color:var(--leaf); background:rgba(75,159,110,0.1); padding:7px 16px 7px 10px; border-radius:100px; margin-bottom:22px; }
.eyebrow .droplet{ width:14px; height:14px; flex-shrink:0; }
.hero h1{ font-size:clamp(38px,4.6vw,64px); font-weight:600; line-height:1.08; }
.hero h1 em{ font-style:italic; font-weight:500; color:var(--leaf); }
.hero p.lede{ margin-top:22px; font-size:17.5px; line-height:1.65; color:var(--ink-soft); max-width:480px; }
.hero-ctas{ display:flex; gap:16px; margin-top:34px; flex-wrap:wrap; }
.hero-stats{ display:flex; gap:34px; margin-top:48px; padding-top:28px; border-top:1px solid rgba(11,94,91,0.12); flex-wrap:wrap; }
.hero-stats div{ display:flex; flex-direction:column; }
.hero-stats .num{ font-family:var(--font-display); font-size:26px; font-weight:600; color:var(--teal-deep); }
.hero-stats .lbl{ font-size:12.5px; color:var(--ink-soft); margin-top:2px; }
.hero-visual{ position:relative; height:520px; }
.hero-blob{ position:absolute; inset:0; background:radial-gradient(circle at 30% 25%, #EAF4E9 0%, var(--teal-pale) 55%, transparent 78%); border-radius:62% 38% 55% 45% / 55% 45% 55% 45%; animation:blobMove 14s ease-in-out infinite; }
@keyframes blobMove{ 0%,100%{ border-radius:62% 38% 55% 45% / 55% 45% 55% 45%; } 50%{ border-radius:45% 55% 40% 60% / 45% 60% 40% 55%; } }
.hero-card{ position:absolute; background:#fff; border-radius:20px; box-shadow:var(--shadow-soft); padding:16px 18px; display:flex; align-items:center; gap:12px; }
.hero-card svg{ width:26px; height:26px; flex-shrink:0; }
.hero-card .t{ font-size:13px; font-weight:700; color:var(--teal-deep); }
.hero-card .s{ font-size:11.5px; color:var(--ink-soft); }
.card-1{ top:8%; left:2%; animation:floaty 6s ease-in-out infinite; }
.card-2{ bottom:16%; left:8%; animation:floaty 7s ease-in-out infinite 1s; }
.card-3{ top:46%; right:0%; animation:floaty 6.5s ease-in-out infinite .5s; }
@keyframes floaty{ 0%,100%{ transform:translateY(0); } 50%{ transform:translateY(-12px); } }
.hero-product-hero{ position:absolute; left:50%; top:50%; transform:translate(-50%,-50%); width:230px; }
.wave-divider{ position:relative; width:100%; line-height:0; margin-top:20px; }
.wave-divider svg{ width:100%; height:90px; display:block; }

/* ---------- Category marquee ---------- */
.cat-strip{ background:var(--teal-deep); padding:26px 0; overflow:hidden; position:relative; }
.cat-track{ display:flex; gap:0; width:max-content; animation:scrollLeft 28s linear infinite; }
.cat-track:hover{ animation-play-state:paused; }
@keyframes scrollLeft{ from{ transform:translateX(0); } to{ transform:translateX(-50%); } }
.cat-item{ display:flex; align-items:center; gap:10px; color:#EAF4EE; font-weight:600; font-size:15px; padding:0 34px; border-right:1px solid rgba(255,255,255,0.15); white-space:nowrap; }
.cat-item svg{ width:20px; height:20px; color:var(--leaf-light); flex-shrink:0; }

/* ---------- Sections ---------- */
.section{ padding:96px 32px; }
.section-head{ display:flex; justify-content:space-between; align-items:flex-end; margin-bottom:52px; gap:24px; flex-wrap:wrap; }
.section-head .eyebrow{ margin-bottom:14px; }
.section-head h2{ font-size:clamp(30px,3.4vw,44px); font-weight:600; max-width:560px; }
.section-head p{ color:var(--ink-soft); font-size:15.5px; max-width:360px; line-height:1.6; }

/* ---------- Product grid & cards (also used by WooCommerce archives) ---------- */
.product-grid,ul.products,
.woocommerce ul.products,.woocommerce-page ul.products{
  display:grid !important; grid-template-columns:repeat(4,1fr); gap:26px;
  list-style:none; margin:0 !important; padding:0 !important;
}
.woocommerce ul.products::before,.woocommerce ul.products::after,
.woocommerce-page ul.products::before,.woocommerce-page ul.products::after{ content:none !important; display:none !important; }
.product-card,ul.products li.product,
.woocommerce ul.products li.product,.woocommerce-page ul.products li.product{
  width:100% !important; float:none !important; margin:0 !important; clear:none !important;
  background:#fff; border-radius:22px; overflow:hidden;
  box-shadow:0 12px 30px -18px rgba(11,94,91,0.25); border:1px solid rgba(11,94,91,0.07);
  transition:transform .3s ease, box-shadow .3s ease; display:flex; flex-direction:column; position:relative;
}
.product-card:hover,ul.products li.product:hover{ transform:translateY(-6px); box-shadow:0 24px 40px -20px rgba(11,94,91,0.35); }
.product-media{ position:relative; aspect-ratio:1/0.92; display:flex; align-items:center; justify-content:center; padding:26px; overflow:hidden; background:var(--teal-pale); }
.product-media img{ width:100%; height:100%; object-fit:contain; }
.product-media-link{ display:block; width:100%; height:100%; }
.product-badge{ position:absolute; top:14px; left:14px; z-index:2; font-size:10.5px; font-weight:800; letter-spacing:0.06em; text-transform:uppercase; padding:5px 11px; border-radius:100px; color:#fff; }
.badge-new{ background:var(--leaf); }
.badge-best{ background:var(--gold); animation:badgePulseBest 1.4s ease-in-out infinite; }
.badge-sale{ background:var(--coral-drop); animation:badgePulseSale 1.4s ease-in-out infinite; }
.badge-out-of-stock{ background:var(--ink-soft); }
@keyframes badgePulseSale{
  0%,100%{ box-shadow:0 0 0 0 rgba(224,120,91,0.6); transform:scale(1); }
  50%{ box-shadow:0 0 0 8px rgba(224,120,91,0); transform:scale(1.07); }
}
@keyframes badgePulseBest{
  0%,100%{ box-shadow:0 0 0 0 rgba(201,154,62,0.6); transform:scale(1); }
  50%{ box-shadow:0 0 0 8px rgba(201,154,62,0); transform:scale(1.07); }
}
.fav-btn{ position:absolute; top:12px; right:12px; z-index:2; width:34px; height:34px; border-radius:50%; background:rgba(255,255,255,0.85); border:none; display:flex; align-items:center; justify-content:center; cursor:pointer; color:var(--ink-soft); transition:color .2s ease, transform .2s ease; }
.fav-btn:hover{ color:var(--coral-drop); transform:scale(1.08); }
.product-info{ padding:16px 20px 22px; border-top:1px dashed rgba(11,94,91,0.18); margin-top:4px; display:flex; flex-direction:column; gap:8px; flex:1; align-items:center; text-align:center; }
.product-cat{ font-size:11px; font-weight:700; letter-spacing:0.08em; text-transform:uppercase; color:var(--leaf); }
.product-name,.woocommerce ul.products li.product h2,.woocommerce ul.products li.product h3 { 
  font-family:var(--font-display) !important; font-size:18px !important; font-weight:600 !important; color:var(--teal-deep) !important; line-height:1.25; margin:0; padding:0; background:transparent; text-align:center !important;
}
.woocommerce ul.products li.product-category h2.woocommerce-loop-category__title {
  font-family:var(--font-body) !important; font-size:16px !important; font-weight:700 !important; color:var(--teal-deep) !important; line-height:1.25; margin:0; padding:16px; background:transparent; text-align:center !important;
}
.woocommerce ul.products li.product-category h2.woocommerce-loop-category__title mark.count {
  display: none !important;
}
.product-name a{ color:inherit; }
.product-desc{ font-size:13px; color:var(--ink-soft); line-height:1.5; flex:1; }
.product-foot{ display:flex; flex-direction:column; align-items:center; justify-content:center; margin-top:6px; gap:14px; width: 100%; }
.price, .woocommerce ul.products li.product .price, .woocommerce-page ul.products li.product .price { 
  display:flex !important; justify-content:center !important; align-items:baseline !important; gap:8px !important; 
  font-family:var(--font-body) !important; font-size:22px !important; font-weight:800 !important; color:var(--teal-deep) !important; margin-bottom: 0 !important;
}
.woocommerce ul.products li.product .price del, .woocommerce-page ul.products li.product .price del { 
  font-size:14px !important; color:#9BAEA9 !important; font-weight:600 !important; opacity:1 !important; text-decoration:line-through !important;
}
.woocommerce ul.products li.product .price ins, .woocommerce-page ul.products li.product .price ins { 
  text-decoration:none !important; color:var(--leaf) !important;
}
.add-btn,a.add_to_cart_button,a.ajax_add_to_cart,.single_add_to_cart_button{
  border-radius:100px !important; border:none; cursor:pointer;
  background:linear-gradient(135deg, var(--leaf), var(--teal-mid)) !important; color:#fff !important;
  display:inline-flex; align-items:center; justify-content:center; gap:8px;
  transition:transform .2s ease, box-shadow .2s ease !important; font-weight:700 !important;
}
.add-btn{ width:38px; height:38px; position:relative; }
.add-btn::before,.add-btn::after{
  content:''; position:absolute; top:50%; left:50%; background:#fff; border-radius:1px;
  transform:translate(-50%,-50%);
}
.add-btn::before{ width:14px; height:2px; }
.add-btn::after{ width:2px; height:14px; }
.add-btn:hover{ transform:rotate(90deg); }
a.add_to_cart_button,a.ajax_add_to_cart{ padding:10px 22px !important; font-size:13.5px !important; }
.single_add_to_cart_button{ padding:15px 34px !important; font-size:15px !important; }
a.add_to_cart_button:hover,.single_add_to_cart_button:hover{ transform:translateY(-2px); box-shadow:0 14px 28px -14px rgba(18,133,126,0.6); }
.stars,.star-rating{ display:flex; align-items:center; gap:4px; font-size:12px; color:var(--gold); }
.star-rating{ overflow:hidden; position:relative; height:1em; line-height:1em; width:5.4em; font-family:serif; }
.star-rating::before{ content:"\2605\2605\2605\2605\2605"; color:#E4DFCB; float:left; top:0; left:0; position:absolute; }
.star-rating span{ overflow:hidden; float:left; top:0; left:0; position:absolute; padding-top:1.5em; }
.star-rating span::before{ content:"\2605\2605\2605\2605\2605"; top:0; position:absolute; left:0; color:var(--gold); }

/* ---------- Safety net: shop-only elements can never bleed onto the homepage ---------- */
body.home .woocommerce-pagination,
body.home .wc-wrapper,
body.front-page .woocommerce-pagination,
body.front-page .wc-wrapper{ display:none !important; }

/* ---------- Search form & generic widgets (blog sidebar, footer, etc.) ---------- */
.search-form,.woocommerce-product-search{
  display:flex; gap:0; border-radius:100px; overflow:hidden;
  border:1.5px solid rgba(11,94,91,0.2); background:#fff; max-width:420px;
}
.search-form label{ flex:1; margin:0; }
.search-form .search-field,.woocommerce-product-search input[type="search"]{
  width:100%; border:none; padding:14px 20px; font-family:inherit; font-size:14.5px; background:transparent;
}
.search-form .search-field:focus,.woocommerce-product-search input[type="search"]:focus{ outline:none; }
.search-form .search-submit,.woocommerce-product-search button{
  border:none; background:linear-gradient(135deg, var(--leaf), var(--teal-mid)); color:#fff;
  font-weight:700; font-size:13.5px; padding:0 26px; cursor:pointer; transition:opacity .2s ease;
}
.search-form .search-submit:hover,.woocommerce-product-search button:hover{ opacity:0.92; }

.widget{ margin-bottom:34px; }
.widget-title{ font-family:var(--font-display); color:var(--teal-deep); font-size:19px; margin:0 0 16px; }
.widget ul{ display:flex; flex-direction:column; gap:10px; }
.widget ul li{ font-size:14px; color:var(--ink-soft); }
.widget ul li a{ color:var(--ink-soft); transition:color .2s ease; }
.widget ul li a:hover{ color:var(--teal-mid); }
.widget_recent_comments ul li,.widget_recent_entries ul li{ line-height:1.5; }

/* ---------- Shop category picker (main shop page) ---------- */
.category-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:26px; }
.category-tile{
  position:relative; display:block; border-radius:22px; overflow:hidden; aspect-ratio:4/3;
  box-shadow:0 12px 30px -18px rgba(11,94,91,0.3); transition:transform .3s ease, box-shadow .3s ease;
}
.category-tile:hover{ transform:translateY(-6px); box-shadow:0 22px 42px -18px rgba(11,94,91,0.4); }
.category-tile-media{ position:absolute; inset:0; background-size:cover; background-position:center; background-color:var(--teal-pale); }
.category-tile-media::after{ content:''; position:absolute; inset:0; background:linear-gradient(180deg, rgba(11,94,91,0) 35%, rgba(9,36,34,0.8) 100%); }
.category-tile-info{ position:absolute; left:0; right:0; bottom:0; padding:22px; color:#fff; }
.category-tile-info h3{ font-family:var(--font-display); font-size:22px; color:#fff; margin:0; }
.category-tile-info span{ font-size:13px; color:#DCEEEA; }
@media (max-width:900px){ .category-grid{ grid-template-columns:repeat(2,1fr); } }
@media (max-width:600px){ .category-grid{ grid-template-columns:1fr; } }

/* ---------- Trust band ---------- */
.trust-band{ background:var(--teal-pale); padding:70px 32px; position:relative; }
.trust-grid{ display:grid; grid-template-columns:repeat(4,1fr); gap:30px; }
.trust-item{ display:flex; flex-direction:column; gap:14px; background:#fff; padding:28px 24px; border-radius:20px; box-shadow:0 14px 30px -22px rgba(11,94,91,0.3); }
.trust-item .ic{ width:48px; height:48px; border-radius:14px; background:linear-gradient(135deg, var(--leaf), var(--teal-mid)); display:flex; align-items:center; justify-content:center; }
.trust-item .ic svg{ width:24px; height:24px; color:#fff; }
.trust-item h3{ font-size:16.5px; font-weight:700; color:var(--teal-deep); }
.trust-item p{ font-size:13.5px; color:var(--ink-soft); line-height:1.55; margin:0; }

/* ---------- Story ---------- */
.story{ display:grid; grid-template-columns:0.9fr 1.1fr; gap:64px; align-items:center; }
.story-visual{ position:relative; border-radius:var(--radius-lg); background:linear-gradient(160deg, var(--teal-deep), var(--teal-mid)); aspect-ratio:1/1; overflow:hidden; display:flex; align-items:center; justify-content:center; }
.story-visual svg{ width:70%; }
.story-text .eyebrow{ background:rgba(201,154,62,0.14); color:var(--gold); }
.story-text h2{ font-size:clamp(28px,3vw,40px); margin-top:14px; line-height:1.15; }
.story-text p{ color:var(--ink-soft); font-size:16px; line-height:1.75; margin-top:20px; max-width:520px; }
.story-list{ margin-top:26px; display:flex; flex-direction:column; gap:14px; }
.story-list li{ display:flex; gap:12px; align-items:flex-start; font-size:14.5px; color:var(--ink); }
.story-list svg{ width:20px; height:20px; color:var(--leaf); flex-shrink:0; margin-top:1px; }

/* ---------- Testimonial ---------- */
.testimonial-section{ background:var(--teal-deep); color:#fff; text-align:center; position:relative; overflow:hidden; }
.quote-mark{ font-family:var(--font-display); font-size:90px; color:var(--gold); line-height:0; opacity:0.85; }
.testimonial-text{ font-family:var(--font-display); font-size:clamp(22px,2.6vw,32px); font-weight:500; font-style:italic; max-width:780px; margin:14px auto 26px; line-height:1.5; color:#F3F7EE; }
.testimonial-author{ font-weight:700; font-size:14.5px; }
.testimonial-role{ font-size:12.5px; color:var(--leaf-light); margin-top:2px; }
.testi-dots{ display:flex; justify-content:center; gap:8px; margin-top:34px; }
.testi-dots span{ width:7px; height:7px; border-radius:50%; background:rgba(255,255,255,0.3); }
.testi-dots span.active{ background:var(--gold); width:22px; border-radius:5px; }

/* ---------- Newsletter ---------- */
.newsletter{ background:var(--sand); border-radius:var(--radius-lg); padding:60px; display:flex; align-items:center; justify-content:space-between; gap:40px; flex-wrap:wrap; }
.newsletter h2{ font-size:clamp(24px,2.6vw,34px); max-width:420px; }
.newsletter p{ color:var(--ink-soft); margin-top:10px; font-size:14.5px; max-width:420px; }
.newsletter-form{ display:flex; gap:10px; flex-wrap:wrap; }
.newsletter-form input{ padding:14px 20px; border-radius:100px; border:1.5px solid rgba(11,94,91,0.25); background:#fff; font-size:14.5px; width:260px; font-family:inherit; }
.newsletter-form input:focus{ outline:none; border-color:var(--leaf); }

/* ---------- Footer ---------- */
.site-footer{ background:#0B1F1C; color:#CFE3DC; padding:70px 32px 26px; }
.footer-grid{ display:grid; grid-template-columns:1.4fr 1fr 1fr 1.2fr; gap:50px; }
.footer-brand .brand-text .name{ color:#fff; }
.footer-brand p{ color:#9DBBB2; font-size:13.5px; line-height:1.7; margin-top:16px; max-width:280px; }
.footer-col h4{ font-size:13px; text-transform:uppercase; letter-spacing:0.1em; color:#fff; margin-bottom:18px; font-weight:700; }
.footer-col ul li{ margin-bottom:11px; }
.footer-col ul a{ font-size:14px; color:#A9C6BE; transition:color .2s ease; }
.footer-col ul a:hover{ color:var(--leaf-light); }
.footer-social{ display:flex; gap:10px; margin-top:18px; }
.footer-social a{ width:36px; height:36px; border-radius:50%; border:1px solid rgba(255,255,255,0.18); display:flex; align-items:center; justify-content:center; transition:background .2s ease; }
.footer-social a:hover{ background:rgba(255,255,255,0.1); }
.footer-social svg{ width:16px; height:16px; }
.footer-bottom{ margin-top:56px; padding-top:22px; border-top:1px solid rgba(255,255,255,0.08); display:flex; justify-content:space-between; font-size:12.5px; color:#7FA398; flex-wrap:wrap; gap:10px; }

/* ---------- Reveal on scroll ---------- */
.reveal{ opacity:0; transform:translateY(24px); transition:opacity .7s ease, transform .7s ease; }
.reveal.in{ opacity:1; transform:translateY(0); }
@media (prefers-reduced-motion:reduce){ *{ animation:none !important; transition:none !important; } }

/* =========================================================
   WOOCOMMERCE — shop, single product, cart, checkout, account
   ========================================================= */
.wc-wrapper{ padding:56px 0 96px; }
.wc-wrapper h1.page-title{
  font-family:var(--font-display); color:var(--teal-deep); font-size:clamp(30px,3.4vw,44px);
  font-weight:600; margin-bottom:36px;
}
.woocommerce-breadcrumb{ font-size:13px; color:var(--ink-soft); margin-bottom:28px; }
.woocommerce-breadcrumb a{ color:var(--teal-mid); }
.woocommerce-result-count{ color:var(--ink-soft); font-size:14px; }
.woocommerce-ordering select{ border-radius:100px; border:1.5px solid rgba(11,94,91,0.2); padding:9px 18px; font-family:inherit; }
.woocommerce-pagination{ margin-top:40px; }
.woocommerce-pagination,
.woocommerce-pagination nav{ display:block; width:100%; }
.woocommerce-pagination ul.page-numbers,
.woocommerce-pagination ul,
nav.woocommerce-pagination ul{
  display:flex !important; flex-direction:row !important; justify-content:center !important;
  flex-wrap:wrap; gap:12px; margin:0 auto !important; padding:0 !important;
  list-style:none !important; align-items:center; width: 100%;
  background:transparent !important; border:none !important;
}
.woocommerce-pagination ul.page-numbers li,
.woocommerce-pagination ul li{
  display:inline-flex !important; margin:0 !important; padding:0 !important; list-style:none !important;
  float:none !important; clear:none !important; border:none !important; background:transparent !important;
}
.woocommerce-pagination .page-numbers,
.woocommerce-pagination a.page-numbers,
.woocommerce-pagination span.page-numbers{
  width:38px; height:38px; display:flex !important; align-items:center; justify-content:center;
  border-radius:50%; border:1.5px solid rgba(11,94,91,0.18); color:var(--teal-deep); font-weight:600;
  background:#fff; transition:background .2s ease, color .2s ease;
}
.woocommerce-pagination .page-numbers.dots{ border:none; background:transparent; width:auto; }
.woocommerce-pagination .page-numbers.next,
.woocommerce-pagination .page-numbers.prev{ border-radius:100px; width:auto; padding:0 16px; }
.woocommerce-pagination a.page-numbers:hover{ background:var(--teal-pale); }
.woocommerce-pagination .page-numbers.current{ background:var(--teal-deep); color:#fff; border-color:var(--teal-deep); }

.woocommerce-message,.woocommerce-info,.woocommerce-error,.woocommerce-noreviews{
  border-top-color:var(--leaf) !important; background:var(--teal-pale); border-radius:14px; padding:16px 20px !important;
  list-style:none;
}
.woocommerce-error{ background:#FCEAE4; border-top-color:var(--coral-drop) !important; }
.woocommerce-message::before,.woocommerce-info::before{ color:var(--leaf) !important; }
.woocommerce-error::before{ color:var(--coral-drop) !important; }

/* Single product */
.woocommerce div.product .woocommerce-product-gallery{ border-radius:22px; overflow:hidden; }
.woocommerce div.product .summary{ padding-top:8px; }
.woocommerce div.product .product_title{ font-family:var(--font-display); color:var(--teal-deep); font-size:clamp(26px,3vw,38px); }
.woocommerce div.product p.price,.woocommerce div.product span.price{ font-family:var(--font-display); color:var(--teal-deep); font-size:24px; }
.woocommerce div.product .woocommerce-product-details__short-description{ color:var(--ink-soft); line-height:1.7; margin:18px 0; }
.woocommerce div.product form.cart{ display:flex; align-items:center; gap:16px; margin-top:24px; }
.woocommerce div.product .quantity input{ width:64px; height:48px; border-radius:100px; text-align:center; border:1.5px solid rgba(11,94,91,0.2); font-family:inherit; }
.woocommerce-tabs ul.tabs{ display:flex; gap:8px; border-bottom:1px solid rgba(11,94,91,0.12); padding:0; list-style:none; margin-bottom:24px; }
.woocommerce-tabs ul.tabs li{ padding:0; margin:0; }
.woocommerce-tabs ul.tabs li a{ display:inline-block; padding:12px 20px; font-weight:700; color:var(--ink-soft); border-radius:12px 12px 0 0; }
.woocommerce-tabs ul.tabs li.active a{ color:var(--teal-deep); background:var(--teal-pale); }
.related.products,.upsells.products{ margin-top:70px; }
.related.products h2,.upsells.products h2{ font-family:var(--font-display); color:var(--teal-deep); font-size:clamp(24px,2.6vw,32px); margin-bottom:30px; }

/* Cart & checkout */
table.shop_table{ width:100%; border-collapse:collapse; border-radius:18px; overflow:hidden; box-shadow:0 12px 30px -20px rgba(11,94,91,0.25); }
table.shop_table th{ background:var(--teal-pale); color:var(--teal-deep); text-align:left; padding:16px; font-size:13px; text-transform:uppercase; letter-spacing:0.06em; }
table.shop_table td{ padding:16px; border-bottom:1px solid rgba(11,94,91,0.08); background:#fff; }
.cart_totals{ background:#fff; border-radius:18px; padding:26px; box-shadow:0 12px 30px -20px rgba(11,94,91,0.25); }
.cart_totals h2{ font-family:var(--font-display); color:var(--teal-deep); }
#coupon_code{ border-radius:100px; border:1.5px solid rgba(11,94,91,0.2); padding:11px 18px; font-family:inherit; }
.checkout .form-row input,.checkout .form-row select,.checkout .form-row textarea{
  border-radius:12px; border:1.5px solid rgba(11,94,91,0.2); padding:12px 16px; font-family:inherit; width:100%;
}
.woocommerce-checkout-review-order-table{ background:#fff; border-radius:18px; overflow:hidden; }
.wc_payment_methods{ list-style:none; padding:0; }

/* My account */
.woocommerce-MyAccount-navigation ul{ list-style:none; padding:0; display:flex; flex-direction:column; gap:6px; }
.woocommerce-MyAccount-navigation a{ display:block; padding:12px 18px; border-radius:12px; color:var(--ink-soft); font-weight:600; }
.woocommerce-MyAccount-navigation li.is-active a{ background:var(--teal-pale); color:var(--teal-deep); }

/* ---------- Responsive ---------- */
@media (max-width:1080px){
  .product-grid,ul.products,.woocommerce ul.products,.woocommerce-page ul.products{ grid-template-columns:repeat(2,1fr) !important; }
  .trust-grid{ grid-template-columns:repeat(2,1fr); }
  .hero-inner{ grid-template-columns:1fr; }
  .hero-visual{ height:380px; order:-1; }
  .story{ grid-template-columns:1fr; }
  .story-visual{ max-width:360px; margin:0 auto; }
}
@media (max-width:900px){ .nav-actions{ gap:8px; } .nav-actions .icon-btn{ width:36px; height:36px; } }
@media (max-width:760px){
  nav.links{ display:none; }
  .mobile-toggle{ display:flex; }
  .footer-grid{ grid-template-columns:1fr 1fr; }
  .newsletter{ flex-direction:column; align-items:flex-start; padding:40px 28px; }
  .newsletter-form{ width:100%; }
  .newsletter-form input{ width:100%; }
  .section{ padding:64px 20px; }
  .hero{ padding:64px 20px 0; }
  .wrap{ padding:0 20px; }
  .product-grid,ul.products,.woocommerce ul.products,.woocommerce-page ul.products{ grid-template-columns:1fr 1fr !important; gap:16px; }
  .hero-stats{ gap:20px; }
  
  /* Mobile Header Fixes */
  .notice-bar { font-size: 11.5px; padding: 6px 10px; line-height: 1.4; }
  .nav{ padding:12px 16px; flex-wrap: nowrap; gap: 8px; }
  .brand-text .tag { display: none; }
  .brand-text .name { font-size: 18px; }
  .brand img, .brand svg { width: 36px; height: 36px; }
  .nav-actions{ gap:4px; }
  .nav-actions .btn-primary { display: none; }
  .lang-switch a { padding: 5px 8px; font-size: 11.5px; }
  .header-search-wrap.is-active .header-search-container { width: 200px; }
}
@media (max-width:480px){
  .product-grid,ul.products,.woocommerce ul.products,.woocommerce-page ul.products{ grid-template-columns:1fr !important; }
  .trust-grid{ grid-template-columns:1fr; }
}

/* =========================================================
   CONTACT PAGE
   ========================================================= */
.contact-hero { padding: 80px 0 40px; background: var(--teal-pale); margin-bottom: 60px; text-align: center; }
.contact-hero .page-title { font-family: var(--font-display); font-size: 42px; color: var(--teal-deep); font-weight: 700; margin-bottom: 16px; }
.contact-hero .lede { font-size: 18px; color: var(--ink-soft); max-width: 600px; margin: 0 auto; line-height: 1.6; }

.contact-section { padding-bottom: 100px; }
.contact-grid { display: grid; grid-template-columns: 1.5fr 1fr; gap: 60px; }

@media (max-width: 800px) {
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
}

/* Contact Columns */
.contact-info-col, .contact-form-col { background: #fff; border-radius: 24px; padding: 40px; box-shadow: 0 20px 40px -10px rgba(11,94,91,0.08); border: 1px solid rgba(11,94,91,0.08); height: fit-content; }
.contact-info-col h3 { font-family: var(--font-display); font-size: 24px; color: var(--teal-deep); margin-bottom: 30px; }

.info-block { display: flex; gap: 16px; margin-bottom: 24px; }
.info-block:last-child { margin-bottom: 0; }
.info-block svg { width: 24px; height: 24px; color: var(--leaf); flex-shrink: 0; margin-top: 2px; }
.info-block strong { display: block; font-size: 14px; text-transform: uppercase; letter-spacing: 0.05em; color: var(--teal-mid); margin-bottom: 4px; }
.info-block p, .info-block a { font-size: 16px; color: var(--ink-soft); line-height: 1.5; text-decoration: none; margin: 0; }
.info-block a:hover { color: var(--leaf); }

/* Contact Form 7 Styles */
.wpcf7-form { display: flex; flex-direction: column; gap: 24px; }
.wpcf7-form p { margin: 0; display: flex; flex-direction: column; gap: 8px; }
.wpcf7-form-control-wrap { display: block; width: 100%; }
.wpcf7-form input[type="text"], 
.wpcf7-form input[type="email"], 
.wpcf7-form input[type="tel"], 
.wpcf7-form textarea {
  width: 100%; padding: 16px 20px; border-radius: 12px; border: 1.5px solid rgba(11,94,91,0.18);
  background: #f9fbfb; font-family: inherit; font-size: 15px; color: var(--teal-deep);
  transition: all 0.2s ease; outline: none; box-sizing: border-box;
}
.wpcf7-form input:focus, .wpcf7-form textarea:focus { border-color: var(--leaf); background: #fff; box-shadow: 0 0 0 4px rgba(75,159,110,0.1); }
.wpcf7-form textarea { min-height: 160px; resize: vertical; }
.wpcf7-form label { font-size: 14px; font-weight: 600; color: var(--teal-deep); margin-bottom: 8px; display: block; }
.wpcf7-form input[type="submit"] {
  background: linear-gradient(135deg, var(--leaf), var(--teal-mid));
  color: #fff; border: none; border-radius: 100px; padding: 18px 40px;
  font-size: 16px; font-weight: 700; cursor: pointer; transition: transform 0.2s ease, box-shadow 0.2s ease;
  width: fit-content; display: inline-block; margin-top: 10px;
}
.wpcf7-form input[type="submit"]:hover { transform: translateY(-2px); box-shadow: 0 10px 20px -10px var(--leaf); }
.wpcf7-response-output { border-radius: 12px !important; margin: 20px 0 0 0 !important; font-size: 15px; }

/* =========================================================
   WOOCOMMERCE BLUE BACKGROUND TEXT OVERRIDES
   ========================================================= */
.wc-wrapper { color: #EAF4EE; }
.wc-wrapper h1.page-title, 
.wc-wrapper h2, 
.wc-wrapper h3 { color: #fff; }

/* WooCommerce Blocks (Cart / Checkout) */
.wc-block-components-product-name,
.wc-block-cart-item__prices,
.wc-block-components-totals-item__value,
.wc-block-components-totals-item__label,
.wc-block-components-title,
.wc-block-cart__totals-title,
.wc-block-components-table th,
.wc-block-components-table td,
.wc-block-components-checkbox label,
.wc-block-components-radio label,
.wc-block-components-order-summary,
.wc-block-checkout__title,
.wc-block-components-address-form__add-button {
  color: #fff !important;
}
.wc-block-components-text-input label, 
.wc-block-components-combobox-control label { color: var(--teal-deep) !important; }
.wc-block-components-product-price { color: var(--gold) !important; }

/* Single Product Overrides */
.woocommerce div.product .summary {
  background: #fff;
  border-radius: 24px;
  padding: 40px;
  box-shadow: 0 20px 40px -10px rgba(11,94,91,0.08);
}
.woocommerce-tabs ul.tabs li a { color: #EAF4EE; }
.woocommerce-tabs ul.tabs li.active a { color: #fff; background: rgba(255,255,255,0.1); }
.woocommerce-tabs .panel h2 { color: #fff; }

/* Notice messages */
.woocommerce-message, .woocommerce-info { background: rgba(255,255,255,0.1); color: #fff; }

/* =========================================================
   ORDER TRACKING
   ========================================================= */
.seaside-tracking-wrapper { max-width: 800px; margin: 60px auto; padding: 0 20px; position: relative; z-index: 10; }

.tracking-form-card, .tracking-result-card {
  background: #fff;
  border-radius: 24px;
  padding: 40px;
  box-shadow: 0 20px 40px -10px rgba(11,94,91,0.08);
  border: 1px solid rgba(11,94,91,0.08);
  margin-bottom: 40px;
}
.tracking-form-card h2 { font-family: var(--font-display); font-size: 32px; color: var(--teal-deep); margin-bottom: 12px; text-align: center; }
.tracking-form-card p { color: var(--ink-soft); text-align: center; margin-bottom: 32px; font-size: 16px; }

.tracking-error { background: #FCEAE4; color: var(--coral-drop); padding: 16px; border-radius: 12px; margin-bottom: 24px; text-align: center; font-weight: 600; }

.tracking-form { display: flex; flex-direction: column; gap: 20px; max-width: 500px; margin: 0 auto; }
.tracking-form .form-row { display: flex; flex-direction: column; gap: 8px; }
.tracking-form label { font-size: 14px; font-weight: 600; color: var(--teal-deep); }
.tracking-form input {
  padding: 16px 20px; border-radius: 12px; border: 1.5px solid rgba(11,94,91,0.18);
  background: #f9fbfb; font-family: inherit; font-size: 15px; color: var(--teal-deep);
  transition: all 0.2s ease; outline: none; width: 100%; box-sizing: border-box;
}
.tracking-form input:focus { border-color: var(--leaf); background: #fff; box-shadow: 0 0 0 4px rgba(75,159,110,0.1); }
.tracking-btn {
  background: linear-gradient(135deg, var(--leaf), var(--teal-mid));
  color: #fff; border: none; border-radius: 100px; padding: 18px 40px;
  font-size: 16px; font-weight: 700; cursor: pointer; transition: transform 0.2s ease, box-shadow 0.2s ease;
  width: 100%; margin-top: 10px; display: block;
}
.tracking-btn:hover { transform: translateY(-2px); box-shadow: 0 10px 20px -10px var(--leaf); }

/* Timeline */
.tracking-timeline { position: relative; padding: 40px 0 20px; }
.timeline-bar { position: absolute; top: 66px; left: 12%; right: 12%; height: 4px; background: rgba(11,94,91,0.1); border-radius: 4px; z-index: 1; overflow: hidden; }
.timeline-progress { position: absolute; top: 0; left: 0; height: 100%; background: var(--leaf); border-radius: 4px; transition: width 1.5s cubic-bezier(0.4, 0, 0.2, 1); width: 0; }

.timeline-steps { display: flex; justify-content: space-between; position: relative; z-index: 2; }
.timeline-step { display: flex; flex-direction: column; align-items: center; width: 25%; gap: 16px; position: relative; }
.step-icon { 
  width: 56px; height: 56px; background: #fff; border: 2px solid rgba(11,94,91,0.12); border-radius: 50%;
  display: flex; align-items: center; justify-content: center; color: var(--ink-soft); transition: all 0.5s ease; transition-delay: 0.2s;
}
.step-icon svg { width: 24px; height: 24px; }
.step-label { font-size: 14px; font-weight: 600; color: var(--ink-soft); text-align: center; transition: all 0.5s ease; transition-delay: 0.2s; }

.timeline-step.active .step-icon { border-color: var(--leaf); color: var(--leaf); box-shadow: 0 0 0 6px rgba(75,159,110,0.1); background: #fff; }
.timeline-step.active .step-label { color: var(--teal-deep); }

/* Animation for current step */
@keyframes pulseStep {
  0% { box-shadow: 0 0 0 0 rgba(75,159,110,0.4); transform: scale(1); }
  70% { box-shadow: 0 0 0 12px rgba(75,159,110,0); transform: scale(1.05); }
  100% { box-shadow: 0 0 0 0 rgba(75,159,110,0); transform: scale(1); }
}
.timeline-step.current .step-icon { background: var(--leaf); color: #fff; animation: pulseStep 2s infinite; border-color: var(--leaf); }

@media (max-width: 600px) {
  .tracking-form-card, .tracking-result-card { padding: 24px 16px; }
  .tracking-timeline { padding: 20px 0 10px; }
  .timeline-bar { top: 40px; left: 10%; right: 10%; }
  .timeline-step { gap: 10px; }
  .step-icon { width: 40px; height: 40px; }
  .step-icon svg { width: 18px; height: 18px; }
  .step-label { font-size: 11px; }
  .timeline-step.active .step-icon { box-shadow: 0 0 0 4px rgba(75,159,110,0.1); }
}

/* =========================================================
   LOCAL PICKUP STAFF VIEW
   ========================================================= */
.qr-code-box {
    margin: 40px auto; padding: 30px; background-color: #F1F8F4; border-radius: 16px;
    text-align: center; max-width: 400px; box-shadow: 0 10px 30px -10px rgba(11,94,91,0.08);
    border: 1px solid rgba(75,159,110,0.1);
}
.qr-code-box h3 { color: var(--teal-deep); margin-bottom: 12px; font-family: var(--font-display); font-size: 24px; }
.qr-code-box p { color: var(--ink-soft); margin-bottom: 20px; }
.qr-code-box img { border-radius: 8px; box-shadow: 0 4px 12px rgba(0,0,0,0.05); }

.seaside-staff-view { max-width: 600px; margin: 40px auto; padding: 0 20px; font-family: inherit; }
.staff-card { background: #fff; border-radius: 24px; padding: 30px; box-shadow: 0 20px 40px -10px rgba(11,94,91,0.1); }
.staff-card h2 { font-family: var(--font-display); font-size: 28px; color: var(--teal-deep); margin-bottom: 24px; padding-bottom: 20px; border-bottom: 1px solid rgba(11,94,91,0.1); text-align: center; }
.staff-success { background: #EAF4EE; color: var(--leaf); padding: 16px; border-radius: 12px; margin-bottom: 24px; text-align: center; font-weight: 600; }
.staff-error { background: #FCEAE4; color: var(--coral-drop); padding: 16px; border-radius: 12px; margin: 40px auto; max-width: 400px; text-align: center; font-weight: 600; }

.staff-section { margin-bottom: 30px; }
.staff-section h3 { font-size: 14px; text-transform: uppercase; letter-spacing: 1px; color: var(--ink-soft); margin-bottom: 12px; }
.staff-section p { font-size: 16px; color: var(--teal-deep); line-height: 1.5; margin: 0; }
.staff-section p strong { font-size: 18px; }

.staff-items-list { list-style: none; padding: 0; margin: 0; }
.staff-items-list li { display: flex; gap: 12px; padding: 12px 0; border-bottom: 1px solid rgba(11,94,91,0.05); }
.staff-items-list li:last-child { border-bottom: none; }
.staff-items-list .qty { font-weight: 700; color: var(--leaf); min-width: 30px; }
.staff-items-list .name { color: var(--teal-deep); font-weight: 500; }

.staff-total-section { background: #f9fbfb; padding: 20px; border-radius: 12px; }
.staff-row { display: flex; justify-content: space-between; align-items: center; margin-bottom: 12px; }
.staff-row:last-child { margin-bottom: 0; }
.staff-row span { color: var(--ink-soft); font-size: 15px; }
.staff-row strong { color: var(--teal-deep); font-size: 16px; font-weight: 600; }
.staff-row .total-price { font-size: 24px; color: var(--leaf); }

.staff-btn-pickup {
    background: linear-gradient(135deg, var(--leaf), var(--teal-mid));
    color: #fff; border: none; border-radius: 100px; padding: 18px 40px;
    font-size: 16px; font-weight: 700; cursor: pointer; transition: transform 0.2s ease, box-shadow 0.2s ease;
    width: 100%; margin-top: 10px; display: block;
}
.staff-btn-pickup:hover { transform: translateY(-2px); box-shadow: 0 10px 20px -10px var(--leaf); }

@media (max-width: 600px) {
    .seaside-staff-view { margin: 20px auto; padding: 0 16px; }
    .staff-card { padding: 24px; }
    .staff-card h2 { font-size: 24px; }
}

/* =========================================================
   HERO SLIDER (ABOVE FLASH SALES)
   ========================================================= */
.promo-slider-wrap {
  position: relative;
  max-width: 1200px;
  margin: 0 auto 40px;
  overflow: hidden;
  border-radius: 24px;
  box-shadow: 0 20px 40px -10px rgba(11,94,91,0.15);
}
.promo-slider {
  display: flex;
  transition: transform 0.5s ease-in-out;
  will-change: transform;
}
.promo-slide {
  flex: 0 0 100%;
  position: relative;
}
.promo-slide img {
  width: 100%;
  height: auto;
  aspect-ratio: 16/9;
  object-fit: cover;
  display: block;
}
@media (min-width: 768px) {
  .promo-slide img {
    aspect-ratio: 21/9;
  }
}
.promo-controls {
  position: absolute;
  bottom: 20px;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  gap: 10px;
  z-index: 10;
}
.promo-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255,255,255,0.5);
  border: none;
  cursor: pointer;
  transition: background 0.3s, transform 0.3s;
}
.promo-dot.active {
  background: #fff;
  transform: scale(1.2);
}
.promo-prev, .promo-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.8);
  border: none;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--teal-deep);
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  transition: background 0.2s;
  z-index: 10;
}
.promo-prev:hover, .promo-next:hover {
  background: #fff;
}
.promo-prev { left: 20px; }
.promo-next { right: 20px; }
