:root {
  --black:      #010101;
  --white:      #FFFFFF;
  --green:      #34B04A;
  --green-dark: #2A8E3C;
  --dark:       #1A1A1A;
  --medium:     #6B6B6B;
  --off-white:  #F5F5F5;
  --light-gray: #E8E8E8;
  --mid-gray:   #D0D0D0;

  --font:       'Montserrat', sans-serif;
  --radius:     6px;
  --radius-lg:  8px;
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.5;
  color: var(--black);
  background: var(--white);
  margin: 0;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font);
  font-weight: 500;
  line-height: 1.25;
  color: var(--black);
}

h1 { font-size: clamp(44px, 6vw, 72px); letter-spacing: -0.01em; }
h2 { font-size: clamp(36px, 4.5vw, 52px); letter-spacing: -0.01em; }
h3 { font-size: clamp(28px, 3.5vw, 44px); letter-spacing: -0.01em; }
h4 { font-size: clamp(22px, 2.5vw, 36px); letter-spacing: -0.01em; }
h5 { font-size: 28px; letter-spacing: -0.01em; }
h6 { font-size: 18px; font-weight: 600; }

p { font-size: 16px; line-height: 1.5; }

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

img { max-width: 100%; height: auto; display: block; }

.text-green    { color: var(--green) !important; }
.text-black    { color: var(--black) !important; }
.text-medium   { color: var(--medium) !important; }
.text-white    { color: var(--white) !important; }
.bg-off-white  { background-color: var(--off-white) !important; }
.bg-dark       { background-color: var(--dark) !important; }
.bg-green      { background-color: var(--green) !important; }
.label         { font-size: 13px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; }

.btn {
  font-family: var(--font);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.04em;
  border-radius: var(--radius);
  padding: 12px 32px;
  transition: opacity 0.2s, transform 0.15s;
  cursor: pointer;
  border: 2px solid transparent;
  display: inline-block;
}
.btn:hover { opacity: 0.88; transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.btn-primary {
  background-color: var(--green);
  border-color: var(--green);
  color: var(--white);
}
.btn-primary:hover { background-color: var(--green-dark); color: var(--white); }

.btn-outline {
  background-color: transparent;
  border-color: var(--white);
  color: var(--white);
}
.btn-outline:hover { background-color: var(--white); color: var(--black); }

.btn-outline-dark {
  background-color: transparent;
  border-color: var(--black);
  color: var(--black);
}
.btn-outline-dark:hover { background-color: var(--black); color: var(--white); }

.btn-dark {
  background-color: var(--black);
  border-color: var(--black);
  color: var(--white);
}

.overlay-wrap {
  position: relative;
  overflow: hidden;
}
.overlay-wrap::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.55);
  z-index: 1;
}
.overlay-wrap > * { position: relative; z-index: 2; }

.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 16px 64px;
  background: #FFFFFF;
  box-shadow: 0 1px 12px rgba(0,0,0,0.1);
  transition: background 0.3s, box-shadow 0.3s;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.site-nav .nav-links a { color: var(--black); }
.site-nav .nav-links a:hover { color: var(--green); }
.site-nav .cart-btn { color: var(--black); }
.site-nav .hamburger { color: var(--black); }
.site-nav .logo img { height: 36px; width: auto; }
.site-nav .logo { display: flex; align-items: center; gap: 8px; }
.site-nav .logo .logo-text { font-size: 20px; font-weight: 700; color: var(--black); letter-spacing: -0.02em; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-links a {
  color: var(--black);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.04em;
  transition: color 0.3s;
}
.nav-links a:hover { color: var(--green); }

.nav-right {
  display: flex;
  align-items: center;
  gap: 20px;
}
.cart-btn {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--black);
  padding: 4px;
  position: relative;
  font-size: 20px;
  transition: color 0.3s;
}
.cart-btn:hover { color: var(--green); }
.cart-count {
  position: absolute;
  top: -4px;
  right: -6px;
  background: var(--green);
  color: var(--white);
  font-size: 10px;
  font-weight: 700;
  border-radius: 50%;
  width: 16px;
  height: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  display: none;
}

.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--black);
  font-size: 24px;
  transition: color 0.3s;
}

.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--dark);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  color: var(--white);
  font-size: 24px;
  font-weight: 600;
}
.mobile-menu .close-btn {
  position: absolute;
  top: 24px;
  right: 24px;
  background: none;
  border: none;
  color: var(--white);
  font-size: 28px;
  cursor: pointer;
}

@media (max-width: 768px) {
  .site-nav { padding: 16px 24px; }
  .nav-links { display: none; }
  .hamburger { display: block; }
}

.overlay-wrap > .hero-video-container {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}
.hero-video-container video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero {
  min-height: 100vh;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 120px 64px 80px;
  text-align: center;
}
.hero-content { max-width: 700px; }
.hero h1 { color: var(--white); margin-bottom: 20px; }
.hero p  { color: rgba(255,255,255,0.9); font-size: 18px; margin-bottom: 40px; max-width: 520px; margin-left: auto; margin-right: auto; }

@media (max-width: 768px) {
  .hero { padding: 100px 24px 60px; }
  .hero h1 { font-size: 36px; }
}

.section { padding: 80px 64px; }
.section-lg { padding: 112px 64px; }
.section-sm { padding: 48px 64px; }

@media (max-width: 992px) {
  .section    { padding: 60px 32px; }
  .section-lg { padding: 80px 32px; }
  .section-sm { padding: 40px 32px; }
}
@media (max-width: 576px) {
  .section    { padding: 48px 20px; }
  .section-lg { padding: 64px 20px; }
  .section-sm { padding: 32px 20px; }
}

.about-section { background: var(--white); }
.about-section .about-inner {
  max-width: 960px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.about-section .about-label {
  color: var(--green);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.about-section h2 { margin-bottom: 24px; }

@media (max-width: 768px) {
  .about-section .about-inner { grid-template-columns: 1fr; gap: 32px; }
}

.benefits-section { background: var(--black); }
.benefits-section .section-header { max-width: 640px; margin: 0 auto 56px; text-align: center; }
.benefits-section .section-header .label { color: rgba(255,255,255,0.7); margin-bottom: 12px; display: block; }
.benefits-section .section-header h2 { color: var(--white); }
.benefits-section .section-header p { color: rgba(255,255,255,0.7); }

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.benefit-card {
  position: relative;
  height: 380px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background-size: cover;
  background-position: center;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 32px;
  cursor: pointer;
}
.benefit-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.2) 60%, transparent 100%);
}
.benefit-card > * { position: relative; z-index: 2; }
.benefit-card h4 { color: var(--white); font-size: 24px; margin-bottom: 10px; }
.benefit-card p { color: rgba(255,255,255,0.8); font-size: 14px; line-height: 1.5; margin: 0; }

@media (max-width: 992px) {
  .benefits-grid { grid-template-columns: 1fr 1fr; }
  .benefit-card:last-child { grid-column: 1 / -1; }
}
@media (max-width: 576px) {
  .benefits-grid { grid-template-columns: 1fr; }
  .benefit-card:last-child { grid-column: auto; }
}

.steps-section { background: var(--off-white); }
.steps-section .steps-inner { max-width: 960px; margin: 0 auto; }
.steps-section .section-header { text-align: center; margin-bottom: 56px; }
.steps-section .section-header .label { color: var(--green); margin-bottom: 12px; display: block; }

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.step-card {
  text-align: center;
  padding: 32px 20px;
}
.step-icon {
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  background: var(--white);
  border-radius: 50%;
  box-shadow: 0 4px 16px rgba(0,0,0,0.06);
}
.step-icon img {
  width: 48px;
  height: 48px;
  object-fit: contain;
}
.step-number {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--green);
  color: var(--white);
  font-size: 24px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}
.step-card h5 { font-size: 18px; font-weight: 600; margin-bottom: 12px; }
.step-card p { font-size: 14px; color: var(--medium); line-height: 1.5; }

@media (max-width: 992px) {
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 576px) {
  .steps-grid { grid-template-columns: 1fr; }
}

.benefits-list-section { background: var(--white); }
.benefits-list { max-width: 800px; margin: 0 auto; }
.benefits-list-item {
  display: flex;
  gap: 16px;
  padding: 24px 0;
  border-bottom: 1px solid var(--light-gray);
  align-items: flex-start;
}
.benefits-list-item:last-child { border-bottom: none; }
.benefits-list-item .check {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--green);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
  font-size: 14px;
}
.benefits-list-item h5 { font-size: 18px; font-weight: 600; margin-bottom: 4px; }
.benefits-list-item p { font-size: 14px; color: var(--medium); margin: 0; }

.products-section { background: var(--white); }
.products-section .section-header { text-align: center; margin-bottom: 48px; }
.products-section .section-header .label { color: var(--green); margin-bottom: 12px; display: block; }

.product-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--light-gray);
  transition: box-shadow 0.25s, transform 0.2s;
}
.product-card:hover { box-shadow: 0 8px 32px rgba(0,0,0,0.1); transform: translateY(-2px); }

.product-card .card-img-wrap {
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: var(--off-white);
}
.product-card .card-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}
.product-card:hover .card-img-wrap img { transform: scale(1.04); }

.product-card .card-body { padding: 16px 0 0; }
.product-card .card-label { font-size: 14px; font-weight: 400; color: var(--medium); margin-bottom: 4px; }
.product-card h5 { font-size: 18px; font-weight: 600; margin-bottom: 4px; }
.product-card .price {
  font-size: 22px;
  font-weight: 600;
  color: var(--black);
  margin-bottom: 16px;
}

.qa-section { background: var(--off-white); }
.qa-section .qa-inner { max-width: 720px; margin: 0 auto; }
.qa-section h2 { margin-bottom: 40px; }
.qa-item {
  background: var(--white);
  border-radius: var(--radius-lg);
  margin-bottom: 12px;
  overflow: hidden;
  border: 1px solid var(--light-gray);
}
.qa-item .qa-question {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 20px 24px;
  font-family: var(--font);
  font-size: 16px;
  font-weight: 600;
  color: var(--black);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  transition: color 0.2s;
}
.qa-item .qa-question:hover { color: var(--green); }
.qa-item .qa-question .icon {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 2px solid currentColor;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  line-height: 1;
  transition: transform 0.25s;
}
.qa-item.open .qa-question .icon { transform: rotate(45deg); }
.qa-item .qa-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}
.qa-item.open .qa-answer { max-height: 400px; }
.qa-item .qa-answer-inner {
  padding: 0 24px 20px;
  font-size: 15px;
  color: var(--medium);
  line-height: 1.6;
}

.cta-section {
  background: var(--black);
  text-align: center;
  color: var(--white);
}
.cta-section.overlay-wrap::before {
  background: rgba(0,0,0,0.7);
}
.cta-section h2 { color: var(--white); margin-bottom: 16px; }
.cta-section p { font-size: 18px; color: rgba(255,255,255,0.7); margin-bottom: 40px; max-width: 560px; margin-left: auto; margin-right: auto; }

.site-footer {
  background: var(--black);
  color: rgba(255,255,255,0.7);
}
.footer-newsletter {
  border-bottom: 1px solid rgba(255,255,255,0.1);
  padding: 64px;
}
.footer-newsletter h4 { color: var(--white); margin-bottom: 8px; }
.footer-newsletter p { color: rgba(255,255,255,0.65); margin-bottom: 24px; font-size: 14px; }
.newsletter-form {
  display: flex;
  gap: 12px;
  max-width: 440px;
}
.newsletter-form input {
  flex: 1;
  padding: 12px 16px;
  border: 1px solid rgba(255,255,255,0.2);
  background: rgba(255,255,255,0.08);
  border-radius: var(--radius);
  color: var(--white);
  font-family: var(--font);
  font-size: 14px;
}
.newsletter-form input::placeholder { color: rgba(255,255,255,0.4); }
.newsletter-form input:focus { outline: none; border-color: rgba(255,255,255,0.6); }
.newsletter-form .btn {
  white-space: nowrap;
  background: var(--green);
  border-color: var(--green);
  color: var(--white);
  font-size: 16px;
  font-weight: 500;
  letter-spacing: normal;
  padding: 8px 20px;
}
.newsletter-form .btn:hover { opacity: 0.9; color: var(--white); }

.footer-bottom {
  padding: 48px 64px;
  display: grid;
  grid-template-columns: 1fr repeat(5, auto);
  gap: 40px;
  align-items: start;
}
.footer-brand .logo-text { font-size: 24px; font-weight: 700; color: var(--white); margin-bottom: 16px; }
.footer-brand p { font-size: 13px; color: rgba(255,255,255,0.5); max-width: 240px; }

.footer-col h6 {
  color: var(--white);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col li { margin-bottom: 10px; }
.footer-col a { color: rgba(255,255,255,0.6); font-size: 14px; transition: color 0.2s; }
.footer-col a:hover { color: var(--green); }

.footer-copy {
  padding: 20px 64px;
  border-top: 1px solid rgba(255,255,255,0.08);
  font-size: 12px;
  color: rgba(255,255,255,0.35);
  text-align: center;
}

@media (max-width: 992px) {
  .footer-newsletter { padding: 48px 32px; }
  .footer-bottom { grid-template-columns: 1fr 1fr; padding: 40px 32px; gap: 32px; }
  .footer-copy { padding: 16px 32px; }
}
@media (max-width: 576px) {
  .footer-newsletter { padding: 40px 20px; }
  .footer-bottom { grid-template-columns: 1fr; padding: 32px 20px; }
  .footer-copy { padding: 16px 20px; }
  .newsletter-form { flex-direction: column; }
}

.page-hero {
  padding: 160px 64px 80px;
  background: var(--black);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('../images/leaf.png') center/cover no-repeat;
  opacity: 0.06;
  z-index: 0;
}
.page-hero > * { position: relative; z-index: 1; }
.page-hero h1 { color: var(--white); font-size: clamp(32px, 5vw, 52px); margin-bottom: 16px; }
.page-hero p { color: rgba(255,255,255,0.7); font-size: 18px; max-width: 600px; margin: 0 auto; }
@media (max-width: 768px) {
  .page-hero { padding: 120px 24px 60px; }
  .page-hero p { font-size: 16px; }
}

.product-categories-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
@media (max-width: 992px) { .product-categories-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 576px) { .product-categories-grid { grid-template-columns: 1fr; } }

:root {
  --color-default: var(--black);
  --color-alt: var(--medium);
  --color-badge: var(--green);
  --color-badge-foreground: var(--white);
  --color-input-border: var(--light-gray);
  --color-input-focus: var(--green);
  --color-button-default: var(--green);
  --color-button-default-foreground: var(--white);
  --color-link: var(--green);
}

.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.content-page { padding: 100px 64px 80px; max-width: 860px; margin: 0 auto; }
.content-page h1 { margin-bottom: 24px; }
.content-page .lead { font-size: 18px; color: var(--medium); margin-bottom: 48px; border-left: 4px solid var(--green); padding-left: 24px; }
.content-page h2 { font-size: 28px; margin: 40px 0 16px; }
.content-page p { color: var(--medium); margin-bottom: 16px; }
.content-page ul { color: var(--medium); line-height: 1.8; padding-left: 20px; }

@media (max-width: 768px) {
  .content-page { padding: 80px 24px 60px; }
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--light-gray);
  border-radius: var(--radius);
  font-family: var(--font);
  font-size: 14px;
  color: var(--black);
  background: var(--white);
  margin-bottom: 16px;
  transition: border-color 0.2s;
}
.contact-form input:focus,
.contact-form textarea:focus { outline: none; border-color: var(--green); }
.contact-form textarea { height: 140px; resize: vertical; }
.contact-form label { font-size: 13px; font-weight: 600; color: var(--black); display: block; margin-bottom: 6px; }
.contact-info h4 { margin-bottom: 8px; }
.contact-info p { color: var(--medium); }
.contact-info a { color: var(--green); }

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

.contact-name-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
@media (max-width: 576px) {
  .contact-name-row { grid-template-columns: 1fr; }
}

.footer-newsletter-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
@media (max-width: 768px) {
  .footer-newsletter-inner { grid-template-columns: 1fr; gap: 0; }
  .footer-newsletter-logo { display: none; }
}

.store-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.store-card {
  background: var(--white);
  border: 1px solid var(--light-gray);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: box-shadow 0.2s;
}
.store-card:hover { box-shadow: 0 4px 20px rgba(0,0,0,0.08); }
.store-card .store-card-img {
  height: 180px;
  overflow: hidden;
  background: var(--off-white);
}
.store-card .store-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}
.store-card:hover .store-card-img img { transform: scale(1.05); }
.store-card .store-card-body { padding: 20px 24px 24px; }
.store-card h5 { font-size: 16px; font-weight: 700; margin-bottom: 4px; }
.store-card .store-addr { font-size: 13px; color: var(--medium); margin-bottom: 8px; }
.store-card .store-phone { font-size: 13px; color: var(--green); font-weight: 600; }

@media (max-width: 992px) { .store-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 576px) { .store-grid { grid-template-columns: 1fr; } }
@media (max-width: 576px) {
  .store-card .store-card-img { height: 150px; }
  .store-card .store-card-body { padding: 14px 16px 18px; }
  .store-card .btn {
    min-height: 44px;
    padding: 10px 18px !important;
    font-size: 13px !important;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }
}

.shop-filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  margin-bottom: 40px;
}
.filter-tab {
  padding: 8px 20px;
  border-radius: 999px;
  border: 1px solid var(--light-gray);
  background: var(--white);
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s;
}
.filter-tab:hover { border-color: var(--green); color: var(--green); }
.filter-tab.active { background: var(--green); color: var(--white); border-color: var(--green); }

.shop-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
}
.shop-card {
  background: var(--white);
  border: 1px solid var(--light-gray);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.25s;
}
.shop-card:hover { box-shadow: 0 8px 32px rgba(0,0,0,0.1); }
.shop-card-img {
  height: 200px;
  overflow: hidden;
  background: var(--off-white);
}
.shop-card-img img { width: 100%; height: 100%; object-fit: cover; }
.shop-card-body { padding: 20px 24px 24px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.shop-card-body h4 { font-size: 18px; font-weight: 700; }
.shop-card-subtitle { font-size: 13px; color: var(--medium); }
.shop-card-meta { display: flex; gap: 16px; font-size: 12px; color: var(--green); font-weight: 600; }
.shop-card-desc { font-size: 13px; color: var(--medium); line-height: 1.5; }
.shop-card-footer { margin-top: auto; border-top: 1px solid var(--light-gray); padding-top: 16px; }
.shop-price { font-size: 22px; font-weight: 700; color: var(--black); }
.shop-card-actions { display: flex; align-items: center; gap: 12px; margin-top: 12px; }
.shop-card-actions .add-to-cart-btn { flex: 1; }

.qty-selector {
  display: flex;
  align-items: center;
  border: 1px solid var(--light-gray);
  border-radius: 8px;
  overflow: hidden;
}
.qty-btn {
  background: var(--off-white);
  border: none;
  padding: 8px 12px;
  cursor: pointer;
  font-size: 16px;
  font-weight: 600;
  color: var(--black);
  transition: background 0.2s;
}
.qty-btn:hover { background: #e0e0e0; }
.qty-selector input {
  width: 40px;
  text-align: center;
  border: none;
  border-left: 1px solid var(--light-gray);
  border-right: 1px solid var(--light-gray);
  padding: 8px 0;
  font-size: 14px;
  font-weight: 600;
  background: var(--white);
  -moz-appearance: textfield;
}
.qty-selector input::-webkit-outer-spin-button,
.qty-selector input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }

.cart-page { max-width: 1200px; margin: 0 auto; }
.cart-empty { text-align: center; padding: 80px 24px; }
.cart-empty h2 { margin-bottom: 12px; }
.cart-empty p { color: var(--medium); margin-bottom: 24px; }
.cart-layout { display: grid; grid-template-columns: 1fr 380px; gap: 40px; align-items: start; }
.cart-item {
  display: grid;
  grid-template-columns: 80px 1fr auto auto auto;
  gap: 16px;
  align-items: center;
  padding: 16px 0;
  border-bottom: 1px solid var(--light-gray);
}
.cart-item-img {
  width: 80px;
  height: 80px;
  border-radius: 8px;
  overflow: hidden;
  background: var(--off-white);
}
.cart-item-img img { width: 100%; height: 100%; object-fit: cover; }
.cart-item-info h5 { font-size: 16px; font-weight: 700; margin-bottom: 2px; }
.cart-item-subtitle { font-size: 12px; color: var(--medium); margin-bottom: 4px; }
.cart-item-price { font-size: 14px; font-weight: 600; color: var(--green); }
.cart-item-total { font-size: 16px; font-weight: 700; white-space: nowrap; }
.cart-item-remove {
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
  color: #999;
  padding: 4px;
  transition: color 0.2s;
}
.cart-item-remove:hover { color: #d32f2f; }

.coupon-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 24px;
}
.coupon-row input {
  flex: 1;
  max-width: 200px;
  padding: 10px 14px;
  border: 1px solid var(--light-gray);
  border-radius: 8px;
  font-size: 14px;
}

.cart-summary {
  background: var(--off-white);
  border-radius: var(--radius-lg);
  padding: 28px;
  position: sticky;
  top: 100px;
}
.cart-summary h4 { font-size: 18px; margin-bottom: 20px; }
.summary-row { display: flex; justify-content: space-between; font-size: 14px; padding: 8px 0; }
.summary-total { border-top: 1px solid var(--light-gray); margin-top: 8px; padding-top: 16px; font-size: 18px; font-weight: 700; }

.checkout-form { display: flex; flex-direction: column; gap: 12px; margin: 20px 0; }
.checkout-form input,
.checkout-form select {
  padding: 12px 14px;
  border: 1px solid var(--light-gray);
  border-radius: 8px;
  font-size: 14px;
  font-family: inherit;
  width: 100%;
  box-sizing: border-box;
}
.checkout-form input:focus,
.checkout-form select:focus { outline: none; border-color: var(--green); }
.checkout-row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.province-select { appearance: auto; }

@media (max-width: 992px) {
  .shop-grid { grid-template-columns: repeat(2, 1fr); }
  .cart-layout { grid-template-columns: 1fr; }
}
@media (max-width: 576px) {
  .shop-grid { grid-template-columns: 1fr; }
  .cart-item { grid-template-columns: 60px 1fr auto; }
  .cart-item-qty { grid-column: 2 / 3; }
  .cart-item-total { grid-column: 3 / 4; }
  .cart-item-remove { grid-column: 3 / 4; }
  .checkout-row-2 { grid-template-columns: 1fr; }
}

.category-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--light-gray);
  transition: box-shadow 0.25s, transform 0.2s;
}
.category-card:hover { box-shadow: 0 8px 32px rgba(0,0,0,0.1); transform: translateY(-2px); }
.category-card { text-decoration: none; color: inherit; display: block; }
.category-card .card-img-wrap {
  height: 240px;
  overflow: hidden;
  background: var(--off-white);
  display: flex;
  align-items: center;
  justify-content: center;
}
.category-card .card-img-wrap img { width: 100%; height: 100%; object-fit: cover; }
.category-card .card-body { padding: 24px; }
.category-card h5 { font-size: 20px; font-weight: 600; margin-bottom: 8px; }
.category-card p { font-size: 14px; color: var(--medium); margin-bottom: 16px; line-height: 1.5; }

.about-page-section { background: var(--white); }
.about-page-section .content-area { max-width: 800px; margin: 0 auto; }
.about-page-section h2 { margin: 48px 0 20px; font-size: 28px; }
.about-page-section p { color: var(--medium); margin-bottom: 16px; font-size: 16px; line-height: 1.7; }

.value-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 32px;
}
.value-card {
  padding: 24px;
  background: var(--off-white);
  border-radius: var(--radius-lg);
}
.value-card h5 { font-size: 18px; font-weight: 600; margin-bottom: 8px; }
.value-card p { font-size: 14px; color: var(--medium); margin: 0; }

@media (max-width: 576px) {
  .value-grid { grid-template-columns: 1fr; }
}

.bottom-nav {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1001;
  background: var(--white);
  border-top: 1px solid var(--light-gray);
  padding: 8px 8px calc(8px + env(safe-area-inset-bottom));
  align-items: stretch;
  gap: 4px;
}
.bottom-nav-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
  padding: 6px 4px;
  border-radius: var(--radius);
  color: var(--medium);
  font-family: var(--font);
  font-size: 10px;
  font-weight: 500;
  text-decoration: none;
  text-align: center;
  transition: color 0.2s, background 0.2s;
  border: none;
  background: none;
  cursor: pointer;
}
.bottom-nav-item:hover { color: var(--green); }
.bottom-nav-item svg { flex-shrink: 0; }
.bottom-nav-cta {
  background: var(--green);
  color: var(--white);
  padding: 10px 8px;
  border-radius: var(--radius);
  font-size: 11px;
  font-weight: 600;
  transform: translateY(-6px);
  box-shadow: 0 4px 16px rgba(52,176,74,0.35);
}
.bottom-nav-cta:hover { color: var(--white); opacity: 0.9; }

@media (max-width: 768px) {
  .bottom-nav { display: flex; }
  body { padding-bottom: 72px; }
}

.age-notice {
  background: rgba(52, 176, 74, 0.08);
  border: 1px solid rgba(52, 176, 74, 0.2);
  border-radius: var(--radius-lg);
  padding: 20px 24px;
  text-align: center;
  max-width: 700px;
  margin: 0 auto 48px;
}
.age-notice p { font-size: 14px; color: var(--medium); margin: 0; }

#hush-popup-overlay {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: rgba(1, 1, 1, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  padding: 20px;
}
#hush-popup-overlay.hush-visible { opacity: 1; }
#hush-popup-card {
  background: #fff;
  border-radius: 12px;
  max-width: 420px;
  width: 100%;
  padding: 40px 36px 32px;
  position: relative;
  text-align: center;
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}
#hush-popup-close {
  position: absolute;
  top: 12px;
  right: 16px;
  background: none;
  border: none;
  font-size: 28px;
  line-height: 1;
  color: #999;
  cursor: pointer;
  padding: 4px;
}
#hush-popup-close:hover { color: var(--black); }
.hush-popup-badge {
  display: inline-block;
  background: var(--green);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 16px;
}
.hush-popup-logo {
  height: 36px;
  margin-bottom: 16px;
}
.hush-popup-headline {
  font-size: 22px;
  font-weight: 700;
  color: var(--black);
  margin: 0 0 8px;
}
.hush-popup-sub {
  font-size: 14px;
  color: var(--medium);
  margin: 0 0 20px;
  line-height: 1.5;
}
.hush-popup-timer {
  background: #f5f5f5;
  border-radius: 8px;
  padding: 12px;
  margin-bottom: 20px;
}
.hush-timer-label {
  display: block;
  font-size: 11px;
  font-weight: 600;
  color: var(--medium);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 4px;
}
.hush-timer-count {
  font-size: 20px;
  font-weight: 700;
  color: var(--black);
  font-variant-numeric: tabular-nums;
}
.hush-popup-email-wrap {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 8px;
}
#hush-popup-email {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--mid-gray);
  border-radius: var(--radius);
  font-family: var(--font);
  font-size: 15px;
  outline: none;
  transition: border-color 0.2s;
}
#hush-popup-email:focus { border-color: var(--green); }
.hush-popup-submit-btn {
  width: 100%;
  padding: 12px;
  background: var(--green);
  color: #fff;
  border: none;
  border-radius: var(--radius);
  font-family: var(--font);
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s;
}
.hush-popup-submit-btn:hover { background: var(--green-dark); }
.hush-popup-submit-btn:disabled { opacity: 0.6; cursor: not-allowed; }
.hush-popup-email-error {
  font-size: 12px;
  color: #e74c3c;
  margin: 0 0 8px;
  min-height: 16px;
}
.hush-popup-hint {
  font-size: 11px;
  color: #aaa;
  margin: 0 0 16px;
}
.hush-popup-skip {
  background: none;
  border: none;
  font-family: var(--font);
  font-size: 13px;
  color: #999;
  cursor: pointer;
  text-decoration: underline;
  padding: 0;
}
.hush-popup-skip:hover { color: var(--medium); }
.hush-popup-code-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin: 16px 0;
}
.hush-popup-code {
  font-size: 28px;
  font-weight: 700;
  letter-spacing: 3px;
  color: var(--green);
  background: rgba(52, 176, 74, 0.08);
  padding: 8px 20px;
  border-radius: var(--radius);
  border: 2px dashed var(--green);
}
.hush-popup-copy-btn {
  padding: 8px 16px;
  background: var(--green);
  color: #fff;
  border: none;
  border-radius: var(--radius);
  font-family: var(--font);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s;
}
.hush-popup-copy-btn:hover { background: var(--green-dark); }
.hush-popup-cta {
  display: inline-block;
  padding: 12px 28px;
  background: var(--green);
  color: #fff;
  border-radius: var(--radius);
  font-family: var(--font);
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  margin-bottom: 12px;
  transition: background 0.2s;
}
.hush-popup-cta:hover { background: var(--green-dark); }
