/* ===== RESET & BASE ===== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Outfit', sans-serif;
  color: #666;
  background: #fff;
  font-size: 16px;
  line-height: 1.6;
}
a { text-decoration: none; color: inherit; transition: opacity .3s; }
a:hover { opacity: .85; }
ul { list-style: none; }
img { max-width: 100%; height: auto; display: block; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }
.container { max-width: 1280px; margin: 0 auto; padding: 0 20px; }

/* ===== AGE GATE ===== */
.age-gate {
  position: fixed; inset: 0; z-index: 99999;
  display: flex; align-items: center; justify-content: center;
  opacity: 1; transition: opacity .5s ease;
}
.age-gate.hidden { opacity: 0; pointer-events: none; }
.age-gate-backdrop {
  position: absolute; inset: 0;
  background: #000;
  opacity: 1;
}
.age-gate-backdrop::after {
  content: ''; position: absolute; inset: 0;
  background: rgba(0,0,0,.65);
}
.age-gate-modal {
  position: relative; z-index: 1;
  background: #fff; border-radius: 12px; padding: 40px 48px;
  text-align: center; max-width: 440px; width: 90%;
  box-shadow: 0 8px 40px rgba(0,0,0,.3);
  animation: fadeInScale .5s ease;
}
@keyframes fadeInScale {
  from { opacity: 0; transform: scale(.9) translateY(20px); }
  to { opacity: 1; transform: scale(1) translateY(0); }
}
.age-gate-logo-img { max-width: 180px; margin: 0 auto 24px; }
.age-gate-logo-text,
.header-logo-text,
.footer-logo-text {
  display: inline-block; font-family: 'Outfit', sans-serif;
  font-weight: 800; color: #181818; letter-spacing: -.5px;
}
.age-gate-logo-text {
  font-size: 2rem; margin-bottom: 24px;
}
.age-gate-logo-text span,
.header-logo-text span,
.footer-logo-text span { color: #2E7D32; }
.header-logo-text { font-size: 1.5rem; line-height: 1; }
.footer-logo-text {
  display: block; font-size: 1.4rem; color: #fff; margin-bottom: 16px;
  font-weight: 800; font-family: 'Outfit', sans-serif; letter-spacing: -.5px;
}
.footer-logo-text span { color: #2E7D32; }
.age-gate-challenge {
  font-size: 1.25rem; font-weight: 600; color: #181818; margin-bottom: 20px;
}
.age-gate-buttons { display: flex; gap: 12px; justify-content: center; margin-bottom: 14px; }
.age-btn {
  flex: 1; padding: 12px 32px; border-radius: 6px;
  font-weight: 700; font-size: .95rem; transition: all .3s;
  letter-spacing: .3px;
}
.age-btn-no { background: #f2f2f2; color: #666; border: 1px solid #ddd; }
.age-btn-no:hover { background: #e8e8e8; }
.age-btn-yes { background: #2E7D32; color: #fff; border: 1px solid #2E7D32; }
.age-btn-yes:hover { background: #256828; }
.age-gate-remember { font-size: .82rem; color: #999; }
.age-gate-remember input { margin-right: 6px; }

/* ===== TOP BAR ===== */
.top-bar {
  background: #2E7D32; color: #fff; text-align: center;
  padding: 10px 0; font-size: .82rem; letter-spacing: 1px; font-weight: 500;
}

/* ===== HEADER ===== */
.header {
  background: #fff; border-bottom: 1px solid #ECECEC;
  position: sticky; top: 0; z-index: 1000;
  transition: box-shadow .3s;
}
.header.scrolled { box-shadow: 0 2px 20px rgba(0,0,0,.06); }
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 100px; max-width: 1500px; margin: 0 auto;
}
.logo-img { width: 130px; }
.nav { display: flex; gap: 32px; }
.nav-link {
  font-size: .95rem; color: #181818; font-weight: 500;
  transition: color .3s; display: flex; align-items: center; gap: 5px;
}
.nav-link:hover { color: #2E7D32; opacity: 1; }
.nav-arrow { font-size: .65rem; transition: transform .3s; }
.nav-item:hover .nav-arrow { transform: rotate(180deg); }
.nav-item.has-dropdown { position: relative; }
.dropdown {
  position: absolute; top: 100%; left: 50%; transform: translateX(-50%);
  background: #fff; border: 1px solid #ECECEC; border-radius: 8px;
  min-width: 200px; padding: 8px 0; opacity: 0; visibility: hidden;
  box-shadow: 0 8px 24px rgba(0,0,0,.08);
  transition: all .3s; pointer-events: none;
}
.nav-item:hover .dropdown { opacity: 1; visibility: visible; pointer-events: auto; }
.dropdown li a {
  display: block; padding: 10px 20px; font-size: .9rem; color: #666;
  transition: all .2s;
}
.dropdown li a:hover { background: #f9f9f9; color: #2E7D32; opacity: 1; }
.dropdown li a.current { color: #2E7D32; }
.header-actions { display: flex; align-items: center; gap: 14px; }
.icon-btn {
  width: 36px; height: 36px; display: flex; align-items: center; justify-content: center;
  color: #181818; transition: color .3s; position: relative;
}
.icon-btn:hover { color: #2E7D32; }
.cart-count {
  position: absolute; top: -2px; right: -4px; background: #2E7D32; color: #fff;
  font-size: .6rem; width: 16px; height: 16px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center; font-weight: 600;
}
.mobile-menu-btn { display: none; }

/* ===== MOBILE NAV ===== */
.mobile-nav {
  position: fixed; top: 0; right: 0; bottom: 0; width: 300px;
  background: #fff; z-index: 9999; transform: translateX(100%);
  transition: transform .4s cubic-bezier(.4,0,.2,1);
  box-shadow: -4px 0 24px rgba(0,0,0,.15);
  display: flex; flex-direction: column;
}
.mobile-nav.open { transform: translateX(0); }
.mobile-nav-header {
  display: flex; justify-content: space-between; align-items: center;
  padding: 20px 24px; border-bottom: 1px solid #ECECEC;
}
.mobile-nav-title { font-weight: 700; font-size: 1.1rem; color: #181818; }
.mobile-nav-links { padding: 16px 24px; overflow-y: auto; flex: 1; }
.mobile-nav-link {
  display: block; padding: 14px 0; font-size: 1rem; font-weight: 500;
  color: #181818; border-bottom: 1px solid #f0f0f0;
}
.mobile-sub-menu { padding-left: 16px; }
.mobile-sub-menu li a {
  display: block; padding: 10px 0; font-size: .9rem; color: #666;
}

/* ===== SEARCH OVERLAY ===== */
.search-overlay {
  position: fixed; inset: 0; z-index: 99998;
  background: rgba(255,255,255,.97);
  display: flex; align-items: flex-start; justify-content: center;
  padding-top: 20vh;
  opacity: 0; visibility: hidden; transition: all .4s;
}
.search-overlay.open { opacity: 1; visibility: visible; }
.search-close {
  position: absolute; top: 24px; right: 24px;
  width: 40px; height: 40px; display: flex; align-items: center; justify-content: center;
  color: #181818; font-size: 1.5rem;
}
.search-content { width: 90%; max-width: 700px; }
.search-form { display: flex; border-bottom: 2px solid #2E7D32; }
.search-input {
  flex: 1; border: none; outline: none; padding: 16px 8px;
  font-size: 1.2rem; font-family: 'Outfit', sans-serif; background: transparent;
}
.search-submit-btn {
  padding: 12px 16px; color: #181818; transition: color .3s;
}
.search-submit-btn:hover { color: #2E7D32; }

/* ===== CATALOG PAGE (category) ===== */
.catalog-header {
  background: #F6F6F6; padding: 40px 0;
  border-bottom: 1px solid #ECECEC;
}
.catalog-title {
  font-size: 2rem; font-weight: 500; color: #111; letter-spacing: .5px;
}
.catalog-intro {
  padding: 50px 0 0;
}
.catalog-intro h2 {
  font-size: 1.5rem; font-weight: 500; color: #181818; margin-bottom: 16px;
}
.catalog-intro p {
  color: #666; line-height: 1.8; margin-bottom: 12px; max-width: 1000px;
}
.catalog-results {
  margin-bottom: 24px;
}
.catalog-count {
  font-size: .9rem; color: #666;
}

/* ===== HERO ===== */
.hero {
  position: relative; height: 600px; overflow: hidden;
  display: flex; align-items: center; justify-content: center; text-align: center;
}
.hero-bg {
  position: absolute; inset: 0;
}
.hero-bg img {
  width: 100%; height: 100%; object-fit: cover;
  filter: brightness(.7);
}
.hero-content {
  position: relative; z-index: 1; color: #fff;
  padding: 0 20px;
}
.hero-subtitle-text {
  font-size: 1rem; letter-spacing: 2px; text-transform: uppercase;
  font-weight: 500; margin-bottom: 12px; opacity: .9;
}
.hero-title {
  font-size: 4rem; font-weight: 800; line-height: 1.1; margin-bottom: 28px;
  letter-spacing: -.5px;
}
.btn-hero {
  display: inline-block; padding: 16px 44px;
  background: #2E7D32; color: #fff; font-weight: 700;
  font-size: .9rem; letter-spacing: 1.5px; border-radius: 4px;
  transition: background .3s;
}
.btn-hero:hover { background: #256828; opacity: 1; }

/* ===== INDEPENDENTLY TESTED ===== */
.tested-section { padding: 80px 0; }
.tested-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 48px; text-align: center; }
.tested-item h3 { font-size: 1.25rem; font-weight: 700; color: #181818; margin-bottom: 12px; }
.tested-item p { color: #666; line-height: 1.7; }

/* ===== PRODUCTS ===== */
.products { padding: 40px 0 80px; }
.section-title-center {
  text-align: center; font-size: 2rem; font-weight: 700; color: #181818;
  margin-bottom: 48px;
}
.products-grid {
  display: grid; grid-template-columns: repeat(4,1fr); gap: 24px;
}
.product-card {
  border: 1px solid #ECECEC; border-radius: 8px; overflow: hidden;
  transition: box-shadow .3s, transform .3s;
}
.product-card:hover { box-shadow: 0 6px 24px rgba(0,0,0,.08); transform: translateY(-4px); }
.product-img-wrap {
  position: relative; overflow: hidden; aspect-ratio: 1/1; background: #f8f8f8;
}
.product-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.product-card:hover .product-img-wrap img { transform: scale(1.05); }
.product-link { position: absolute; inset: 0; z-index: 2; }
.product-badge {
  position: absolute; top: 10px; left: 10px; z-index: 3;
  background: #2E7D32; color: #fff; padding: 3px 10px; border-radius: 3px;
  font-size: .7rem; font-weight: 600; letter-spacing: .5px;
}
.product-info { padding: 16px; }
.product-info-left { margin-bottom: 8px; }
.product-cat {
  font-size: .68rem; color: #999; letter-spacing: 1px; font-weight: 500;
}
.product-name h3 {
  font-size: 1rem; font-weight: 600; color: #181818; margin-top: 4px;
}
.product-name:hover h3 { color: #2E7D32; }
.product-info-right { font-size: .95rem; color: #181818; font-weight: 600; }
.product-info-right del { color: #999; font-weight: 400; margin-right: 6px; }
.product-info-right ins { color: #2E7D32; text-decoration: none; }

/* ===== PRODUCT HOVER ACTIONS ===== */
.product-hover-actions {
  position: absolute; top: 12px; right: 12px; z-index: 3;
  display: flex; flex-direction: column; gap: 8px;
  opacity: 0; transform: translateX(20px);
  transition: opacity .3s ease, transform .3s ease;
}
.product-card:hover .product-hover-actions {
  opacity: 1; transform: translateX(0);
}
.hover-action-btn {
  width: 38px; height: 38px;
  display: flex; align-items: center; justify-content: center;
  background: #fff; color: #181818; border-radius: 50%;
  box-shadow: 0 2px 8px rgba(0,0,0,.1);
  font-size: .85rem; transition: all .3s ease;
  opacity: 0; transform: translateY(-10px);
}
.product-card:hover .hover-action-btn {
  opacity: 1; transform: translateY(0);
}
.product-card:hover .hover-action-btn:nth-child(2) {
  transition-delay: .08s;
}
.hover-action-btn:hover {
  background: #181818; color: #fff;
}
.product-addtocart {
  position: absolute; bottom: 12px; right: 12px; z-index: 3;
  opacity: 0; transform: translateY(10px);
  transition: opacity .35s ease, transform .35s ease;
}
.product-card:hover .product-addtocart {
  opacity: 1; transform: translateY(0);
}
.addtocart-btn {
  display: flex; align-items: center; justify-content: center;
  width: 40px; height: 40px;
  background: #181818; color: #fff; border-radius: 50%;
  font-size: .85rem; transition: background .3s;
  box-shadow: 0 2px 8px rgba(0,0,0,.1);
}
.addtocart-btn span { display: none; }
.addtocart-btn:hover {
  background: #333; opacity: 1;
}

/* ===== TRUST BADGES ===== */
.trust-badges {
  padding: 60px 0; border-top: 1px solid #f0f0f0; border-bottom: 1px solid #f0f0f0;
  background: #fafafa;
}
.trust-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 40px; text-align: center; }
.trust-icon {
  width: 64px; height: 64px; margin: 0 auto 16px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%; background: #2E7D32; color: #fff; font-size: 1.4rem;
}
.trust-card h3 { font-size: 1rem; font-weight: 700; color: #181818; margin-bottom: 8px; letter-spacing: .5px; }
.trust-card p { color: #666; font-size: .9rem; line-height: 1.7; }

/* ===== ABOUT ===== */
.about { padding: 80px 0; }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.about-title {
  font-size: 2rem; font-weight: 700; color: #181818; margin-bottom: 24px;
}
.about-block { margin-bottom: 20px; color: #666; line-height: 1.8; }
.about-block b { color: #181818; font-weight: 600; }
.about-image img { border-radius: 12px; width: 100%; }

/* ===== FAQ ===== */
.faq { padding: 80px 0; background: #fafafa; }
.faq-inner { max-width: 800px; margin: 0 auto; }
.faq-title { font-size: 2rem; font-weight: 700; color: #181818; margin-bottom: 40px; text-align: center; }
.faq-list { display: flex; flex-direction: column; gap: 0; }
.faq-item {
  border-bottom: 1px solid #ECECEC;
}
.faq-question {
  display: flex; justify-content: space-between; align-items: center;
  padding: 20px 0; cursor: pointer; font-size: 1rem; font-weight: 600;
  color: #181818; list-style: none;
}
.faq-question::-webkit-details-marker { display: none; }
.faq-icon { display: flex; align-items: center; }
.faq-icon .icon-opened { display: none; }
.faq-item[open] .faq-icon .icon-opened { display: block; }
.faq-item[open] .faq-icon .icon-closed { display: none; }
.faq-item:not([open]) .faq-icon .icon-opened { display: none; }
.faq-item:not([open]) .faq-icon .icon-closed { display: block; }
.faq-answer {
  padding: 0 0 20px; color: #666; line-height: 1.7;
  animation: faqOpen .3s ease;
}
@keyframes faqOpen {
  from { opacity: 0; transform: translateY(-8px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ===== PAGE HERO (About Us banner) ===== */
.page-hero {
  position: relative; height: 300px; overflow: hidden;
  display: flex; align-items: center; justify-content: center; text-align: center;
}
.page-hero-bg {
  position: absolute; inset: 0;
}
.page-hero-bg img {
  width: 100%; height: 100%; object-fit: cover;
  filter: brightness(.55);
}
.page-hero-content {
  position: relative; z-index: 1; color: #fff;
}
.page-hero-title {
  font-size: 60px; font-weight: 500; letter-spacing: 2px;
  text-transform: uppercase;
}

/* ===== ABOUT PAGE ===== */
.about-page {
  padding: 80px 0;
}
.about-row {
  display: flex; gap: 60px;
  padding: 40px 0;
  border-bottom: 1px solid #ECECEC;
}
.about-row:last-child {
  border-bottom: none;
}
.about-col-title {
  flex: 0 0 280px;
}
.about-col-title h3 {
  font-size: 1.1rem; font-weight: 500; color: #181818;
  letter-spacing: .5px;
}
.about-col-desc {
  flex: 1;
}
.about-col-desc p {
  color: #666; line-height: 1.8; font-size: .95rem;
}
.about-col-desc a {
  color: #2E7D32; font-weight: 500;
}
.about-col-desc a:hover {
  text-decoration: underline; opacity: 1;
}

/* ===== COA PAGE ===== */
.coa-page { padding: 60px 0 80px; }
.coa-container { width: 100%; }
.coa-search {
  width: 100%; padding: 14px 18px; margin-bottom: 20px;
  border: none; border-radius: 8px; background: #e8e8e8;
  font-size: 15px; font-family: 'Outfit', sans-serif;
  outline: none; box-sizing: border-box;
}
.coa-search::placeholder { color: #999; }
.coa-list { width: 100%; }
.coa-row {
  display: flex; align-items: center; padding: 14px 16px;
  margin-bottom: 12px; background: #f5f5f5; border-radius: 8px;
  transition: background .2s;
}
.coa-row:hover { background: #eee; }
.coa-row.hidden { display: none; }
.coa-product-info { flex: 1; }
.coa-label { font-size: 11px; color: #888; text-transform: uppercase; letter-spacing: .5px; }
.coa-product-name { font-weight: 500; margin-top: 2px; color: #181818; }
.coa-buttons { display: flex; gap: 10px; }
.coa-btn {
  padding: 8px 24px; border-radius: 4px; text-decoration: none;
  font-size: 14px; cursor: pointer; transition: opacity .2s;
  color: #fff !important; background: #181818; font-weight: 500;
}
.coa-btn:hover { opacity: .85; color: #fff !important; }

/* COA Lightbox */
.coa-lightbox {
  position: fixed; inset: 0; z-index: 99999;
  display: none; font-family: 'Outfit', sans-serif;
}
.coa-lightbox.is-open { display: block; }
.coa-lb-overlay {
  position: absolute; inset: 0;
  background: rgba(8,12,24,.9);
  backdrop-filter: blur(2px);
}
.coa-lb-stage {
  position: absolute; top: 0; left: 0; right: 0; bottom: 0;
  display: flex; align-items: center; justify-content: center;
  padding: 64px 72px; box-sizing: border-box; overflow: auto;
}
.coa-lb-media {
  max-width: 100%; max-height: 100%; display: block;
  border-radius: 8px; background: #fff;
  box-shadow: 0 10px 40px rgba(0,0,0,.45);
}
.coa-lb-close, .coa-lb-zoom {
  position: absolute; top: 16px; width: 44px; height: 44px;
  background: rgba(0,0,0,.45); border: 0; color: #fff;
  line-height: 1; cursor: pointer; border-radius: 50%; z-index: 3;
  display: flex; align-items: center; justify-content: center;
  transition: background .15s;
}
.coa-lb-close { right: 20px; font-size: 30px; }
.coa-lb-close:hover { background: rgba(0,0,0,.8); }
.coa-lb-nav {
  position: absolute; top: 50%; transform: translateY(-50%);
  background: rgba(0,0,0,.45); color: #fff; border: 0;
  width: 48px; height: 64px; font-size: 22px; cursor: pointer;
  border-radius: 8px; z-index: 3; transition: background .15s;
}
.coa-lb-nav:hover { background: rgba(0,0,0,.8); }
.coa-lb-prev { left: 16px; }
.coa-lb-next { right: 16px; }
.coa-lb-nav[hidden] { display: none; }
.coa-lb-counter {
  position: absolute; left: 0; right: 0; bottom: 20px;
  text-align: center; color: #fff; font-size: 13px;
  letter-spacing: .04em; z-index: 3; pointer-events: none;
  text-shadow: 0 1px 3px rgba(0,0,0,.6);
}

@media (max-width: 600px) {
  .coa-lb-stage { padding: 56px 12px; }
  .coa-lb-nav { width: 40px; height: 54px; }
  .coa-lb-prev { left: 6px; }
  .coa-lb-next { right: 6px; }
}

/* ===== CTA ===== */
.cta {
  background: #181818;
  padding: 100px 20px; text-align: center; color: #fff;
  position: relative;
}
.cta::before {
  content: ''; position: absolute; inset: 0;
  background: rgba(0,0,0,.72);
}
.cta::after {
  content: 'Purity Labs';
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  font-family: 'Outfit', sans-serif;
  font-size: clamp(3rem, 10vw, 8rem);
  font-weight: 800; letter-spacing: -1px;
  color: #2E7D32;
  white-space: nowrap;
  text-shadow: 0 2px 30px rgba(201,168,76,.25);
  opacity: .12;
  pointer-events: none;
}
.cta-inner { position: relative; z-index: 1; }
.cta h2 { font-size: 2.4rem; font-weight: 800; margin-bottom: 16px; }
.cta p { font-size: 1.05rem; margin-bottom: 32px; opacity: .9; }
.btn-cta {
  display: inline-block; padding: 14px 44px;
  background: #2E7D32; color: #fff; font-weight: 700;
  font-size: .9rem; letter-spacing: 1px; border-radius: 4px;
  transition: background .3s;
}
.btn-cta:hover { background: #256828; opacity: 1; }

/* ===== FOOTER ===== */
.footer { background: #181818; color: #fff; }
.footer-main { padding: 64px 0 40px; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.5fr; gap: 40px; }
.footer-logo-img { width: 80px; margin-bottom: 16px; }
.footer-desc { font-size: .85rem; line-height: 1.7; color: #aaa; margin-bottom: 12px; }
.footer-email { font-size: .85rem; color: #aaa; }
.footer-email:hover { color: #fff; opacity: 1; }
.footer-links-col h4 {
  font-size: .8rem; font-weight: 700; letter-spacing: 1.5px; margin-bottom: 20px;
  color: #fff;
}
.footer-links-col li { margin-bottom: 10px; }
.footer-links-col li a {
  font-size: .85rem; color: #aaa; transition: color .3s;
}
.footer-links-col li a:hover { color: #fff; opacity: 1; }
.footer-newsletter-col h4 {
  font-size: .8rem; font-weight: 700; letter-spacing: 1.5px; margin-bottom: 12px;
}
.footer-newsletter-col > p { font-size: .85rem; color: #aaa; margin-bottom: 16px; }
.newsletter-form { display: flex; border: 1px solid #333; border-radius: 4px; overflow: hidden; }
.newsletter-form input {
  flex: 1; padding: 12px 16px; border: none; background: transparent;
  color: #fff; font-size: .85rem; font-family: 'Outfit', sans-serif; outline: none;
}
.newsletter-form input::placeholder { color: #666; }
.newsletter-form button {
  padding: 12px 16px; color: #fff; transition: color .3s;
}
.newsletter-form button:hover { color: #2E7D32; }
.footer-bottom-bar { border-top: 1px solid #333; padding: 20px 0; }
.footer-bottom-inner {
  display: flex; justify-content: space-between; align-items: center;
  font-size: .8rem; color: #aaa;
}
.footer-payments img { height: 24px; }
.footer-disclaimer { border-top: 1px solid #333; padding: 20px 0 30px; }
.disclaimer-title { font-size: .75rem; font-weight: 700; margin-bottom: 6px; letter-spacing: 1px; }
.footer-disclaimer p { font-size: .75rem; color: #888; line-height: 1.6; }

/* ===== PRODUCT SINGLE PAGE ===== */
.product-breadcrumb {
  padding: 16px 0;
  font-size: .85rem;
  color: #999;
  background: #fafafa;
  border-bottom: 1px solid #f0f0f0;
}
.product-breadcrumb a {
  color: #999;
  transition: color .3s;
}
.product-breadcrumb a:hover { color: #2E7D32; opacity: 1; }
.product-breadcrumb .sep { margin: 0 8px; }

.product-single { padding: 48px 0 80px; }
.product-single-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

/* Image gallery */
.product-gallery { position: sticky; top: 120px; }
.product-gallery-main {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  background: #f8f8f8;
  border: 1px solid #ececec;
}
.product-gallery-main img {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
  display: block;
}
.product-gallery-badge {
  position: absolute; top: 16px; left: 16px; z-index: 2;
  background: #2E7D32; color: #fff;
  padding: 4px 14px; border-radius: 4px;
  font-size: .75rem; font-weight: 600; letter-spacing: .5px;
}
.product-gallery-thumbs {
  display: flex; gap: 10px; margin-top: 12px;
}
.product-gallery-thumb {
  width: 72px; height: 72px;
  border-radius: 6px; overflow: hidden;
  border: 2px solid transparent;
  cursor: pointer; transition: border-color .3s;
  background: #f8f8f8;
}
.product-gallery-thumb.active,
.product-gallery-thumb:hover { border-color: #2E7D32; }
.product-gallery-thumb img {
  width: 100%; height: 100%; object-fit: cover;
}

/* Product summary */
.product-summary { padding-top: 8px; }
.product-summary-title {
  font-size: 2rem; font-weight: 700; color: #181818;
  margin-bottom: 12px; line-height: 1.2;
}
.product-summary-price {
  font-size: 1.5rem; font-weight: 700; color: #181818;
  margin-bottom: 8px;
}
.product-summary-price del {
  color: #999; font-weight: 400; margin-right: 8px;
  font-size: 1.1rem;
}
.product-summary-price ins {
  color: #2E7D32; text-decoration: none;
}
.product-summary-sku {
  font-size: .85rem; color: #999; margin-bottom: 20px;
}
.product-summary-sku b { color: #666; font-weight: 500; }

/* Variation swatches */
.product-variations { margin: 24px 0; }
.product-variations-label {
  font-size: .9rem; font-weight: 600; color: #181818;
  margin-bottom: 10px;
}
.product-variations-label b { color: #2E7D32; }
.variation-options { display: flex; gap: 8px; flex-wrap: wrap; }
.variation-option {
  padding: 10px 24px;
  border: 2px solid #ECECEC; border-radius: 6px;
  font-size: .9rem; font-weight: 500; color: #181818;
  cursor: pointer; transition: all .3s;
  background: #fff;
}
.variation-option:hover { border-color: #2E7D32; }
.variation-option.active {
  border-color: #2E7D32; background: #2E7D32; color: #fff;
}

/* Quantity + Add to cart */
.product-quantity-row {
  display: flex; gap: 16px; align-items: center;
  margin: 28px 0;
}
.quantity-selector {
  display: flex; align-items: center;
  border: 1px solid #ECECEC; border-radius: 6px; overflow: hidden;
}
.qty-btn {
  width: 44px; height: 48px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; color: #181818; background: #fafafa;
  transition: background .2s; border: none;
}
.qty-btn:hover { background: #f0f0f0; }
.qty-input {
  width: 56px; height: 48px;
  text-align: center; font-size: 1rem; font-weight: 600;
  border: none; border-left: 1px solid #ECECEC; border-right: 1px solid #ECECEC;
  font-family: 'Outfit', sans-serif; outline: none;
}
.btn-add-to-cart {
  flex: 1; height: 48px;
  background: #2E7D32; color: #fff;
  border: none; border-radius: 6px;
  font-size: .95rem; font-weight: 700; letter-spacing: .5px;
  cursor: pointer; transition: background .3s;
  display: flex; align-items: center; justify-content: center; gap: 10px;
}
.btn-add-to-cart:hover { background: #256828; }
.btn-add-to-cart i { font-size: .85rem; }

/* Bulk savings */
.product-bulk-savings {
  background: #fafafa; border: 1px solid #f0f0f0;
  border-radius: 8px; padding: 20px 24px;
  margin-bottom: 28px;
}
.product-bulk-savings h4 {
  font-size: .95rem; font-weight: 700; color: #181818;
  margin-bottom: 8px;
}
.product-bulk-savings p {
  font-size: .9rem; color: #666; line-height: 1.7;
}

/* Description */
.product-description {
  margin-bottom: 32px;
  padding-top: 24px;
  border-top: 1px solid #f0f0f0;
}
.product-description h3 {
  font-size: 1.1rem; font-weight: 700; color: #181818;
  margin-bottom: 12px;
}
.product-description p {
  font-size: .95rem; color: #666; line-height: 1.8;
  margin-bottom: 12px;
}

/* Share */
.product-share {
  display: flex; gap: 10px; align-items: center;
  padding-top: 20px; border-top: 1px solid #f0f0f0;
}
.product-share span {
  font-size: .85rem; color: #999; font-weight: 500;
}
.product-share a {
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%; background: #f0f0f0; color: #181818;
  font-size: .85rem; transition: all .3s;
}
.product-share a:hover {
  background: #181818; color: #fff; opacity: 1;
}

/* Related products */
.related-products { padding: 60px 0 80px; border-top: 1px solid #f0f0f0; }
.related-title {
  font-size: 1.8rem; font-weight: 700; color: #181818;
  margin-bottom: 32px; text-align: center;
}

/* Side Cart Drawer */
.side-cart-overlay {
  position: fixed; inset: 0; z-index: 99990;
  background: rgba(0,0,0,.5);
  opacity: 0; visibility: hidden;
  transition: opacity .3s, visibility .3s;
}
.side-cart-overlay.open { opacity: 1; visibility: visible; }

.side-cart {
  position: fixed; top: 0; right: 0; bottom: 0;
  width: 420px; max-width: 90vw;
  background: #fff; z-index: 99991;
  transform: translateX(100%);
  transition: transform .4s cubic-bezier(.4,0,.2,1);
  display: flex; flex-direction: column;
  box-shadow: -4px 0 30px rgba(0,0,0,.15);
}
.side-cart.open { transform: translateX(0); }

.side-cart-header {
  display: flex; justify-content: space-between; align-items: center;
  padding: 20px 24px; border-bottom: 1px solid #ECECEC;
}
.side-cart-header h3 { font-size: 1.1rem; font-weight: 700; color: #181818; }
.side-cart-close {
  width: 36px; height: 36px; display: flex; align-items: center; justify-content: center;
  color: #181818; font-size: 1.2rem; transition: color .3s;
}
.side-cart-close:hover { color: #2E7D32; }

.side-cart-items {
  flex: 1; overflow-y: auto; padding: 16px 24px;
}
.side-cart-item {
  display: flex; gap: 14px; padding: 14px 0;
  border-bottom: 1px solid #f0f0f0;
  align-items: center;
}
.side-cart-item-img {
  width: 64px; height: 64px; border-radius: 8px;
  object-fit: cover; border: 1px solid #ECECEC; flex-shrink: 0;
}
.side-cart-item-info { flex: 1; }
.side-cart-item-name {
  font-size: .9rem; font-weight: 600; color: #181818; margin-bottom: 4px;
}
.side-cart-item-variation { font-size: .78rem; color: #999; }
.side-cart-item-price { font-size: .85rem; color: #2E7D32; font-weight: 600; margin-top: 4px; }
.side-cart-item-qty {
  display: inline-flex; align-items: center;
  border: 1px solid #ECECEC; border-radius: 6px; margin-top: 6px;
}
.side-cart-item-qty button {
  width: 28px; height: 28px; display: flex; align-items: center; justify-content: center;
  background: none; border: none; color: #666; font-size: .85rem; cursor: pointer;
}
.side-cart-item-qty span {
  width: 32px; text-align: center; font-size: .85rem; font-weight: 600; color: #181818;
  border-left: 1px solid #ECECEC; border-right: 1px solid #ECECEC; line-height: 28px;
}
.side-cart-item-remove {
  color: #999; font-size: .8rem; cursor: pointer; transition: color .3s;
  background: none; border: none; padding: 4px;
}
.side-cart-item-remove:hover { color: #e33548; }

.side-cart-empty {
  text-align: center; padding: 60px 20px; color: #999;
}
.side-cart-empty i { font-size: 2.5rem; margin-bottom: 12px; display: block; color: #ddd; }

.side-cart-footer {
  border-top: 1px solid #ECECEC; padding: 20px 24px;
}
.side-cart-shipping-bar {
  height: 6px; background: #f0f0f0; border-radius: 3px;
  margin-bottom: 12px; overflow: hidden;
}
.side-cart-shipping-fill {
  height: 100%; background: #2E7D32; border-radius: 3px;
  transition: width .4s ease;
}
.side-cart-shipping-text {
  font-size: .78rem; color: #666; margin-bottom: 14px; text-align: center;
}
.side-cart-shipping-text b { color: #2E7D32; }
.side-cart-totals { margin-bottom: 16px; }
.side-cart-totals-row {
  display: flex; justify-content: space-between;
  padding: 6px 0; font-size: .9rem; color: #666;
}
.side-cart-totals-row.total {
  font-size: 1.05rem; font-weight: 700; color: #181818;
  border-top: 1px solid #ECECEC; padding-top: 10px; margin-top: 6px;
}
.side-cart-checkout-btn {
  display: block; width: 100%; padding: 14px;
  background: #2E7D32; color: #fff; text-align: center;
  border: none; border-radius: 8px; font-size: .95rem;
  font-weight: 700; letter-spacing: .5px; cursor: pointer;
  transition: background .3s; text-decoration: none;
}
.side-cart-checkout-btn:hover { background: #256828; opacity: 1; color: #fff; }
.side-cart-continue {
  display: block; text-align: center; margin-top: 10px;
  font-size: .85rem; color: #666; text-decoration: none;
}
.side-cart-continue:hover { color: #2E7D32; opacity: 1; }

/* Cart Page */
.cart-page { padding: 40px 0 80px; }
.cart-grid {
  display: grid; grid-template-columns: 1fr 380px; gap: 40px; align-items: start;
}
.cart-items-table { width: 100%; }
.cart-item-row {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr auto;
  gap: 16px; align-items: center;
  padding: 20px 0; border-bottom: 1px solid #ECECEC;
}
.cart-item-product { display: flex; gap: 14px; align-items: center; }
.cart-item-img {
  width: 80px; height: 80px; border-radius: 8px;
  object-fit: cover; border: 1px solid #ECECEC;
}
.cart-item-name { font-weight: 600; color: #181818; font-size: .95rem; }
.cart-item-variation { font-size: .8rem; color: #999; margin-top: 2px; }
.cart-item-price { font-weight: 500; color: #181818; }
.cart-item-qty {
  display: inline-flex; align-items: center;
  border: 1px solid #ECECEC; border-radius: 6px;
}
.cart-item-qty button {
  width: 36px; height: 36px; display: flex; align-items: center; justify-content: center;
  background: none; border: none; color: #666; font-size: 1rem; cursor: pointer;
}
.cart-item-qty span {
  width: 40px; text-align: center; font-weight: 600; color: #181818;
  border-left: 1px solid #ECECEC; border-right: 1px solid #ECECEC;
  line-height: 36px;
}
.cart-item-total { font-weight: 600; color: #181818; }
.cart-item-remove {
  color: #999; cursor: pointer; transition: color .3s;
  background: none; border: none; font-size: 1rem; padding: 8px;
}
.cart-item-remove:hover { color: #e33548; }
.cart-empty-msg {
  text-align: center; padding: 80px 20px; color: #999;
  grid-column: 1 / -1;
}
.cart-empty-msg i { font-size: 3rem; display: block; margin-bottom: 16px; color: #ddd; }
.cart-empty-msg h3 { color: #181818; margin-bottom: 8px; }

/* Cart Sidebar */
.cart-sidebar {
  background: #fafafa; border: 1px solid #ECECEC; border-radius: 12px;
  padding: 28px; position: sticky; top: 120px;
}
.cart-sidebar h3 {
  font-size: 1.1rem; font-weight: 700; color: #181818;
  margin-bottom: 20px; padding-bottom: 14px; border-bottom: 1px solid #ECECEC;
}
.cart-sidebar-row {
  display: flex; justify-content: space-between;
  padding: 8px 0; font-size: .9rem; color: #666;
}
.cart-sidebar-row.total {
  font-size: 1.1rem; font-weight: 700; color: #181818;
  border-top: 1px solid #ECECEC; padding-top: 14px; margin-top: 10px;
}
.cart-promo {
  display: flex; gap: 8px; margin: 18px 0;
}
.cart-promo input {
  flex: 1; padding: 10px 14px; border: 1px solid #ECECEC;
  border-radius: 6px; font-size: .85rem; font-family: 'Outfit', sans-serif; outline: none;
}
.cart-promo button {
  padding: 10px 20px; background: #181818; color: #fff;
  border: none; border-radius: 6px; font-size: .85rem; font-weight: 600;
  cursor: pointer; transition: background .3s;
}
.cart-promo button:hover { background: #333; }
.cart-checkout-btn {
  display: block; width: 100%; padding: 14px;
  background: #2E7D32; color: #fff; text-align: center;
  border: none; border-radius: 8px; font-size: .95rem;
  font-weight: 700; letter-spacing: .5px; cursor: pointer;
  transition: background .3s; text-decoration: none; margin-top: 14px;
}
.cart-checkout-btn:hover { background: #256828; opacity: 1; color: #fff; }
.cart-continue-link {
  display: block; text-align: center; margin-top: 12px;
  font-size: .85rem; color: #666; text-decoration: none;
}
.cart-continue-link:hover { color: #2E7D32; opacity: 1; }

/* Checkout Page */
.checkout-page { padding: 40px 0 80px; }
.checkout-grid {
  display: grid; grid-template-columns: 1fr 400px; gap: 40px; align-items: start;
}
.checkout-section {
  border: 1px solid #ECECEC; border-radius: 12px;
  padding: 24px; margin-bottom: 20px; background: #fff;
}
.checkout-section h3 {
  font-size: 1.15rem; font-weight: 700; color: #181818;
  margin-bottom: 18px;
}
.checkout-row {
  display: grid; grid-template-columns: 1fr 1fr; gap: 14px;
}
.checkout-row.full { grid-template-columns: 1fr; }
.checkout-field { margin-bottom: 14px; }
.checkout-field label {
  display: block; font-size: .85rem; font-weight: 500;
  color: #666; margin-bottom: 6px;
}
.checkout-field input, .checkout-field select {
  width: 100%; padding: 12px 16px;
  border: 1px solid #ECECEC; border-radius: 10px;
  font-size: .95rem; font-family: 'Outfit', sans-serif;
  color: #181818; background: #fff; outline: none;
  transition: border-color .2s, box-shadow .2s;
  min-height: 48px; box-sizing: border-box;
}
.checkout-field input:focus, .checkout-field select:focus {
  border-color: #2E7D32;
  box-shadow: 0 0 0 3px rgba(201,168,76,.12);
}
.checkout-field input::placeholder { color: #bbb; }

/* Shipping method */
.shipping-method {
  border: 1px solid #ECECEC; border-radius: 8px;
  padding: 14px 16px; margin-bottom: 10px;
  display: flex; align-items: center; gap: 12px;
  cursor: pointer; transition: border-color .2s;
}
.shipping-method:hover { border-color: #2E7D32; }
.shipping-method.selected { border-color: #2E7D32; background: #fdfaf3; }
.shipping-method input[type="radio"] {
  accent-color: #2E7D32; width: 18px; height: 18px;
}
.shipping-method-info { flex: 1; }
.shipping-method-name { font-weight: 600; color: #181818; font-size: .9rem; }
.shipping-method-time { font-size: .8rem; color: #999; }
.shipping-method-price { font-weight: 600; color: #181818; }

/* Payment method */
.payment-method {
  border: 1px solid #ECECEC; border-radius: 8px;
  padding: 14px 16px; margin-bottom: 10px;
  display: flex; align-items: center; gap: 12px;
}
.payment-method input[type="radio"] {
  accent-color: #2E7D32; width: 18px; height: 18px;
}
.payment-method-label { font-weight: 600; color: #181818; }
.payment-method-icons { display: flex; gap: 6px; margin-left: auto; }
.payment-method-icons img { height: 22px; }
.card-form { margin-top: 16px; }
.card-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.card-number-row { grid-column: 1 / -1; }
.card-secure-notice {
  background: #f0f9f2; border: 1px solid #cfe7d6; border-radius: 8px;
  padding: 12px 14px 12px 40px; font-size: .8rem; color: #2f5d40;
  margin-bottom: 14px; position: relative; line-height: 1.5;
}
.card-secure-notice::before {
  content: '\f023'; font-family: 'Font Awesome 6 Free'; font-weight: 900;
  position: absolute; left: 14px; top: 12px; color: #2E7D32;
}

/* Terms */
.checkout-terms {
  border: 1px solid #ECECEC; border-radius: 8px;
  padding: 14px 16px; margin: 18px 0;
}
.checkout-terms label {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: .85rem; color: #666; line-height: 1.5; cursor: pointer;
}
.checkout-terms input[type="checkbox"] {
  accent-color: #2E7D32; width: 18px; height: 18px; margin-top: 2px;
}
.checkout-terms a { color: #2E7D32; text-decoration: underline; }

/* Place order */
.checkout-place-order {
  width: 100%; min-height: 60px;
  background: #2E7D32; color: #fff; border: none;
  border-radius: 10px; font-size: 1.05rem; font-weight: 700;
  letter-spacing: .3px; cursor: pointer; transition: background .3s;
}
.checkout-place-order:hover { background: #256828; }
.checkout-place-order:disabled { background: #ccc; cursor: not-allowed; }

/* Checkout sidebar */
.checkout-sidebar {
  background: #fafafa; border: 1px solid #ECECEC; border-radius: 12px;
  padding: 28px; position: sticky; top: 120px;
}
.checkout-sidebar h3 {
  font-size: 1.1rem; font-weight: 700; color: #181818;
  margin-bottom: 18px;
}
.checkout-product {
  display: flex; gap: 12px; padding: 12px 0;
  border-bottom: 1px solid #f0f0f0; align-items: center;
}
.checkout-product-img {
  width: 56px; height: 56px; border-radius: 8px;
  object-fit: cover; border: 1px solid #ECECEC; flex-shrink: 0;
}
.checkout-product-name { font-size: .85rem; font-weight: 500; color: #181818; flex: 1; }
.checkout-product-qty {
  font-size: .8rem; color: #999; background: #7f7f7f; color: #fff;
  padding: 2px 8px; border-radius: 4px; font-weight: 600;
}
.checkout-product-price { font-size: .85rem; font-weight: 500; color: #181818; white-space: nowrap; }
.checkout-totals { margin-top: 16px; }
.checkout-totals-row {
  display: flex; justify-content: space-between;
  padding: 7px 0; font-size: .9rem; color: #666;
}
.checkout-totals-row.total {
  font-size: 1.1rem; font-weight: 700; color: #181818;
  border-top: 1px solid #ECECEC; padding-top: 12px; margin-top: 8px;
}

/* Trust badges */
.checkout-trust { margin-top: 24px; }
.checkout-trust-item {
  display: flex; gap: 14px; padding: 12px 0;
  border-bottom: 1px solid #f0f0f0;
}
.checkout-trust-item:last-child { border-bottom: none; }
.checkout-trust-icon {
  width: 44px; height: 44px; border-radius: 50%;
  border: 2px solid #2E7D32; display: flex; align-items: center; justify-content: center;
  color: #2E7D32; font-size: .9rem; flex-shrink: 0;
}
.checkout-trust-text h4 { font-size: .85rem; font-weight: 600; color: #181818; margin-bottom: 2px; }
.checkout-trust-text p { font-size: .78rem; color: #999; line-height: 1.4; }

/* Order success */
.order-success {
  text-align: center; padding: 80px 20px;
}
.order-success-icon {
  width: 80px; height: 80px; border-radius: 50%;
  background: #2E7D32; color: #fff; display: flex;
  align-items: center; justify-content: center;
  font-size: 2rem; margin: 0 auto 24px;
}
.order-success h2 { font-size: 1.8rem; color: #181818; margin-bottom: 12px; }
.order-success p { color: #666; margin-bottom: 8px; }
.order-success .order-number { font-weight: 700; color: #181818; }

/* Wishlist */
.wishlist-btn.active i { color: #e33548; }
.wishlist-btn.active i::before { content: "\f02e"; } /* filled heart */

/* Added to cart notification */
.added-notification {
  position: fixed; bottom: 24px; right: 24px; z-index: 9999;
  background: #181818; color: #fff; padding: 14px 24px;
  border-radius: 8px; font-size: .9rem; font-weight: 500;
  display: flex; align-items: center; gap: 10px;
  transform: translateY(100px); opacity: 0;
  transition: transform .4s ease, opacity .4s ease;
  box-shadow: 0 4px 20px rgba(0,0,0,.2);
}
.added-notification.show { transform: translateY(0); opacity: 1; }
.added-notification i { color: #2E7D32; }

/* ===== CART PAGE (new) ===== */
.cart-breadcrumb {
  padding: 16px 0;
  font-size: .85rem;
  color: #999;
  background: #fafafa;
  border-bottom: 1px solid #f0f0f0;
}
.cart-breadcrumb a { color: #999; transition: color .3s; }
.cart-breadcrumb a:hover { color: #2E7D32; opacity: 1; }
.cart-breadcrumb .sep { margin: 0 8px; }

.cart-page { padding: 48px 0 80px; }
.cart-page-title {
  font-size: 2rem; font-weight: 700; color: #181818;
  margin-bottom: 32px;
}
.cart-layout {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 40px;
  align-items: start;
}

.cart-table-wrap {
  border: 1px solid #ECECEC;
  border-radius: 12px;
  overflow: hidden;
}
.cart-table {
  width: 100%;
  border-collapse: collapse;
}
.cart-table thead {
  background: #fafafa;
}
.cart-table th {
  padding: 14px 20px;
  font-size: .75rem;
  font-weight: 600;
  color: #999;
  text-transform: uppercase;
  letter-spacing: .8px;
  text-align: left;
  border-bottom: 1px solid #ECECEC;
}
.cart-table td {
  padding: 20px;
  border-bottom: 1px solid #ECECEC;
  vertical-align: middle;
}
.cart-table tr:last-child td {
  border-bottom: none;
}

.cart-product {
  display: flex;
  align-items: center;
  gap: 16px;
}
.cart-product-img {
  width: 80px;
  height: 80px;
  border-radius: 8px;
  overflow: hidden;
  flex-shrink: 0;
  background: #f8f8f8;
  border: 1px solid #f0f0f0;
}
.cart-product-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cart-product-name {
  font-weight: 600;
  color: #181818;
  font-size: .95rem;
}
.cart-product-variation {
  font-size: .8rem;
  color: #999;
  margin-top: 2px;
}

.cart-price {
  font-weight: 600;
  color: #181818;
  font-size: .95rem;
  white-space: nowrap;
}

.cart-qty-stepper {
  display: inline-flex;
  align-items: center;
  border: 1px solid #ECECEC;
  border-radius: 8px;
  overflow: hidden;
}
.cart-qty-btn {
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fafafa;
  color: #181818;
  font-size: .85rem;
  transition: background .2s;
  border: none;
  cursor: pointer;
}
.cart-qty-btn:hover { background: #f0f0f0; }
.cart-qty-val {
  width: 36px;
  text-align: center;
  font-size: .9rem;
  font-weight: 600;
  color: #181818;
  border: none;
  border-left: 1px solid #ECECEC;
  border-right: 1px solid #ECECEC;
  background: #fff;
  font-family: 'Outfit', sans-serif;
  outline: none;
}

.cart-line-total {
  font-weight: 700;
  color: #181818;
  font-size: .95rem;
  white-space: nowrap;
}

.cart-remove-btn {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #999;
  font-size: .85rem;
  transition: all .3s;
  border: 1px solid transparent;
}
.cart-remove-btn:hover {
  color: #e53935;
  background: #fef2f2;
  border-color: #fecaca;
}

.cart-table th:nth-child(1),
.cart-table td:nth-child(1) { width: 45%; }
.cart-table th:nth-child(2),
.cart-table td:nth-child(2) { width: 13%; }
.cart-table th:nth-child(3),
.cart-table td:nth-child(3) { width: 17%; }
.cart-table th:nth-child(4),
.cart-table td:nth-child(4) { width: 13%; }
.cart-table th:nth-child(5),
.cart-table td:nth-child(5) { width: 12%; text-align: center; }

.cart-continue-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 24px;
  font-size: .9rem;
  font-weight: 500;
  color: #666;
  transition: color .3s;
}
.cart-continue-link:hover { color: #2E7D32; opacity: 1; }
.cart-continue-link i { font-size: .75rem; }

.cart-summary {
  background: #fafafa;
  border: 1px solid #ECECEC;
  border-radius: 12px;
  padding: 28px;
  position: sticky;
  top: 120px;
}
.cart-summary-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: #181818;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid #ECECEC;
}
.cart-summary-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 14px;
  font-size: .95rem;
}
.cart-summary-row .label { color: #666; }
.cart-summary-row .value { font-weight: 600; color: #181818; }
.cart-summary-row.shipping .value {
  font-size: .85rem;
  font-weight: 500;
  color: #2E7D32;
}
.cart-summary-divider {
  height: 1px;
  background: #ECECEC;
  margin: 16px 0;
}
.cart-summary-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1.1rem;
  font-weight: 700;
  color: #181818;
  margin-bottom: 24px;
}

.cart-promo {
  margin-bottom: 24px;
}
.cart-promo-toggle {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .9rem;
  font-weight: 500;
  color: #666;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
  margin-bottom: 12px;
  transition: color .3s;
}
.cart-promo-toggle:hover { color: #181818; }
.cart-promo-toggle i { font-size: .7rem; }
.cart-promo-form {
  display: none;
  gap: 8px;
}
.cart-promo-form.open {
  display: flex;
}
.cart-promo-input {
  flex: 1;
  padding: 12px 16px;
  border: 1px solid #ECECEC;
  border-radius: 10px;
  min-height: 44px;
  font-size: .9rem;
  font-family: 'Outfit', sans-serif;
  outline: none;
  transition: border-color .3s;
}
.cart-promo-input:focus {
  border-color: #2E7D32;
  box-shadow: 0 0 0 3px rgba(201,168,76,.12);
}
.cart-promo-input::placeholder { color: #bbb; }
.cart-promo-apply {
  padding: 12px 20px;
  background: #181818;
  color: #fff;
  border: none;
  border-radius: 10px;
  font-size: .85rem;
  font-weight: 600;
  font-family: 'Outfit', sans-serif;
  cursor: pointer;
  transition: background .3s;
  white-space: nowrap;
}
.cart-promo-apply:hover { background: #333; }

.btn-checkout {
  display: block;
  width: 100%;
  padding: 16px;
  background: #2E7D32;
  color: #fff;
  border: none;
  border-radius: 10px;
  font-size: 1rem;
  font-weight: 700;
  font-family: 'Outfit', sans-serif;
  cursor: pointer;
  transition: background .3s;
  text-align: center;
  letter-spacing: .3px;
}
.btn-checkout:hover { background: #256828; }

.cart-empty {
  text-align: center;
  padding: 80px 20px;
  border: 1px solid #ECECEC;
  border-radius: 12px;
}
.cart-empty-icon {
  font-size: 3rem;
  color: #ddd;
  margin-bottom: 20px;
}
.cart-empty h2 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #181818;
  margin-bottom: 12px;
}
.cart-empty p {
  color: #666;
  margin-bottom: 28px;
  font-size: .95rem;
}
.btn-continue-shopping {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 36px;
  background: #2E7D32;
  color: #fff;
  border-radius: 8px;
  font-weight: 700;
  font-size: .9rem;
  transition: background .3s;
}
.btn-continue-shopping:hover { background: #256828; opacity: 1; }
.btn-continue-shopping i { font-size: .8rem; }

/* ===== CHECKOUT PAGE (new) ===== */
.checkout-breadcrumb {
  padding: 16px 0;
  font-size: .85rem;
  color: #999;
  background: #fafafa;
  border-bottom: 1px solid #f0f0f0;
}
.checkout-breadcrumb a { color: #999; transition: color .3s; }
.checkout-breadcrumb a:hover { color: #2E7D32; opacity: 1; }
.checkout-breadcrumb .sep { margin: 0 8px; }

.checkout-page { padding: 48px 0 80px; }
.checkout-layout {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 40px;
  align-items: start;
}

.checkout-form { display: flex; flex-direction: column; gap: 32px; }
.checkout-section {
  border: 1px solid #ECECEC;
  border-radius: 12px;
  padding: 28px;
}
.checkout-section-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: #181818;
  margin-bottom: 20px;
  padding-bottom: 14px;
  border-bottom: 1px solid #ECECEC;
  display: flex;
  align-items: center;
  gap: 10px;
}
.checkout-section-title .step-num {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #2E7D32;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .8rem;
  font-weight: 700;
  flex-shrink: 0;
}

.form-row {
  display: flex;
  gap: 16px;
  margin-bottom: 16px;
}
.form-row:last-child { margin-bottom: 0; }
.form-group {
  flex: 1;
  display: flex;
  flex-direction: column;
}
.form-label {
  font-size: .85rem;
  font-weight: 500;
  color: #181818;
  margin-bottom: 6px;
}
.form-input {
  padding: 14px 16px;
  border: 1px solid #ECECEC;
  border-radius: 10px;
  min-height: 54px;
  font-size: .95rem;
  font-family: 'Outfit', sans-serif;
  color: #181818;
  outline: none;
  transition: border-color .3s, box-shadow .3s;
  background: #fff;
}
.form-input:focus {
  border-color: #2E7D32;
  box-shadow: 0 0 0 3px rgba(201,168,76,.12);
}
.form-input::placeholder { color: #bbb; }
.form-input.error {
  border-color: #e53935;
  box-shadow: 0 0 0 3px rgba(229,57,53,.08);
}
.form-error {
  font-size: .8rem;
  color: #e53935;
  margin-top: 4px;
  display: none;
}
.form-error.show { display: block; }

.shipping-options {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.shipping-option {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  border: 1px solid #ECECEC;
  border-radius: 10px;
  cursor: pointer;
  transition: border-color .3s, background .3s;
}
.shipping-option:hover { border-color: #2E7D32; }
.shipping-option.selected {
  border-color: #2E7D32;
  background: rgba(201,168,76,.04);
}
.shipping-option input[type="radio"] {
  accent-color: #2E7D32;
  width: 18px;
  height: 18px;
  margin: 0;
}
.shipping-option-label {
  flex: 1;
}
.shipping-option-label strong {
  display: block;
  font-size: .95rem;
  color: #181818;
  margin-bottom: 2px;
}
.shipping-option-label span {
  font-size: .82rem;
  color: #999;
}
.shipping-option-price {
  font-weight: 700;
  color: #181818;
  font-size: .95rem;
}
.shipping-option-price.free {
  color: #2E7D32;
}

.payment-icons {
  display: flex;
  gap: 8px;
  margin-bottom: 16px;
}
.payment-icon-badge {
  padding: 6px 12px;
  border: 1px solid #ECECEC;
  border-radius: 6px;
  font-size: .8rem;
  color: #666;
  display: flex;
  align-items: center;
  gap: 6px;
}
.payment-icon-badge i { color: #181818; }

.terms-check {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-top: 8px;
}
.terms-check input[type="checkbox"] {
  accent-color: #2E7D32;
  width: 18px;
  height: 18px;
  margin-top: 2px;
  flex-shrink: 0;
}
.terms-check label {
  font-size: .85rem;
  color: #666;
  line-height: 1.6;
}
.terms-check label a {
  color: #2E7D32;
  font-weight: 500;
}
.terms-check label a:hover { text-decoration: underline; opacity: 1; }

.btn-complete-order {
  display: block;
  width: 100%;
  min-height: 60px;
  background: #2E7D32;
  color: #fff;
  border: none;
  border-radius: 10px;
  font-size: 1.05rem;
  font-weight: 600;
  font-family: 'Outfit', sans-serif;
  cursor: pointer;
  transition: background .3s;
  letter-spacing: .3px;
}
.btn-complete-order:hover { background: #256828; }

.checkout-summary {
  background: #fafafa;
  border: 1px solid #ECECEC;
  border-radius: 12px;
  padding: 28px;
  position: sticky;
  top: 120px;
}
.checkout-summary-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: #181818;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid #ECECEC;
}
.checkout-summary-items {
  margin-bottom: 20px;
}
.checkout-summary-item {
  display: flex;
  gap: 14px;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid #f0f0f0;
}
.checkout-summary-item:last-child { border-bottom: none; }
.checkout-item-img {
  width: 60px;
  height: 60px;
  border-radius: 8px;
  overflow: hidden;
  flex-shrink: 0;
  background: #f8f8f8;
  border: 1px solid #f0f0f0;
  position: relative;
}
.checkout-item-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.checkout-item-qty-badge {
  position: absolute;
  top: -6px;
  right: -6px;
  width: 22px;
  height: 22px;
  background: #181818;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .7rem;
  font-weight: 600;
}
.checkout-item-info {
  flex: 1;
  min-width: 0;
}
.checkout-item-name {
  font-weight: 600;
  font-size: .9rem;
  color: #181818;
  margin-bottom: 2px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.checkout-item-variation {
  font-size: .78rem;
  color: #999;
}
.checkout-item-price {
  font-weight: 600;
  color: #181818;
  font-size: .9rem;
  white-space: nowrap;
}

.checkout-summary-divider {
  height: 1px;
  background: #ECECEC;
  margin: 16px 0;
}
.checkout-summary-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
  font-size: .9rem;
}
.checkout-summary-row .label { color: #666; }
.checkout-summary-row .value { font-weight: 600; color: #181818; }
.checkout-summary-row.shipping .value.free {
  color: #2E7D32;
  font-weight: 600;
}
.checkout-summary-row.tax .label { font-size: .82rem; color: #999; }
.checkout-summary-row.tax .value { font-size: .82rem; color: #999; }

.checkout-summary-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 16px;
  border-top: 1px solid #ECECEC;
  margin-top: 8px;
  font-size: 1.2rem;
  font-weight: 700;
  color: #181818;
}

.checkout-trust {
  display: flex;
  gap: 16px;
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid #ECECEC;
}
.checkout-trust-item {
  flex: 1;
  text-align: center;
}
.checkout-trust-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 2px solid #ECECEC;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 8px;
  color: #2E7D32;
  font-size: .95rem;
}
.checkout-trust-text {
  font-size: .72rem;
  color: #999;
  line-height: 1.4;
  font-weight: 500;
}

.checkout-success-overlay {
  position: fixed;
  inset: 0;
  z-index: 99999;
  background: rgba(0,0,0,.6);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.checkout-success-overlay.show {
  display: flex;
}
.checkout-success-modal {
  background: #fff;
  border-radius: 16px;
  padding: 48px 40px;
  text-align: center;
  max-width: 480px;
  width: 100%;
  box-shadow: 0 20px 60px rgba(0,0,0,.2);
  animation: fadeInScale .5s ease;
}
.checkout-success-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: #E8F5E9;
  color: #2E7D32;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  font-size: 2rem;
}
.checkout-success-modal h2 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #181818;
  margin-bottom: 12px;
}
.checkout-success-modal p {
  color: #666;
  font-size: .95rem;
  line-height: 1.7;
  margin-bottom: 8px;
}
.checkout-success-modal .order-num {
  font-weight: 700;
  color: #181818;
}
.checkout-success-btn {
  display: inline-block;
  margin-top: 24px;
  padding: 14px 36px;
  background: #2E7D32;
  color: #fff;
  border-radius: 8px;
  font-weight: 700;
  font-size: .9rem;
  transition: background .3s;
}
.checkout-success-btn:hover { background: #256828; opacity: 1; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .tested-grid, .trust-grid { grid-template-columns: repeat(2,1fr); }
  .products-grid { grid-template-columns: repeat(3,1fr); }
  .footer-grid { grid-template-columns: repeat(2,1fr); }
  .product-single-grid { grid-template-columns: 1fr; gap: 40px; }
  .product-gallery { position: static; }
  .cart-grid { grid-template-columns: 1fr; }
  .checkout-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .nav { display: none; }
  .mobile-menu-btn { display: flex; }
  .hero { height: 420px; }
  .hero-title { font-size: 2.4rem; }
  .tested-grid { grid-template-columns: 1fr; gap: 32px; }
  .products-grid { grid-template-columns: repeat(2,1fr); gap: 16px; }
  .trust-grid { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; gap: 32px; }
  .about-image { order: -1; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom-inner { flex-direction: column; gap: 12px; text-align: center; }
  .section-title-center { font-size: 1.5rem; }
  .about-row { flex-direction: column; gap: 12px; }
  .about-col-title { flex: none; }
  .page-hero { height: 200px; }
  .page-hero-title { font-size: 2.4rem; }
  .cart-layout { grid-template-columns: 1fr; }
  .cart-table th:nth-child(3), .cart-table td:nth-child(3),
  .cart-table th:nth-child(5), .cart-table td:nth-child(5) { display: none; }
  .cart-table { font-size: .85rem; }
  .cart-product { gap: 10px; }
  .cart-product-img { width: 60px; height: 60px; }
  .checkout-layout { grid-template-columns: 1fr; }
  .form-row { flex-direction: column; gap: 0; }
}
@media (max-width: 480px) {
  .products-grid { grid-template-columns: 1fr; }
  .hero { height: 320px; }
  .hero-title { font-size: 1.8rem; }
  .age-gate-modal { padding: 28px 24px; }
  .page-hero { height: 160px; }
  .page-hero-title { font-size: 1.8rem; }
  .account-modal { padding: 28px 20px; width: 95vw; }
  .side-cart { width: 100vw; max-width: 100vw; }
}

/* Account Modal */
.account-overlay {
  position: fixed; inset: 0; z-index: 99992;
  background: rgba(0,0,0,.5);
  opacity: 0; visibility: hidden;
  transition: opacity .3s, visibility .3s;
}
.account-overlay.open { opacity: 1; visibility: visible; }
.account-modal {
  position: fixed; top: 50%; left: 50%; z-index: 99993;
  transform: translate(-50%, -50%) scale(.9);
  background: #fff; border-radius: 16px;
  padding: 36px 32px; width: 420px; max-width: 92vw;
  opacity: 0; visibility: hidden;
  transition: opacity .3s, transform .3s, visibility .3s;
  box-shadow: 0 20px 60px rgba(0,0,0,.2);
}
.account-modal.open { opacity: 1; visibility: visible; transform: translate(-50%, -50%) scale(1); }
.account-close {
  position: absolute; top: 16px; right: 16px;
  background: none; border: none; font-size: 1.2rem; color: #999; cursor: pointer;
}
.account-close:hover { color: #181818; }
.account-tabs { display: flex; gap: 0; margin-bottom: 24px; border-bottom: 2px solid #ECECEC; }
.account-tab {
  flex: 1; padding: 12px; background: none; border: none;
  font-size: .9rem; font-weight: 600; color: #999; cursor: pointer;
  border-bottom: 2px solid transparent; margin-bottom: -2px; transition: all .3s;
}
.account-tab.active { color: #181818; border-bottom-color: #2E7D32; }
.account-field { margin-bottom: 16px; }
.account-field label { display: block; font-size: .85rem; font-weight: 500; color: #666; margin-bottom: 6px; }
.account-field input {
  width: 100%; padding: 12px 16px; border: 1px solid #ECECEC; border-radius: 10px;
  font-size: .95rem; font-family: 'Outfit', sans-serif; color: #181818; outline: none;
  transition: border-color .2s, box-shadow .2s; box-sizing: border-box;
}
.account-field input:focus { border-color: #2E7D32; box-shadow: 0 0 0 3px rgba(201,168,76,.12); }
.account-submit-btn {
  width: 100%; padding: 14px; background: #2E7D32; color: #fff; border: none;
  border-radius: 10px; font-size: .95rem; font-weight: 700; cursor: pointer; transition: background .3s;
}
.account-submit-btn:hover { background: #256828; }
.account-note { text-align: center; font-size: .78rem; color: #999; margin-top: 12px; }
.account-logged-in { text-align: center; padding: 20px 0; }
.account-avatar {
  width: 72px; height: 72px; border-radius: 50%; background: #f0f0f0;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px; font-size: 1.8rem; color: #2E7D32;
}
.account-logged-in h3 { font-size: 1.1rem; color: #181818; margin-bottom: 4px; }
.account-logged-in p { font-size: .85rem; color: #999; margin-bottom: 20px; }
.account-logout-btn {
  padding: 10px 32px; background: none; border: 1px solid #ECECEC; border-radius: 8px;
  font-size: .85rem; font-weight: 600; color: #666; cursor: pointer; transition: all .3s;
}
.account-logout-btn:hover { border-color: #e33548; color: #e33548; }

/* Back to Top */
.back-to-top {
  position: fixed; bottom: 24px; left: 24px; z-index: 9990;
  width: 44px; height: 44px; border-radius: 50%;
  background: #181818; color: #fff; border: none;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; cursor: pointer; opacity: 0; visibility: hidden;
  transition: all .3s; box-shadow: 0 2px 12px rgba(0,0,0,.2);
}
.back-to-top.visible { opacity: 1; visibility: visible; }
.back-to-top:hover { background: #2E7D32; }
