/*
Theme Name: Lime Pharmacy
Theme URI: https://www.limepharmacy.co.uk/
Author: Lime Pharmacy
Description: Custom WooCommerce theme for Lime Pharmacy — independent pharmacy, Thetford, Norfolk. GPhC Reg. 1107406.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 7.0
Requires PHP: 7.4
Text Domain: limepharmacy
WC requires at least: 7.0
WC tested up to: 10.8
*/

/* ============================================================
   Lime Pharmacy — Shared Stylesheet
   Consolidated from all page <style> blocks.
   ============================================================ */

/* ── Brand Tokens ── */
:root {
  --lime-green:   #6ab04c;
  --lime-dark:    #4e8a36;
  --lime-light:   #e8f5e2;
  --lime-mid:     #d0edbe;
  --text-dark:    #1a2e14;
  --text-body:    #3d4e38;
  --text-muted:   #6b7a65;
  --white:        #ffffff;
  --off-white:    #f7fdf4;
  --border:       #d4e8c8;
  --danger:       #e74c3c;
  --success:      #27ae60;
  --radius-sm:    8px;
  --radius-md:    14px;
  --radius-lg:    22px;
  --shadow-card:  0 2px 18px rgba(106,176,76,0.10);
  --shadow-hover: 0 6px 32px rgba(106,176,76,0.18);
  --font-display: 'Poppins', sans-serif;
  --font-body:    'Inter', sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--text-body);
  background: var(--white);
  font-size: 16px;
  line-height: 1.65;
}
/* Soft background for shop / checkout / confirmation pages */
body.shop-bg { background: var(--off-white); }

h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  color: var(--text-dark);
  line-height: 1.25;
}

a { color: var(--lime-green); text-decoration: none; }
a:hover { color: var(--lime-dark); }

/* ── Top Bar ── */
.top-bar { background: var(--lime-dark); color: var(--white); font-size: 0.82rem; padding: 7px 0; }
.top-bar a { color: var(--lime-mid); }
.top-bar a:hover { color: var(--white); }
.top-bar-inner { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 6px; }
.top-bar-left, .top-bar-right { display: flex; align-items: center; gap: 18px; flex-wrap: wrap; }
.top-bar-item { display: flex; align-items: center; gap: 6px; white-space: nowrap; }
.top-bar-item i { font-size: 0.85rem; color: var(--lime-mid); }

/* ── Navbar ── */
.main-nav {
  background: var(--white);
  border-bottom: 2px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 12px rgba(0,0,0,0.05);
}
.main-nav .navbar-brand img { height: 52px; width: auto; }
.navbar-nav .nav-link {
  font-family: var(--font-display);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-dark) !important;
  padding: 6px 14px;
  border-radius: var(--radius-sm);
  transition: background 0.2s, color 0.2s;
}
.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active { background: var(--lime-light); color: var(--lime-dark) !important; }
.nav-cta { background: var(--lime-green) !important; color: var(--white) !important; padding: 8px 20px !important; border-radius: var(--radius-sm) !important; }
.nav-cta:hover { background: var(--lime-dark) !important; color: var(--white) !important; }
.cart-badge { position: relative; }
.cart-count {
  position: absolute; top: -6px; right: -8px;
  background: var(--danger); color: #fff;
  font-size: 0.65rem; font-weight: 700;
  width: 18px; height: 18px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}

/* ── Divider ── */
.lime-divider { height: 4px; background: linear-gradient(90deg, var(--lime-green), var(--lime-dark)); border: none; margin: 0; }

/* ── Hero ── */
.hero { background: linear-gradient(135deg, var(--lime-dark) 0%, var(--lime-green) 55%, #a8d982 100%); padding: 90px 0 80px; position: relative; overflow: hidden; }
.hero::before { content: ''; position: absolute; inset: 0; background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='60'%3E%3Ccircle cx='30' cy='30' r='1.5' fill='rgba(255,255,255,0.08)'/%3E%3C/svg%3E") repeat; }
.hero-badge { display: inline-flex; align-items: center; gap: 7px; background: rgba(255,255,255,0.18); border: 1px solid rgba(255,255,255,0.35); color: var(--white); font-size: 0.8rem; font-weight: 600; padding: 5px 14px; border-radius: 50px; margin-bottom: 22px; backdrop-filter: blur(4px); letter-spacing: 0.04em; text-transform: uppercase; }
.hero h1 { font-size: clamp(2.1rem, 4.5vw, 3.4rem); font-weight: 800; color: var(--white); margin-bottom: 18px; }
.hero h1 span { display: inline; background: rgba(255,255,255,0.2); border-radius: 6px; padding: 0 6px; }
.hero p { font-size: 1.08rem; color: rgba(255,255,255,0.92); max-width: 520px; margin-bottom: 34px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.btn-hero-primary { background: var(--white); color: var(--lime-dark); font-family: var(--font-display); font-weight: 700; font-size: 0.95rem; padding: 13px 30px; border-radius: var(--radius-sm); border: none; transition: transform 0.2s, box-shadow 0.2s; display: inline-flex; align-items: center; gap: 8px; }
.btn-hero-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(0,0,0,0.18); color: var(--lime-dark); }
.btn-hero-outline { background: transparent; color: var(--white); font-family: var(--font-display); font-weight: 600; font-size: 0.95rem; padding: 13px 28px; border-radius: var(--radius-sm); border: 2px solid rgba(255,255,255,0.6); transition: all 0.2s; display: inline-flex; align-items: center; gap: 8px; }
.btn-hero-outline:hover { background: rgba(255,255,255,0.15); border-color: var(--white); color: var(--white); }
.hero-trust { display: flex; gap: 20px; flex-wrap: wrap; margin-top: 40px; padding-top: 30px; border-top: 1px solid rgba(255,255,255,0.2); }
.trust-item { display: flex; align-items: center; gap: 9px; color: rgba(255,255,255,0.9); font-size: 0.84rem; font-weight: 500; }
.trust-item i { font-size: 1.2rem; color: #c3f39b; }
.hero-card { background: rgba(255,255,255,0.14); border: 1px solid rgba(255,255,255,0.3); border-radius: var(--radius-lg); backdrop-filter: blur(8px); padding: 32px; }
.hero-card h4 { color: var(--white); font-size: 1rem; font-weight: 700; margin-bottom: 18px; display: flex; align-items: center; gap: 8px; }
.hours-row { display: flex; justify-content: space-between; font-size: 0.85rem; padding: 8px 0; border-bottom: 1px solid rgba(255,255,255,0.12); color: rgba(255,255,255,0.88); }
.hours-row:last-child { border-bottom: none; }
.hours-row .day { font-weight: 500; color: var(--white); }
.open-badge { display: inline-flex; align-items: center; gap: 5px; background: #2ecc71; color: var(--white); font-size: 0.73rem; font-weight: 700; padding: 3px 10px; border-radius: 50px; }
.open-badge .dot { width: 6px; height: 6px; background: #fff; border-radius: 50%; animation: pulse 1.5s infinite; }

.hero figure img{max-width:100%; max-height:700px; object-fit:cover; height:auto; width:auto; border-radius:20px;}
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.4; } }

/* ── Quick Action Bar ── */
.quick-bar { background: var(--white); border-bottom: 1px solid var(--border); padding: 0; }
.quick-bar-inner { display: grid; grid-template-columns: repeat(4, 1fr); }
.quick-item { display: flex; align-items: center; gap: 13px; padding: 22px 24px; border-right: 1px solid var(--border); transition: background 0.2s; cursor: pointer; text-decoration: none; color: inherit; }
.quick-item:last-child { border-right: none; }
.quick-item:hover { background: var(--lime-light); }
.quick-icon { width: 44px; height: 44px; background: var(--lime-light); border-radius: var(--radius-sm); display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-size: 1.2rem; color: var(--lime-dark); transition: background 0.2s; }
.quick-item:hover .quick-icon { background: var(--lime-mid); }
.quick-label { font-family: var(--font-display); font-size: 0.85rem; font-weight: 700; color: var(--text-dark); line-height: 1.2; }
.quick-sub { font-size: 0.75rem; color: var(--text-muted); margin-top: 2px; }

/* ── Section Styles ── */
.section { padding: 80px 0; }
.section-alt { background: var(--off-white); }
.section-label { display: inline-block; font-size: 0.75rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--lime-dark); background: var(--lime-light); padding: 5px 14px; border-radius: 50px; margin-bottom: 14px; }
.section-title { font-size: clamp(1.6rem, 3vw, 2.4rem); font-weight: 800; color: var(--text-dark); margin-bottom: 14px; }
.section-sub { font-size: 1.02rem; color: var(--text-muted); max-width: 560px; }

/* ── Service Cards ── */
.service-card { background: var(--white); border: 1.5px solid var(--border); border-radius: var(--radius-md); padding: 28px 24px; height: 100%; transition: transform 0.22s, box-shadow 0.22s, border-color 0.22s; }
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); border-color: var(--lime-green); }
.service-icon { width: 52px; height: 52px; background: var(--lime-light); border-radius: var(--radius-sm); display: flex; align-items: center; justify-content: center; font-size: 1.4rem; color: var(--lime-dark); margin-bottom: 16px; }
.service-card h5 { font-size: 1rem; font-weight: 700; margin-bottom: 8px; color: var(--text-dark); }
.service-card p { font-size: 0.87rem; color: var(--text-muted); margin: 0; }

/* ── NHS Banner ── */
.nhs-banner { background: linear-gradient(135deg, #003087 0%, #0072ce 100%); color: var(--white); border-radius: var(--radius-lg); padding: 42px 44px; }
.nhs-logo { background: var(--white); color: #003087; font-family: var(--font-display); font-weight: 800; font-size: 1.5rem; padding: 8px 20px; border-radius: var(--radius-sm); display: inline-block; margin-bottom: 20px; letter-spacing: 0.05em; }
.nhs-banner h3 { color: var(--white); font-size: 1.6rem; font-weight: 800; margin-bottom: 12px; }
.nhs-banner p { color: rgba(255,255,255,0.88); font-size: 0.97rem; margin-bottom: 22px; }
.btn-nhs { background: var(--white); color: #003087; font-family: var(--font-display); font-weight: 700; padding: 11px 26px; border-radius: var(--radius-sm); border: none; font-size: 0.9rem; transition: all 0.2s; display: inline-flex; align-items: center; gap: 8px; }
.btn-nhs:hover { background: #e8f0fe; transform: translateY(-1px); color: #003087; }

/* ── Why Choose Us ── */
.stat-box { text-align: center; padding: 32px 20px; }
.stat-number { font-family: var(--font-display); font-size: 2.6rem; font-weight: 800; color: var(--lime-green); line-height: 1; margin-bottom: 8px; }
.stat-label { font-size: 0.88rem; color: var(--text-muted); font-weight: 500; }
.why-list { list-style: none; padding: 0; margin: 0; }
.why-list li { display: flex; align-items: flex-start; gap: 12px; padding: 12px 0; border-bottom: 1px solid var(--border); font-size: 0.93rem; }
.why-list li:last-child { border-bottom: none; }
.why-list li i { color: var(--lime-green); font-size: 1.1rem; margin-top: 2px; flex-shrink: 0; }
.why-list li strong { color: var(--text-dark); }

/* ── Info Cards (homepage + confirmation) ── */
.info-card { background: var(--white); border: 1.5px solid var(--border); border-radius: var(--radius-md); overflow: hidden; box-shadow: var(--shadow-card); }
.info-card-header { background: var(--lime-green); color: var(--white); padding: 16px 22px; font-family: var(--font-display); font-weight: 700; font-size: 0.95rem; display: flex; align-items: center; gap: 9px; }
.info-card-header.dark { background: var(--text-dark); }
.info-card-header.blue { background: #2980b9; }
.info-card-body { padding: 20px 22px; }
.hours-table td { padding: 7px 0; font-size: 0.87rem; border: none; }
.hours-table td:first-child { color: var(--text-dark); font-weight: 600; width: 110px; }
.hours-table td:last-child { color: var(--text-muted); }

/* ── Map Section ── */
.map-embed { border-radius: var(--radius-md); overflow: hidden; border: 1.5px solid var(--border); box-shadow: var(--shadow-card); }
.map-embed iframe { width: 100%; height: 380px; border: none; display: block; }

/* ── CTA Strip ── */
.cta-strip { background: var(--lime-dark); padding: 56px 0; }
.cta-strip h2 { color: var(--white); font-size: clamp(1.5rem, 2.5vw, 2.1rem); font-weight: 800; margin-bottom: 10px; }
.cta-strip p { color: rgba(255,255,255,0.82); font-size: 1rem; margin-bottom: 28px; }
.btn-cta-white { background: var(--white); color: var(--lime-dark); font-family: var(--font-display); font-weight: 700; font-size: 0.95rem; padding: 13px 32px; border-radius: var(--radius-sm); border: none; display: inline-flex; align-items: center; gap: 8px; transition: all 0.2s; }
.btn-cta-white:hover { background: var(--lime-light); transform: translateY(-2px); color: var(--lime-dark); }

/* ── Footer ── */
.site-footer { background: var(--text-dark); color: rgba(255,255,255,0.78); padding: 56px 0 28px; }
.footer-logo { filter: brightness(0) invert(1); height: 44px; margin-bottom: 16px; }
.footer-desc { font-size: 0.86rem; line-height: 1.7; color: rgba(255,255,255,0.6); max-width: 280px; }
.footer-title { font-family: var(--font-display); font-size: 0.82rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--lime-green); margin-bottom: 16px; }
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: 9px; }
.footer-links a { color: rgba(255,255,255,0.65); font-size: 0.87rem; transition: color 0.2s; display: flex; align-items: center; gap: 7px; }
.footer-links a:hover { color: var(--lime-green); }
.footer-links a i { font-size: 0.75rem; color: var(--lime-green); }
.footer-links-inline { list-style: none; padding: 0; margin: 0; display: flex; flex-wrap: wrap; gap: 18px; }
.footer-links-inline a { color: rgba(255,255,255,0.6); font-size: 0.85rem; transition: color 0.2s; }
.footer-links-inline a:hover { color: var(--lime-green); }
.footer-reg { font-size: 0.78rem; color: rgba(255,255,255,0.4); padding-top: 28px; border-top: 1px solid rgba(255,255,255,0.1); margin-top: 40px; }
.footer-reg strong { color: rgba(255,255,255,0.6); }

/* ── GPhC Badge ── */
.gphc-badge { display: inline-flex; align-items: center; gap: 10px; background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.15); border-radius: var(--radius-sm); padding: 10px 16px; margin-top: 18px; }
.gphc-badge-icon { width: 34px; height: 34px; background: var(--lime-green); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1rem; color: var(--white); flex-shrink: 0; }
.gphc-badge-text { font-size: 0.75rem; line-height: 1.4; color: rgba(255,255,255,0.65); }
.gphc-badge-text strong { color: var(--white); font-size: 0.82rem; }

/* ── Scroll reveal util ── */
.fade-up { opacity: 0; transform: translateY(22px); transition: opacity 0.5s ease, transform 0.5s ease; }
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* ============================================================
   SHOP — Product Detail
   ============================================================ */
.page-crumb { background: var(--off-white); border-bottom: 1px solid var(--border); padding: 12px 0; }
.breadcrumb { margin: 0; font-size: 0.82rem; }
.breadcrumb-item a { color: var(--lime-dark); }
.breadcrumb-item.active { color: var(--text-muted); }
.breadcrumb-item + .breadcrumb-item::before { color: var(--text-muted); }

.product-gallery { position: sticky; top: 90px; }
.main-img-wrap { background: var(--off-white); border: 1.5px solid var(--border); border-radius: var(--radius-md); overflow: hidden; aspect-ratio: 1/1; display: flex; align-items: center; justify-content: center; margin-bottom: 12px; }
.main-img-wrap img { width: 100%; height: 100%; object-fit: contain; padding: 24px; }
.thumb-row { display: flex; gap: 10px; }
.thumb { width: 72px; height: 72px; background: var(--off-white); border: 1.5px solid var(--border); border-radius: var(--radius-sm); overflow: hidden; cursor: pointer; transition: border-color 0.2s; flex-shrink: 0; }
.thumb.active, .thumb:hover { border-color: var(--lime-green); }
.thumb img { width: 100%; height: 100%; object-fit: contain; padding: 8px; }

.product-category { font-size: 0.78rem; font-weight: 700; color: var(--lime-dark); text-transform: uppercase; letter-spacing: 0.08em; background: var(--lime-light); padding: 3px 12px; border-radius: 50px; display: inline-block; margin-bottom: 12px; }
.product-title { font-size: clamp(1.5rem, 3vw, 2rem); font-weight: 800; margin-bottom: 8px; }
.product-sku { font-size: 0.8rem; color: var(--text-muted); margin-bottom: 14px; }
.rating-row { display: flex; align-items: center; gap: 10px; margin-bottom: 18px; }
.stars { color: #f39c12; font-size: 0.9rem; letter-spacing: 1px; }
.rating-count { font-size: 0.82rem; color: var(--text-muted); }
.price-block { display: flex; align-items: baseline; gap: 12px; margin-bottom: 20px; padding: 16px 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.price-now { font-family: var(--font-display); font-size: 2rem; font-weight: 800; color: var(--lime-dark); }
.price-was { font-size: 1.1rem; color: var(--text-muted); text-decoration: line-through; }
.price-save { font-size: 0.82rem; font-weight: 700; color: var(--danger); background: #fdf0ee; padding: 3px 10px; border-radius: 50px; }
.availability { display: inline-flex; align-items: center; gap: 7px; font-size: 0.85rem; font-weight: 600; color: var(--success); margin-bottom: 18px; }
.availability i { font-size: 1rem; }

.option-label { font-size: 0.85rem; font-weight: 700; color: var(--text-dark); margin-bottom: 10px; }
.option-btns { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 18px; }
.opt-btn { padding: 8px 18px; border: 1.5px solid var(--border); border-radius: var(--radius-sm); font-size: 0.85rem; font-weight: 600; color: var(--text-body); background: var(--white); cursor: pointer; transition: all 0.2s; }
.opt-btn:hover, .opt-btn.active { border-color: var(--lime-green); background: var(--lime-light); color: var(--lime-dark); }
.opt-btn.disabled { opacity: 0.45; cursor: not-allowed; }

.qty-wrap { display: flex; align-items: center; gap: 0; border: 1.5px solid var(--border); border-radius: var(--radius-sm); overflow: hidden; width: fit-content; margin-bottom: 22px; }
.qty-btn { width: 42px; height: 42px; background: var(--off-white); border: none; font-size: 1.1rem; font-weight: 700; color: var(--text-dark); cursor: pointer; transition: background 0.2s; display: flex; align-items: center; justify-content: center; }
.qty-btn:hover { background: var(--lime-mid); }
.qty-input { width: 52px; height: 42px; text-align: center; border: none; border-left: 1.5px solid var(--border); border-right: 1.5px solid var(--border); font-family: var(--font-display); font-weight: 700; font-size: 0.95rem; color: var(--text-dark); outline: none; }

.btn-add { width: 100%; background: var(--lime-green); color: #fff; font-family: var(--font-display); font-weight: 700; font-size: 1rem; padding: 14px 28px; border-radius: var(--radius-sm); border: none; display: flex; align-items: center; justify-content: center; gap: 10px; transition: all 0.2s; margin-bottom: 12px; }
.btn-add:hover { background: var(--lime-dark); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(78,138,54,0.3); }
.btn-wishlist { width: 100%; background: var(--white); color: var(--text-dark); font-family: var(--font-display); font-weight: 600; font-size: 0.9rem; padding: 11px 28px; border-radius: var(--radius-sm); border: 1.5px solid var(--border); display: flex; align-items: center; justify-content: center; gap: 8px; transition: all 0.2s; margin-bottom: 22px; }
.btn-wishlist:hover { border-color: var(--lime-green); color: var(--lime-dark); }

.trust-pills { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 22px; }
.trust-pill { display: flex; align-items: center; gap: 7px; background: var(--lime-light); border-radius: 50px; padding: 6px 14px; font-size: 0.78rem; font-weight: 600; color: var(--lime-dark); }
.trust-pill i { font-size: 0.85rem; }

.delivery-box { background: var(--off-white); border: 1.5px solid var(--border); border-radius: var(--radius-md); padding: 18px; }
.delivery-row { display: flex; align-items: flex-start; gap: 12px; padding: 8px 0; border-bottom: 1px solid var(--border); font-size: 0.86rem; }
.delivery-row:last-child { border-bottom: none; padding-bottom: 0; }
.delivery-row i { color: var(--lime-green); font-size: 1.1rem; margin-top: 1px; flex-shrink: 0; }
.delivery-row strong { color: var(--text-dark); display: block; margin-bottom: 2px; }
.delivery-row span { color: var(--text-muted); }

.product-tabs .nav-tabs { border-bottom: 2px solid var(--border); margin-bottom: 28px; }
.product-tabs .nav-link { font-family: var(--font-display); font-weight: 700; font-size: 0.88rem; color: var(--text-muted); border: none; border-bottom: 3px solid transparent; padding: 12px 20px; margin-bottom: -2px; transition: all 0.2s; }
.product-tabs .nav-link:hover { color: var(--text-dark); }
.product-tabs .nav-link.active { color: var(--lime-dark); border-bottom-color: var(--lime-green); background: transparent; }
.tab-content-body { font-size: 0.92rem; line-height: 1.8; color: var(--text-body); }
.tab-content-body h6 { font-family: var(--font-display); font-weight: 700; color: var(--text-dark); margin-top: 22px; margin-bottom: 8px; }
.tab-content-body ul { padding-left: 20px; }
.tab-content-body ul li { margin-bottom: 6px; }
.spec-table td { font-size: 0.87rem; padding: 9px 12px; border-color: var(--border); }
.spec-table td:first-child { font-weight: 600; color: var(--text-dark); width: 180px; background: var(--off-white); }

/* General-sale advisory box (replaces controlled-drug warning) */
.otc-note { background: var(--lime-light); border: 1.5px solid var(--lime-green); border-radius: var(--radius-sm); padding: 14px 18px; font-size: 0.84rem; color: var(--lime-dark); display: flex; align-items: flex-start; gap: 10px; margin-bottom: 18px; }
.otc-note i { font-size: 1.1rem; color: var(--lime-green); flex-shrink: 0; margin-top: 1px; }

.prod-card { background: var(--white); border: 1.5px solid var(--border); border-radius: var(--radius-md); overflow: hidden; transition: transform 0.22s, box-shadow 0.22s, border-color 0.22s; }
.prod-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); border-color: var(--lime-green); }
.prod-card-img { background: var(--off-white); aspect-ratio: 1/1; display: flex; align-items: center; justify-content: center; font-size: 3.5rem; border-bottom: 1px solid var(--border); }
.prod-card-body { padding: 16px; }
.prod-card-name { font-family: var(--font-display); font-weight: 700; font-size: 0.9rem; color: var(--text-dark); margin-bottom: 4px; }
.prod-card-desc { font-size: 0.78rem; color: var(--text-muted); margin-bottom: 10px; }
.prod-card-price { font-family: var(--font-display); font-weight: 800; font-size: 1rem; color: var(--lime-dark); }
.prod-card-btn { display: block; width: 100%; background: var(--lime-light); color: var(--lime-dark); text-align: center; font-family: var(--font-display); font-weight: 700; font-size: 0.82rem; padding: 8px; border-radius: var(--radius-sm); margin-top: 10px; transition: background 0.2s; }
.prod-card-btn:hover { background: var(--lime-mid); color: var(--lime-dark); }

.cart-toast { position: fixed; bottom: 24px; right: 24px; background: var(--text-dark); color: #fff; padding: 14px 22px; border-radius: var(--radius-md); font-size: 0.9rem; font-family: var(--font-display); font-weight: 600; display: flex; align-items: center; gap: 10px; box-shadow: 0 8px 32px rgba(0,0,0,0.2); z-index: 9999; transform: translateY(120px); transition: transform 0.35s cubic-bezier(.34,1.56,.64,1); max-width: 320px; }
.cart-toast.show { transform: translateY(0); }
.cart-toast i { color: var(--lime-green); font-size: 1.2rem; }
.toast-action { margin-left: auto; background: var(--lime-green); color: #fff; padding: 5px 14px; border-radius: var(--radius-sm); font-size: 0.78rem; white-space: nowrap; }

/* ============================================================
   SHOP — Cart / Checkout shared
   ============================================================ */
.page-header { background: var(--white); border-bottom: 1px solid var(--border); padding: 28px 0; }
.page-header h1 { font-size: 1.7rem; font-weight: 800; margin: 0; }

/* Progress steps (cart / checkout) */
.checkout-steps { display: flex; align-items: center; gap: 0; margin-top: 16px; }
.step { display: flex; align-items: center; gap: 8px; font-size: 0.82rem; font-weight: 600; color: var(--text-muted); }
.step.active { color: var(--lime-dark); }
.step.done { color: var(--lime-green); }
.step-num { width: 26px; height: 26px; border-radius: 50%; border: 2px solid currentColor; display: flex; align-items: center; justify-content: center; font-size: 0.75rem; font-weight: 700; flex-shrink: 0; }
.step.active .step-num, .step.done .step-num { background: var(--lime-green); border-color: var(--lime-green); color: #fff; }
.step-line { flex: 1; height: 2px; background: var(--border); margin: 0 10px; }
.step-line.done { background: var(--lime-green); }

/* Cart items */
.cart-card { background: var(--white); border: 1.5px solid var(--border); border-radius: var(--radius-md); overflow: hidden; box-shadow: var(--shadow-card); }
.cart-item { padding: 20px 24px; border-bottom: 1px solid var(--border); display: flex; align-items: center; gap: 18px; position: relative; transition: background 0.15s; }
.cart-item:last-child { border-bottom: none; }
.cart-item:hover { background: var(--off-white); }
.cart-item-img { width: 80px; height: 80px; background: var(--off-white); border: 1.5px solid var(--border); border-radius: var(--radius-sm); display: flex; align-items: center; justify-content: center; font-size: 2rem; flex-shrink: 0; }
.cart-item-info { flex: 1; min-width: 0; }
.cart-item-name { font-family: var(--font-display); font-weight: 700; font-size: 0.95rem; color: var(--text-dark); margin-bottom: 3px; }
.cart-item-meta { font-size: 0.78rem; color: var(--text-muted); margin-bottom: 8px; }
.gsl-badge { display: inline-flex; align-items: center; gap: 5px; background: var(--lime-light); border: 1px solid var(--lime-green); color: var(--lime-dark); font-size: 0.72rem; font-weight: 700; padding: 2px 9px; border-radius: 50px; }
.qty-wrap-sm { display: flex; align-items: center; gap: 0; border: 1.5px solid var(--border); border-radius: var(--radius-sm); overflow: hidden; width: fit-content; }
.qty-btn-sm { width: 32px; height: 32px; background: var(--off-white); border: none; font-size: 1rem; font-weight: 700; color: var(--text-dark); cursor: pointer; transition: background 0.2s; display: flex; align-items: center; justify-content: center; }
.qty-btn-sm:hover { background: var(--lime-mid); }
.qty-val { width: 40px; height: 32px; text-align: center; border: none; border-left: 1.5px solid var(--border); border-right: 1.5px solid var(--border); font-family: var(--font-display); font-weight: 700; font-size: 0.85rem; color: var(--text-dark); outline: none; background: var(--white); }
.cart-item-price { text-align: right; flex-shrink: 0; }
.price-main { font-family: var(--font-display); font-weight: 800; font-size: 1.05rem; color: var(--lime-dark); }
.price-unit { font-size: 0.75rem; color: var(--text-muted); }
.remove-btn { position: absolute; top: 16px; right: 20px; background: none; border: none; color: var(--text-muted); cursor: pointer; font-size: 0.85rem; transition: color 0.2s; padding: 4px; }
.remove-btn:hover { color: var(--danger); }

.promo-box { background: var(--white); border: 1.5px solid var(--border); border-radius: var(--radius-md); padding: 20px 24px; margin-top: 16px; }
.promo-box h6 { font-family: var(--font-display); font-weight: 700; font-size: 0.9rem; margin-bottom: 14px; color: var(--text-dark); }
.promo-input-row { display: flex; gap: 10px; }
.promo-input { flex: 1; border: 1.5px solid var(--border); border-radius: var(--radius-sm); padding: 10px 14px; font-size: 0.88rem; outline: none; transition: border-color 0.2s; }
.promo-input:focus { border-color: var(--lime-green); }
.promo-btn { background: var(--lime-green); color: #fff; font-family: var(--font-display); font-weight: 700; font-size: 0.85rem; padding: 10px 20px; border: none; border-radius: var(--radius-sm); cursor: pointer; white-space: nowrap; transition: background 0.2s; }
.promo-btn:hover { background: var(--lime-dark); }
.promo-success { display: flex; align-items: center; gap: 8px; color: var(--success); font-size: 0.84rem; font-weight: 600; margin-top: 10px; }

/* Order summary */
.summary-card { background: var(--white); border: 1.5px solid var(--border); border-radius: var(--radius-md); overflow: hidden; box-shadow: var(--shadow-card); position: sticky; top: 90px; }
.summary-header { background: var(--lime-green); color: #fff; padding: 16px 22px; font-family: var(--font-display); font-weight: 700; font-size: 0.95rem; display: flex; align-items: center; gap: 9px; }
.summary-body { padding: 22px; }
.summary-row { display: flex; justify-content: space-between; align-items: center; padding: 8px 0; font-size: 0.88rem; border-bottom: 1px solid var(--border); }
.summary-row:last-of-type { border-bottom: none; }
.summary-row.total { font-family: var(--font-display); font-weight: 800; font-size: 1.05rem; color: var(--text-dark); padding-top: 14px; margin-top: 4px; border-top: 2px solid var(--border); }
.summary-row .label { color: var(--text-muted); }
.summary-row .val { font-weight: 600; color: var(--text-dark); }
.summary-row .val.green { color: var(--lime-dark); }
.summary-row .val.free { color: var(--success); font-weight: 700; }
.btn-checkout { width: 100%; background: var(--lime-green); color: #fff; font-family: var(--font-display); font-weight: 700; font-size: 1rem; padding: 15px; border-radius: var(--radius-sm); border: none; display: flex; align-items: center; justify-content: center; gap: 10px; cursor: pointer; transition: all 0.2s; margin-top: 18px; text-decoration: none; }
.btn-checkout:hover { background: var(--lime-dark); color: #fff; transform: translateY(-1px); box-shadow: 0 6px 20px rgba(78,138,54,0.3); }
.continue-shop { display: block; text-align: center; font-size: 0.84rem; font-weight: 600; color: var(--lime-dark); margin-top: 12px; padding: 8px; }
.continue-shop:hover { color: var(--lime-dark); text-decoration: underline; }
.security-badges { display: flex; justify-content: center; gap: 14px; margin-top: 16px; padding-top: 16px; border-top: 1px solid var(--border); }
.sec-badge { display: flex; flex-direction: column; align-items: center; gap: 4px; font-size: 0.7rem; color: var(--text-muted); font-weight: 600; }
.sec-badge i { font-size: 1.2rem; color: var(--lime-green); }

/* Empty cart state */
.empty-state { text-align: center; padding: 80px 20px; }
.empty-state .icon { font-size: 4.5rem; margin-bottom: 18px; opacity: 0.6; }
.empty-state h3 { font-size: 1.4rem; font-weight: 700; margin-bottom: 8px; }
.empty-state p { color: var(--text-muted); margin-bottom: 24px; }
.btn-continue { background: var(--lime-green); color: #fff; font-family: var(--font-display); font-weight: 700; padding: 12px 28px; border-radius: var(--radius-sm); display: inline-flex; align-items: center; gap: 8px; transition: all 0.2s; }
.btn-continue:hover { background: var(--lime-dark); color: #fff; }

/* ── Checkout form ── */
.form-card { background: var(--white); border: 1.5px solid var(--border); border-radius: var(--radius-md); overflow: hidden; box-shadow: var(--shadow-card); margin-bottom: 20px; }
.form-card-header { background: var(--lime-green); color: #fff; padding: 15px 22px; font-family: var(--font-display); font-weight: 700; font-size: 0.92rem; display: flex; align-items: center; gap: 9px; }
.form-card-header.alt { background: var(--text-dark); }
.form-card-body { padding: 24px; }
.form-label { font-size: 0.83rem; font-weight: 700; color: var(--text-dark); margin-bottom: 6px; display: block; }
.form-control, .form-select { border: 1.5px solid var(--border); border-radius: var(--radius-sm); font-size: 0.88rem; padding: 11px 14px; color: var(--text-dark); transition: border-color 0.2s; background: var(--white); }
.form-control:focus, .form-select:focus { border-color: var(--lime-green); box-shadow: 0 0 0 3px rgba(106,176,76,0.12); outline: none; }
.form-control.is-invalid { border-color: var(--danger); }
.invalid-feedback { font-size: 0.78rem; color: var(--danger); }
.input-group-text { background: var(--off-white); border: 1.5px solid var(--border); border-radius: var(--radius-sm) 0 0 var(--radius-sm); font-size: 0.9rem; color: var(--text-muted); }

.delivery-option { border: 1.5px solid var(--border); border-radius: var(--radius-sm); padding: 14px 18px; cursor: pointer; transition: all 0.2s; display: flex; align-items: center; gap: 14px; margin-bottom: 10px; }
.delivery-option:hover, .delivery-option.selected { border-color: var(--lime-green); background: var(--lime-light); }
.delivery-option input[type=radio] { accent-color: var(--lime-green); width: 16px; height: 16px; flex-shrink: 0; }
.delivery-option .info { flex: 1; }
.delivery-option .info strong { display: block; font-size: 0.88rem; color: var(--text-dark); }
.delivery-option .info span { font-size: 0.78rem; color: var(--text-muted); }
.delivery-option .price { font-family: var(--font-display); font-weight: 700; font-size: 0.9rem; color: var(--lime-dark); }
.delivery-option .price.free { color: var(--success); }

.card-icons { display: flex; gap: 8px; margin-bottom: 18px; flex-wrap: wrap; }
.card-icon { background: var(--off-white); border: 1px solid var(--border); border-radius: 6px; padding: 5px 12px; font-size: 0.78rem; font-weight: 700; color: var(--text-dark); }
.card-input-wrap { position: relative; }
.card-input-wrap i { position: absolute; right: 14px; top: 50%; transform: translateY(-50%); font-size: 1.1rem; color: var(--text-muted); }

/* Checkout order-summary items */
.order-item { display: flex; align-items: center; gap: 12px; padding: 10px 0; border-bottom: 1px solid var(--border); font-size: 0.85rem; }
.order-item:last-of-type { border-bottom: none; }
.order-item-img { width: 44px; height: 44px; background: var(--off-white); border: 1px solid var(--border); border-radius: var(--radius-sm); display: flex; align-items: center; justify-content: center; font-size: 1.4rem; flex-shrink: 0; }
.order-item-name { flex: 1; font-weight: 600; color: var(--text-dark); }
.order-item-meta { font-size: 0.73rem; color: var(--text-muted); }
.order-item-price { font-family: var(--font-display); font-weight: 700; color: var(--lime-dark); }
.summary-totals { padding-top: 14px; border-top: 2px solid var(--border); margin-top: 4px; }
.summary-row.total-row { font-family: var(--font-display); font-weight: 800; font-size: 1rem; color: var(--text-dark); padding-top: 12px; margin-top: 4px; border-top: 1.5px solid var(--border); }
.summary-row .lbl { color: var(--text-muted); }
.btn-place { width: 100%; background: var(--lime-green); color: #fff; font-family: var(--font-display); font-weight: 700; font-size: 1rem; padding: 15px; border-radius: var(--radius-sm); border: none; display: flex; align-items: center; justify-content: center; gap: 10px; cursor: pointer; transition: all 0.2s; margin-top: 18px; text-decoration: none; }
.btn-place:hover { background: var(--lime-dark); color: #fff; transform: translateY(-1px); box-shadow: 0 6px 20px rgba(78,138,54,0.3); }
.ssl-note { display: flex; align-items: center; justify-content: center; gap: 7px; font-size: 0.76rem; color: var(--text-muted); margin-top: 12px; }
.ssl-note i { color: var(--lime-green); }

/* ============================================================
   SHOP — Order Confirmation (success)
   ============================================================ */
.success-hero { background: linear-gradient(135deg, var(--lime-dark) 0%, var(--lime-green) 60%, #a8d982 100%); padding: 80px 0 70px; text-align: center; position: relative; overflow: hidden; }
.success-hero::before { content: ''; position: absolute; inset: 0; background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='60'%3E%3Ccircle cx='30' cy='30' r='1.5' fill='rgba(255,255,255,0.08)'/%3E%3C/svg%3E") repeat; }
.success-icon-wrap { width: 100px; height: 100px; background: rgba(255,255,255,0.2); border: 3px solid rgba(255,255,255,0.4); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 24px; animation: popIn 0.6s cubic-bezier(.34,1.56,.64,1) both; }
.success-icon-wrap i { font-size: 3rem; color: #fff; }
@keyframes popIn { from { transform: scale(0); opacity: 0; } to { transform: scale(1); opacity: 1; } }
.success-hero h1 { color: #fff; font-size: clamp(1.8rem, 3.5vw, 2.5rem); font-weight: 800; margin-bottom: 10px; }
.success-hero p { color: rgba(255,255,255,0.88); font-size: 1.05rem; max-width: 520px; margin: 0 auto 28px; }
.order-ref { background: rgba(255,255,255,0.18); border: 1px solid rgba(255,255,255,0.3); border-radius: var(--radius-sm); padding: 10px 24px; display: inline-flex; align-items: center; gap: 10px; color: #fff; font-family: var(--font-display); font-weight: 700; font-size: 0.95rem; backdrop-filter: blur(4px); }
.order-ref span { opacity: 0.75; font-weight: 400; }

/* Steps shown on the coloured success hero */
.success-hero .checkout-steps { justify-content: center; margin-top: 32px; }
.success-hero .step { color: rgba(255,255,255,0.5); }
.success-hero .step.done { color: rgba(255,255,255,0.9); }
.success-hero .step.done .step-num { background: rgba(255,255,255,0.25); border-color: rgba(255,255,255,0.6); color: #fff; }
.success-hero .step-line { flex: none; width: 40px; background: rgba(255,255,255,0.25); margin: 0 8px; }
.success-hero .step-line.done { background: rgba(255,255,255,0.5); }

/* Confirmation order items */
.item-img { width: 56px; height: 56px; background: var(--off-white); border: 1.5px solid var(--border); border-radius: var(--radius-sm); display: flex; align-items: center; justify-content: center; font-size: 1.6rem; flex-shrink: 0; }
.item-name { font-family: var(--font-display); font-weight: 700; font-size: 0.9rem; color: var(--text-dark); }
.item-meta { font-size: 0.75rem; color: var(--text-muted); margin-top: 2px; }
.item-price { margin-left: auto; font-family: var(--font-display); font-weight: 800; color: var(--lime-dark); font-size: 0.95rem; }

/* Timeline */
.timeline { list-style: none; padding: 0; margin: 0; position: relative; }
.timeline::before { content: ''; position: absolute; left: 15px; top: 8px; bottom: 8px; width: 2px; background: var(--border); }
.timeline li { display: flex; align-items: flex-start; gap: 14px; padding: 0 0 22px 0; position: relative; }
.timeline li:last-child { padding-bottom: 0; }
.timeline-dot { width: 32px; height: 32px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 0.85rem; flex-shrink: 0; z-index: 1; }
.timeline-dot.done { background: var(--lime-green); color: #fff; }
.timeline-dot.current { background: var(--lime-light); color: var(--lime-dark); border: 2px solid var(--lime-green); }
.timeline-dot.pending { background: var(--off-white); color: var(--text-muted); border: 2px solid var(--border); }
.timeline-content strong { display: block; font-size: 0.88rem; font-weight: 700; color: var(--text-dark); margin-bottom: 2px; }
.timeline-content span { font-size: 0.78rem; color: var(--text-muted); }
.timeline-content .badge-time { display: inline-block; background: var(--lime-light); color: var(--lime-dark); font-size: 0.7rem; font-weight: 700; padding: 2px 9px; border-radius: 50px; margin-left: 6px; }

/* What next cards */
.next-card { background: var(--white); border: 1.5px solid var(--border); border-radius: var(--radius-md); padding: 22px; transition: transform 0.2s, box-shadow 0.2s; }
.next-card:hover { transform: translateY(-3px); box-shadow: 0 6px 24px rgba(106,176,76,0.12); border-color: var(--lime-green); }
.next-card-icon { width: 48px; height: 48px; background: var(--lime-light); border-radius: var(--radius-sm); display: flex; align-items: center; justify-content: center; font-size: 1.3rem; color: var(--lime-dark); margin-bottom: 14px; }
.next-card h6 { font-family: var(--font-display); font-weight: 700; font-size: 0.9rem; margin-bottom: 6px; }
.next-card p { font-size: 0.82rem; color: var(--text-muted); margin: 0; }

/* Pharmacy strip */
.pharm-strip { background: var(--lime-dark); color: #fff; padding: 36px 0; }
.pharm-strip h3 { color: #fff; font-weight: 700; margin-bottom: 4px; }
.pharm-strip p { color: rgba(255,255,255,0.75); font-size: 0.9rem; margin: 0; }
.btn-call { background: #fff; color: var(--lime-dark); font-family: var(--font-display); font-weight: 700; padding: 11px 26px; border-radius: var(--radius-sm); display: inline-flex; align-items: center; gap: 8px; transition: all 0.2s; font-size: 0.9rem; }
.btn-call:hover { background: var(--lime-light); color: var(--lime-dark); transform: translateY(-1px); }

/* Confetti */
.confetti-wrap { position: fixed; top: 0; left: 0; width: 100%; height: 100%; pointer-events: none; z-index: 9999; overflow: hidden; }
.confetti-piece { position: absolute; width: 10px; height: 10px; top: -20px; animation: fall linear both; }
@keyframes fall { to { transform: translateY(110vh) rotate(720deg); opacity: 0; } }

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 991px) {
  .hero { padding: 60px 0 50px; }
  .hero-card { margin-top: 36px; }
  .quick-bar-inner { grid-template-columns: repeat(2, 1fr); }
  .quick-item:nth-child(2) { border-right: none; }
  .product-gallery { position: static; }
}
@media (max-width: 575px) {
  .hero { padding: 48px 0 40px; }
  .top-bar-right { display: none; }
  .quick-bar-inner { grid-template-columns: 1fr 1fr; }
  .quick-item { padding: 16px; }
  .nhs-banner { padding: 28px 22px; }
  .section { padding: 52px 0; }
  .hero-actions { flex-direction: column; }
  .cart-item { flex-wrap: wrap; }
  .cart-item-price { margin-left: 98px; }
  .checkout-steps .step span { display: none; }
  .success-hero { padding: 56px 0 50px; }
}

/* ============================================================
   WooCommerce integration & shop (v1.1)
   ============================================================ */

/* --- Brand all Woo buttons --- */
.woocommerce a.button, .woocommerce button.button, .woocommerce input.button,
.woocommerce #respond input#submit, .woocommerce a.button.alt, .woocommerce button.button.alt,
.woocommerce input.button.alt {
	background: var(--lime-green); color: #fff; font-family: var(--font-display); font-weight: 700;
	border-radius: var(--radius-sm); border: none; padding: 11px 22px; transition: all .2s; box-shadow: none;
}
.woocommerce a.button:hover, .woocommerce button.button:hover, .woocommerce input.button:hover,
.woocommerce #respond input#submit:hover, .woocommerce a.button.alt:hover, .woocommerce button.button.alt:hover,
.woocommerce input.button.alt:hover { background: var(--lime-dark); color: #fff; transform: translateY(-1px); }
.woocommerce .button.disabled, .woocommerce button.button:disabled { opacity: .5; }

/* --- Notices --- */
.woocommerce-message, .woocommerce-info, .woocommerce-error, .woocommerce-noreviews {
	border-top-color: var(--lime-green); border-radius: var(--radius-sm); font-family: var(--font-body);
}
.woocommerce-message::before, .woocommerce-info::before { color: var(--lime-green); }
.woocommerce-message .button, .woocommerce-info .button { background: var(--lime-dark); }

/* --- Breadcrumb --- */
.woocommerce-breadcrumb { font-size: .82rem; color: var(--text-muted); margin-bottom: 18px; }
.woocommerce-breadcrumb a { color: var(--lime-dark); }

/* ============================================================
   Shop archive
   ============================================================ */
.shop-hero {
	background: linear-gradient(135deg, var(--lime-dark) 0%, var(--lime-green) 60%, #a8d982 100%);
	padding: 56px 0; position: relative; overflow: hidden;
}
.shop-hero::before { content:''; position:absolute; inset:0;
	background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='60'%3E%3Ccircle cx='30' cy='30' r='1.5' fill='rgba(255,255,255,0.08)'/%3E%3C/svg%3E") repeat; }
.shop-hero-inner { position: relative; max-width: 720px; }
.shop-hero h1 { color: #fff; font-size: clamp(1.8rem,3.5vw,2.6rem); font-weight: 800; margin: 8px 0 12px; }
.shop-hero p { color: rgba(255,255,255,.9); font-size: 1rem; margin-bottom: 22px; }
.shop-hero-trust { display: flex; flex-wrap: wrap; gap: 10px 22px; }
.shop-hero-trust span { color: rgba(255,255,255,.92); font-size: .82rem; font-weight: 600; display: inline-flex; align-items: center; gap: 7px; }
.shop-hero-trust i { color: #c3f39b; }

/* Sidebar */
.shop-sidebar { position: sticky; top: 90px; display: flex; flex-direction: column; gap: 18px; }
.shop-widget { background: var(--white); border: 1.5px solid var(--border); border-radius: var(--radius-md); padding: 18px 20px; box-shadow: var(--shadow-card); }
.shop-widget-title { font-family: var(--font-display); font-weight: 700; font-size: .88rem; color: var(--text-dark); margin-bottom: 14px; }
.shop-widget form { display: flex; gap: 6px; }
.shop-widget .search-field { flex: 1; border: 1.5px solid var(--border); border-radius: var(--radius-sm); padding: 8px 12px; font-size: .85rem; outline: none; }
.shop-widget .search-field:focus { border-color: var(--lime-green); }
.shop-widget form button[type=submit] { background: var(--lime-green); color: #fff; border: none; border-radius: var(--radius-sm); padding: 0 14px; font-weight: 700; cursor: pointer; }
.shop-cat-list { list-style: none; padding: 0; margin: 0; }
.shop-cat-list li { margin: 0; }
.shop-cat-list a { display: flex; justify-content: space-between; align-items: center; padding: 9px 10px; border-radius: var(--radius-sm); font-size: .88rem; color: var(--text-body); font-weight: 500; }
.shop-cat-list a:hover, .shop-cat-list a.active { background: var(--lime-light); color: var(--lime-dark); }
.shop-cat-list .count { font-size: .72rem; color: var(--text-muted); background: var(--off-white); border-radius: 50px; padding: 1px 9px; }
.shop-tag-list { display: flex; flex-wrap: wrap; gap: 8px; }
.shop-tag-list a { font-size: .8rem; font-weight: 600; color: var(--lime-dark); background: var(--lime-light); border-radius: 50px; padding: 5px 13px; }
.shop-tag-list a:hover { background: var(--lime-mid); }
.shop-help-card { background: var(--lime-dark); color: #fff; border-radius: var(--radius-md); padding: 18px 20px; display: flex; gap: 14px; align-items: center; }
.shop-help-icon { width: 42px; height: 42px; background: rgba(255,255,255,.15); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.2rem; flex-shrink: 0; }
.shop-help-card strong { display: block; font-family: var(--font-display); font-size: .9rem; }
.shop-help-card span { display: block; font-size: .78rem; opacity: .8; margin-bottom: 4px; }
.shop-help-card a { color: #fff; font-weight: 700; font-size: .95rem; }

/* Toolbar */
.shop-toolbar { display: flex; align-items: center; justify-content: space-between; gap: 14px; flex-wrap: wrap; background: var(--white); border: 1.5px solid var(--border); border-radius: var(--radius-md); padding: 12px 18px; margin-bottom: 22px; }
.shop-toolbar .woocommerce-result-count { margin: 0; color: var(--text-muted); font-size: .85rem; }
.shop-toolbar .woocommerce-ordering { margin: 0; }
.shop-toolbar select { border: 1.5px solid var(--border); border-radius: var(--radius-sm); padding: 8px 12px; font-size: .85rem; }

/* Product grid */
.woocommerce ul.products, ul.products {
	list-style: none; margin: 0 !important; padding: 0 !important;
	display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.woocommerce ul.products li.product, ul.products li.product {
	width: auto !important; float: none !important; margin: 0 !important; padding: 0 !important; clear: none;
}
.woocommerce ul.products li.product::before { display: none; }
.prod-card-img-link { text-decoration: none; }
.prod-card-img img { max-width: 80%; height: auto; mix-blend-mode: multiply; }
.prod-sale-badge { position: absolute; top: 10px; left: 10px; background: var(--danger); color: #fff; font-size: .7rem; font-weight: 700; padding: 3px 10px; border-radius: 50px; z-index: 2; }
.prod-card .price { font-family: var(--font-display); font-weight: 800; font-size: 1rem; color: var(--lime-dark); }
.prod-card .price del { color: var(--text-muted); font-weight: 500; font-size: .85rem; }
.prod-card .price ins { text-decoration: none; }
.prod-card a.button, .prod-card a.added_to_cart {
	display: block; width: 100%; text-align: center; background: var(--lime-light); color: var(--lime-dark);
	font-family: var(--font-display); font-weight: 700; font-size: .82rem; padding: 9px; border-radius: var(--radius-sm); margin-top: 10px;
}
.prod-card a.button:hover { background: var(--lime-mid); color: var(--lime-dark); transform: none; }
.prod-card a.added_to_cart { margin-top: 6px; background: transparent; color: var(--lime-dark); text-decoration: underline; }

@media (max-width: 991px) { .woocommerce ul.products, ul.products { grid-template-columns: repeat(2,1fr); } .shop-sidebar { position: static; } }
@media (max-width: 575px) { .woocommerce ul.products, ul.products { grid-template-columns: 1fr; } }

/* ============================================================
   Single product — variation swatches & add to cart
   ============================================================ */
.lp-hidden-select { display: none !important; }
.woocommerce div.product form.cart { margin: 0 0 18px; }
.woocommerce div.product form.cart .variations { margin-bottom: 8px; }
.woocommerce div.product form.cart .variations td, .woocommerce div.product form.cart .variations th { border: none; padding: 0 0 6px; vertical-align: top; }
.woocommerce div.product form.cart .variations label { font-family: var(--font-display); font-weight: 700; font-size: .85rem; color: var(--text-dark); padding-top: 4px; }
.lp-swatches { display: flex; flex-wrap: wrap; gap: 8px; }
.lp-swatches .opt-btn.active { border-color: var(--lime-green); background: var(--lime-light); color: var(--lime-dark); }
.lp-swatches .opt-btn.disabled { opacity: .4; cursor: not-allowed; text-decoration: line-through; }
.woocommerce div.product form.cart .reset_variations { display: inline-block; font-size: .78rem; color: var(--text-muted); margin-left: 4px; }
.woocommerce-variation-price .price, .woocommerce div.product p.price, .woocommerce div.product span.price { color: var(--lime-dark); font-family: var(--font-display); font-weight: 800; }
.woocommerce div.product form.cart .quantity { margin-right: 10px; }
.woocommerce div.product form.cart .quantity input.qty {
	width: 64px; height: 48px; text-align: center; border: 1.5px solid var(--border); border-radius: var(--radius-sm);
	font-family: var(--font-display); font-weight: 700;
}
.woocommerce div.product form.cart .single_add_to_cart_button {
	height: 48px; padding: 0 28px; font-size: 1rem; border-radius: var(--radius-sm);
	display: inline-flex; align-items: center; justify-content: center;
}
.woocommerce div.product .woocommerce-variation-add-to-cart { display: flex; align-items: center; gap: 4px; flex-wrap: wrap; }
.price-block .price-now .price { font-size: 1.6rem; }
.woocommerce div.product div.images img { border-radius: var(--radius-md); }
.product-gallery .woocommerce-product-gallery { margin: 0; }

/* ============================================================
   FAQ accordion
   ============================================================ */
.lp-faq .accordion-item { border: 1.5px solid var(--border); border-radius: var(--radius-md) !important; margin-bottom: 12px; overflow: hidden; }
.lp-faq .accordion-button { font-family: var(--font-display); font-weight: 700; font-size: .95rem; color: var(--text-dark); background: var(--white); box-shadow: none; }
.lp-faq .accordion-button:not(.collapsed) { background: var(--lime-light); color: var(--lime-dark); }
.lp-faq .accordion-button:focus { box-shadow: none; border: none; }
.lp-faq .accordion-body { font-size: .9rem; color: var(--text-body); }

/* ============================================================
   Cart & Checkout branding
   ============================================================ */
.woocommerce table.shop_table { border-radius: var(--radius-md); border-color: var(--border); }
.woocommerce table.shop_table th { font-family: var(--font-display); color: var(--text-dark); }
.woocommerce-cart table.cart img { width: 64px; border-radius: var(--radius-sm); }
.woocommerce .cart_totals, .woocommerce-checkout #order_review {
	background: var(--white); border: 1.5px solid var(--border); border-radius: var(--radius-md); padding: 6px 22px 22px; box-shadow: var(--shadow-card);
}
.woocommerce .cart_totals h2, .woocommerce-checkout #order_review_heading { font-family: var(--font-display); font-weight: 800; font-size: 1.1rem; padding-top: 16px; }
.woocommerce .cart-collaterals .cart_totals .checkout-button { display: block; text-align: center; }
.woocommerce form .form-row input.input-text, .woocommerce form .form-row textarea { border-radius: var(--radius-sm); }
.woocommerce #payment, .woocommerce-checkout #payment { background: var(--off-white); border-radius: var(--radius-md); }
.select2-container--default .select2-selection--single { border-radius: var(--radius-sm); height: 44px; border-color: var(--border); }
.woocommerce form .form-row label { font-weight: 600; font-size: .85rem; color: var(--text-dark); }

/* ============================================================
   Fixes (v1.2)
   ============================================================ */

/* WooCommerce clearfix pseudo-elements were becoming grid cells
   (the phantom empty box at the start of the shop grid). */
.woocommerce ul.products::before, .woocommerce ul.products::after,
ul.products::before, ul.products::after { content: none !important; display: none !important; }

/* Real product images in cards & single product */
.prod-card-img { position: relative; }
.prod-card-img img { width: 100%; height: 100%; object-fit: contain; mix-blend-mode: normal; padding: 8px; }

/* Header / footer logos */
.main-nav .custom-logo, .main-nav .navbar-brand img { height: 52px; width: auto; }
.site-footer .footer-logo { filter: none; }

/* ============================================================
   Contact Form 7 branding (v1.3)
   ============================================================ */
.wpcf7-form-control-wrap { display: block; }
.wpcf7 .form-control { width: 100%; }
.wpcf7 label.form-label { display: block; }
.wpcf7 input.btn-add, .wpcf7 input.wpcf7-submit {
	width: auto; display: inline-flex; align-items: center; gap: 8px; cursor: pointer;
}
.wpcf7 .wpcf7-response-output {
	border-radius: var(--radius-sm); font-size: .85rem; margin: 16px 0 0 !important; padding: 12px 16px !important;
}
.wpcf7 form.sent .wpcf7-response-output { border-color: var(--lime-green); background: var(--lime-light); color: var(--lime-dark); }
.wpcf7 form.invalid .wpcf7-response-output, .wpcf7 form.failed .wpcf7-response-output { border-color: var(--danger); background: #fdf0ee; color: var(--danger); }
.wpcf7-not-valid-tip { color: var(--danger); font-size: .78rem; margin-top: 4px; }
.wpcf7 .form-control.wpcf7-not-valid { border-color: var(--danger); }
.wpcf7-spinner { margin: 0 0 0 10px; }

/* ============================================================
   Navigation polish (v1.4)
   ============================================================ */
.main-nav .container { flex-wrap: nowrap; gap: 12px; }
.main-nav .navbar-nav { gap: 2px; }
.main-nav .navbar-nav .nav-link { padding: 8px 16px; font-size: .9rem; white-space: nowrap; }

.lp-nav-right { gap: 16px; flex-shrink: 0; }
.cart-badge { position: relative; display: inline-flex; align-items: center; line-height: 1; }
.cart-badge:hover i { color: var(--lime-green) !important; }

@media (min-width: 992px) {
	#mainMenu.navbar-collapse { margin-right: 20px; }
	.main-nav .nav-cta { padding: 9px 24px !important; }
}

/* Mobile: cart sits beside the hamburger; menu drops into a clean card. */
@media (max-width: 991.98px) {
	.lp-nav-right { gap: 14px; }
	#mainMenu {
		background: var(--white);
		border: 1px solid var(--border);
		border-radius: var(--radius-md);
		box-shadow: var(--shadow-card);
		margin-top: 12px;
		padding: 8px;
	}
	#mainMenu .navbar-nav .nav-link {
		padding: 12px 14px;
		border-radius: var(--radius-sm);
		font-size: .95rem;
	}
	#mainMenu .navbar-nav .nav-link:hover,
	#mainMenu .navbar-nav .nav-link.active { background: var(--lime-light); color: var(--lime-dark) !important; }
	#mainMenu .nav-cta { width: 100%; justify-content: center; }
}

/* ============================================================
   Mobile nav fix (v1.4.1)
   The earlier `flex-wrap:nowrap` kept the desktop row tidy but
   stopped the collapsed menu from dropping to its own full-width
   line on mobile (it overflowed to the right). Allow wrap < lg.
   ============================================================ */
@media (max-width: 991.98px) {
	.main-nav .container { flex-wrap: wrap; }
	#mainMenu {
		width: 100%;
		flex-basis: 100%;
	}
}

/* ============================================================
   Blog (v1.5)
   ============================================================ */
.blog-hero {
	background: linear-gradient(135deg, var(--lime-dark) 0%, var(--lime-green) 60%, #a8d982 100%);
	padding: 56px 0; position: relative; overflow: hidden;
}
.blog-hero::before { content:''; position:absolute; inset:0;
	background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='60'%3E%3Ccircle cx='30' cy='30' r='1.5' fill='rgba(255,255,255,0.08)'/%3E%3C/svg%3E") repeat; }
.blog-hero-inner { position: relative; max-width: 720px; }
.blog-hero h1 { color: #fff; font-size: clamp(1.9rem,3.6vw,2.7rem); font-weight: 800; margin: 8px 0 12px; }
.blog-hero p { color: rgba(255,255,255,.9); font-size: 1.02rem; margin: 0; }

/* Post meta line */
.blog-card-meta, .post-meta { display: flex; flex-wrap: wrap; gap: 16px; font-size: .8rem; color: var(--text-muted); }
.pm-item { display: inline-flex; align-items: center; gap: 6px; }
.pm-item i { color: var(--lime-green); }

/* Card */
.blog-card { background: var(--white); border: 1.5px solid var(--border); border-radius: var(--radius-md); overflow: hidden; box-shadow: var(--shadow-card); transition: transform .22s, box-shadow .22s, border-color .22s; }
.blog-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); border-color: var(--lime-green); }
.blog-card-thumb { position: relative; display: block; aspect-ratio: 16/10; overflow: hidden; background: var(--lime-light); }
.blog-card-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.blog-card:hover .blog-card-thumb img { transform: scale(1.06); }
.blog-thumb-fallback { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; font-size: 3rem; color: var(--lime-green); background: linear-gradient(135deg, var(--lime-light), var(--lime-mid)); }
.blog-cat-badge { position: absolute; top: 12px; left: 12px; background: var(--lime-green); color: #fff; font-size: .72rem; font-weight: 700; padding: 4px 12px; border-radius: 50px; text-transform: uppercase; letter-spacing: .04em; z-index: 2; }
.blog-cat-badge.static { position: static; display: inline-block; margin-bottom: 14px; }
.blog-card-body { padding: 20px 20px 22px; }
.blog-card-title { font-family: var(--font-display); font-size: 1.1rem; font-weight: 800; line-height: 1.3; margin: 10px 0 8px; }
.blog-card-title a { color: var(--text-dark); }
.blog-card-title a:hover { color: var(--lime-dark); }
.blog-card-excerpt { font-size: .88rem; color: var(--text-muted); margin-bottom: 14px; }
.blog-readmore { font-family: var(--font-display); font-weight: 700; font-size: .85rem; color: var(--lime-dark); display: inline-flex; align-items: center; gap: 6px; }
.blog-readmore:hover { gap: 10px; color: var(--lime-dark); }

/* Featured */
.blog-featured { background: var(--white); border: 1.5px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-card); display: grid; grid-template-columns: 1.1fr 1fr; }
.blog-featured:hover { box-shadow: var(--shadow-hover); border-color: var(--lime-green); }
.blog-featured-thumb { position: relative; min-height: 260px; overflow: hidden; background: var(--lime-light); }
.blog-featured-thumb img { width: 100%; height: 100%; object-fit: cover; }
.blog-featured-body { padding: 30px 32px; display: flex; flex-direction: column; }
.blog-featured-flag { display: inline-flex; align-items: center; gap: 6px; font-size: .72rem; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; color: var(--lime-dark); background: var(--lime-light); padding: 4px 12px; border-radius: 50px; width: fit-content; margin-bottom: 12px; }
.blog-featured-title { font-family: var(--font-display); font-size: clamp(1.3rem,2.2vw,1.7rem); font-weight: 800; line-height: 1.25; margin: 8px 0 12px; }
.blog-featured-title a { color: var(--text-dark); }
.blog-featured-title a:hover { color: var(--lime-dark); }
.blog-featured-excerpt { font-size: .95rem; color: var(--text-muted); margin-bottom: 20px; }
@media (max-width: 767px) { .blog-featured { grid-template-columns: 1fr; } .blog-featured-thumb { min-height: 200px; } }

/* Sidebar recent posts */
.recent-posts { list-style: none; margin: 0; padding: 0; }
.recent-posts li { margin-bottom: 12px; }
.recent-posts a { display: flex; gap: 12px; align-items: center; }
.rp-thumb { width: 56px; height: 56px; border-radius: var(--radius-sm); overflow: hidden; flex-shrink: 0; background: var(--lime-light); display: flex; align-items: center; justify-content: center; color: var(--lime-green); }
.rp-thumb img { width: 100%; height: 100%; object-fit: cover; }
.rp-title { display: block; font-family: var(--font-display); font-weight: 600; font-size: .85rem; color: var(--text-dark); line-height: 1.3; }
.recent-posts a:hover .rp-title { color: var(--lime-dark); }
.rp-date { display: block; font-size: .74rem; color: var(--text-muted); margin-top: 2px; }

/* Pagination */
.blog-pagination { margin-top: 36px; }
.blog-pagination .page-numbers { display: inline-flex; align-items: center; justify-content: center; min-width: 40px; height: 40px; padding: 0 12px; border: 1.5px solid var(--border); border-radius: var(--radius-sm); margin: 0 3px; font-family: var(--font-display); font-weight: 700; font-size: .85rem; color: var(--text-dark); background: var(--white); }
.blog-pagination .page-numbers.current { background: var(--lime-green); border-color: var(--lime-green); color: #fff; }
.blog-pagination a.page-numbers:hover { border-color: var(--lime-green); color: var(--lime-dark); }
.blog-pagination .nav-links { display: flex; flex-wrap: wrap; justify-content: center; }

/* ── Single post ── */
.post-hero { background: linear-gradient(180deg, var(--lime-light), var(--off-white)); border-bottom: 1px solid var(--border); padding: 28px 0 36px; }
.post-crumb { font-size: .8rem; color: var(--text-muted); margin-bottom: 18px; display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.post-crumb a { color: var(--lime-dark); font-weight: 600; }
.post-crumb i { font-size: .7rem; color: var(--text-muted); }
.post-hero-inner { max-width: 820px; }
.post-hero h1 { font-size: clamp(1.7rem,3.4vw,2.6rem); font-weight: 800; line-height: 1.2; margin-bottom: 16px; }
.post-meta { font-size: .85rem; }

.post-feature-img { max-width: 900px; margin: -18px auto 36px; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-card); }
.post-feature-img img { width: 100%; height: auto; display: block; }

.post-article { max-width: 760px; }
.post-content { font-size: 1.05rem; line-height: 1.85; color: var(--text-body); }
.post-content > p:first-of-type { font-size: 1.16rem; color: var(--text-dark); }
.post-content h2 { font-size: 1.5rem; font-weight: 800; margin: 38px 0 14px; padding-top: 6px; }
.post-content h3 { font-size: 1.2rem; font-weight: 700; margin: 28px 0 10px; }
.post-content p { margin: 0 0 18px; }
.post-content ul, .post-content ol { margin: 0 0 18px; padding-left: 22px; }
.post-content li { margin-bottom: 8px; }
.post-content a { color: var(--lime-dark); text-decoration: underline; text-underline-offset: 2px; }
.post-content img, .post-content figure img { border-radius: var(--radius-md); height: auto; max-width: 100%; }
.post-content blockquote { border-left: 4px solid var(--lime-green); background: var(--off-white); margin: 24px 0; padding: 16px 22px; border-radius: 0 var(--radius-sm) var(--radius-sm) 0; font-style: italic; color: var(--text-dark); }
.post-content blockquote p:last-child { margin: 0; }
.post-content table { width: 100%; border-collapse: collapse; margin: 0 0 22px; font-size: .95rem; }
.post-content th, .post-content td { border: 1px solid var(--border); padding: 10px 12px; text-align: left; }
.post-content th { background: var(--lime-light); color: var(--text-dark); font-family: var(--font-display); }
.post-content hr { border: none; border-top: 1px solid var(--border); margin: 32px 0; }

.post-tags { margin: 30px 0 6px; display: flex; flex-wrap: wrap; gap: 8px; }
.post-tags a { font-size: .8rem; font-weight: 600; color: var(--lime-dark); background: var(--lime-light); border-radius: 50px; padding: 5px 14px; }
.post-tags a:hover { background: var(--lime-mid); }

.post-share { display: flex; align-items: center; gap: 10px; margin: 22px 0; padding: 16px 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.post-share-label { font-family: var(--font-display); font-weight: 700; font-size: .85rem; color: var(--text-dark); }
.ps-btn { width: 40px; height: 40px; border-radius: 50%; display: inline-flex; align-items: center; justify-content: center; background: var(--lime-light); color: var(--lime-dark); font-size: 1rem; transition: all .2s; }
.ps-btn:hover { background: var(--lime-green); color: #fff; transform: translateY(-2px); }

.author-box { display: flex; gap: 18px; align-items: flex-start; background: var(--off-white); border: 1.5px solid var(--border); border-radius: var(--radius-md); padding: 22px; margin: 28px 0; }
.author-avatar { width: 56px; height: 56px; border-radius: 50%; background: var(--lime-green); color: #fff; display: flex; align-items: center; justify-content: center; font-size: 1.5rem; flex-shrink: 0; }
.author-box strong { font-family: var(--font-display); font-size: 1rem; color: var(--text-dark); }
.author-box p { font-size: .88rem; color: var(--text-muted); margin: 6px 0 0; }

.post-nav { display: flex; gap: 16px; flex-wrap: wrap; margin: 30px 0 8px; }
.post-nav-link { flex: 1; min-width: 220px; border: 1.5px solid var(--border); border-radius: var(--radius-md); padding: 14px 18px; transition: all .2s; }
.post-nav-link:hover { border-color: var(--lime-green); background: var(--lime-light); }
.post-nav-link span { font-size: .76rem; color: var(--text-muted); font-weight: 600; display: block; margin-bottom: 4px; }
.post-nav-link strong { font-family: var(--font-display); font-size: .9rem; color: var(--text-dark); }
.post-nav-link.next { text-align: right; }

.related-posts { margin-top: 56px; padding-top: 40px; border-top: 1px solid var(--border); }

/* ============================================================
   Blog single — TOC, Key Takeaways, mid-article CTA (v1.6)
   ============================================================ */
.post-toc { position: sticky; top: 90px; background: var(--white); border: 1.5px solid var(--border); border-radius: var(--radius-md); padding: 18px 20px; box-shadow: var(--shadow-card); }
.post-toc-title { font-family: var(--font-display); font-weight: 700; font-size: .8rem; text-transform: uppercase; letter-spacing: .05em; color: var(--text-dark); margin-bottom: 12px; display: flex; align-items: center; gap: 8px; }
.post-toc ul { list-style: none; margin: 0; padding: 0; border-left: 2px solid var(--border); }
.post-toc li { margin: 0; }
.post-toc a { display: block; padding: 6px 0 6px 14px; margin-left: -2px; border-left: 2px solid transparent; font-size: .85rem; color: var(--text-muted); line-height: 1.4; }
.post-toc a:hover { color: var(--lime-dark); }
.post-toc a.active { color: var(--lime-dark); border-left-color: var(--lime-green); font-weight: 700; }
.post-toc .toc-h3 a { padding-left: 26px; font-size: .8rem; }

.post-content h2, .post-content h3 { scroll-margin-top: 90px; }

/* Key takeaways */
.post-takeaways { background: var(--lime-light); border: 1.5px solid var(--lime-green); border-radius: var(--radius-md); padding: 20px 24px; margin-bottom: 28px; }
.post-takeaways-title { font-family: var(--font-display); font-weight: 800; font-size: 1rem; color: var(--lime-dark); display: flex; align-items: center; gap: 8px; margin-bottom: 10px; }
.post-takeaways ul { margin: 0; padding-left: 20px; }
.post-takeaways li { margin-bottom: 8px; font-size: .95rem; color: var(--text-dark); }
.post-takeaways li::marker { color: var(--lime-green); }

/* Mid-article CTA */
.post-cta { display: flex; align-items: center; gap: 18px; flex-wrap: wrap; background: linear-gradient(135deg, var(--lime-dark), var(--lime-green)); color: #fff; border-radius: var(--radius-md); padding: 22px 26px; margin: 32px 0; }
.post-cta-icon { width: 48px; height: 48px; border-radius: 50%; background: rgba(255,255,255,.18); display: flex; align-items: center; justify-content: center; font-size: 1.4rem; flex-shrink: 0; }
.post-cta-body { flex: 1; min-width: 180px; }
.post-cta-body strong { font-family: var(--font-display); font-size: 1.05rem; display: block; color: #fff; }
.post-cta-body p { margin: 4px 0 0; font-size: .9rem; color: rgba(255,255,255,.9); }
.post-cta a.post-cta-btn { background: #fff; color: var(--lime-dark); font-family: var(--font-display); font-weight: 700; padding: 11px 22px; border-radius: var(--radius-sm); white-space: nowrap; display: inline-flex; align-items: center; gap: 8px; text-decoration: none; transition: all .2s; }
.post-cta a.post-cta-btn:hover { background: var(--lime-light); transform: translateY(-1px); }

@media (max-width: 991.98px) {
	.post-toc { position: static; margin-bottom: 24px; }
	.post-toc-col { order: -1; }
}

/* ============================================================
   Single-product gallery fix (v1.7)
   WooCommerce's default `div.product div.images { float:left;
   width:48% }` was shrinking the gallery inside our column and
   collapsing the sticky wrapper (causing the overlap). Force it
   full-width and unfloated.
   ============================================================ */
.woocommerce div.product .product-gallery div.images,
.product-gallery .woocommerce-product-gallery,
.product-gallery .images {
	width: 100% !important;
	float: none !important;
	margin: 0 !important;
}
.product-gallery .woocommerce-product-gallery__wrapper { margin: 0; }
.product-gallery .woocommerce-product-gallery__image { width: 100%; }
.product-gallery .woocommerce-product-gallery__image img,
.product-gallery .main-img-wrap img {
	width: 100%;
	height: auto;
	border-radius: var(--radius-md);
	display: block;
}
/* The zoom magnifier icon position tidy */
.product-gallery .woocommerce-product-gallery__trigger { top: 1rem; right: 1rem; }

/* Don't let a short gallery look stranded next to a tall summary */
@media (max-width: 991.98px) {
	.product-gallery { position: static !important; }
}


.woocommerce-order-details,
.woocommerce-customer-details{
    display:none !important;
}
 
.woocommerce-order-overview,
.woocommerce-notice--success {
    display:none !important;
}