/*
Theme Name: House of Aroma
Theme URI: https://houseofaroma.com
Author: House of Aroma
Author URI: https://houseofaroma.com
Description: A premium Beauty & Wellness WooCommerce theme for House of Aroma. Clean, botanical, conversion-optimized.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.5
Requires PHP: 8.0
License: Private
WC requires at least: 8.0
WC tested up to: 9.0
Tags: woocommerce, beauty, wellness, ecommerce, custom-colors, custom-logo, custom-menu, featured-images, theme-options
Text Domain: house-of-aroma
*/

/* ============================================================
   DESIGN TOKENS
   ============================================================ */
:root {
  --hoa-green:        #80ca4e;
  --hoa-green-dark:   #5fa832;
  --hoa-green-light:  #e8f7dc;
  --hoa-green-pale:   #f7fdf2;
  --hoa-white:        #ffffff;
  --hoa-black:        #111111;
  --hoa-text:         #1a1a1a;
  --hoa-muted:        #6b7280;
  --hoa-border:       #e5e7eb;
  --hoa-sale:         #ef4444;
  --hoa-surface:      #f7fdf2;

  --font-display:     'Cormorant Garamond', Georgia, serif;
  --font-body:        'Jost', system-ui, sans-serif;

  --radius-sm:        4px;
  --radius-md:        8px;
  --radius-lg:        16px;
  --radius-pill:      100px;

  --shadow-sm:        0 1px 4px rgba(0,0,0,.06);
  --shadow-md:        0 4px 16px rgba(0,0,0,.08);
  --shadow-lg:        0 8px 32px rgba(0,0,0,.12);

  --ease:             cubic-bezier(.4,0,.2,1);
  --dur:              .25s;

  --container:        1320px;
  --gap:              clamp(16px, 4vw, 48px);
}

/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 15px; }
body {
  font-family: var(--font-body);
  color: var(--hoa-text);
  background: var(--hoa-white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
h1,h2,h3,h4,h5,h6 { font-family: var(--font-display); line-height: 1.2; font-weight: 600; }
a { color: inherit; text-decoration: none; }
img, video { max-width: 100%; height: auto; display: block; }
button, input, select, textarea { font-family: inherit; }
button { cursor: pointer; border: none; background: none; }
ul { list-style: none; }

/* ============================================================
   LAYOUT
   ============================================================ */
.hoa-container {
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gap);
}
.hoa-section        { padding-block: clamp(48px, 7vw, 96px); }
.hoa-section--sm    { padding-block: clamp(28px, 4vw, 56px); }
.hoa-section--dark  { background: var(--hoa-black); color: #fff; }
.hoa-section--tint  { background: var(--hoa-surface); }

/* ============================================================
   TYPOGRAPHY
   ============================================================ */
.hoa-label {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--hoa-green-dark);
}
.hoa-heading-xl { font-size: clamp(36px, 5.5vw, 72px); }
.hoa-heading-lg { font-size: clamp(28px, 4vw, 52px); }
.hoa-heading-md { font-size: clamp(22px, 3vw, 36px); }
.hoa-heading-sm { font-size: clamp(18px, 2vw, 24px); }

/* ============================================================
   BUTTONS
   ============================================================ */
.hoa-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 30px;
  border-radius: var(--radius-pill);
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;
  transition: background var(--dur) var(--ease), transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
  white-space: nowrap;
  border: none;
  cursor: pointer;
}
.hoa-btn--primary   { background: var(--hoa-green); color: #fff; }
.hoa-btn--primary:hover { background: var(--hoa-green-dark); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.hoa-btn--outline   { background: transparent; color: var(--hoa-green-dark); border: 1.5px solid var(--hoa-green); }
.hoa-btn--outline:hover { background: var(--hoa-green-light); }
.hoa-btn--dark      { background: var(--hoa-black); color: #fff; }
.hoa-btn--dark:hover { background: #333; transform: translateY(-2px); }
.hoa-btn--ghost     { background: rgba(255,255,255,.15); color: #fff; border: 1.5px solid rgba(255,255,255,.4); backdrop-filter: blur(8px); }
.hoa-btn--ghost:hover { background: rgba(255,255,255,.25); }
.hoa-btn--sm        { padding: 9px 20px; font-size: 11.5px; }

/* ============================================================
   BADGES
   ============================================================ */
.hoa-badge {
  display: inline-block;
  padding: 3px 10px;
  border-radius: var(--radius-pill);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.hoa-badge--sale    { background: var(--hoa-sale); color: #fff; }
.hoa-badge--new     { background: var(--hoa-green); color: #fff; }
.hoa-badge--hot     { background: #f97316; color: #fff; }
.hoa-badge--sold    { background: #94a3b8; color: #fff; }

/* ============================================================
   VISUALLY HIDDEN
   ============================================================ */
.sr-only {
  position: absolute; width: 1px; height: 1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap;
}

/* ============================================================
   ANNOUNCEMENT BAR
   ============================================================ */
.hoa-announcement {
  background: var(--hoa-green);
  color: #fff;
  text-align: center;
  padding: 10px 16px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: .02em;
}
.hoa-announcement a { color: #fff; text-decoration: underline; text-underline-offset: 2px; }

/* ============================================================
   HEADER
   ============================================================ */
.hoa-header {
  position: sticky;
  top: 0;
  z-index: 200;
  background: #fff;
  border-bottom: 1px solid var(--hoa-border);
  box-shadow: var(--shadow-sm);
}
.hoa-header-inner {
  display: flex;
  align-items: center;
  gap: 20px;
  height: 72px;
}
.hoa-logo {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--hoa-green-dark);
  text-decoration: none;
}
.hoa-logo-leaf {
  width: 28px; height: 28px;
  background: var(--hoa-green);
  border-radius: 50% 0 50% 0;
  flex-shrink: 0;
}
.hoa-logo img { height: 44px; width: auto; }

/* Nav */
.hoa-nav { flex: 1; display: flex; justify-content: center; }
.hoa-nav > ul { display: flex; gap: 4px; align-items: center; }
.hoa-nav > ul > li { position: relative; }
.hoa-nav-link {
  display: flex; align-items: center; gap: 4px;
  padding: 8px 14px;
  font-size: 13.5px; font-weight: 500;
  border-radius: var(--radius-sm);
  transition: background var(--dur), color var(--dur);
}
.hoa-nav-link:hover,
.hoa-nav-link.active { background: var(--hoa-green-light); color: var(--hoa-green-dark); }
.hoa-nav-link svg { width: 11px; height: 11px; transition: transform var(--dur); }
.hoa-nav > ul > li:hover .hoa-nav-link svg { transform: rotate(180deg); }

/* Dropdown */
.hoa-dropdown {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  background: #fff;
  border: 1px solid var(--hoa-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 16px;
  min-width: 200px;
  display: none;
  flex-direction: column;
  gap: 4px;
  z-index: 300;
}
.hoa-nav > ul > li:hover .hoa-dropdown { display: flex; }
.hoa-dropdown a {
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  font-size: 13.5px;
  color: var(--hoa-muted);
  transition: background var(--dur), color var(--dur), padding var(--dur);
}
.hoa-dropdown a:hover { background: var(--hoa-green-light); color: var(--hoa-green-dark); padding-left: 18px; }

/* Header icons */
.hoa-header-icons { display: flex; align-items: center; gap: 4px; margin-left: auto; flex-shrink: 0; }
.hoa-icon-btn {
  width: 40px; height: 40px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  position: relative;
  color: var(--hoa-text);
  transition: background var(--dur), color var(--dur);
}
.hoa-icon-btn:hover { background: var(--hoa-green-light); color: var(--hoa-green-dark); }
.hoa-icon-btn svg { width: 20px; height: 20px; }
.hoa-cart-count {
  position: absolute; top: 2px; right: 2px;
  width: 18px; height: 18px;
  background: var(--hoa-green); color: #fff;
  font-size: 10px; font-weight: 700;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.hoa-header-cta { margin-left: 8px; }

/* Mobile hamburger */
.hoa-hamburger {
  display: none;
  flex-direction: column; gap: 5px;
  width: 40px; height: 40px;
  align-items: center; justify-content: center;
  border: 1.5px solid var(--hoa-border);
  border-radius: 50%;
  padding: 10px;
}
.hoa-hamburger span {
  display: block; width: 18px; height: 2px;
  background: var(--hoa-text); border-radius: 2px;
  transition: transform var(--dur), opacity var(--dur);
}

/* ============================================================
   MOBILE MENU DRAWER
   ============================================================ */
.hoa-mobile-menu {
  position: fixed; inset: 0; z-index: 500;
  background: #fff;
  transform: translateX(-100%);
  transition: transform .35s var(--ease);
  overflow-y: auto;
  padding: 24px;
}
.hoa-mobile-menu.open { transform: translateX(0); }
.hoa-mobile-menu-header {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 32px;
}
.hoa-mobile-nav a {
  display: block;
  padding: 14px 0;
  font-size: 20px;
  font-family: var(--font-display);
  border-bottom: 1px solid var(--hoa-border);
}

/* ============================================================
   HERO SLIDER
   ============================================================ */
.hoa-hero { position: relative; overflow: hidden; background: var(--hoa-surface); }
.hoa-hero-slides { display: flex; transition: transform .65s var(--ease); }
.hoa-hero-slide {
  min-width: 100%; position: relative;
  aspect-ratio: 16/7;
  display: flex; align-items: center;
}
@media (max-width: 768px) { .hoa-hero-slide { aspect-ratio: 3/4; } }
.hoa-hero-img {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover;
}
.hoa-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(0,0,0,.5) 0%, transparent 65%);
}
.hoa-hero-content {
  position: relative; z-index: 2;
  max-width: var(--container); margin-inline: auto;
  padding-inline: var(--gap); width: 100%;
}
.hoa-hero-eyebrow {
  display: inline-block; margin-bottom: 16px;
  padding: 5px 16px;
  border-radius: var(--radius-pill);
  background: rgba(128,202,78,.2);
  border: 1px solid rgba(128,202,78,.5);
  backdrop-filter: blur(8px);
  font-size: 11px; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--hoa-green);
}
.hoa-hero-title {
  font-size: clamp(36px, 5.5vw, 72px);
  color: #fff; max-width: 560px;
  margin-bottom: 16px;
  text-shadow: 0 2px 12px rgba(0,0,0,.25);
}
.hoa-hero-sub {
  color: rgba(255,255,255,.88);
  font-size: 16px; max-width: 400px;
  margin-bottom: 28px; line-height: 1.65;
}
.hoa-hero-btns { display: flex; gap: 12px; flex-wrap: wrap; }

/* Arrows */
.hoa-hero-arrow {
  position: absolute; top: 50%; transform: translateY(-50%);
  z-index: 10; width: 48px; height: 48px;
  border-radius: 50%;
  background: rgba(255,255,255,.2); backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.3);
  display: flex; align-items: center; justify-content: center;
  color: #fff; cursor: pointer;
  transition: background var(--dur);
}
.hoa-hero-arrow:hover { background: var(--hoa-green); border-color: var(--hoa-green); }
.hoa-hero-arrow svg { width: 20px; height: 20px; }
.hoa-hero-arrow--prev { left: 20px; }
.hoa-hero-arrow--next { right: 20px; }

/* Dots */
.hoa-hero-dots {
  position: absolute; bottom: 20px; left: 50%; transform: translateX(-50%);
  display: flex; gap: 8px; z-index: 10;
}
.hoa-hero-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: rgba(255,255,255,.4); border: none; cursor: pointer;
  transition: background var(--dur), width var(--dur);
}
.hoa-hero-dot.active { background: var(--hoa-green); width: 24px; border-radius: var(--radius-pill); }

/* ============================================================
   CATEGORY PILLS SCROLL
   ============================================================ */
.hoa-pills-wrap { border-bottom: 1px solid var(--hoa-border); padding-block: 16px; overflow: hidden; }
.hoa-pills-track {
  display: flex; gap: 10px;
  overflow-x: auto; scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
  padding-inline: var(--gap);
  max-width: var(--container); margin-inline: auto;
}
.hoa-pills-track::-webkit-scrollbar { display: none; }
.hoa-pill {
  flex-shrink: 0;
  display: flex; flex-direction: column; align-items: center; gap: 6px;
  padding: 10px 18px;
  border: 1.5px solid var(--hoa-border); border-radius: var(--radius-md);
  background: #fff;
  font-size: 12px; font-weight: 600;
  color: var(--hoa-text);
  white-space: nowrap;
  transition: border-color var(--dur), background var(--dur), color var(--dur);
  text-decoration: none;
}
.hoa-pill:hover,
.hoa-pill.current { border-color: var(--hoa-green); background: var(--hoa-green-light); color: var(--hoa-green-dark); }
.hoa-pill img { width: 40px; height: 40px; border-radius: 50%; object-fit: cover; background: var(--hoa-surface); }

/* ============================================================
   PRODUCT CARDS
   ============================================================ */
.hoa-product-card {
  display: flex; flex-direction: column; gap: 10px;
  border-radius: var(--radius-md); overflow: hidden;
  background: #fff;
  transition: box-shadow var(--dur), transform var(--dur);
}
.hoa-product-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.hoa-product-card-media {
  position: relative; overflow: hidden;
  border-radius: var(--radius-md);
  background: var(--hoa-surface);
  aspect-ratio: 3/4;
}
.hoa-product-card-img {
  width: 100%; height: 100%; object-fit: cover;
  position: absolute; inset: 0;
  transition: opacity .4s ease, transform .4s ease;
}
.hoa-product-card-img--hover { opacity: 0; }
.hoa-product-card-media:hover .hoa-product-card-img:not(.hoa-product-card-img--hover) { opacity: 0; transform: scale(1.04); }
.hoa-product-card-media:hover .hoa-product-card-img--hover { opacity: 1; }

.hoa-product-card-badges {
  position: absolute; top: 10px; left: 10px;
  display: flex; flex-direction: column; gap: 5px; z-index: 2;
}
.hoa-product-card-actions {
  position: absolute; bottom: 10px; left: 10px; right: 10px;
  opacity: 0; transform: translateY(8px);
  transition: opacity var(--dur), transform var(--dur); z-index: 2;
}
.hoa-product-card-media:hover .hoa-product-card-actions { opacity: 1; transform: translateY(0); }
.hoa-product-card-add { width: 100%; justify-content: center; font-size: 12px; padding: 10px; }

.hoa-product-card-info { padding: 0 2px 8px; }
.hoa-product-card-vendor { font-size: 11px; text-transform: uppercase; letter-spacing: .07em; color: var(--hoa-green-dark); font-weight: 600; margin-bottom: 2px; }
.hoa-product-card-cat a { font-size: 11px; color: var(--hoa-muted); }
.hoa-product-card-cat a:hover { color: var(--hoa-green-dark); }
.hoa-product-card-title { font-size: 14.5px; font-weight: 500; font-family: var(--font-body); margin-bottom: 6px; line-height: 1.35; }
.hoa-product-card-title a:hover { color: var(--hoa-green-dark); }
.hoa-product-card-stars { display: flex; align-items: center; gap: 2px; font-size: 11px; color: var(--hoa-muted); margin-bottom: 6px; }
.hoa-product-card-stars svg { width: 12px; height: 12px; }
.hoa-product-card-price { display: flex; align-items: center; gap: 8px; }
.hoa-price-regular, .hoa-price-sale { font-weight: 700; font-size: 15px; }
.hoa-price-sale { color: var(--hoa-sale); }
.hoa-price-compare { font-size: 12.5px; color: var(--hoa-muted); text-decoration: line-through; }

/* ============================================================
   PRODUCT GRID SECTION
   ============================================================ */
.hoa-grid-header { display: flex; align-items: flex-end; justify-content: space-between; gap: 20px; margin-bottom: 24px; flex-wrap: wrap; }
.hoa-grid-tabs { display: flex; gap: 4px; border-bottom: 2px solid var(--hoa-border); margin-bottom: 28px; }
.hoa-grid-tab {
  padding: 10px 22px;
  font-size: 13.5px; font-weight: 600;
  color: var(--hoa-muted); background: none; border: none; cursor: pointer;
  border-bottom: 2px solid transparent; margin-bottom: -2px;
  transition: color var(--dur), border-color var(--dur);
}
.hoa-grid-tab.active { color: var(--hoa-green-dark); border-bottom-color: var(--hoa-green); }
.hoa-grid-tab:hover { color: var(--hoa-text); }
.hoa-product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
@media (max-width: 1024px) { .hoa-product-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 768px)  { .hoa-product-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; } }
.hoa-grid-panel { display: none; }
.hoa-grid-panel.active { display: block; }
.hoa-view-all {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 13px; font-weight: 600;
  color: var(--hoa-green-dark);
  text-decoration: underline; text-underline-offset: 3px;
}
.hoa-view-all:hover { color: var(--hoa-green); }
.hoa-section-footer { text-align: center; margin-top: 40px; }

/* ============================================================
   TRUST BAR
   ============================================================ */
.hoa-trust { background: var(--hoa-surface); border-block: 1px solid var(--hoa-border); }
.hoa-trust-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 24px; }
@media (max-width: 900px)  { .hoa-trust-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 600px)  { .hoa-trust-grid { grid-template-columns: repeat(2, 1fr); } }
.hoa-trust-item { display: flex; flex-direction: column; align-items: center; text-align: center; gap: 10px; padding: 20px 12px; }
.hoa-trust-icon { width: 48px; height: 48px; border-radius: 50%; background: var(--hoa-green-light); display: flex; align-items: center; justify-content: center; color: var(--hoa-green-dark); }
.hoa-trust-icon svg { width: 22px; height: 22px; }
.hoa-trust-item h4 { font-size: 13.5px; font-weight: 600; font-family: var(--font-body); }
.hoa-trust-item p  { font-size: 12px; color: var(--hoa-muted); }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.hoa-reviews-track-wrap { overflow: hidden; }
.hoa-reviews-track { display: flex; gap: 20px; transition: transform .5s var(--ease); }
.hoa-review-card {
  flex: 0 0 calc(33.33% - 14px);
  background: #fff; border-radius: var(--radius-lg);
  padding: 28px; border: 1px solid var(--hoa-border);
  display: flex; flex-direction: column; gap: 14px;
}
@media (max-width: 900px) { .hoa-review-card { flex: 0 0 calc(50% - 10px); } }
@media (max-width: 600px) { .hoa-review-card { flex: 0 0 100%; } }
.hoa-review-stars { display: flex; gap: 3px; }
.hoa-review-stars svg { width: 14px; height: 14px; }
.hoa-review-text { font-size: 14px; line-height: 1.7; font-style: italic; flex: 1; }
.hoa-review-product a { font-size: 12px; color: var(--hoa-green-dark); font-weight: 600; text-decoration: underline; text-underline-offset: 2px; }
.hoa-review-author { display: flex; align-items: center; gap: 12px; padding-top: 14px; border-top: 1px solid var(--hoa-border); }
.hoa-review-avatar { width: 40px; height: 40px; border-radius: 50%; object-fit: cover; background: var(--hoa-green-light); flex-shrink: 0; }
.hoa-review-name { font-weight: 600; font-size: 13.5px; }
.hoa-review-label { font-size: 11px; color: var(--hoa-green-dark); font-weight: 600; text-transform: uppercase; letter-spacing: .06em; }
.hoa-reviews-nav { display: flex; justify-content: center; gap: 10px; margin-top: 32px; }
.hoa-reviews-btn {
  width: 42px; height: 42px; border-radius: 50%;
  border: 1.5px solid var(--hoa-border);
  display: flex; align-items: center; justify-content: center;
  transition: background var(--dur), border-color var(--dur), color var(--dur);
  color: var(--hoa-text);
}
.hoa-reviews-btn:hover { background: var(--hoa-green); border-color: var(--hoa-green); color: #fff; }
.hoa-reviews-btn svg { width: 18px; height: 18px; }

/* ============================================================
   FAQ ACCORDION
   ============================================================ */
.hoa-faq-inner { max-width: 720px; margin-inline: auto; }
.hoa-faq-item { border-bottom: 1px solid var(--hoa-border); }
.hoa-faq-q {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding-block: 20px;
  font-size: 15px; font-weight: 600;
  width: 100%; text-align: left; background: none; border: none;
  cursor: pointer; color: var(--hoa-text);
  transition: color var(--dur);
}
.hoa-faq-q:hover { color: var(--hoa-green-dark); }
.hoa-faq-icon {
  width: 26px; height: 26px; border-radius: 50%;
  background: var(--hoa-green-light);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
  transition: background var(--dur), transform var(--dur);
  color: var(--hoa-green-dark);
}
.hoa-faq-icon svg { width: 14px; height: 14px; }
.hoa-faq-item.open .hoa-faq-icon { background: var(--hoa-green); color: #fff; transform: rotate(45deg); }
.hoa-faq-body { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .3s ease; }
.hoa-faq-item.open .hoa-faq-body { grid-template-rows: 1fr; }
.hoa-faq-body-inner { overflow: hidden; }
.hoa-faq-item.open .hoa-faq-body-inner { padding-bottom: 20px; }
.hoa-faq-body p { font-size: 14px; color: var(--hoa-muted); line-height: 1.75; }

/* ============================================================
   FOOTER
   ============================================================ */
.hoa-footer { background: #111; color: rgba(255,255,255,.75); }
.hoa-footer-top {
  display: grid;
  grid-template-columns: 280px 1fr 1fr 1fr;
  gap: 48px;
  padding-block: clamp(48px, 7vw, 80px);
  border-bottom: 1px solid rgba(255,255,255,.08);
}
@media (max-width: 1024px) { .hoa-footer-top { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px)  { .hoa-footer-top { grid-template-columns: 1fr; } }
.hoa-footer-logo { display: flex; align-items: center; gap: 8px; color: #fff; font-family: var(--font-display); font-size: 22px; font-weight: 700; margin-bottom: 14px; }
.hoa-footer-leaf { width: 24px; height: 24px; background: var(--hoa-green); border-radius: 50% 0 50% 0; }
.hoa-footer-tagline { font-size: 13.5px; line-height: 1.65; margin-bottom: 20px; }
.hoa-footer-contact { display: flex; flex-direction: column; gap: 6px; font-size: 13px; margin-bottom: 20px; }
.hoa-footer-contact a:hover { color: var(--hoa-green); }
.hoa-footer-socials { display: flex; gap: 10px; }
.hoa-footer-social {
  width: 36px; height: 36px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,.15);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.6);
  transition: background var(--dur), border-color var(--dur), color var(--dur);
}
.hoa-footer-social:hover { background: var(--hoa-green); border-color: var(--hoa-green); color: #fff; }
.hoa-footer-social svg { width: 16px; height: 16px; }
.hoa-footer-col h4 { font-size: 11px; text-transform: uppercase; letter-spacing: .1em; color: #fff; font-weight: 700; margin-bottom: 16px; font-family: var(--font-body); }
.hoa-footer-col ul { display: flex; flex-direction: column; gap: 8px; }
.hoa-footer-col ul li a { font-size: 13.5px; color: rgba(255,255,255,.6); transition: color var(--dur), padding var(--dur); }
.hoa-footer-col ul li a:hover { color: var(--hoa-green); padding-left: 4px; }
/* Newsletter */
.hoa-newsletter p { font-size: 13px; color: rgba(255,255,255,.6); margin-bottom: 12px; }
.hoa-newsletter-form { display: flex; gap: 8px; }
.hoa-newsletter-form input[type="email"] {
  flex: 1; padding: 10px 16px;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(255,255,255,.15);
  background: rgba(255,255,255,.08); color: #fff; font-size: 13px; outline: none;
}
.hoa-newsletter-form input[type="email"]:focus { border-color: var(--hoa-green); }
.hoa-newsletter-form input[type="email"]::placeholder { color: rgba(255,255,255,.35); }
.hoa-newsletter-form button { padding: 10px 20px; background: var(--hoa-green); color: #fff; border-radius: var(--radius-pill); font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .05em; border: none; cursor: pointer; transition: background var(--dur); }
.hoa-newsletter-form button:hover { background: var(--hoa-green-dark); }
.hoa-newsletter-note { font-size: 11px; color: rgba(255,255,255,.35); margin-top: 8px; }
.hoa-newsletter-note a { color: rgba(255,255,255,.55); text-decoration: underline; }
/* Bottom */
.hoa-footer-bottom {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding-block: 20px; flex-wrap: wrap;
}
.hoa-footer-copy { font-size: 12.5px; color: rgba(255,255,255,.35); }
.hoa-footer-copy a { color: var(--hoa-green); }
.hoa-footer-legal { display: flex; gap: 16px; }
.hoa-footer-legal a { font-size: 12px; color: rgba(255,255,255,.35); transition: color var(--dur); }
.hoa-footer-legal a:hover { color: rgba(255,255,255,.7); }
.hoa-payment-icons { display: flex; gap: 8px; }
.hoa-payment-icon { background: rgba(255,255,255,.1); border-radius: 4px; padding: 3px 8px; font-size: 11px; font-weight: 600; color: rgba(255,255,255,.5); }

/* ============================================================
   WOOCOMMERCE OVERRIDES
   ============================================================ */
.woocommerce .woocommerce-notices-wrapper { max-width: var(--container); margin-inline: auto; padding-inline: var(--gap); }

/* Shop page */
.woocommerce ul.products { display: grid !important; grid-template-columns: repeat(4, 1fr); gap: 20px; margin: 0 !important; padding: 0 !important; }
@media (max-width: 1024px) { .woocommerce ul.products { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 768px)  { .woocommerce ul.products { grid-template-columns: repeat(2, 1fr); gap: 12px; } }
.woocommerce ul.products li.product { float: none !important; width: auto !important; margin: 0 !important; }
.woocommerce ul.products li.product a img { border-radius: var(--radius-md); }
.woocommerce ul.products li.product .price { color: var(--hoa-text); font-weight: 700; }
.woocommerce ul.products li.product .price del { color: var(--hoa-muted); font-size: 13px; }
.woocommerce ul.products li.product .price ins { color: var(--hoa-sale); text-decoration: none; }

/* Add to cart button */
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button,
.woocommerce #respond input#submit {
  background: var(--hoa-green) !important;
  color: #fff !important;
  border-radius: var(--radius-pill) !important;
  font-weight: 700 !important;
  letter-spacing: .04em !important;
  font-size: 12.5px !important;
  text-transform: uppercase !important;
  border: none !important;
  padding: 12px 24px !important;
  transition: background var(--dur) !important;
}
.woocommerce a.button:hover,
.woocommerce button.button:hover,
.woocommerce input.button:hover,
.woocommerce #respond input#submit:hover {
  background: var(--hoa-green-dark) !important;
  color: #fff !important;
}
.woocommerce a.button.alt,
.woocommerce button.button.alt { background: var(--hoa-green) !important; }

/* Sale badge */
.woocommerce span.onsale {
  background: var(--hoa-sale) !important;
  border-radius: var(--radius-pill) !important;
  font-size: 11px !important; font-weight: 700 !important;
  min-width: auto !important; min-height: auto !important;
  line-height: 1 !important; padding: 4px 10px !important;
}

/* Single product */
.woocommerce div.product .woocommerce-tabs ul.tabs li.active a,
.woocommerce div.product .woocommerce-tabs ul.tabs li a:hover { color: var(--hoa-green-dark) !important; }
.woocommerce div.product .woocommerce-tabs ul.tabs li.active { border-color: var(--hoa-green) !important; }

/* Checkout & cart */
.woocommerce form .form-row label { font-size: 13px; font-weight: 600; }
.woocommerce form .form-row input.input-text,
.woocommerce form .form-row select {
  border: 1.5px solid var(--hoa-border) !important;
  border-radius: var(--radius-md) !important;
  padding: 10px 14px !important;
  font-size: 14px !important;
  transition: border-color var(--dur);
}
.woocommerce form .form-row input.input-text:focus,
.woocommerce form .form-row select:focus { border-color: var(--hoa-green) !important; outline: none !important; }

/* Star ratings */
.woocommerce .star-rating span::before,
.woocommerce .star-rating::before { color: var(--hoa-green) !important; }

/* ============================================================
   CART DRAWER
   ============================================================ */
.hoa-cart-overlay {
  position: fixed; inset: 0; background: rgba(0,0,0,.4);
  z-index: 998; opacity: 0; pointer-events: none;
  transition: opacity var(--dur);
}
.hoa-cart-overlay.open { opacity: 1; pointer-events: auto; }
.hoa-cart-drawer {
  position: fixed; top: 0; right: 0;
  height: 100%; width: min(420px, 100vw);
  background: #fff; z-index: 999;
  display: flex; flex-direction: column;
  transform: translateX(100%);
  transition: transform .35s var(--ease);
  box-shadow: var(--shadow-lg);
}
.hoa-cart-drawer.open { transform: translateX(0); }
.hoa-cart-drawer-hd {
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 24px; border-bottom: 1px solid var(--hoa-border);
}
.hoa-cart-drawer-hd h2 { font-size: 18px; font-weight: 700; }
.hoa-cart-close {
  width: 36px; height: 36px; border-radius: 50%;
  border: 1.5px solid var(--hoa-border);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: background var(--dur), color var(--dur);
}
.hoa-cart-close:hover { background: var(--hoa-green-light); color: var(--hoa-green-dark); }
.hoa-cart-close svg { width: 18px; height: 18px; }
.hoa-cart-drawer-body { flex: 1; overflow-y: auto; padding: 20px 24px; }
.hoa-cart-empty { text-align: center; padding: 60px 0; color: var(--hoa-muted); }
.hoa-cart-empty svg { width: 56px; height: 56px; margin: 0 auto 16px; opacity: .25; }
.hoa-cart-empty h3 { font-size: 18px; margin-bottom: 8px; }
.hoa-cart-empty p { font-size: 14px; margin-bottom: 20px; }
.hoa-cart-drawer-ft { padding: 20px 24px; border-top: 1px solid var(--hoa-border); }
.hoa-cart-subtotal { display: flex; justify-content: space-between; font-size: 16px; font-weight: 700; margin-bottom: 16px; }
.hoa-cart-note { font-size: 12px; color: var(--hoa-muted); text-align: center; margin-bottom: 14px; }
.hoa-checkout-btn {
  display: block; width: 100%; padding: 16px;
  background: var(--hoa-green); color: #fff; border: none; border-radius: var(--radius-pill);
  text-align: center; font-weight: 700; font-size: 14px;
  letter-spacing: .05em; text-transform: uppercase;
  cursor: pointer; text-decoration: none;
  transition: background var(--dur);
}
.hoa-checkout-btn:hover { background: var(--hoa-green-dark); color: #fff; }
.hoa-view-cart-btn {
  display: block; width: 100%; padding: 12px; margin-top: 8px;
  border: 1.5px solid var(--hoa-border); border-radius: var(--radius-pill);
  text-align: center; font-weight: 600; font-size: 13px;
  transition: border-color var(--dur), background var(--dur), color var(--dur);
  text-decoration: none; color: var(--hoa-text);
}
.hoa-view-cart-btn:hover { border-color: var(--hoa-green); background: var(--hoa-green-light); color: var(--hoa-green-dark); }

/* ============================================================
   SEARCH MODAL
   ============================================================ */
.hoa-search-modal {
  position: fixed; inset: 0; z-index: 997;
  background: rgba(255,255,255,.97); backdrop-filter: blur(8px);
  display: flex; flex-direction: column;
  align-items: center; padding-top: 120px;
  opacity: 0; pointer-events: none;
  transition: opacity .2s ease;
}
.hoa-search-modal.open { opacity: 1; pointer-events: auto; }
.hoa-search-inner { width: 100%; max-width: 640px; padding-inline: 24px; }
.hoa-search-form {
  display: flex; align-items: center; gap: 12px;
  border-bottom: 2px solid var(--hoa-green); padding-bottom: 12px; margin-bottom: 28px;
}
.hoa-search-form svg { width: 24px; height: 24px; color: var(--hoa-green); flex-shrink: 0; }
.hoa-search-form input {
  flex: 1; border: none; outline: none;
  font-size: 22px; color: var(--hoa-text);
  background: transparent; font-family: var(--font-display);
}
.hoa-search-form input::placeholder { color: var(--hoa-border); }
.hoa-search-close {
  position: absolute; top: 24px; right: 24px;
  width: 44px; height: 44px; border-radius: 50%;
  border: 1.5px solid var(--hoa-border);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: background var(--dur);
}
.hoa-search-close:hover { background: var(--hoa-green-light); }
.hoa-search-close svg { width: 18px; height: 18px; }
.hoa-search-popular h4 { font-size: 11px; text-transform: uppercase; letter-spacing: .1em; color: var(--hoa-muted); font-weight: 600; margin-bottom: 12px; }
.hoa-search-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.hoa-search-tag {
  padding: 6px 16px; border: 1.5px solid var(--hoa-border);
  border-radius: var(--radius-pill); font-size: 13px;
  transition: border-color var(--dur), background var(--dur), color var(--dur);
}
.hoa-search-tag:hover { border-color: var(--hoa-green); background: var(--hoa-green-light); color: var(--hoa-green-dark); }

/* ============================================================
   SINGLE PRODUCT PAGE
   ============================================================ */
.hoa-single-product { padding-block: clamp(32px, 5vw, 64px); }
.hoa-single-layout { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 5vw, 64px); align-items: start; }
@media (max-width: 768px) { .hoa-single-layout { grid-template-columns: 1fr; } }
.hoa-product-gallery { position: sticky; top: 90px; }
.hoa-gallery-main { border-radius: var(--radius-lg); overflow: hidden; background: var(--hoa-surface); aspect-ratio: 1; margin-bottom: 12px; }
.hoa-gallery-main img { width: 100%; height: 100%; object-fit: cover; }
.hoa-gallery-thumbs { display: flex; gap: 8px; overflow-x: auto; scrollbar-width: none; }
.hoa-gallery-thumbs::-webkit-scrollbar { display: none; }
.hoa-gallery-thumb { width: 72px; height: 72px; border-radius: var(--radius-sm); overflow: hidden; border: 2px solid transparent; cursor: pointer; flex-shrink: 0; transition: border-color var(--dur); background: var(--hoa-surface); }
.hoa-gallery-thumb.active { border-color: var(--hoa-green); }
.hoa-gallery-thumb img { width: 100%; height: 100%; object-fit: cover; }
.hoa-product-info { display: flex; flex-direction: column; gap: 20px; }
.hoa-product-vendor { font-size: 12px; text-transform: uppercase; letter-spacing: .1em; color: var(--hoa-green-dark); font-weight: 700; }
.hoa-product-title { font-size: clamp(24px, 3.5vw, 40px); line-height: 1.15; }
.hoa-product-rating { display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--hoa-muted); }
.hoa-product-rating-stars { display: flex; gap: 2px; }
.hoa-product-rating-stars svg { width: 14px; height: 14px; }
.hoa-product-price-wrap { display: flex; align-items: center; gap: 12px; }
.hoa-product-price { font-size: 28px; font-weight: 700; font-family: var(--font-display); }
.hoa-product-compare { font-size: 18px; color: var(--hoa-muted); text-decoration: line-through; }
.hoa-product-save { background: var(--hoa-sale); color: #fff; padding: 3px 12px; border-radius: var(--radius-pill); font-size: 12px; font-weight: 700; }
.hoa-product-divider { border: none; border-top: 1px solid var(--hoa-border); margin-block: 4px; }
.hoa-variant-label { font-size: 13px; font-weight: 600; margin-bottom: 8px; }
.hoa-variant-label span { color: var(--hoa-muted); font-weight: 400; }
.hoa-variant-options { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 16px; }
.hoa-variant-opt {
  padding: 8px 18px; border: 1.5px solid var(--hoa-border);
  border-radius: var(--radius-pill); font-size: 13px; font-weight: 500;
  cursor: pointer; transition: border-color var(--dur), background var(--dur), color var(--dur); background: #fff;
}
.hoa-variant-opt:hover { border-color: var(--hoa-green); color: var(--hoa-green-dark); }
.hoa-variant-opt.selected { border-color: var(--hoa-green); background: var(--hoa-green-light); color: var(--hoa-green-dark); font-weight: 600; }
.hoa-atc-row { display: flex; gap: 12px; align-items: center; flex-wrap: wrap; }
.hoa-qty { display: flex; align-items: center; border: 1.5px solid var(--hoa-border); border-radius: var(--radius-pill); height: 50px; }
.hoa-qty-btn { width: 44px; height: 100%; font-size: 18px; background: none; border: none; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: color var(--dur); color: var(--hoa-text); }
.hoa-qty-btn:hover { color: var(--hoa-green-dark); }
.hoa-qty input { width: 48px; text-align: center; border: none; font-size: 15px; font-weight: 700; background: none; color: var(--hoa-text); -moz-appearance: textfield; }
.hoa-qty input::-webkit-outer-spin-button,
.hoa-qty input::-webkit-inner-spin-button { -webkit-appearance: none; }
.hoa-atc-btn {
  flex: 1; min-width: 200px; height: 50px;
  border-radius: var(--radius-pill); background: var(--hoa-green); color: #fff;
  border: none; font-size: 14px; font-weight: 700; letter-spacing: .04em; text-transform: uppercase;
  cursor: pointer; display: flex; align-items: center; justify-content: center; gap: 8px;
  transition: background var(--dur), transform var(--dur), box-shadow var(--dur);
}
.hoa-atc-btn:hover { background: var(--hoa-green-dark); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.hoa-atc-btn:disabled { opacity: .5; cursor: not-allowed; transform: none; }
.hoa-wishlist-btn { width: 50px; height: 50px; border: 1.5px solid var(--hoa-border); border-radius: 50%; display: flex; align-items: center; justify-content: center; transition: border-color var(--dur), color var(--dur); }
.hoa-wishlist-btn:hover { border-color: #ef4444; color: #ef4444; }
.hoa-wishlist-btn svg { width: 20px; height: 20px; }
.hoa-product-meta-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.hoa-product-meta-tag { display: flex; align-items: center; gap: 6px; font-size: 12px; font-weight: 600; color: var(--hoa-green-dark); background: var(--hoa-green-light); padding: 6px 14px; border-radius: var(--radius-pill); }
.hoa-product-meta-tag svg { width: 14px; height: 14px; }

/* ============================================================
   SHOP / COLLECTION PAGE
   ============================================================ */
.hoa-shop-layout { display: grid; grid-template-columns: 260px 1fr; gap: 40px; }
@media (max-width: 900px) { .hoa-shop-layout { grid-template-columns: 1fr; } }
.hoa-shop-sidebar { position: sticky; top: 90px; }
@media (max-width: 900px) { .hoa-shop-sidebar { display: none; } }
.hoa-filter-group { margin-bottom: 28px; padding-bottom: 28px; border-bottom: 1px solid var(--hoa-border); }
.hoa-filter-group:last-child { border-bottom: none; }
.hoa-filter-title { font-size: 11.5px; text-transform: uppercase; letter-spacing: .1em; font-weight: 700; margin-bottom: 14px; font-family: var(--font-body); }
.hoa-filter-opts { display: flex; flex-direction: column; gap: 8px; }
.hoa-filter-opt { display: flex; align-items: center; gap: 10px; font-size: 13.5px; cursor: pointer; }
.hoa-filter-opt input[type="checkbox"] { width: 16px; height: 16px; accent-color: var(--hoa-green); }
.hoa-filter-opt:hover { color: var(--hoa-green-dark); }
.hoa-shop-toolbar { display: flex; align-items: center; justify-content: space-between; gap: 16px; margin-bottom: 24px; flex-wrap: wrap; }
.hoa-shop-count { font-size: 13.5px; color: var(--hoa-muted); }
.hoa-sort-wrap { display: flex; align-items: center; gap: 8px; font-size: 13px; }
.hoa-sort-wrap label { font-weight: 600; }
.hoa-sort-wrap select { padding: 8px 14px; border: 1.5px solid var(--hoa-border); border-radius: var(--radius-pill); font-size: 13px; background: #fff; cursor: pointer; outline: none; transition: border-color var(--dur); }
.hoa-sort-wrap select:focus { border-color: var(--hoa-green); }
.hoa-pagination { display: flex; justify-content: center; gap: 6px; margin-top: 48px; }
.hoa-page-btn { width: 40px; height: 40px; border-radius: var(--radius-sm); border: 1.5px solid var(--hoa-border); display: flex; align-items: center; justify-content: center; font-size: 14px; font-weight: 600; transition: background var(--dur), border-color var(--dur), color var(--dur); }
.hoa-page-btn:hover,
.hoa-page-btn.current { background: var(--hoa-green); color: #fff; border-color: var(--hoa-green); }

/* ============================================================
   SCROLL REVEAL
   ============================================================ */
.hoa-reveal { opacity: 0; transform: translateY(20px); transition: opacity .5s ease, transform .5s ease; }
.hoa-reveal.visible { opacity: 1; transform: translateY(0); }

/* ============================================================
   RESPONSIVE MEDIA
   ============================================================ */
@media (max-width: 1024px) {
  .hoa-nav { display: none; }
  .hoa-hamburger { display: flex; }
  .hoa-header-cta { display: none; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}
