/* =========================================================
   main.css — Naya Clay Theme Complete Stylesheet
   ========================================================= */

/* =========================================================
   1. GLOBAL RESET & BASE
   ========================================================= */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  font-size: var(--font-size-base);
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-base);
  font-size: var(--font-size-base);
  line-height: var(--line-height-base);
  color: var(--color-body);
  background-color: var(--color-bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

body.mobile-nav-open { overflow: hidden; }

a { color: var(--color-dark); text-decoration: none; transition: color var(--transition-fast); }
a:hover { color: var(--color-primary); }

img { max-width: 100%; height: auto; display: block; }

ul, ol { list-style: none; }

button { cursor: pointer; font-family: var(--font-base); border: none; background: none; }

input, select, textarea {
  font-family: var(--font-base);
  font-size: var(--font-size-base);
  outline: none;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-base);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: var(--letter-spacing-heading);
  color: var(--color-dark);
}

h1 { font-size: clamp(2rem, 5vw, 4rem); }
h2 { font-size: clamp(1.6rem, 4vw, 3.6rem); }
h3 { font-size: clamp(1.3rem, 3vw, 3rem); }
h4 { font-size: clamp(1.1rem, 2vw, 2.4rem); }

p { margin-bottom: 1em; }
p:last-child { margin-bottom: 0; }

/* =========================================================
   2. CONTAINERS
   ========================================================= */
.hm-container {
  max-width: var(--container-max);
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}

.hm-container-fluid {
  max-width: var(--container-fluid);
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}

/* =========================================================
   3. BUTTONS
   ========================================================= */
.hm-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0.75rem 1.75rem;
  font-family: var(--font-base);
  font-size: var(--font-size-base);
  font-weight: 600;
  border-radius: var(--radius-button);
  border: 2px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: all var(--transition-base);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}

.hm-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.1);
  opacity: 0;
  transition: opacity var(--transition-fast);
}

.hm-btn:hover::before { opacity: 1; }

.hm-btn--primary {
  background-color: var(--color-primary);
  color: var(--color-white);
  border-color: var(--color-primary);
  box-shadow: var(--shadow-btn);
}
.hm-btn--primary:hover {
  background-color: var(--color-primary-dark);
  border-color: var(--color-primary-dark);
  color: var(--color-white);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(208,71,62,0.35);
}

.hm-btn--dark {
  background-color: var(--color-dark);
  color: var(--color-white);
  border-color: var(--color-dark);
}
.hm-btn--dark:hover {
  background-color: #333;
  border-color: #333;
  color: var(--color-white);
  transform: translateY(-2px);
}

.hm-btn--outline {
  background-color: transparent;
  color: #000000;
  border-color: #000000;
}
.hm-btn--outline:hover {
  background-color: #000000;
  color: #ffffff;
}

.hm-btn--outline-white {
  background-color: transparent;
  color: #ffffff;
  border-color: #ffffff;
}
.hm-btn--outline-white:hover {
  background-color: #000000;
  color: #ffffff;
  border-color: #000000;
}

.hm-btn--yellow-green {
  background-color: var(--color-yellow-green);
  color: var(--color-dark-green);
  border-color: var(--color-yellow-green);
}
.hm-btn--yellow-green:hover {
  background-color: #e5f070;
  color: var(--color-dark-green);
  transform: translateY(-2px);
}

.hm-btn--muted {
  background-color: #ddd;
  color: #999;
  border-color: #ddd;
  cursor: not-allowed;
}

.hm-btn--wishlist {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--color-body);
  font-size: 13px;
  padding: 0.5rem 1rem;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-button);
  background: transparent;
  transition: all var(--transition-fast);
}
.hm-btn--wishlist:hover { border-color: var(--color-primary); color: var(--color-primary); }

.hm-btn--lg { padding: 1rem 2.25rem; font-size: 16px; }
.hm-btn--sm { padding: 0.5rem 1.1rem; font-size: 13px; }
.hm-btn--full { width: 100%; }
.hm-btn--icon {
  width: 36px; height: 36px;
  padding: 0;
  border-radius: 50%;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-fast);
}
.hm-btn--icon:hover { background: var(--color-primary); border-color: var(--color-primary); color: var(--color-white); }
.hm-btn--icon svg { stroke: currentColor; }

/* =========================================================
   4. INPUTS & FORMS
   ========================================================= */
.hm-input {
  width: 100%;
  height: var(--input-height);
  padding: 0 1.25rem;
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-input);
  font-family: var(--font-base);
  font-size: var(--font-size-base);
  color: var(--color-dark);
  background: var(--color-white);
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}
.hm-input:focus { border-color: var(--color-dark); box-shadow: 0 0 0 3px rgba(17,17,17,0.08); }
.hm-input::placeholder { color: #aaa; }

/* =========================================================
   5. TYPOGRAPHY UTILITIES
   ========================================================= */
.hm-section-eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-primary);
  margin-bottom: 0.5rem;
}
.hm-section-eyebrow--white { color: rgba(255,255,255,0.7); }
.hm-section-eyebrow--accent { color: var(--color-yellow-green); }

.hm-section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  margin-bottom: 1rem;
}

.hm-section-subtitle {
  font-size: 15px;
  color: var(--color-body);
  max-width: 560px;
  margin: 0 auto;
}

.hm-section-header {
  text-align: center;
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.hm-section { padding-top: var(--section-gap-desktop); padding-bottom: var(--section-gap-desktop); }

.hm-link-arrow {
  display: inline-flex; align-items: center; gap: 4px;
  font-weight: 600; font-size: 13px;
  color: var(--color-dark);
  text-decoration: none;
  transition: gap var(--transition-fast), color var(--transition-fast);
}
.hm-link-arrow:hover { color: var(--color-primary); gap: 8px; }

/* =========================================================
   6. BADGES
   ========================================================= */
.hm-badge {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  line-height: 1;
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 2;
}
.hm-badge--sale { background-color: var(--color-sale-badge); color: var(--color-white); }
.hm-badge--new { background-color: var(--color-new-badge); color: var(--color-white); }
.hm-badge--sold-out { background-color: var(--color-sold-out); color: var(--color-white); }
.hm-badge--lg { padding: 5px 14px; font-size: 12px; }
.hm-badge--xs { position: static; font-size: 9px; padding: 2px 7px; }

/* Stars */
.hm-stars { color: #f59e0b; font-size: 14px; letter-spacing: 1px; }
.hm-stars--lg { font-size: 22px; }
.hm-rating-count { font-size: 12px; color: var(--color-muted); margin-left: 4px; }

/* =========================================================
   7. ANNOUNCEMENT BAR
   ========================================================= */
.hm-announcement-bar {
  background-color: #ffffff;
  color: #111111;
  font-size: 14.5px;
  font-weight: 600;
  letter-spacing: 0.02em;
  position: relative;
  overflow: hidden;
  transition: max-height 0.4s ease, opacity 0.4s ease;
  max-height: 56px;
  border-bottom: 1px solid #e8e4de;
}
.hm-announcement-bar.is-hidden { max-height: 0; opacity: 0; }

.hm-announcement-bar__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px 16px;
  gap: 1rem;
  max-width: var(--container-fluid);
  margin: 0 auto;
}

.hm-announcement-bar__slides {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  flex-wrap: wrap;
  justify-content: center;
}

.hm-announcement-bar__item { white-space: nowrap; }
.hm-ann-sep { opacity: 0.35; font-size: 12px; }

.hm-announcement-bar__close {
  background: none;
  border: none;
  color: rgba(0,0,0,0.45);
  cursor: pointer;
  padding: 4px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  margin-left: auto;
  flex-shrink: 0;
  transition: color var(--transition-fast);
}
.hm-announcement-bar__close:hover { color: #000000; }

/* =========================================================
   8. HEADER
   ========================================================= */
.hm-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: var(--color-white);
  border-bottom: 1px solid var(--color-border);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1), box-shadow var(--transition-base), background var(--transition-base);
}
.hm-header.is-hidden { transform: translateY(-100%); }
.hm-header.is-scrolled { box-shadow: 0 2px 20px rgba(0,0,0,0.08); }

.hm-header__inner {
  display: flex;
  align-items: center;
  gap: 2rem;
  height: 85px;
}

.hm-header__logo { flex-shrink: 0; }
.hm-logo-link { display: block; }
.hm-logo-text {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--color-dark);
  letter-spacing: -0.02em;
}
.hm-header__logo img { max-width: var(--logo-width); height: auto; }

.hm-header__nav { flex: 1; display: flex; justify-content: center; }

/* Navigation Menu */
.hm-nav-menu {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  list-style: none;
}

.hm-nav-menu > li { position: relative; }

.hm-nav-menu > li > a {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 0.5rem 0.85rem;
  font-size: 14px;
  font-weight: 600;
  color: #000000;
  border-radius: 6px;
  transition: color var(--transition-fast), background var(--transition-fast);
  white-space: nowrap;
}
.hm-nav-menu > li > a:hover,
.hm-nav-menu > li.current-menu-item > a,
.hm-nav-menu > li.current-menu-ancestor > a {
  color: #000000;
  background-color: rgba(0,0,0,0.07);
  font-weight: 700;
}

/* Dropdown */
.hm-nav-menu .sub-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%) translateY(-4px);
  min-width: 200px;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-hover);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: all var(--transition-base);
  z-index: 100;
  padding: 0.5rem 0;
}

.hm-nav-menu li:hover > .sub-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.hm-nav-menu .sub-menu li a {
  display: block;
  padding: 0.5rem 1.25rem;
  font-size: 13px;
  color: var(--color-body);
  transition: color var(--transition-fast), padding-left var(--transition-fast);
}
.hm-nav-menu .sub-menu li a:hover { color: var(--color-primary); padding-left: 1.5rem; }

/* Header Icons */
.hm-header__icons {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-left: auto;
  flex-shrink: 0;
}

.hm-header__icon {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  color: var(--color-dark);
  text-decoration: none;
  transition: background var(--transition-fast), color var(--transition-fast);
}
.hm-header__icon:hover { background: var(--color-bg-light); color: var(--color-primary); }
.hm-header__icon svg { stroke: currentColor; }

.hm-cart-count {
  position: absolute;
  top: 2px;
  right: 2px;
  min-width: 18px;
  height: 18px;
  background: var(--color-primary);
  color: var(--color-white);
  font-size: 10px;
  font-weight: 700;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  border: 2px solid var(--color-white);
  transition: transform var(--transition-fast);
}
.hm-cart-count.is-updated { transform: scale(1.3); }

/* Hamburger */
.hm-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  padding: 8px;
  border-radius: 6px;
  transition: background var(--transition-fast);
}
.hm-hamburger:hover { background: var(--color-bg-light); }
.hm-hamburger__line {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--color-dark);
  border-radius: 2px;
  transform-origin: center;
  transition: all 0.3s ease;
}
.hm-hamburger.is-active .hm-hamburger__line:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hm-hamburger.is-active .hm-hamburger__line:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hm-hamburger.is-active .hm-hamburger__line:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* =========================================================
   9. MOBILE NAV DRAWER
   ========================================================= */
.hm-mobile-nav {
  position: fixed;
  top: 0;
  left: -100%;
  width: min(320px, 85vw);
  height: 100vh;
  background: var(--color-white);
  z-index: 2000;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-hover);
  transition: left var(--transition-slow);
  overflow-y: auto;
}
.hm-mobile-nav.is-open { left: 0; }

.hm-mobile-nav__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid var(--color-border);
}

.hm-mobile-nav__close {
  width: 34px; height: 34px;
  border-radius: 50%;
  background: var(--color-bg-light);
  display: flex; align-items: center; justify-content: center;
  transition: background var(--transition-fast);
}
.hm-mobile-nav__close:hover { background: var(--color-border); }

.hm-mobile-nav__body { flex: 1; padding: 1rem; }

.hm-mobile-menu { list-style: none; }
.hm-mobile-menu > li { border-bottom: 1px solid var(--color-border); }
.hm-mobile-menu > li > a {
  display: block;
  padding: 1rem 0.5rem;
  font-size: 15px;
  font-weight: 500;
  color: var(--color-dark);
}
.hm-mobile-menu > li > a:hover { color: var(--color-primary); }
.hm-mobile-menu .sub-menu { padding: 0 0 0.5rem 1rem; }
.hm-mobile-menu .sub-menu li a { display: block; padding: 0.5rem 0; font-size: 13px; color: var(--color-body); }
.hm-mobile-menu .sub-menu li a:hover { color: var(--color-primary); }

.hm-mobile-nav__footer {
  display: flex;
  gap: 0.75rem;
  padding: 1.25rem 1.5rem;
  border-top: 1px solid var(--color-border);
  margin-top: auto;
}
.hm-mobile-nav__footer .hm-btn { flex: 1; justify-content: center; }

/* Overlay */
.hm-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 1999;
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--transition-slow), visibility var(--transition-slow);
  backdrop-filter: blur(2px);
}
.hm-overlay.is-visible { opacity: 1; visibility: visible; }

/* Search Overlay */
.hm-search-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.85);
  z-index: 3000;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 15vh;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-slow);
}
.hm-search-overlay.is-open { opacity: 1; visibility: visible; }

.hm-search-overlay__inner { width: 100%; max-width: 640px; padding: 0 1rem; }

.hm-search-form {
  display: flex;
  align-items: center;
  background: var(--color-white);
  border-radius: 50px;
  padding: 0.25rem 0.25rem 0.25rem 1.5rem;
  gap: 0.5rem;
  border: 2px solid var(--color-border);
  transition: border-color var(--transition-fast);
}
.hm-search-form:focus-within { border-color: var(--color-dark); }
.hm-search-form input {
  flex: 1;
  border: none;
  background: none;
  font-size: 18px;
  color: var(--color-dark);
  height: 52px;
}
.hm-search-form__submit {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--color-dark);
  color: var(--color-white);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  border: none;
  cursor: pointer;
  transition: background var(--transition-fast);
}
.hm-search-form__submit:hover { background: var(--color-primary); }

.hm-search-overlay__close {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 1rem;
  color: rgba(255,255,255,0.6);
  font-size: 13px;
  background: none;
  border: none;
  cursor: pointer;
  transition: color var(--transition-fast);
}
.hm-search-overlay__close:hover { color: white; }

/* =========================================================
   10. HERO BANNER
   ========================================================= */
/* =========================================================
   10. HERO BANNER
   ========================================================= */
.hm-hero {
  position: relative;
  min-height: 90vh;
  background: var(--color-dark);
  overflow: hidden;
}
.hm-hero-swiper {
  width: 100%;
  height: 100%;
  min-height: 90vh;
}
.hm-hero__slide-inner {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  padding-top: 6rem;
  padding-bottom: 9rem;
}
.hm-hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hm-hero__bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.05);
  transition: transform 10s ease;
}
.swiper-slide-active .hm-hero__bg-img {
  transform: scale(1);
}
.hm-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(17,17,17,0.85) 0%, rgba(17,17,17,0.4) 60%, transparent 100%);
}
.hm-hero__container {
  position: relative;
  z-index: 2;
  width: 100%;
}
.hm-hero__content {
  max-width: 700px;
  background: transparent !important;
  backdrop-filter: none !important;
  padding: 0 !important;
  border-radius: 0 !important;
  border: none !important;
  box-shadow: none !important;
}
.hm-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  background: transparent;
  backdrop-filter: none;
  border: none;
  color: var(--color-white);
  padding: 6px 0px;
  border-radius: 50px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}
.hm-hero__heading {
  font-size: clamp(2.8rem, 7vw, 5.2rem);
  color: var(--color-white);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 1.5rem;
  text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}
.hm-hero__heading em {
  color: var(--color-yellow-green);
  font-style: normal;
  display: block;
}
.hm-hero__subtext {
  font-size: clamp(15px, 2vw, 18px);
  color: rgba(255, 255, 255, 0.9);
  max-width: 520px;
  margin-bottom: 2.5rem;
  line-height: 1.75;
  text-shadow: 0 1px 8px rgba(0,0,0,0.25);
}
.hm-hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
}
.hm-hero-swiper-prev,
.hm-hero-swiper-next {
  width: 56px !important;
  height: 56px !important;
  border-radius: 50% !important;
  transition: all var(--transition-base) !important;
  z-index: 10 !important;
  align-items: center !important;
  justify-content: center !important;
  top: 50% !important;
  transform: translateY(-50%) !important;
  margin-top: 0 !important;
}
.hm-hero-swiper-prev { 
  display: none !important; 
}
.hm-hero-swiper-next { 
  display: flex !important;
  right: 24px !important; 
  background: var(--color-primary) !important;
  border: 1.5px solid var(--color-primary) !important;
  color: var(--color-white) !important;
  box-shadow: 0 4px 15px rgba(208, 71, 62, 0.4) !important;
}
.hm-hero-swiper-next:hover {
  background: var(--color-primary-dark) !important;
  border-color: var(--color-primary-dark) !important;
  transform: translateY(-50%) scale(1.08) !important;
}
.hm-hero-swiper-prev::after,
.hm-hero-swiper-next::after {
  display: none !important;
}
.hm-hero-swiper-prev svg,
.hm-hero-swiper-next svg {
  width: 22px;
  height: 22px;
  stroke-width: 2.5;
  display: block;
}

.hm-hero-swiper-pagination {
  bottom: 100px !important;
}
.hm-hero-swiper-pagination .swiper-pagination-bullet {
  background: rgba(255,255,255,0.4) !important;
  width: 10px;
  height: 10px;
  opacity: 1;
}
.hm-hero-swiper-pagination .swiper-pagination-bullet-active {
  background: var(--color-yellow-green) !important;
  width: 24px;
  border-radius: 5px;
}
.hm-hero__stats-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background: rgba(17, 17, 17, 0.85);
  backdrop-filter: blur(12px);
  border-top: 1px solid rgba(255,255,255,0.08);
  z-index: 5;
  padding: 1.25rem 0;
}
.hm-hero__stats-bar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem;
}
.hm-hero__stat-bar-item {
  display: flex;
  align-items: center;
  gap: 10px;
}
.hm-hero__stat-bar-item strong {
  font-size: 1.6rem;
  color: var(--color-yellow-green);
  font-weight: 700;
}
.hm-hero__stat-bar-item span {
  font-size: 12px;
  color: rgba(255,255,255,0.7);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 600;
}
.hm-hero__stat-bar-divider {
  width: 1px;
  height: 24px;
  background: rgba(255,255,255,0.15);
}

/* =========================================================
   11. FEATURES STRIP
   ========================================================= */
.hm-features-strip {
  background: var(--color-bg-light);
  padding-top: 3rem;
  padding-bottom: 3rem;
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}

.hm-features-strip__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2.25rem;
}

.hm-feature-item {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  padding: 2.25rem 1.75rem;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: 12px;
  box-shadow: var(--shadow-card);
  transition: box-shadow var(--transition-base), transform var(--transition-base);
}

.hm-feature-item__icon {
  width: 58px;
  height: 58px;
  background: var(--color-bg-light);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--color-primary);
  transition: background var(--transition-base), color var(--transition-base), transform var(--transition-base);
}
.hm-feature-item:hover .hm-feature-item__icon {
  background: var(--color-primary);
  color: var(--color-white);
  transform: translateY(-4px);
}
.hm-feature-item__icon svg { stroke: currentColor; width: 28px; height: 28px; }

.hm-feature-item__title { font-size: 17px; font-weight: 700; margin-bottom: 0.5rem; color: var(--color-dark); }
.hm-feature-item__desc { font-size: 14.5px; color: var(--color-body); line-height: 1.7; }

/* =========================================================
   12. PRODUCT CARDS
   ========================================================= */
.hm-product-grid {
  display: grid;
  gap: 1.5rem;
  margin-bottom: 2rem;
}
.hm-product-grid--3col { grid-template-columns: repeat(3, 1fr); }
.hm-product-grid--4col { grid-template-columns: repeat(4, 1fr); }

.hm-product-card {
  border-radius: var(--radius-card);
  background: var(--color-white);
  border: 1px solid var(--color-border);
  overflow: hidden;
  transition: box-shadow var(--transition-base), transform var(--transition-base);
}
.hm-product-card:hover { box-shadow: var(--shadow-hover); transform: translateY(-4px); }

.hm-product-card__image-wrap {
  position: relative;
  overflow: hidden;
  background: var(--color-bg-light);
  aspect-ratio: 1 / 1;
}
.hm-product-card__image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}
.hm-product-card:hover .hm-product-card__image-wrap img { transform: scale(1.06); }

.hm-product-card__actions {
  position: absolute;
  bottom: 10px;
  right: 10px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  opacity: 0;
  transform: translateX(8px);
  transition: all var(--transition-base);
}
.hm-product-card:hover .hm-product-card__actions { opacity: 1; transform: translateX(0); }

.hm-product-card__body {
  padding: 1rem;
}
.hm-product-card__title { font-size: 15px; font-weight: 600; margin-bottom: 0.3rem; line-height: 1.3; }
.hm-product-card__title a { color: var(--color-dark); }
.hm-product-card__title a:hover { color: var(--color-primary); }
.hm-product-card__rating { display: flex; align-items: center; gap: 4px; margin-bottom: 0.4rem; }
.hm-product-card__price { margin-bottom: 0.75rem; font-size: 16px; font-weight: 700; }

.hm-price { color: var(--color-dark); }
.hm-price--sale { color: var(--color-primary); }
.hm-price--old { text-decoration: line-through; color: var(--color-muted); font-weight: 400; font-size: 13px; margin-right: 4px; }

/* WooCommerce price override */
.hm-product-card__price .price { font-size: 16px; font-weight: 700; }
.hm-product-card__price .price ins { text-decoration: none; color: var(--color-primary); }
.hm-product-card__price .price del { color: var(--color-muted); font-size: 13px; font-weight: 400; }

/* Swiper product slider */
.hm-product-slider-section { padding-bottom: 4rem; }

.hm-product-swiper { padding-bottom: 3rem !important; padding-left: 4px !important; padding-right: 4px !important; }
.hm-product-swiper .swiper-slide { height: auto; }
.hm-product-swiper .hm-product-card { height: 100%; display: flex; flex-direction: column; }
.hm-product-swiper .hm-product-card__body { flex: 1; display: flex; flex-direction: column; }
.hm-product-swiper .hm-product-card__body .hm-btn { margin-top: auto; }

.hm-swiper-prev,
.hm-swiper-next {
  width: 44px !important;
  height: 44px !important;
  background: var(--color-white) !important;
  border-radius: 50% !important;
  border: 1px solid var(--color-border) !important;
  color: var(--color-dark) !important;
  box-shadow: var(--shadow-card) !important;
  transition: all var(--transition-fast) !important;
}
.hm-swiper-prev:hover, .hm-swiper-next:hover {
  background: var(--color-dark) !important;
  color: var(--color-white) !important;
  border-color: var(--color-dark) !important;
}
.hm-swiper-prev::after, .hm-swiper-next::after { display: none !important; }
.hm-swiper-prev svg, .hm-swiper-next svg { stroke: currentColor; }

.hm-swiper-pagination .swiper-pagination-bullet { background: var(--color-border); opacity: 1; }
.hm-swiper-pagination .swiper-pagination-bullet-active { background: var(--color-dark); }

.hm-section-cta { text-align: center; margin-top: 2.5rem; }

/* =========================================================
   13. WHY SECTION
   ========================================================= */
/* =========================================================
   13. WHY SECTION
   ========================================================= */
.hm-why-section {
  background-color: var(--color-dark-green);
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
}
.hm-why-section__overlay {
  position: absolute;
  inset: 0;
  background: rgba(37, 50, 48, 0.94);
}
.hm-why-section__container {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 5rem;
  align-items: center;
}
.hm-why-section__heading {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--color-white);
  margin-bottom: 1rem;
}
.hm-why-section__heading em {
  color: var(--color-yellow-green);
  font-style: normal;
}
.hm-why-section__intro {
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 2.5rem;
  max-width: 580px;
  line-height: 1.8;
}
.hm-why-benefits-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}
.hm-why-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-card);
  padding: 1.5rem;
  transition: all var(--transition-base);
}
.hm-why-card:hover {
  background: rgba(243, 252, 129, 0.04);
  border-color: rgba(243, 252, 129, 0.2);
  transform: translateY(-3px);
}
.hm-why-card__header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 0.75rem;
}
.hm-why-card__icon {
  color: var(--color-yellow-green);
  display: flex;
  align-items: center;
  justify-content: center;
}
.hm-why-card__icon svg {
  stroke: currentColor;
}
.hm-why-card__title {
  font-size: 15px;
  font-weight: 700;
  color: var(--color-white);
}
.hm-why-card__desc {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.6;
}
.hm-why-section__visual-column {
  display: flex;
  justify-content: center;
}
.hm-why-interactive-banner {
  position: relative;
  border-radius: var(--radius-card);
  overflow: hidden;
  border: 3px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}
.hm-why-banner-image {
  width: 100%;
  max-width: 380px;
  display: block;
  object-fit: cover;
  transition: transform var(--transition-slow);
}
.hm-why-interactive-banner:hover .hm-why-banner-image {
  transform: scale(1.04);
}
.hm-why-floating-stat {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: var(--color-dark-green);
  border: 1px solid rgba(243, 252, 129, 0.3);
  padding: 10px 16px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
  z-index: 3;
}
.hm-why-floating-stat__icon {
  font-size: 1.5rem;
}
.hm-why-floating-stat strong {
  display: block;
  font-size: 18px;
  color: var(--color-yellow-green);
  line-height: 1.1;
}
.hm-why-floating-stat span {
  font-size: 10px;
  color: rgba(255,255,255,0.7);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.hm-why-floating-seal {
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 3;
}

/* =========================================================
   14. TESTIMONIALS
   ========================================================= */
/* =========================================================
   14. TESTIMONIALS
   ========================================================= */
.hm-testimonials-section {
  background: var(--color-bg-light);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}
.hm-testimonials-wrapper-layout {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 4rem;
  align-items: center;
}
.hm-testimonials-summary-box {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-card);
  padding: 2.5rem 2rem;
  box-shadow: var(--shadow-card);
}
.hm-testimonials-summary-box__desc {
  font-size: 14px;
  color: var(--color-body);
  line-height: 1.6;
  margin-top: 1rem;
  margin-bottom: 2rem;
}
.hm-testimonials-metrics {
  border-top: 1px solid var(--color-border);
  padding-top: 1.5rem;
  margin-bottom: 1.5rem;
}
.hm-testimonials-metric-stars {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 0.25rem;
}
.hm-testimonials-metric-stars strong {
  font-size: 18px;
  color: var(--color-dark);
}
.hm-testimonials-metric-count {
  font-size: 12px;
  color: var(--color-muted);
}
.hm-testimonials-summary-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.hm-badge-tag {
  background: var(--color-bg-light);
  border: 1px solid var(--color-border);
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 600;
  color: var(--color-dark);
}
.hm-testimonials-slider-box {
  position: relative;
  overflow: hidden;
}
.hm-testimonial-premium-card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-card);
  padding: 2.5rem;
  box-shadow: var(--shadow-card);
  position: relative;
  transition: all var(--transition-base);
}
.hm-testimonial-premium-card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-4px);
}
.hm-testimonial-quote-mark {
  position: absolute;
  top: 10px;
  right: 25px;
  font-size: 80px;
  line-height: 1;
  font-family: serif;
  color: rgba(208, 71, 62, 0.08);
  user-select: none;
}
.hm-testimonial-card-stars-row {
  color: #f59e0b;
  font-size: 16px;
  margin-bottom: 1rem;
}
.hm-testimonial-premium-card__text {
  font-size: 15px;
  color: var(--color-body);
  line-height: 1.75;
  font-style: italic;
  margin-bottom: 1.5rem;
}
.hm-testimonial-premium-card__tag {
  margin-bottom: 1.5rem;
}
.product-tag-label {
  font-size: 11px;
  background: var(--color-bg-light);
  color: var(--color-muted);
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 20px;
}
.hm-testimonial-premium-card__footer {
  display: flex;
  align-items: center;
  gap: 12px;
  border-top: 1px solid var(--color-border);
  padding-top: 1.25rem;
}
.hm-testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--color-primary);
  color: var(--color-white);
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
}
.hm-testimonial-info {
  flex: 1;
}
.hm-testimonial-info__name {
  font-size: 14px;
  font-weight: 700;
  color: var(--color-dark);
}
.hm-testimonial-info__location {
  font-size: 12px;
  color: var(--color-muted);
}
.hm-testimonial-verified-badge {
  display: flex;
  align-items: center;
}

.hm-testimonials-slider-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 1.5rem;
}
.hm-testimonials-slider-footer .swiper-pagination {
  position: static !important;
  width: auto !important;
}
.hm-testimonials-nav-buttons {
  display: flex;
  gap: 8px;
}
.hm-testimonials-nav-buttons .hm-swiper-prev,
.hm-testimonials-nav-buttons .hm-swiper-next {
  position: static !important;
  margin: 0 !important;
}

/* =========================================================
   15. COLLECTION SECTION
   ========================================================= */
.hm-collection-section { }

/* =========================================================
   16. PROMO BANNER
   ========================================================= */
.hm-promo-banner {
  background: linear-gradient(135deg, var(--color-dark) 0%, #2a2a2a 100%);
  border-radius: var(--radius-card);
  overflow: hidden;
}

.hm-promo-banner__inner {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 2rem;
  padding: 3rem;
}

.hm-promo-banner__tag {
  display: inline-block;
  background: var(--color-primary);
  color: white;
  font-size: 11px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.75rem;
}

.hm-promo-banner__content h2 { color: var(--color-white); margin-bottom: 0.75rem; font-size: clamp(1.4rem, 2.5vw, 2rem); }
.hm-promo-banner__content p { color: rgba(255,255,255,0.7); margin-bottom: 1.5rem; font-size: 15px; }
.hm-promo-banner__content strong { color: var(--color-yellow-green); font-size: 1.1em; }

.hm-promo-banner__image img { width: 200px; border-radius: var(--radius-card); }

/* =========================================================
   17. INSTAGRAM GRID
   ========================================================= */
.hm-instagram-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 6px;
  border-radius: var(--radius-card);
  overflow: hidden;
}

.hm-instagram-item {
  position: relative;
  display: block;
  overflow: hidden;
  aspect-ratio: 1 / 1;
}
.hm-instagram-item img { width: 100%; height: 100%; object-fit: cover; transition: transform var(--transition-slow); }
.hm-instagram-item:hover img { transform: scale(1.08); }

.hm-instagram-item__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--transition-base);
}
.hm-instagram-item:hover .hm-instagram-item__overlay { opacity: 1; }

/* =========================================================
   18. BLOG SECTION
   ========================================================= */
.hm-blog-section { background: var(--color-bg-light); }

.hm-post-grid--3col { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }

.hm-post-card {
  background: var(--color-white);
  border-radius: var(--radius-card);
  overflow: hidden;
  border: 1px solid var(--color-border);
  transition: box-shadow var(--transition-base), transform var(--transition-base);
}
.hm-post-card:hover { box-shadow: var(--shadow-hover); transform: translateY(-3px); }

.hm-post-card__thumb { display: block; overflow: hidden; aspect-ratio: 16 / 10; background: var(--color-bg-light); }
.hm-post-card__thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform var(--transition-slow); }
.hm-post-card:hover .hm-post-card__thumb img { transform: scale(1.06); }
.hm-post-card__body { padding: 1.5rem; }
.hm-post-card__date { display: block; font-size: 12px; color: var(--color-muted); margin-bottom: 0.5rem; text-transform: uppercase; letter-spacing: 0.06em; }
.hm-post-card__type { display: inline-block; font-size: 10px; font-weight: 700; background: var(--color-bg-light); padding: 2px 8px; border-radius: 20px; text-transform: uppercase; letter-spacing: 0.06em; color: var(--color-muted); margin-bottom: 0.5rem; }
.hm-post-card__title { font-size: 16px; font-weight: 600; margin-bottom: 0.75rem; line-height: 1.4; }
.hm-post-card__title a { color: var(--color-dark); }
.hm-post-card__title a:hover { color: var(--color-primary); }
.hm-post-card__excerpt { font-size: 13px; color: var(--color-body); margin-bottom: 1rem; line-height: 1.6; }
.hm-post-card__excerpt p { margin: 0; }

/* =========================================================
   19. NEWSLETTER FOOTER BAR
   ========================================================= */
/* =========================================================
   19. NEWSLETTER FOOTER STRIP
   ========================================================= */
.hm-footer__newsletter-strip {
  background: linear-gradient(180deg, var(--color-white) 0%, var(--color-bg-light) 100%);
  padding-bottom: 0;
  margin-bottom: -4rem;
  position: relative;
  z-index: 10;
}
.hm-newsletter-card {
  background: var(--color-dark-green);
  color: var(--color-white);
  border-radius: var(--radius-card);
  padding: 3rem;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 3rem;
  align-items: center;
  box-shadow: 0 15px 45px rgba(37, 50, 48, 0.15);
}
.newsletter-card-tag {
  display: inline-block;
  background: rgba(243, 252, 129, 0.12);
  color: var(--color-yellow-green);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 20px;
  letter-spacing: 0.1em;
  margin-bottom: 0.875rem;
}
.hm-newsletter-card__content h3 {
  color: var(--color-white);
  font-size: 1.8rem;
  margin-bottom: 0.5rem;
}
.hm-newsletter-card__content p {
  color: rgba(255,255,255,0.7);
  font-size: 14px;
}
.hm-newsletter-form__group {
  display: flex;
  gap: 8px;
}
.hm-newsletter-form__group input {
  flex: 1;
  height: 48px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-button);
  padding: 0 1.25rem;
  color: var(--color-white);
}
.hm-newsletter-form__group input::placeholder {
  color: rgba(255, 255, 255, 0.45);
}
.hm-newsletter-form__group input:focus {
  border-color: var(--color-yellow-green);
  box-shadow: 0 0 0 3px rgba(243, 252, 129, 0.15);
}
.hm-newsletter-form__note {
  font-size: 11px;
  color: rgba(255,255,255,0.4);
  margin-top: 0.5rem;
}

/* =========================================================
   20. FOOTER MAIN
   ========================================================= */
.hm-footer {
  background: var(--color-dark);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}
.hm-footer__main {
  padding: 8rem 0 4rem;
}
.hm-footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 4rem;
}
.hm-footer__logo-text {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-white);
}
.hm-footer__tagline {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.75;
  margin-top: 1rem;
  margin-bottom: 1.5rem;
}
.hm-footer__social {
  display: flex;
  gap: 8px;
}
.hm-social-link {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.7);
  transition: all var(--transition-fast);
}
.hm-social-link:hover {
  transform: translateY(-2px);
  color: var(--color-white);
}
.hm-social-link.fb:hover { background: #1877f2; border-color: #1877f2; }
.hm-social-link.ig:hover { background: #e1306c; border-color: #e1306c; }
.hm-social-link.wa:hover { background: #25d366; border-color: #25d366; }

.hm-footer__col-title {
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: var(--color-white);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border-left: 2px solid var(--color-primary);
  padding-left: 8px;
}
.hm-footer__links {
  list-style: none;
}
.hm-footer__links li {
  margin-bottom: 0.75rem;
}
.hm-footer__links a {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.65);
  transition: all var(--transition-fast);
}
.hm-footer__links a:hover {
  color: var(--color-yellow-green);
  padding-left: 4px;
}
.hm-footer__contact-info {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.hm-footer__contact-info p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.65);
}
.hm-footer__contact-info a {
  color: inherit;
}
.hm-footer__contact-info a:hover {
  color: var(--color-yellow-green);
}
.hm-footer__payment-options {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 1.5rem;
}
.payment-badge {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 4px 10px;
  border-radius: 4px;
  font-size: 10px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.8);
}
.hm-footer__bottom {
  background: #0b0b0b;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  padding: 1.5rem 0;
}
.hm-footer__bottom-inner {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  text-align: center;
}
.hm-footer__copyright {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.55);
  text-align: center;
  width: 100%;
}
.hm-footer__trust-stamps {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.45);
}

/* =========================================================
   21. BACK TO TOP & WHATSAPP FLOAT
   ========================================================= */
.hm-back-to-top {
  position: fixed;
  bottom: 5.5rem;
  right: 1.5rem;
  width: 44px; height: 44px;
  background: var(--color-dark);
  color: var(--color-white);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-hover);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all var(--transition-base);
  z-index: 100;
  cursor: pointer;
  border: none;
}
.hm-back-to-top.is-visible { opacity: 1; visibility: visible; transform: translateY(0); }
.hm-back-to-top:hover { background: var(--color-primary); transform: translateY(-3px); }
.hm-back-to-top svg { stroke: currentColor; }

.hm-whatsapp-float {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  width: 54px; height: 54px;
  background: #25d366;
  color: var(--color-white);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  z-index: 100;
  transition: all var(--transition-base);
}
.hm-whatsapp-float:hover { background: #1ebe5c; transform: scale(1.1); color: var(--color-white); }

/* =========================================================
   22. SHOP PAGE
   ========================================================= */
.hm-shop-page { padding: 2rem 0 4rem; }
.hm-shop-header {
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap;
  margin-bottom: 1.5rem; gap: 1rem;
}
.hm-shop-header__title { font-size: 2rem; }
.hm-shop-header__right { display: flex; align-items: center; gap: 0.75rem; }
.hm-shop-layout { display: grid; grid-template-columns: 260px 1fr; gap: 2rem; }

/* Sidebar */
.hm-shop-sidebar {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-card);
  padding: 1.5rem;
  height: fit-content;
  position: sticky;
  top: 90px;
}
.hm-sidebar-header {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 1.5rem; padding-bottom: 1rem; border-bottom: 1px solid var(--color-border);
}
.hm-sidebar-header h3 { font-size: 16px; }
.hm-sidebar-close { display: none; font-size: 20px; width: 30px; height: 30px; background: var(--color-bg-light); border-radius: 50%; }

.hm-filter-group { margin-bottom: 1.75rem; border-bottom: 1px solid var(--color-border); padding-bottom: 1.75rem; }
.hm-filter-group:last-child { border: none; margin: 0; padding: 0; }
.hm-filter-group__title { font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 0.75rem; color: var(--color-dark); }

.hm-filter-list { list-style: none; }
.hm-filter-list__item { margin-bottom: 0.3rem; }
.hm-filter-list__link {
  display: flex; align-items: center; justify-content: space-between;
  font-size: 13px; color: var(--color-body); padding: 4px 0;
  transition: color var(--transition-fast);
}
.hm-filter-list__link:hover, .hm-filter-list__link.is-active { color: var(--color-primary); font-weight: 600; }
.hm-filter-list__count { font-size: 11px; color: var(--color-muted); }

.hm-price-filter__inputs { display: flex; align-items: center; gap: 0.5rem; margin-bottom: 0.75rem; }
.hm-price-filter__field { flex: 1; }
.hm-price-filter__field label { display: block; font-size: 11px; color: var(--color-muted); margin-bottom: 3px; }
.hm-price-filter__field input { width: 100%; height: 36px; padding: 0 0.75rem; border: 1px solid var(--color-border); border-radius: 6px; font-size: 13px; }
.hm-price-filter__separator { color: var(--color-muted); font-size: 13px; flex-shrink: 0; }

.hm-rating-filter { gap: 8px; }
.hm-rating-filter .hm-stars { font-size: 12px; letter-spacing: 1px; }

/* Active Filters */
.hm-active-filters { display: flex; flex-wrap: wrap; align-items: center; gap: 0.5rem; margin-bottom: 1rem; }
.hm-active-filters__label { font-size: 13px; color: var(--color-muted); }
.hm-filter-pill {
  display: inline-flex; align-items: center; gap: 5px;
  background: var(--color-bg-light); border: 1px solid var(--color-border);
  padding: 3px 10px 3px 12px; border-radius: 20px; font-size: 12px;
}
.hm-filter-pill__remove {
  width: 18px; height: 18px; background: var(--color-border); border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center; font-size: 14px;
  line-height: 1; color: var(--color-body); text-decoration: none;
}
.hm-filter-clear { font-size: 12px; color: var(--color-primary); text-decoration: underline; }

/* =========================================================
   23. SINGLE PRODUCT PAGE
   ========================================================= */
.hm-single-product-page { padding: 2rem 0 4rem; }

.hm-breadcrumb { margin-bottom: 2rem; font-size: 13px; color: var(--color-muted); }
.hm-breadcrumb a { color: var(--color-body); }
.hm-breadcrumb a:hover { color: var(--color-primary); }

.hm-product-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 3.5rem; margin-bottom: 4rem; }

/* Gallery */
.hm-product-gallery { position: sticky; top: 100px; height: fit-content; }
.hm-product-gallery__main {
  position: relative;
  border-radius: var(--radius-card);
  overflow: hidden;
  background: var(--color-bg-light);
  aspect-ratio: 1 / 1;
  margin-bottom: 0.75rem;
}
.hm-product-gallery__img { width: 100%; height: 100%; object-fit: cover; transition: transform var(--transition-slow); }
.hm-gallery-zoom { display: block; position: relative; }
.hm-gallery-zoom:hover .hm-product-gallery__img { transform: scale(1.04); }
.hm-gallery-zoom__icon {
  position: absolute;
  top: 1rem; right: 1rem;
  width: 38px; height: 38px;
  background: rgba(0,0,0,0.5);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: opacity var(--transition-base);
}
.hm-gallery-zoom:hover .hm-gallery-zoom__icon { opacity: 1; }

.hm-product-gallery__thumbs { display: flex; gap: 0.5rem; flex-wrap: wrap; }
.hm-gallery-thumb {
  width: 72px; height: 72px;
  border-radius: 8px;
  overflow: hidden;
  border: 2px solid transparent;
  cursor: pointer;
  background: var(--color-bg-light);
  transition: border-color var(--transition-fast);
  flex-shrink: 0;
}
.hm-gallery-thumb.is-active { border-color: var(--color-dark); }
.hm-gallery-thumb:hover { border-color: var(--color-primary); }
.hm-gallery-thumb__img { width: 100%; height: 100%; object-fit: cover; }

/* Product Info */
.hm-product-info__cats { margin-bottom: 0.6rem; }
.hm-product-cat-link { font-size: 12px; text-transform: uppercase; letter-spacing: 0.08em; color: var(--color-muted); }
.hm-product-cat-link:hover { color: var(--color-primary); }

.hm-product-info__title { font-size: clamp(1.4rem, 2.5vw, 1.9rem); margin-bottom: 0.75rem; }
.hm-product-info__rating { display: flex; align-items: center; gap: 8px; margin-bottom: 1rem; }
.hm-product-info__rating-link { font-size: 13px; color: var(--color-primary); text-decoration: underline; }
.hm-product-info__price { font-size: 1.8rem; font-weight: 700; color: var(--color-dark); margin-bottom: 1rem; }
.hm-product-info__price .price ins { color: var(--color-primary); text-decoration: none; }
.hm-product-info__price .price del { color: var(--color-muted); font-size: 1.1rem; font-weight: 400; }

.hm-product-info__short-desc { font-size: 14px; line-height: 1.8; color: var(--color-body); margin-bottom: 1.25rem; border-bottom: 1px solid var(--color-border); padding-bottom: 1.25rem; }
.hm-product-info__short-desc ul { list-style: disc; padding-left: 1.25rem; }
.hm-product-info__short-desc ul li { margin-bottom: 0.3rem; }

.hm-product-info__stock { margin-bottom: 1.25rem; font-size: 13px; font-weight: 600; }
.hm-in-stock { display: inline-flex; align-items: center; gap: 5px; color: #22c55e; }
.hm-out-of-stock { color: var(--color-sold-out); }

/* Add to Cart overrides */
.single_add_to_cart_button {
  background: var(--color-dark) !important;
  color: white !important;
  border-radius: var(--radius-button) !important;
  padding: 1rem 2rem !important;
  font-family: var(--font-base) !important;
  font-size: 15px !important;
  font-weight: 600 !important;
  border: 2px solid var(--color-dark) !important;
  cursor: pointer !important;
  transition: all var(--transition-base) !important;
  width: 100% !important;
}
.single_add_to_cart_button:hover { background: #333 !important; }

.quantity .qty {
  height: 48px !important;
  border: 1.5px solid var(--color-border) !important;
  border-radius: 8px !important;
  font-family: var(--font-base) !important;
  font-size: 16px !important;
  padding: 0 1rem !important;
  width: 80px !important;
}

.hm-product-trust {
  display: flex; flex-direction: column; gap: 0.6rem;
  background: var(--color-bg-light);
  border-radius: var(--radius-card);
  padding: 1rem 1.25rem;
  margin: 1.25rem 0;
}
.hm-product-trust__item { display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--color-body); }
.hm-product-trust__item svg { stroke: var(--color-primary); flex-shrink: 0; }

.hm-product-share { display: flex; align-items: center; gap: 0.75rem; margin-top: 1rem; font-size: 13px; color: var(--color-muted); }
.hm-share-btn {
  width: 32px; height: 32px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: white; font-size: 14px;
  transition: transform var(--transition-fast);
}
.hm-share-btn:hover { transform: scale(1.1); color: white; }
.hm-share-btn--facebook { background: #1877f2; }
.hm-share-btn--whatsapp { background: #25d366; }

/* Product Tabs */
.hm-product-tabs { margin-bottom: 4rem; }
.hm-product-tabs__nav {
  display: flex; border-bottom: 2px solid var(--color-border);
  margin-bottom: 2rem; gap: 0; overflow-x: auto;
}
.hm-tab-btn {
  padding: 0.875rem 1.5rem;
  font-family: var(--font-base);
  font-size: 14px;
  font-weight: 600;
  color: var(--color-muted);
  background: none;
  border: none;
  border-bottom: 2px solid transparent;
  margin-bottom: -2px;
  cursor: pointer;
  transition: all var(--transition-fast);
  display: flex; align-items: center; gap: 6px;
  white-space: nowrap;
}
.hm-tab-btn.is-active { color: var(--color-dark); border-bottom-color: var(--color-dark); }
.hm-tab-btn:hover { color: var(--color-primary); }
.hm-tab-btn__count {
  background: var(--color-bg-light); border-radius: 20px;
  padding: 0 6px; font-size: 11px; color: var(--color-muted);
}

.hm-tab-panel { display: none; }
.hm-tab-panel.is-active { display: block; }

.hm-product-description { max-width: 700px; line-height: 1.8; }
.hm-product-description h2, .hm-product-description h3 { margin-bottom: 0.75rem; margin-top: 1.5rem; }
.hm-product-description ul, .hm-product-description ol { padding-left: 1.5rem; margin-bottom: 1rem; list-style: disc; }
.hm-product-description li { margin-bottom: 0.4rem; }

.hm-shipping-info { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }
.hm-shipping-info__item { display: flex; align-items: flex-start; gap: 1rem; }
.hm-shipping-info__item svg { stroke: var(--color-primary); flex-shrink: 0; margin-top: 2px; }
.hm-shipping-info__item h4 { font-size: 15px; margin-bottom: 0.75rem; }
.hm-shipping-info__item ul { list-style: disc; padding-left: 1.25rem; }
.hm-shipping-info__item li { font-size: 13px; color: var(--color-body); margin-bottom: 0.4rem; }

.hm-related-products .hm-section-title { font-size: 1.5rem; margin-bottom: 1.5rem; }

/* =========================================================
   24. CART PAGE
   ========================================================= */
.hm-cart-page { padding: 2rem 0 4rem; }
.hm-cart-header { margin-bottom: 2rem; text-align: left; }
.hm-cart-header .hm-section-title { font-size: 2rem; }
.hm-cart-header__count { color: var(--color-muted); font-size: 13px; margin-top: 0.25rem; }

.hm-cart-layout { display: grid; grid-template-columns: 1fr 360px; gap: 2rem; align-items: start; }

.hm-cart-table-header {
  display: grid; grid-template-columns: 3fr 1fr 1.2fr 1fr 40px;
  gap: 1rem; align-items: center;
  padding: 0.75rem 1rem; background: var(--color-bg-light);
  border-radius: var(--radius-card); margin-bottom: 1rem;
  font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; color: var(--color-muted);
}

.hm-cart-item {
  display: grid; grid-template-columns: 3fr 1fr 1.2fr 1fr 40px;
  gap: 1rem; align-items: center;
  padding: 1.25rem 1rem; border-bottom: 1px solid var(--color-border);
  transition: background var(--transition-fast);
}
.hm-cart-item:hover { background: var(--color-bg-light); }

.hm-cart-col--product { display: flex; align-items: center; gap: 1rem; }
.hm-cart-item__image {
  width: 72px; height: 72px; border-radius: 8px; overflow: hidden;
  background: var(--color-bg-light); flex-shrink: 0;
}
.hm-cart-item__image img { width: 100%; height: 100%; object-fit: cover; }
.hm-cart-item__name { font-size: 14px; font-weight: 600; margin-bottom: 0.25rem; }
.hm-cart-item__name a { color: var(--color-dark); }
.hm-cart-item__name a:hover { color: var(--color-primary); }

.hm-cart-col--price { font-size: 15px; font-weight: 600; }
.hm-cart-col--total { font-size: 16px; font-weight: 700; }
.hm-cart-col--remove { display: flex; justify-content: flex-end; }
.hm-cart-remove {
  width: 32px; height: 32px; border-radius: 50%;
  background: var(--color-bg-light); border: 1px solid var(--color-border);
  display: flex; align-items: center; justify-content: center;
  color: var(--color-muted); transition: all var(--transition-fast);
}
.hm-cart-remove:hover { background: var(--color-primary); border-color: var(--color-primary); color: white; }
.hm-cart-remove svg { stroke: currentColor; }

/* Qty Stepper */
.hm-qty-stepper {
  display: inline-flex; align-items: center;
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-button);
  overflow: hidden;
}
.hm-qty-btn {
  width: 36px; height: 36px;
  background: var(--color-bg-light);
  display: flex; align-items: center; justify-content: center;
  border: none; cursor: pointer; transition: background var(--transition-fast);
}
.hm-qty-btn:hover { background: var(--color-border); }
.hm-qty-btn svg { stroke: currentColor; }
.hm-qty-stepper .qty, .hm-qty-stepper input[type=number] {
  width: 48px !important; height: 36px !important; text-align: center !important;
  border: none !important; border-left: 1px solid var(--color-border) !important;
  border-right: 1px solid var(--color-border) !important;
  font-weight: 600 !important; font-family: var(--font-base) !important;
  -moz-appearance: textfield !important;
}
.hm-qty-stepper input[type=number]::-webkit-inner-spin-button { display: none; }

/* Cart Actions */
.hm-cart-actions { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem; padding: 1.25rem 0; }
.hm-coupon-form { display: flex; flex-direction: column; gap: 0.5rem; }
.hm-coupon-label { font-size: 13px; font-weight: 600; }
.hm-coupon-form__input-group { display: flex; gap: 0.5rem; }
.hm-coupon-input { height: 42px; padding: 0 1rem; border: 1.5px solid var(--color-border); border-radius: var(--radius-button); font-size: 14px; width: 220px; }
.hm-coupon-input:focus { border-color: var(--color-dark); }

.hm-continue-shopping {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 13px; color: var(--color-body); margin-top: 0.75rem;
  transition: color var(--transition-fast), gap var(--transition-fast);
}
.hm-continue-shopping:hover { color: var(--color-primary); gap: 10px; }
.hm-continue-shopping svg { stroke: currentColor; }

/* Order Summary */
.hm-order-summary {
  background: var(--color-bg-light);
  border-radius: var(--radius-card);
  border: 1px solid var(--color-border);
  padding: 1.75rem;
  position: sticky;
  top: 100px;
}
.hm-order-summary__title { font-size: 16px; margin-bottom: 1.25rem; padding-bottom: 0.875rem; border-bottom: 1px solid var(--color-border); }

.hm-order-summary__rows { display: flex; flex-direction: column; gap: 0.75rem; margin-bottom: 1.25rem; padding-bottom: 1.25rem; border-bottom: 1px solid var(--color-border); }
.hm-order-summary__row { display: flex; justify-content: space-between; font-size: 14px; }
.hm-order-summary__row--discount { color: #22c55e; }
.hm-discount-amount { font-weight: 600; }

.hm-order-summary__total { display: flex; justify-content: space-between; align-items: center; font-weight: 700; font-size: 18px; margin-bottom: 1.5rem; }
.hm-order-total { color: var(--color-primary); }

/* Free Shipping Bar */
.hm-free-shipping-bar { margin-bottom: 1.25rem; }
.hm-free-shipping-bar__text { font-size: 13px; color: var(--color-body); margin-bottom: 0.5rem; }
.hm-free-shipping-bar__track { height: 6px; background: var(--color-border); border-radius: 3px; overflow: hidden; }
.hm-free-shipping-bar__fill { height: 100%; background: var(--color-dark-green); border-radius: 3px; transition: width 0.5s ease; }
.hm-free-shipping-bar--achieved { display: flex; align-items: center; gap: 6px; font-size: 13px; color: var(--color-dark-green); font-weight: 600; }
.hm-free-shipping-bar--achieved svg { stroke: currentColor; }

.hm-cart-payment-icons { display: flex; gap: 0.4rem; flex-wrap: wrap; margin-top: 1rem; }
.hm-payment-icon { padding: 3px 8px; background: white; border: 1px solid var(--color-border); border-radius: 4px; font-size: 10px; font-weight: 600; color: var(--color-body); }

/* Empty Cart */
.hm-empty-cart { text-align: center; padding: 4rem 2rem; }
.hm-empty-cart__icon { margin: 0 auto 1.5rem; width: 80px; height: 80px; background: var(--color-bg-light); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--color-muted); }
.hm-empty-cart h2 { font-size: 1.5rem; margin-bottom: 0.75rem; }
.hm-empty-cart p { color: var(--color-muted); margin-bottom: 1.5rem; }

/* =========================================================
   25. CHECKOUT PAGE
   ========================================================= */
.hm-checkout-page { padding: 2rem 0 4rem; }
.hm-checkout-header { text-align: left; margin-bottom: 1.5rem; }
.hm-checkout-header .hm-section-title { font-size: 2rem; }

.hm-checkout-trust {
  display: flex; align-items: center; gap: 1.5rem; flex-wrap: wrap;
  background: var(--color-bg-light); padding: 0.875rem 1.25rem; border-radius: var(--radius-card);
  border: 1px solid var(--color-border); margin-bottom: 2rem;
}
.hm-checkout-trust span { display: flex; align-items: center; gap: 6px; font-size: 13px; color: var(--color-body); }
.hm-checkout-trust svg { stroke: var(--color-primary); }

.hm-checkout-layout { display: grid; grid-template-columns: 1fr 420px; gap: 2rem; align-items: start; }
.hm-checkout-sidebar { position: sticky; top: 100px; }

.hm-checkout-section {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-card);
  margin-bottom: 1.25rem;
  overflow: hidden;
}
.hm-checkout-section__title {
  display: flex; align-items: center; gap: 0.75rem;
  padding: 1.25rem 1.5rem;
  font-size: 15px; font-weight: 700;
  background: var(--color-bg-light);
  border-bottom: 1px solid var(--color-border);
}
.hm-checkout-section__title svg { stroke: var(--color-primary); flex-shrink: 0; }
.hm-checkout-section__content { padding: 1.5rem; }

.hm-checkout-guest-notice {
  padding: 1rem 1.25rem; background: #fffbf0;
  border: 1px solid #f0e0a0; border-radius: var(--radius-card); margin-bottom: 1.25rem;
  font-size: 13px;
}
.hm-link { color: var(--color-primary); text-decoration: underline; }

.hm-checkout-coupon-toggle {
  width: 100%; text-align: left;
  display: flex; align-items: center; gap: 8px;
  padding: 1rem 1.25rem; font-size: 13px;
  background: #fffbf0; border: 1px solid #f0e0a0; border-radius: var(--radius-card);
  cursor: pointer; transition: background var(--transition-fast); color: var(--color-body);
}
.hm-checkout-coupon-toggle svg { stroke: var(--color-primary); }
.hm-checkout-coupon-form { padding: 1rem 0 0; }
.hm-checkout-coupon-section { margin-top: 1.25rem; }

/* =========================================================
   26. ABOUT PAGE
   ========================================================= */
.hm-about-hero {
  position: relative; min-height: 60vh;
  display: flex; align-items: flex-end;
  overflow: hidden;
}
.hm-about-hero__bg { position: absolute; inset: 0; }
.hm-about-hero__img { width: 100%; height: 100%; object-fit: cover; }
.hm-about-hero__overlay { position: absolute; inset: 0; background: linear-gradient(0deg, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.3) 60%, transparent 100%); }
.hm-about-hero__content { position: relative; z-index: 1; padding-bottom: 4rem; }
.hm-about-hero__heading { font-size: clamp(2rem, 4vw, 3.2rem); color: white; margin-bottom: 0.75rem; }
.hm-about-hero__subtext { font-size: 15px; color: rgba(255,255,255,0.7); max-width: 480px; }

.hm-about-story__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.hm-about-story__content h2 { font-size: clamp(1.5rem, 3vw, 2rem); margin-bottom: 1rem; }
.hm-about-story__content p { font-size: 15px; line-height: 1.8; color: var(--color-body); margin-bottom: 1rem; }

.hm-about-story__image-stack { position: relative; }
.hm-about-img--main { border-radius: var(--radius-card); box-shadow: var(--shadow-hover); }
.hm-about-story__image-badge {
  position: absolute; bottom: -1rem; left: -1rem;
  background: var(--color-dark); color: white;
  padding: 1rem 1.5rem; border-radius: var(--radius-card);
  box-shadow: var(--shadow-hover);
}
.hm-about-story__badge-number { display: block; font-size: 1.5rem; font-weight: 700; color: var(--color-yellow-green); }
.hm-about-story__badge-text { font-size: 12px; color: rgba(255,255,255,0.7); }

.hm-about-mission__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.hm-value-card {
  background: var(--color-white); border-radius: var(--radius-card);
  padding: 1.75rem; border: 1px solid var(--color-border);
  transition: box-shadow var(--transition-base), transform var(--transition-base);
}
.hm-value-card:hover { box-shadow: var(--shadow-hover); transform: translateY(-4px); }
.hm-value-card__emoji { font-size: 2rem; margin-bottom: 0.75rem; display: block; }
.hm-value-card__title { font-size: 16px; margin-bottom: 0.5rem; }
.hm-value-card__desc { font-size: 13px; color: var(--color-body); line-height: 1.65; margin: 0; }

.hm-process-steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.hm-process-step {
  display: flex; align-items: flex-start; gap: 1rem;
  background: var(--color-bg-light); border-radius: var(--radius-card);
  padding: 1.5rem; border: 1px solid var(--color-border);
}
.hm-process-step__number {
  font-size: 2rem; font-weight: 800; color: var(--color-border);
  line-height: 1; flex-shrink: 0; min-width: 48px;
  font-family: var(--font-base);
}
.hm-process-step__content h3 { font-size: 15px; margin-bottom: 0.4rem; }
.hm-process-step__content p { font-size: 13px; color: var(--color-body); line-height: 1.6; margin: 0; }

/* =========================================================
   27. 404 PAGE
   ========================================================= */
.hm-404-page { padding: 5rem 0; }
.hm-404-content { text-align: center; max-width: 540px; margin: 0 auto; }
.hm-404-illustration { position: relative; margin-bottom: 2rem; }
.hm-404-code { font-size: 10rem; font-weight: 800; color: var(--color-border); line-height: 1; display: block; }
.hm-404-clay-icon { font-size: 4rem; position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); }
.hm-404-title { font-size: 1.8rem; margin-bottom: 0.75rem; }
.hm-404-desc { color: var(--color-muted); margin-bottom: 2rem; font-size: 15px; }
.hm-404-actions { display: flex; gap: 1rem; justify-content: center; margin-bottom: 2rem; }
.hm-404-search { color: var(--color-muted); font-size: 13px; }
.hm-404-search p { margin-bottom: 0.75rem; }

/* =========================================================
   28. ANIMATION UTILITIES
   ========================================================= */
.hm-fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.hm-fade-up.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Delay variants */
[data-delay="80"] { transition-delay: 0.08s; }
[data-delay="100"] { transition-delay: 0.1s; }
[data-delay="160"] { transition-delay: 0.16s; }
[data-delay="200"] { transition-delay: 0.2s; }
[data-delay="240"] { transition-delay: 0.24s; }
[data-delay="300"] { transition-delay: 0.3s; }
[data-delay="320"] { transition-delay: 0.32s; }
[data-delay="400"] { transition-delay: 0.4s; }
[data-delay="480"] { transition-delay: 0.48s; }

/* =========================================================
   29. RESPONSIVE — TABLET (max 1024px)
   ========================================================= */
@media (max-width: 1024px) {
  :root { --section-gap-desktop: 60px; }

  .hm-features-strip__grid { grid-template-columns: repeat(2, 1fr); }
  .hm-product-grid--4col { grid-template-columns: repeat(3, 1fr); }
  .hm-why-section__container { grid-template-columns: 1fr; gap: 2.5rem; }
  .hm-why-section__visual { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
  .hm-why-section__benefits { grid-template-columns: 1fr; }
  .hm-footer__grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .hm-newsletter-bar__inner { grid-template-columns: 1fr; gap: 1.5rem; }
  .hm-about-mission__grid { grid-template-columns: repeat(2, 1fr); }
  .hm-process-steps { grid-template-columns: repeat(2, 1fr); }
  .hm-product-layout { grid-template-columns: 1fr; gap: 2rem; }
  .hm-product-gallery { position: static; }
  .hm-instagram-grid { grid-template-columns: repeat(3, 1fr); }
  .hm-shop-layout { grid-template-columns: 220px 1fr; }
}

/* =========================================================
   30. RESPONSIVE — MOBILE (max 768px)
   ========================================================= */
@media (max-width: 768px) {
  :root {
    --section-gap-desktop: var(--section-gap-mobile);
    --gutter: 16px;
  }

  /* Header */
  .hm-hamburger { display: flex; }
  .hm-header__nav { display: none; }
  .hm-header__inner { gap: 0.5rem; }

  .hm-announcement-bar__slides { flex-direction: column; gap: 0; }
  .hm-announcement-bar__item:not(:first-child) { display: none; }

  /* Hero */
  .hm-hero { min-height: 80vh; }
  .hm-hero__content { padding: 1.5rem; border-radius: 16px; }
  .hm-hero__ctas { flex-direction: column; }
  .hm-hero__stats { display: none; }
  .hm-hero__scroll-indicator { display: none; }

  /* Features */
  .hm-features-strip__grid { grid-template-columns: 1fr; gap: 0.5rem; }
  .hm-feature-item { padding: 0.875rem; background: var(--color-white); border-radius: 8px; }

  /* Products */
  .hm-product-grid--3col { grid-template-columns: repeat(2, 1fr); gap: 0.875rem; }
  .hm-product-grid--4col { grid-template-columns: repeat(2, 1fr); gap: 0.875rem; }

  /* Why Section */
  .hm-why-section__container { grid-template-columns: 1fr; }
  .hm-why-section__visual { grid-template-columns: 1fr; }

  /* Testimonials */
  .hm-testimonials-section .swiper-button-prev,
  .hm-testimonials-section .swiper-button-next { display: none; }

  /* Footer */
  .hm-footer__grid { grid-template-columns: 1fr; gap: 2rem; }
  .hm-footer__tagline { max-width: 100%; }
  .hm-newsletter-bar__inner { grid-template-columns: 1fr; }
  .hm-newsletter-form__group { flex-direction: column; }

  /* Cart */
  .hm-cart-layout { grid-template-columns: 1fr; }
  .hm-cart-table-header { display: none; }
  .hm-cart-item { grid-template-columns: 1fr; grid-template-rows: auto; gap: 0.75rem; padding: 1.25rem; border: 1px solid var(--color-border); border-radius: var(--radius-card); margin-bottom: 0.75rem; }
  .hm-cart-col--price::before { content: attr(data-title) ": "; font-size: 11px; font-weight: 700; text-transform: uppercase; color: var(--color-muted); }
  .hm-cart-col--total::before { content: attr(data-title) ": "; font-size: 11px; font-weight: 700; text-transform: uppercase; color: var(--color-muted); }
  .hm-cart-col--remove { justify-content: flex-start; }
  .hm-cart-actions { flex-direction: column; align-items: flex-start; }
  .hm-coupon-form { width: 100%; }
  .hm-coupon-input { width: 100%; }
  .hm-coupon-form__input-group { flex-direction: column; }
  .hm-order-summary { position: static; }

  /* Checkout */
  .hm-checkout-layout { grid-template-columns: 1fr; }
  .hm-checkout-sidebar { position: static; }

  /* Shop */
  .hm-shop-layout { grid-template-columns: 1fr; }
  .hm-shop-sidebar {
    position: fixed; left: -280px; top: 0; height: 100vh;
    z-index: 500; overflow-y: auto;
    width: 280px; border-radius: 0;
    transition: left var(--transition-slow);
  }
  .hm-shop-sidebar.is-open { left: 0; }
  .hm-sidebar-close { display: flex; }
  .hm-sidebar-header { position: sticky; top: 0; background: white; z-index: 1; }

  /* About */
  .hm-about-story__grid { grid-template-columns: 1fr; gap: 2rem; }
  .hm-about-mission__grid { grid-template-columns: 1fr 1fr; }
  .hm-process-steps { grid-template-columns: 1fr; }

  /* Promo */
  .hm-promo-banner__inner { grid-template-columns: 1fr; }
  .hm-promo-banner__image { display: none; }

  /* Instagram */
  .hm-instagram-grid { grid-template-columns: repeat(3, 1fr); }

  /* Blog */
  .hm-post-grid--3col { grid-template-columns: 1fr; }

  /* Product single */
  .hm-shipping-info { grid-template-columns: 1fr; }
}

/* =========================================================
   31. RESPONSIVE — SMALL MOBILE (max 480px)
   ========================================================= */
@media (max-width: 480px) {
  .hm-product-grid--3col,
  .hm-product-grid--4col { grid-template-columns: 1fr 1fr; gap: 0.75rem; }
  .hm-about-mission__grid { grid-template-columns: 1fr; }
  .hm-instagram-grid { grid-template-columns: repeat(2, 1fr); }
  .hm-product-layout { grid-template-columns: 1fr; }
  .hm-404-code { font-size: 6rem; }
  .hm-hero__heading { font-size: 2rem; }
}

/* =========================================================
   32. PRINT
   ========================================================= */
@media print {
  .hm-announcement-bar,
  .hm-header,
  .hm-footer,
  .hm-back-to-top,
  .hm-whatsapp-float { display: none !important; }
}

/* =========================================================
   33. GLOBAL TEXT FIXES — ANTI-FRACTURE & READABILITY
   ========================================================= */

/* Force crisp, anti-aliased font rendering everywhere */
*, *::before, *::after {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

/* Prevent text from breaking weirdly */
p, li, span, a, h1, h2, h3, h4, h5, h6, blockquote, label, td, th {
  word-break: normal;
  overflow-wrap: break-word;
  hyphens: none;
}

/* Prevent clamp() sizes from going too small on mobile */
h1 { font-size: clamp(1.75rem, 5vw, 4rem) !important; }
h2 { font-size: clamp(1.5rem, 4vw, 2.6rem) !important; }
h3 { font-size: clamp(1.1rem, 3vw, 1.6rem) !important; }
h4 { font-size: clamp(1rem, 2vw, 1.25rem) !important; }

/* Headings always pure dark */
h1, h2, h3, h4, h5, h6 {
  color: #111111 !important;
  font-weight: 600;
  line-height: 1.25;
  letter-spacing: -0.02em;
}

/* Body / paragraph text always solid readable dark */
body, p, li, span:not(.hm-hero__eyebrow):not(.hm-section-eyebrow):not(.hm-badge):not(.hm-stars):not(.payment-badge):not(.newsletter-card-tag):not(.hm-testimonials-metric-count):not(.hm-testimonial-info__location):not(.hm-footer__logo-text):not(.hm-rating-count) {
  color: #333333;
}

/* Section eyebrows – keep brand red */
.hm-section-eyebrow { color: var(--color-primary) !important; }

/* Links on light backgrounds */
a { color: #111111; }
a:hover { color: var(--color-primary); }

/* =========================================================
   34. HERO SECTION — TEXT READABILITY
   ========================================================= */

/* Hero text styling overrides */
.hm-hero__content * { color: #ffffff !important; }
.hm-hero__content .hm-btn--primary { color: #ffffff !important; }
.hm-hero__content .hm-btn--outline-white { color: #ffffff !important; }
.hm-hero__heading em { color: var(--color-yellow-green) !important; font-style: normal; }
.hm-hero__eyebrow { color: #ffffff !important; font-weight: 700 !important; letter-spacing: 0.12em !important; background: rgba(255,255,255,0.12) !important; border: 1px solid rgba(255,255,255,0.25) !important; padding: 6px 14px !important; border-radius: 50px !important; }
.hm-hero__subtext { color: rgba(255,255,255,0.92) !important; font-size: 16px !important; line-height: 1.7 !important; }

/* Stats bar — always dark text on white pill */
.hm-hero__stats-bar { background: #ffffff; }
.hm-hero__stat-bar-item strong { color: #111111 !important; font-size: 18px; font-weight: 700; }
.hm-hero__stat-bar-item span { color: #555555 !important; font-size: 12px; }

/* =========================================================
   35. FEATURES STRIP — CLEAN LIGHT CARDS
   ========================================================= */
.hm-feature-item {
  background: #ffffff;
  border: 1px solid #ebebeb;
  border-radius: 12px;
  padding: 2.25rem 1.75rem !important;
  display: flex;
  align-items: flex-start;
  gap: 1.5rem !important;
  transition: box-shadow 0.28s ease, transform 0.28s ease;
}
.hm-feature-item:hover { box-shadow: 0 10px 45px rgba(0,0,0,0.12); transform: translateY(-4px); }
.hm-feature-item__icon { color: var(--color-primary); flex-shrink: 0; width: 58px !important; height: 58px !important; }
.hm-feature-item__icon svg { stroke: currentColor; width: 28px; height: 28px; }
.hm-feature-item__title { font-size: 17px !important; font-weight: 700 !important; color: #111111 !important; margin-bottom: 0.5rem !important; }
.hm-feature-item__desc { font-size: 14.5px !important; color: #555555 !important; line-height: 1.7 !important; margin: 0 !important; }

/* =========================================================
   36. SECTION HEADERS — STRONG CONTRAST
   ========================================================= */
.hm-section-header .hm-section-title { color: #111111 !important; }
.hm-section-header .hm-section-subtitle { color: #555555 !important; }

/* =========================================================
   37. PRODUCT CARDS — CRISP TEXT
   ========================================================= */
.hm-product-card__title a { color: #111111 !important; font-weight: 600 !important; font-size: 14px !important; }
.hm-product-card__title a:hover { color: var(--color-primary) !important; }
.hm-price { color: #111111 !important; font-weight: 700 !important; }
.hm-price--sale { color: var(--color-primary) !important; }
.hm-price--old { color: #999999 !important; font-weight: 400 !important; }
.hm-rating-count { color: #888888 !important; }

/* =========================================================
   38. WHY SECTION — FIXED DARK GREEN (keep colors same)
   ========================================================= */
/* Headings inside why section must stay white */
.hm-why-section h2.hm-why-section__heading { color: #ffffff !important; }
.hm-why-card__title { color: #ffffff !important; font-size: 15px !important; font-weight: 700 !important; }
.hm-why-card__desc { color: rgba(255,255,255,0.75) !important; font-size: 13px !important; }
.hm-why-section .hm-section-eyebrow--accent { color: var(--color-yellow-green) !important; }
.hm-why-section__intro { color: rgba(255,255,255,0.82) !important; font-size: 15px !important; }

/* =========================================================
   39. TESTIMONIALS SECTION — READABLE TEXT
   ========================================================= */
.hm-testimonials-section { background: #f8f8f8 !important; }

/* Left summary box */
.hm-testimonials-summary-box .hm-section-title { color: #111111 !important; }
.hm-testimonials-summary-box__desc { color: #444444 !important; font-size: 14px !important; line-height: 1.7 !important; }
.hm-testimonials-metric-stars strong { color: #111111 !important; font-size: 20px !important; font-weight: 700 !important; }
.hm-testimonials-metric-count { color: #666666 !important; font-size: 13px !important; }
.hm-badge-tag { color: #111111 !important; font-size: 12px !important; background: #ffffff !important; border-color: #dddddd !important; }

/* Review cards */
.hm-testimonial-premium-card { background: #ffffff !important; border-color: #e8e8e8 !important; }
.hm-testimonial-premium-card__text { color: #333333 !important; font-size: 15px !important; line-height: 1.8 !important; font-style: italic; }
.hm-testimonial-info__name { color: #111111 !important; font-size: 15px !important; font-weight: 700 !important; }
.hm-testimonial-info__location { color: #777777 !important; font-size: 12px !important; }
.product-tag-label { color: #555555 !important; font-size: 12px !important; background: #f0f0f0 !important; }

/* =========================================================
   40. PROMO BANNER — KEEP WHITE TEXT ON DARK
   ========================================================= */
.hm-promo-banner__content h2 { color: #ffffff !important; }
.hm-promo-banner__content p { color: rgba(255,255,255,0.82) !important; }
.hm-promo-banner__content strong { color: var(--color-yellow-green) !important; }

/* =========================================================
   41. FOOTER — PURE BLACK + CRISP WHITE TEXT
   ========================================================= */

/* Newsletter strip above footer */
.hm-footer__newsletter-strip { background: #1a0a0a !important; padding: 3rem 0 !important; }
.hm-newsletter-card {
  background: linear-gradient(135deg, #c34a36 0%, #9c2e1c 100%) !important;
  border-radius: 18px !important;
  box-shadow: 0 24px 64px rgba(155, 46, 28, 0.55) !important;
  border: 1px solid rgba(255,255,255,0.1) !important;
}
.hm-newsletter-card__content h3 {
  color: #ffffff !important;
  font-size: 2rem !important;
  font-weight: 800 !important;
  letter-spacing: -0.02em !important;
  text-shadow: 0 2px 8px rgba(0,0,0,0.2) !important;
}
.hm-newsletter-card__content p { color: rgba(255,255,255,0.92) !important; font-size: 15px !important; line-height: 1.65 !important; }
.newsletter-card-tag {
  background: rgba(255,255,255,0.18) !important;
  color: #f3fc81 !important;
  font-size: 11px !important;
  font-weight: 700 !important;
  border: 1px solid rgba(255,255,255,0.25) !important;
  letter-spacing: 0.12em !important;
}
.hm-newsletter-form__group input {
  background: rgba(255,255,255,0.12) !important;
  border: 1.5px solid rgba(255,255,255,0.25) !important;
  color: #ffffff !important;
  font-size: 14px !important;
  border-radius: 8px !important;
}
.hm-newsletter-form__group input::placeholder { color: rgba(255,255,255,0.5) !important; }
.hm-newsletter-form__note { color: rgba(255,255,255,0.5) !important; font-size: 11px !important; }
.hm-newsletter-form__group .hm-btn--primary {
  background: #ffffff !important;
  color: #c34a36 !important;
  border-color: #ffffff !important;
  font-weight: 700 !important;
}
.hm-newsletter-form__group .hm-btn--primary:hover {
  background: #f3fc81 !important;
  color: #111 !important;
  border-color: #f3fc81 !important;
}

/* Main footer body — pure black */
.hm-footer { background: #000000 !important; }
.hm-footer__main { background: #000000 !important; padding: 8rem 0 4rem !important; }

/* Footer logo */
.hm-footer__logo-text { color: #ffffff !important; font-size: 1.4rem !important; font-weight: 700 !important; }

/* Footer tagline — clearly readable off-white */
.hm-footer__tagline { color: rgba(255,255,255,0.72) !important; font-size: 13.5px !important; line-height: 1.8 !important; }

/* Footer column titles */
.hm-footer__col-title {
  color: #ffffff !important;
  font-size: 13px !important;
  font-weight: 700 !important;
  letter-spacing: 0.1em !important;
  text-transform: uppercase !important;
  border-left: 2px solid var(--color-primary) !important;
  padding-left: 8px !important;
  margin-bottom: 1.25rem !important;
}

/* Footer links — visible warm-white, never grey-invisible */
.hm-footer__links a { color: rgba(255,255,255,0.7) !important; font-size: 13.5px !important; }
.hm-footer__links a:hover { color: #f3fc81 !important; padding-left: 4px; }

/* Footer contact info */
.hm-footer__contact-info p { color: rgba(255,255,255,0.72) !important; font-size: 13.5px !important; }
.hm-footer__contact-info a { color: rgba(255,255,255,0.72) !important; }
.hm-footer__contact-info a:hover { color: #f3fc81 !important; }

/* Payment badges */
.payment-badge {
  background: rgba(255,255,255,0.08) !important;
  border: 1px solid rgba(255,255,255,0.15) !important;
  color: rgba(255,255,255,0.82) !important;
  font-size: 11px !important;
  font-weight: 600 !important;
  padding: 4px 10px !important;
  border-radius: 5px !important;
}

/* Social links */
.hm-social-link { color: rgba(255,255,255,0.75) !important; }
.hm-social-link:hover { color: #ffffff !important; }

/* Footer bottom bar */
.hm-footer__bottom { background: #000000 !important; border-top: 1px solid rgba(255,255,255,0.08) !important; }
.hm-footer__copyright { color: rgba(255,255,255,0.5) !important; font-size: 12.5px !important; }
.hm-footer__trust-stamps { color: rgba(255,255,255,0.5) !important; font-size: 12.5px !important; }

/* =========================================================
   42. GENERAL LIGHT SECTIONS — ENSURE TEXT NEVER FADES
   ========================================================= */

/* Any section with light background: force dark text */
.hm-section:not(.hm-why-section):not(.hm-hero):not(.hm-promo-banner) h2,
.hm-section:not(.hm-why-section):not(.hm-hero):not(.hm-promo-banner) h3,
.hm-section:not(.hm-why-section):not(.hm-hero):not(.hm-promo-banner) h4 {
  color: #111111 !important;
}

.hm-section:not(.hm-why-section):not(.hm-hero):not(.hm-promo-banner) p,
.hm-section:not(.hm-why-section):not(.hm-hero):not(.hm-promo-banner) li {
  color: #444444 !important;
}

/* No text-shadow on body text (can cause fracture look) */
p, li, span, a, td, th, label { text-shadow: none !important; }

/* Headings: only subtle shadow on hero overlays */
.hm-hero__content h1 { text-shadow: 0 2px 20px rgba(0,0,0,0.5) !important; }
.hm-hero__content p { text-shadow: 0 1px 8px rgba(0,0,0,0.3) !important; }

/* =========================================================
   43. DEMO PAGE NOTICE — CLEAN STYLE
   ========================================================= */
.demo-instructions { color: #1e40af !important; font-size: 14px !important; font-weight: 500 !important; }
.demo-instructions a { color: #1d4ed8 !important; }

/* =========================================================
   44. UNIFIED WHITE SECTIONS WITH SEPARATOR LINES
   ========================================================= */

/* Make all sections white and distinct using borders */
.hm-section {
  background-color: #ffffff !important;
  background-image: none !important;
  border-bottom: 1px solid #eef0f2 !important;
  padding-top: 5rem !important;
  padding-bottom: 5rem !important;
}

/* Ensure all text inside light sections is highly legible black and dark grey */
.hm-section h2, 
.hm-section h3, 
.hm-section h4, 
.hm-section .hm-section-title,
.hm-section .hm-cc-heading {
  color: #000000 !important;
}

.hm-section p, 
.hm-section span:not(.hm-section-eyebrow):not(.hm-stars):not(.hm-rating-count):not(.hm-price), 
.hm-section li, 
.hm-section .hm-section-subtitle,
.hm-section .hm-cc-subtitle {
  color: #222222 !important;
}

/* All eyebrow tags should use the brand red color for high visibility */
.hm-section-eyebrow,
.hm-promo-banner__tag {
  color: var(--color-primary, #d0473e) !important;
  border-color: rgba(208,71,62,0.2) !important;
  background: rgba(208,71,62,0.06) !important;
  font-weight: 700 !important;
}

/* Why Section Light Theme Styles */
#why-naya-clay .hm-why-section__overlay {
  display: none !important;
}
#why-naya-clay h2.hm-why-section__heading {
  color: #000000 !important;
}
#why-naya-clay .hm-why-section__intro {
  color: #222222 !important;
}
#why-naya-clay .hm-why-card {
  background: #ffffff !important;
  border: 1px solid #ede9e3 !important;
  box-shadow: 0 4px 12px rgba(0,0,0,0.03) !important;
}
#why-naya-clay .hm-why-card__title {
  color: #000000 !important;
}
#why-naya-clay .hm-why-card__desc {
  color: #444444 !important;
}
#why-naya-clay .hm-why-card__icon {
  color: var(--color-primary, #d0473e) !important;
}
#why-naya-clay .hm-why-floating-stat {
  background: #ffffff !important;
  border: 1px solid #ebebeb !important;
  box-shadow: 0 8px 30px rgba(0,0,0,0.08) !important;
}
#why-naya-clay .hm-why-floating-stat strong {
  color: #000000 !important;
}
#why-naya-clay .hm-why-floating-stat span {
  color: #444444 !important;
}
#why-naya-clay .hm-section-eyebrow--accent {
  color: var(--color-primary, #d0473e) !important;
}
#why-naya-clay .hm-why-floating-seal circle {
  stroke: var(--color-primary, #d0473e) !important;
}
#why-naya-clay .hm-why-floating-seal text {
  fill: var(--color-primary, #d0473e) !important;
}
#why-naya-clay .hm-btn--yellow-green {
  background-color: var(--color-primary, #d0473e) !important;
  border-color: var(--color-primary, #d0473e) !important;
  color: #ffffff !important;
}
#why-naya-clay .hm-btn--yellow-green:hover {
  background-color: var(--color-primary-dark, #b83930) !important;
  border-color: var(--color-primary-dark, #b83930) !important;
}

/* Promo Banner Light Theme Styles */
.hm-promo-banner {
  background: #ffffff !important;
}
.hm-promo-banner__inner {
  background: #ffffff !important;
  border: 1px solid #eef0f2 !important;
  box-shadow: 0 10px 40px rgba(0,0,0,0.05) !important;
}
.hm-promo-banner__content h2 {
  color: #000000 !important;
}
.hm-promo-banner__content p {
  color: #222222 !important;
}
.hm-promo-banner__content strong {
  color: var(--color-primary, #d0473e) !important;
}
.hm-promo-banner .hm-btn--primary {
  background-color: var(--color-primary, #d0473e) !important;
  border-color: var(--color-primary, #d0473e) !important;
  color: #ffffff !important;
}
.hm-promo-banner .hm-btn--primary:hover {
  background-color: var(--color-primary-dark, #b83930) !important;
  border-color: var(--color-primary-dark, #b83930) !important;
}

/* =========================================================
   45. WHATSAPP ORDER BUTTON — SINGLE PRODUCT PAGE
   ========================================================= */
.hm-btn--whatsapp-order {
  background: #25d366 !important;
  color: #ffffff !important;
  border: none !important;
  border-radius: var(--radius-button, 8px) !important;
  font-weight: 600 !important;
  padding: 0.8rem 1.5rem !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 8px !important;
  width: 100% !important;
  margin-top: 12px !important;
  text-decoration: none !important;
  box-shadow: 0 4px 20px rgba(37,211,102,0.25) !important;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s !important;
  cursor: pointer !important;
}
.hm-btn--whatsapp-order:hover {
  background: #1ebe5d !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 8px 28px rgba(37,211,102,0.35) !important;
  color: #ffffff !important;
}
.hm-btn--whatsapp-order svg { flex-shrink: 0; }

/* =========================================================
   46. SECTION ICONS — GUARANTEED VISIBILITY
   ========================================================= */

.hm-feature-item__icon {
  color: var(--color-primary) !important;
  background: rgba(208,71,62,0.08) !important;
  border-radius: 12px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 10px !important;
  width: 58px !important;
  height: 58px !important;
  flex-shrink: 0 !important;
}
.hm-feature-item__icon svg {
  width: 30px !important;
  height: 30px !important;
  stroke: currentColor !important;
  fill: none !important;
  display: block !important;
}

.hm-why-card__icon {
  color: var(--color-yellow-green, #f3fc81) !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  margin-bottom: 0.75rem !important;
}
.hm-why-card__icon svg {
  width: 32px !important;
  height: 32px !important;
  stroke: currentColor !important;
  fill: none !important;
}

.hm-product-card__actions .hm-btn--icon {
  background: #ffffff !important;
  color: #333333 !important;
  border: 1px solid #e0e0e0 !important;
  width: 34px !important;
  height: 34px !important;
  border-radius: 50% !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  cursor: pointer !important;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08) !important;
  transition: background 0.2s, color 0.2s !important;
}
.hm-product-card__actions .hm-btn--icon:hover {
  background: var(--color-primary, #d0473e) !important;
  color: #ffffff !important;
  border-color: var(--color-primary, #d0473e) !important;
}
.hm-product-card__actions .hm-btn--icon svg {
  width: 15px !important;
  height: 15px !important;
  stroke: currentColor !important;
  display: block !important;
}

.hm-stars {
  color: #f59e0b !important;
  font-size: 13px !important;
  letter-spacing: 0.05em !important;
}

.hm-social-link svg {
  width: 18px !important;
  height: 18px !important;
  stroke: currentColor !important;
  fill: none !important;
  display: block !important;
}

/* =========================================================
   47. CATEGORY CIRCLES SHOWCASE — Below Hero
   ========================================================= */

.hm-category-circles-section {
  background: #ffffff;
  padding: 3.5rem 0 3rem;
  border-bottom: 1px solid #f0f0f0;
}

/* Heading block */
.hm-cc-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 2.75rem;
  padding: 0 1rem;
}

.hm-cc-heading {
  font-family: var(--font-heading, 'Playfair Display', serif);
  font-size: clamp(1.4rem, 3.5vw, 1.85rem);
  font-weight: 700;
  color: #111111;
  line-height: 1.3;
  margin: 0 0 0.85rem;
  letter-spacing: -0.01em;
}

.hm-cc-subtitle {
  font-size: 14px;
  color: #3a7c4a;
  line-height: 1.7;
  margin: 0;
  font-weight: 400;
}

/* Grid of circles */
.hm-cc-grid {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 1.25rem;
  flex-wrap: wrap;
  padding: 0 0.5rem;
}

/* Single category item */
.hm-cc-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  cursor: pointer;
  flex: 0 0 auto;
  width: 130px;
  transition: transform 0.28s ease;
}
.hm-cc-item:hover { transform: translateY(-6px); }

/* Circle image wrapper */
.hm-cc-item__circle {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  overflow: hidden;
  background: #f7f3ee;
  border: 3px solid #ede9e3;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hm-cc-item:hover .hm-cc-item__circle {
  border-color: var(--color-primary, #d0473e);
  box-shadow: 0 8px 32px rgba(208,71,62,0.18);
}

.hm-cc-item__circle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.35s ease;
}
.hm-cc-item:hover .hm-cc-item__circle img {
  transform: scale(1.08);
}

/* Category label */
.hm-cc-item__label {
  font-size: 13.5px;
  font-weight: 600;
  color: #222222;
  text-align: center;
  line-height: 1.3;
  letter-spacing: 0.01em;
}

/* ── Responsive ───────────────────────────────────────────── */
@media (max-width: 900px) {
  .hm-cc-item { width: 110px; }
  .hm-cc-item__circle { width: 100px; height: 100px; }
}

@media (max-width: 600px) {
  .hm-cc-grid { gap: 0.85rem; }
  .hm-cc-item { width: 85px; }
  .hm-cc-item__circle { width: 78px; height: 78px; }
  .hm-cc-item__label { font-size: 11.5px; }
  .hm-cc-heading { font-size: 1.25rem; }
}

@media (max-width: 380px) {
  .hm-cc-item { width: 72px; }
  .hm-cc-item__circle { width: 66px; height: 66px; }
}

/* =========================================================
   48. SOCIAL PROOF SALES POPUP WIDGET
   ========================================================= */

.hm-sales-popup {
  position: fixed;
  bottom: 100px; /* Sits beautifully above the WhatsApp float button */
  right: -360px; /* Starts hidden offscreen */
  width: 320px;
  background: #ffffff !important;
  border: 1px solid #ebebeb !important;
  border-radius: 12px !important;
  padding: 1rem 1.25rem !important;
  box-shadow: 0 10px 30px rgba(0,0,0,0.12) !important;
  z-index: 99999 !important;
  transition: right 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important;
  font-family: var(--font-base, sans-serif) !important;
}

.hm-sales-popup.is-active {
  right: 24px; /* Slide in */
}

/* Close button */
.hm-sales-popup__close {
  position: absolute;
  top: 8px;
  right: 12px;
  background: none !important;
  border: none !important;
  font-size: 18px !important;
  color: #999999 !important;
  cursor: pointer !important;
  padding: 0 !important;
  line-height: 1 !important;
  transition: color 0.2s !important;
}
.hm-sales-popup__close:hover {
  color: #333333 !important;
}

/* Buyer & Action line */
.hm-sales-popup__meta {
  font-size: 12.5px !important;
  margin-bottom: 4px !important;
  line-height: 1.4 !important;
}
.hm-sales-popup__buyer {
  font-weight: 600 !important;
  color: #111111 !important;
}
.hm-sales-popup__action {
  color: #666666 !important;
  margin-left: 4px !important;
}

/* Product title */
.hm-sales-popup__product {
  font-size: 14px !important;
  font-weight: 700 !important;
  color: #111111 !important;
  margin: 0 0 6px 0 !important;
  line-height: 1.4 !important;
}

/* Time & Verify stamp */
.hm-sales-popup__time-line {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  font-size: 11.5px !important;
}
.hm-sales-popup__time {
  color: #888888 !important;
}
.hm-sales-popup__verify {
  color: #555555 !important;
  font-weight: 600 !important;
  display: flex !important;
  align-items: center !important;
  gap: 2px !important;
}

/* Responsive adjustment */
@media (max-width: 480px) {
  .hm-sales-popup {
    bottom: 90px !important;
    right: -310px;
    width: 280px;
    padding: 0.85rem 1rem !important;
  }
  .hm-sales-popup.is-active {
    right: 16px !important;
  }
  .hm-sales-popup__product {
    font-size: 13px !important;
  }
}

/* =========================================================
   49. WOOCOMMERCE SINGLE PRODUCT EXTRA CUSTOM SECTIONS
   ========================================================= */

/* Variation Pills */
.hm-variation-pill {
  font-family: var(--font-base);
  font-size: 13px;
  font-weight: 500;
  color: var(--color-dark);
  border: 1.5px solid var(--color-border);
  background: #fafafa;
  border-radius: 20px;
  padding: 6px 14px;
  cursor: pointer;
  transition: all var(--transition-fast) ease;
}
.hm-variation-pill:hover {
  border-color: var(--color-primary);
  color: var(--color-primary);
  background: #fff9f9;
}
.hm-variation-pill.is-active {
  border-color: var(--color-primary);
  background: var(--color-primary);
  color: #ffffff;
}

/* Custom Reviews */
.hm-custom-reviews-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.hm-custom-review-card {
  border: 1px solid var(--color-border);
  background: #ffffff;
  padding: 1.25rem 1.5rem;
  border-radius: var(--radius-card);
}

/* Recently Viewed Strip */
.hm-rv-strip {
  display: flex;
  gap: 1.25rem;
  overflow-x: auto;
  padding-bottom: 1rem;
  scrollbar-width: thin;
  scrollbar-color: var(--color-border) transparent;
}
.hm-rv-strip::-webkit-scrollbar {
  height: 6px;
}
.hm-rv-strip::-webkit-scrollbar-track {
  background: transparent;
}
.hm-rv-strip::-webkit-scrollbar-thumb {
  background-color: var(--color-border);
  border-radius: 3px;
}
.hm-rv-item {
  width: 150px;
  transition: transform var(--transition-fast) ease;
}
.hm-rv-item:hover {
  transform: translateY(-2px);
}

/* ==========================================================
   50. COMPREHENSIVE RESPONSIVE ENHANCEMENTS
   Mobile-first approach — covering all key breakpoints:
   xs: <360px | sm: 360–479px | md: 480–767px |
   lg: 768–1023px | xl: 1024–1279px | 2xl: 1280px+
   ========================================================== */

/* ── Global touch / tap improvements ── */
@media (hover: none) and (pointer: coarse) {
  /* Increase tap target size for all interactive elements */
  .hm-btn, button, a { min-height: 44px; }
  .hm-header__icon { min-width: 44px; min-height: 44px; }
  /* Remove hover-only transforms on touch screens */
  .hm-btn:hover { transform: none !important; }
  .hm-product-card:hover { transform: none !important; }
  /* Larger scrollbar for touch */
  ::-webkit-scrollbar { width: 4px; height: 4px; }
}

/* ── 2XL — Wide desktops 1400px+ ── */
@media (min-width: 1400px) {
  .hm-container { max-width: 1340px; }
  .hm-container-fluid { max-width: 1480px; }
  .hm-hero__content { padding: 110px 40px; }
  .hm-products-grid { grid-template-columns: repeat(4, 1fr); gap: 2rem; }
  .hm-footer__grid { grid-template-columns: 2.2fr 1fr 1fr 1.4fr; gap: 3.5rem; }
}

/* ── XL — Standard desktops 1024–1279px ── */
@media (min-width: 1024px) and (max-width: 1279px) {
  .hm-products-grid { grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
  .hm-hero__heading { font-size: clamp(2.2rem, 4vw, 3.4rem); }
  .hm-footer__grid { grid-template-columns: 1.8fr 1fr 1fr 1.2fr; gap: 2rem; }
}

/* ── LG — Tablets landscape / Small desktops 768–1023px ── */
@media (max-width: 1023px) {
  /* Header */
  .hm-header__inner { padding: 0 16px; }
  .hm-nav-menu { gap: 1.2rem; }
  .hm-nav-menu > li > a { font-size: 13.5px; }

  /* Products */
  .hm-products-grid { grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }

  /* Hero */
  .hm-hero__heading { font-size: clamp(1.9rem, 4vw, 3rem); }
  .hm-hero__inner { padding: 70px 20px; }

  /* Why section */
  .hm-why-inner { gap: 2.5rem; }

  /* Footer */
  .hm-footer__grid { grid-template-columns: repeat(2, 1fr); gap: 2rem; }
  .hm-footer__col--brand { grid-column: 1 / -1; }
  .hm-footer__newsletter-strip .hm-newsletter-card { flex-direction: column; gap: 1.5rem; }
}

/* ── MD — Tablets portrait 480–767px ── */
@media (max-width: 767px) {

  /* ── Global ── */
  body { font-size: 14.5px; }
  .hm-container, .hm-container-fluid { padding-left: 16px; padding-right: 16px; }
  h1 { font-size: clamp(1.75rem, 6vw, 2.4rem); }
  h2 { font-size: clamp(1.4rem, 5vw, 2rem); }
  h3 { font-size: clamp(1.2rem, 4vw, 1.6rem); }

  /* ── Announcement Bar ── */
  .hm-announcement-bar__slides { flex-direction: column; gap: 2px; align-items: center; }
  .hm-ann-sep { display: none !important; }
  .hm-announcement-bar { padding: 6px 12px; font-size: 12px; }
  .hm-announcement-bar__item { white-space: normal; text-align: center; line-height: 1.5; }

  /* ── Header ── */
  .hm-header__inner { height: 58px; gap: 0.75rem; padding: 0 14px; }
  .hm-header__nav { display: none; }
  .hm-hamburger { display: flex !important; }
  .hm-header__icon { width: 36px; height: 36px; }
  .hm-logo-text { font-size: 1.1rem; }

  /* ── Hero ── */
  .hm-hero { min-height: 480px; }
  .hm-hero__inner { padding: 60px 16px 50px; }
  .hm-hero__eyebrow { font-size: 11px; padding: 4px 12px; }
  .hm-hero__heading { font-size: clamp(1.8rem, 7vw, 2.6rem); line-height: 1.15; }
  .hm-hero__sub { font-size: 14px; max-width: 100%; }
  .hm-hero__btns { flex-direction: column; gap: 0.75rem; }
  .hm-hero__btns .hm-btn { width: 100%; justify-content: center; }
  .hm-hero__stats { gap: 1.25rem; margin-top: 2rem; flex-wrap: wrap; }
  .hm-hero__stat strong { font-size: 1.3rem; }
  .hm-hero__stat span { font-size: 10.5px; }

  /* ── Slider controls ── */
  .hm-slider-prev, .hm-slider-next { width: 36px; height: 36px; }
  .hm-hero__dots { bottom: 14px; }

  /* ── Trust strip ── */
  .hm-trust-strip__inner { gap: 0.6rem; padding: 0.6rem 1rem; flex-wrap: wrap; justify-content: center; }
  .hm-trust-item { font-size: 11.5px; }

  /* ── Section spacing ── */
  .hm-section { padding: 48px 0; }
  .hm-section__header { margin-bottom: 2rem; }
  .hm-section__eyebrow { font-size: 11px; }
  .hm-section__title { font-size: clamp(1.4rem, 5vw, 2rem); }

  /* ── Products grid ── */
  .hm-products-grid { grid-template-columns: repeat(2, 1fr); gap: 0.85rem; }
  .hm-product-card__body { padding: 0.85rem; }
  .hm-product-card__title { font-size: 13px; }
  .hm-product-card__price { font-size: 14px; }
  .hm-product-card__btn .hm-btn { font-size: 12.5px; padding: 0.5rem 0.75rem; }

  /* ── Categories grid ── */
  .hm-categories-grid { grid-template-columns: repeat(2, 1fr); gap: 0.85rem; }

  /* ── Why section ── */
  .hm-why-inner { grid-template-columns: 1fr; gap: 2rem; }
  .hm-why__image { display: none; }
  .hm-why-features { grid-template-columns: 1fr 1fr; gap: 0.85rem; }
  .hm-why-feature { padding: 1rem; }

  /* ── Testimonials ── */
  .hm-testimonials-grid { grid-template-columns: 1fr; }

  /* ── Promo banner ── */
  .hm-promo-banner__inner { flex-direction: column; gap: 1.5rem; text-align: center; }
  .hm-promo-banner__image { width: 180px; margin: 0 auto; }
  .hm-promo-banner__actions { justify-content: center; }

  /* ── Features strip ── */
  .hm-features-strip { padding: 1rem 0; }
  .hm-features-strip__inner { gap: 0.75rem; }
  .hm-feature-item { font-size: 12px; }

  /* ── Newsletter strip ── */
  .hm-newsletter-card { padding: 1.5rem; flex-direction: column; gap: 1.25rem; text-align: center; }
  .hm-newsletter-card__content h3 { font-size: 1.15rem; }
  .hm-newsletter-card__form .hm-newsletter-form__group { flex-direction: column; }
  .hm-newsletter-card__form input[type="email"],
  .hm-newsletter-card__form button { width: 100%; border-radius: 8px !important; }

  /* ── Footer ── */
  .hm-footer__grid { grid-template-columns: 1fr 1fr; gap: 1.5rem; }
  .hm-footer__col--brand { grid-column: 1 / -1; }
  .hm-footer__logo-text { font-size: 1.1rem; }
  .hm-footer__tagline { font-size: 12.5px; }
  .hm-footer__col-title { font-size: 11px; }
  .hm-footer__links li { margin-bottom: 0.4rem; }
  .hm-footer__links a { font-size: 12.5px; }
  .hm-footer__contact-info p { font-size: 12.5px; }
  .hm-footer__bottom-inner { flex-direction: column; gap: 0.5rem; text-align: center; }
  .hm-footer__copyright { font-size: 11.5px; }
  .hm-footer__trust-stamps { font-size: 11.5px; }

  /* ── Single Product / WooCommerce ── */
  .hm-product-layout { grid-template-columns: 1fr; gap: 1.5rem; }
  .hm-product-gallery { order: 1; }
  .hm-product-details { order: 2; padding: 0; }
  .hm-product-title { font-size: clamp(1.4rem, 5vw, 1.9rem); }
  .hm-product-price { font-size: 1.3rem; }
  .hm-product-actions { flex-direction: column; gap: 0.75rem; }
  .hm-product-actions .hm-btn { width: 100%; }
  .hm-qty-wrap { justify-content: center; }

  /* ── Cart / Checkout ── */
  .hm-cart-layout { grid-template-columns: 1fr; gap: 1.5rem; }
  .hm-cart-table thead { display: none; }
  .hm-cart-table tr { display: grid; grid-template-columns: 80px 1fr; gap: 0.75rem; align-items: start; padding: 1rem 0; border-bottom: 1px solid var(--color-border); }
  .hm-cart-table td { border: none !important; padding: 0 !important; }
  .hm-cart-table td::before { content: attr(data-label); font-weight: 600; font-size: 11px; display: block; color: var(--color-muted); margin-bottom: 3px; }

  /* ── People also bought ── */
  .hm-pab-grid { grid-template-columns: repeat(2, 1fr); gap: 0.85rem; }

  /* ── WhatsApp float ── */
  .hm-whatsapp-float { width: 50px; height: 50px; bottom: 18px; right: 18px; }
  .hm-whatsapp-float svg { width: 24px; height: 24px; }

  /* ── Back to top ── */
  .hm-back-to-top { bottom: 78px; right: 14px; width: 36px; height: 36px; }

  /* ── Modals ── */
  .hm-add-product-modal { width: 95vw; max-height: 90vh; }
  .hm-promo-modal-inner { padding: 1.5rem 1rem; }
}

/* ── SM — Small phones 360–479px ── */
@media (max-width: 479px) {

  /* ── Global ── */
  body { font-size: 14px; }
  .hm-container, .hm-container-fluid { padding-left: 12px; padding-right: 12px; }

  /* ── Announcement bar ── */
  .hm-announcement-bar { font-size: 11.5px; }

  /* ── Header ── */
  .hm-header__inner { height: 54px; }
  .hm-logo-text { font-size: 1rem; }

  /* ── Hero ── */
  .hm-hero { min-height: 400px; }
  .hm-hero__inner { padding: 48px 12px 40px; }
  .hm-hero__heading { font-size: clamp(1.6rem, 8vw, 2.2rem); }
  .hm-hero__sub { font-size: 13px; }
  .hm-hero__stats { gap: 0.85rem; }
  .hm-hero__stat strong { font-size: 1.15rem; }

  /* ── Products ── */
  .hm-products-grid { grid-template-columns: 1fr 1fr; gap: 0.65rem; }
  .hm-product-card__body { padding: 0.7rem; }
  .hm-product-card__title { font-size: 12px; }
  .hm-product-card__price { font-size: 13px; }

  /* ── Why features ── */
  .hm-why-features { grid-template-columns: 1fr; }

  /* ── Footer ── */
  .hm-footer__grid { grid-template-columns: 1fr; }
  .hm-footer__col { padding-bottom: 1rem; border-bottom: 1px solid #222; }
  .hm-footer__col:last-child { border-bottom: none; }

  /* ── Single product ── */
  .hm-product-tabs__nav { flex-direction: column; border: none; }
  .hm-product-tabs__btn { border: 1px solid var(--color-border); border-radius: var(--radius-sm); margin-bottom: 4px; }
  .hm-product-tabs__btn.is-active { border-color: var(--color-primary); background: var(--color-primary); color: #fff; }

  /* ── Sales popup ── */
  .hm-sales-popup { width: 260px; right: -280px; padding: 0.75rem 0.9rem !important; }
  .hm-sales-popup.is-active { right: 12px !important; }

  /* ── WhatsApp float ── */
  .hm-whatsapp-float { width: 46px; height: 46px; bottom: 14px; right: 14px; }
}

/* ── XS — Very small phones <360px ── */
@media (max-width: 359px) {
  body { font-size: 13.5px; }
  .hm-hero__heading { font-size: 1.55rem; }
  .hm-products-grid { grid-template-columns: 1fr; }
  .hm-hero__btns .hm-btn { font-size: 14px; padding: 0.7rem 1.25rem; }
  .hm-footer__grid { grid-template-columns: 1fr; }
}

/* ── Landscape phones ── */
@media (max-width: 767px) and (orientation: landscape) {
  .hm-hero { min-height: 340px; }
  .hm-hero__inner { padding: 40px 20px; }
  .hm-hero__heading { font-size: clamp(1.6rem, 5vw, 2rem); }
  .hm-hero__sub { display: none; }
  .hm-hero__stats { margin-top: 1rem; }
  .hm-mobile-nav { max-height: 85vh; overflow-y: auto; }
}

/* ── Print styles ── */
@media print {
  .hm-header, .hm-footer, .hm-announcement-bar,
  .hm-whatsapp-float, .hm-back-to-top, .hm-sales-popup,
  .hm-mobile-nav, .hm-search-overlay { display: none !important; }
  body { font-size: 12pt; color: #000; background: #fff; }
  a { color: #000; text-decoration: underline; }
  .hm-product-card { break-inside: avoid; }
}

/* ── High DPI / Retina screens ── */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
  .hm-logo-text { -webkit-font-smoothing: antialiased; }
  img { image-rendering: -webkit-optimize-contrast; }
}

/* ── Reduced motion accessibility ── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .hm-hero__slides { scroll-behavior: auto; }
  html { scroll-behavior: auto; }
}

/* ── Dark mode (system) ── */
@media (prefers-color-scheme: dark) {
  /* Only apply if body doesn't have a light-mode override class */
  body:not(.force-light) {
    /* Announcement bar already dark, no change needed */
    /* Subtle card border enhancement */
    --color-border: #2a2a2a;
  }
}

/* ── Tablet-specific product/page tweaks ── */
@media (min-width: 480px) and (max-width: 767px) {
  .hm-products-grid { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
  .hm-categories-grid { grid-template-columns: repeat(2, 1fr); }
  .hm-footer__grid { grid-template-columns: repeat(2, 1fr); }
  .hm-hero__btns { flex-direction: row; }
}

/* ── Fix overflow on all screen sizes ── */
section, .hm-section, header, footer, .hm-container, .hm-container-fluid {
  max-width: 100%;
}

/* ── Safe area insets for notch devices (iPhone X+) ── */
@supports (padding: env(safe-area-inset-bottom)) {
  .hm-header { padding-left: env(safe-area-inset-left); padding-right: env(safe-area-inset-right); }
  .hm-footer__bottom { padding-bottom: calc(1.25rem + env(safe-area-inset-bottom)); }
  .hm-whatsapp-float { bottom: calc(24px + env(safe-area-inset-bottom)); }
  .hm-mobile-nav { padding-bottom: env(safe-area-inset-bottom); }
}

/* ── Scrollbar polish (all screens) ── */
::-webkit-scrollbar { width: 8px; height: 8px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background-color: var(--color-border, #e5e5e5); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background-color: #aaa; }
html { scrollbar-width: thin; scrollbar-color: var(--color-border, #e5e5e5) transparent; }

/* ── Focus-visible ring for keyboard nav ── */
:focus-visible {
  outline: 2.5px solid var(--color-primary, #d0473e);
  outline-offset: 3px;
  border-radius: 4px;
}
:focus:not(:focus-visible) { outline: none; }

/* =========================================================
   YOUTUBE VIDEO SECTION
   ========================================================= */
.hm-youtube-section { background: var(--color-bg-alt, #f9f8f6); }

.hm-youtube-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}
@media (max-width: 768px) {
  .hm-youtube-grid { grid-template-columns: 1fr; }
}

.hm-youtube-item {
  background: #000;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 4px 28px rgba(0,0,0,0.13);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.hm-youtube-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 44px rgba(0,0,0,0.2);
}

.hm-youtube-item__ratio {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
}
.hm-youtube-item__ratio iframe {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  border: none;
}

.hm-youtube-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  padding: 3.5rem 1rem;
  background: #fff;
  border: 2px dashed var(--color-border, #e5e5e5);
  border-radius: 14px;
  text-align: center;
  color: var(--color-muted, #777);
}
.hm-youtube-placeholder__icon { color: var(--color-muted, #999); }
.hm-youtube-placeholder p { font-size: 14px; line-height: 1.7; }
.hm-youtube-placeholder a { color: var(--color-primary, #d0473e); font-weight: 600; }

/* Submenu dropdown links fully black */
.hm-nav-menu .sub-menu li a {
  color: #000000 !important;
  font-weight: 600 !important;
}
.hm-nav-menu .sub-menu li a:hover {
  color: #000000 !important;
  background-color: rgba(0, 0, 0, 0.05) !important;
}

/* Floating Stats Marquee Bar */
.hm-stats-marquee-bar {
  background: #111111;
  color: #ffffff;
  padding: 1.5rem 0;
  overflow: hidden;
  width: 100%;
  display: flex;
  align-items: center;
  border-top: 1px solid rgba(255,255,255,0.08);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  margin: 0;
}
.hm-stats-marquee-track {
  display: flex;
  width: max-content;
  animation: hmMarquee 25s linear infinite;
}
.hm-stats-marquee-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0 4rem;
  font-size: 1.15rem;
  font-weight: 500;
  white-space: nowrap;
}
.hm-stats-marquee-item strong {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--color-yellow-green);
}
@keyframes hmMarquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* Why choose cards with premium borders */
.hm-why-benefits-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
}
.hm-why-card {
  border: 1.5px solid rgba(255, 255, 255, 0.12) !important;
  background: rgba(255, 255, 255, 0.03) !important;
  border-radius: 12px !important;
  padding: 1.75rem !important;
  transition: all 0.3s ease !important;
}
.hm-why-card:hover {
  border-color: var(--color-yellow-green) !important;
  background: rgba(255, 255, 255, 0.06) !important;
  transform: translateY(-4px);
}
@media (max-width: 768px) {
  .hm-why-benefits-cards {
    grid-template-columns: 1fr;
  }
}

/* Back to Top Arrow styles customization */
.hm-back-to-top {
  background: #111111 !important;
  color: var(--color-yellow-green) !important;
  border: 1px solid rgba(255, 255, 255, 0.15) !important;
}
.hm-back-to-top:hover {
  background: var(--color-yellow-green) !important;
  color: #111111 !important;
}

/* Space Optimization / Reduced Padding */
.hm-section {
  padding: 3rem 0 !important;
}
.hm-why-section {
  padding: 3.5rem 0 !important;
}
.hm-collection-section {
  padding: 3rem 0 !important;
}
.hm-hero__slide-inner {
  padding-top: 4rem !important;
  padding-bottom: 5rem !important;
  min-height: 70vh !important;
}
.hm-hero {
  min-height: 70vh !important;
}

/* Two-Row Testimonials Marquee */
.hm-testimonials-marquee-row {
  overflow: hidden;
  width: 100%;
  display: flex;
  position: relative;
}
.hm-testimonials-marquee-track {
  display: flex;
  width: max-content;
  gap: 1.5rem;
}
.hm-testimonials-marquee-track.scroll-ltr {
  animation: hmScrollLtr 45s linear infinite;
}
.hm-testimonials-marquee-track.scroll-rtl {
  animation: hmScrollRtl 45s linear infinite;
}
.hm-testimonial-marquee-card {
  width: 340px;
  background: #ffffff !important;
  border: 1.5px solid #e8e8e8 !important;
  border-radius: 14px;
  padding: 1.75rem;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  box-shadow: 0 4px 18px rgba(0,0,0,0.02);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.hm-testimonial-marquee-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.08);
}
.hm-testimonial-marquee-card__text {
  font-size: 13.5px !important;
  line-height: 1.65 !important;
  color: #444444 !important;
  margin: 1rem 0;
  font-style: italic;
}
.hm-testimonial-marquee-card__footer {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: auto;
  border-top: 1px solid #f0f0f0;
  padding-top: 0.75rem;
}
.hm-testimonial-avatar {
  background: var(--color-primary);
  color: #ffffff;
  font-weight: 700;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
}
.hm-testimonial-info__name {
  font-size: 14px !important;
  font-weight: 700 !important;
  color: #111111 !important;
  margin: 0;
}
.hm-testimonial-info__location {
  font-size: 11px !important;
  color: #777777 !important;
}

@keyframes hmScrollLtr {
  0% { transform: translateX(-50%); }
  100% { transform: translateX(0); }
}
@keyframes hmScrollRtl {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* =========================================================
   TESTIMONIALS SWIPER CARDS + ARROWS
   ========================================================= */
.hm-testimonials-section { background: #f8f7f5 !important; }

.hm-testi-swiper-wrap { position: relative; padding: 0 60px; }

.hm-testi-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #ffffff;
  border: 2px solid #e0e0e0;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #333;
  transition: all 0.25s ease;
  box-shadow: 0 4px 14px rgba(0,0,0,0.08);
}
.hm-testi-arrow:hover {
  background: #111111;
  border-color: #111111;
  color: #ffffff;
  box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}
.hm-testi-arrow--prev { left: 0; }
.hm-testi-arrow--next { right: 0; }

.hm-testi-card {
  background: #ffffff;
  border: 1.5px solid #ececec;
  border-radius: 16px;
  padding: 1.75rem 1.5rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  box-shadow: 0 4px 20px rgba(0,0,0,0.04);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.hm-testi-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.08);
  border-color: var(--color-primary);
}
.hm-testi-card__text {
  font-size: 14px !important;
  line-height: 1.7 !important;
  color: #444 !important;
  font-style: italic;
  flex: 1;
  margin: 0;
}
.hm-testi-card__meta {
  margin-top: 0.25rem;
}
.hm-testi-card__product {
  font-size: 11px;
  font-weight: 600;
  color: var(--color-primary);
  background: rgba(139,90,43,0.07);
  padding: 3px 10px;
  border-radius: 20px;
  display: inline-block;
}
.hm-testi-card__footer {
  display: flex;
  align-items: center;
  gap: 12px;
  border-top: 1px solid #f0f0f0;
  padding-top: 0.75rem;
  margin-top: auto;
}
.hm-testi-card__avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--color-primary);
  color: #fff;
  font-weight: 700;
  font-size: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.hm-testi-card__name {
  font-size: 14px;
  font-weight: 700;
  color: #111;
  line-height: 1.3;
}
.hm-testi-card__city {
  font-size: 11px;
  color: #888;
}
.hm-testi-pagination {
  margin-top: 1.5rem !important;
  position: relative !important;
  bottom: auto !important;
}
.hm-testi-swiper .swiper-pagination-bullet {
  background: #ccc;
  opacity: 1;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  transition: all 0.3s ease;
}
.hm-testi-swiper .swiper-pagination-bullet-active {
  background: var(--color-primary);
  width: 24px;
  border-radius: 4px;
}

/* =========================================================
   HERO OVERFLOW FIX
   ========================================================= */
.hm-hero {
  overflow: hidden !important;
  max-width: 100vw !important;
}
.hm-hero-swiper,
.hm-hero .swiper {
  overflow: hidden !important;
  max-width: 100% !important;
}
.hm-hero__bg-img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  object-position: center center !important;
}
.hm-hero__slide-inner {
  min-height: 75vh !important;
  max-height: 90vh !important;
}

/* =========================================================
   GLOBAL OVERFLOW PREVENTION
   ========================================================= */
body, html {
  overflow-x: hidden !important;
  max-width: 100vw !important;
}
* { box-sizing: border-box; }

/* =========================================================
   WHY SECTION — FIX OVERFLOW (Content left side clipping)
   ========================================================= */
.hm-why-section {
  overflow: hidden !important;
}
.hm-why-section__container {
  overflow: hidden !important;
  max-width: 100% !important;
}
.hm-why-benefits-cards {
  overflow: hidden !important;
}
.hm-why-card {
  min-width: 0 !important;
  word-break: break-word !important;
}
.hm-why-section__content {
  min-width: 0 !important;
  overflow: hidden !important;
  padding-left: 1rem !important;
}
.hm-why-section__heading,
.hm-why-section__intro {
  overflow-wrap: break-word !important;
  word-break: break-word !important;
}

/* =========================================================
   PRODUCT SLIDERS — FIX OVERFLOW
   ========================================================= */
.hm-product-slider-section {
  overflow: hidden !important;
  max-width: 100vw !important;
}
.hm-product-swiper,
.hm-product-swiper .swiper-wrapper {
  overflow: hidden !important;
}
.hm-product-swiper .swiper-slide {
  min-width: 0 !important;
}
.hm-product-card {
  min-width: 0 !important;
  overflow: hidden !important;
}
.hm-product-card__title a {
  overflow-wrap: break-word !important;
}

/* =========================================================
   HERO SECTION — FIX OVERFLOW + MOVE TEXT RIGHT
   ========================================================= */
.hm-hero {
  overflow: hidden !important;
  max-width: 100vw !important;
}
.hm-hero-swiper, .hm-hero .swiper {
  overflow: hidden !important;
  max-width: 100% !important;
}
.hm-hero__bg-img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  object-position: center center !important;
}
.hm-hero__slide-inner {
  min-height: 75vh !important;
  max-height: 88vh !important;
  overflow: hidden !important;
}

   TESTIMONIALS — AVATAR RED, STARS YELLOW, TEXT BLACK
   ========================================================= */
.hm-testi-card {
  background: #ffffff;
  border: 1.5px solid #ececec;
  border-radius: 16px;
  padding: 1.75rem 1.5rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  box-shadow: 0 4px 20px rgba(0,0,0,0.04);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.hm-testi-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.08);
  border-color: var(--color-primary);
}
.hm-testi-card__text {
  font-size: 14px !important;
  line-height: 1.7 !important;
  color: #444 !important;
  font-style: italic;
  flex: 1;
  margin: 0;
}
.hm-testi-card__meta {
  margin-top: 0.25rem;
}
.hm-testi-card__product {
  font-size: 11px;
  font-weight: 600;
  color: var(--color-primary);
  background: rgba(139,90,43,0.07);
  padding: 3px 10px;
  border-radius: 20px;
  display: inline-block;
}
.hm-testi-card__footer {
  display: flex;
  align-items: center;
  gap: 12px;
  border-top: 1px solid #f0f0f0;
  padding-top: 0.75rem;
  margin-top: auto;
}
.hm-testi-card__avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--color-primary);
  color: #fff;
  font-weight: 700;
  font-size: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.hm-testi-card__name {
  font-size: 14px;
  font-weight: 700;
  color: #111;
  line-height: 1.3;
}
.hm-testi-card__city {
  font-size: 11px;
  color: #888;
}
.hm-testi-pagination {
  margin-top: 1.5rem !important;
  position: relative !important;
  bottom: auto !important;
}
.hm-testi-swiper .swiper-pagination-bullet {
  background: #ccc;
  opacity: 1;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  transition: all 0.3s ease;
}
.hm-testi-swiper .swiper-pagination-bullet-active {
  background: var(--color-primary);
  width: 24px;
  border-radius: 4px;
}

/* =========================================================
   HERO OVERFLOW FIX
   ========================================================= */
.hm-hero {
  overflow: hidden !important;
  max-width: 100vw !important;
}
.hm-hero-swiper,
.hm-hero .swiper {
  overflow: hidden !important;
  max-width: 100% !important;
}
.hm-hero__bg-img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  object-position: center center !important;
}
.hm-hero__slide-inner {
  min-height: 75vh !important;
  max-height: 90vh !important;
}

/* =========================================================
   GLOBAL OVERFLOW PREVENTION
   ========================================================= */
body, html {
  overflow-x: hidden !important;
  max-width: 100vw !important;
}
* { box-sizing: border-box; }

/* =========================================================
   WHY SECTION — FIX OVERFLOW (Content left side clipping)
   ========================================================= */
.hm-why-section {
  overflow: hidden !important;
}
.hm-why-section__container {
  overflow: hidden !important;
  max-width: 100% !important;
}
.hm-why-benefits-cards {
  overflow: hidden !important;
}
.hm-why-card {
  min-width: 0 !important;
  word-break: break-word !important;
}
.hm-why-section__content {
  min-width: 0 !important;
  overflow: hidden !important;
  padding-left: 1rem !important;
}
.hm-why-section__heading,
.hm-why-section__intro {
  overflow-wrap: break-word !important;
  word-break: break-word !important;
}

/* =========================================================
   PRODUCT SLIDERS — FIX OVERFLOW
   ========================================================= */
.hm-product-slider-section {
  overflow: hidden !important;
  max-width: 100vw !important;
}
.hm-product-swiper,
.hm-product-swiper .swiper-wrapper {
  overflow: hidden !important;
}
.hm-product-swiper .swiper-slide {
  min-width: 0 !important;
}
.hm-product-card {
  min-width: 0 !important;
  overflow: hidden !important;
}
.hm-product-card__title a {
  overflow-wrap: break-word !important;
}

/* =========================================================
   HERO SECTION — FIX OVERFLOW + MOVE TEXT RIGHT
   ========================================================= */
.hm-hero {
  overflow: hidden !important;
  max-width: 100vw !important;
}
.hm-hero-swiper, .hm-hero .swiper {
  overflow: hidden !important;
  max-width: 100% !important;
}
.hm-hero__bg-img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  object-position: center center !important;
}
.hm-hero__slide-inner {
  min-height: 75vh !important;
  max-height: 88vh !important;
  overflow: hidden !important;
}

/* =========================================================
   TESTIMONIALS — AVATAR RED, STARS YELLOW, TEXT BLACK
   ========================================================= */
.hm-testi-card__avatar {
  background: #c0392b !important;
  color: #ffffff !important;
  font-weight: 800 !important;
  width: 44px !important;
  height: 44px !important;
  font-size: 14px !important;
}
.hm-testi-card__stars span,
.hm-testi-card .star {
  color: #f5c518 !important;
}
.hm-testi-card__text {
  color: #222222 !important;
  font-size: 14px !important;
  line-height: 1.7 !important;
}
.hm-testi-card__name {
  color: #111111 !important;
  font-weight: 700 !important;
}
.hm-testi-card__city {
  color: #666666 !important;
}
.hm-testi-card {
  background: #ffffff !important;
  border: 1.5px solid #ececec !important;
}

/* =========================================================
   FOOTER TAGLINE — BIGGER + BETTER
   ========================================================= */
.hm-footer__social-label {
  padding-left: 24px !important;
}
.hm-footer__tagline {
  font-size: 15px !important;
  line-height: 1.75 !important;
  color: rgba(255,255,255,0.82) !important;
  margin-top: 1rem !important;
  font-weight: 400 !important;
  max-width: 320px !important;
  padding-left: 24px !important;
}
.hm-footer__col--brand {
  padding-right: 1rem !important;
}

/* =========================================================
   COLLECTION SECTION OVERFLOW FIX
   ========================================================= */
.hm-collection-section {
  overflow: hidden !important;
  max-width: 100vw !important;
}
.hm-product-grid {
  overflow: hidden !important;
}
.hm-product-grid .hm-product-card {
  min-width: 0 !important;
}

/* =========================================================
   STATS MARQUEE OVERFLOW FIX
   ========================================================= */
.hm-stats-marquee-bar {
  overflow: hidden !important;
  max-width: 100vw !important;
}

/* =========================================================
   SECTIONS GENERAL
   ========================================================= */
.hm-section {
  overflow: hidden !important;
}

@media (max-width: 768px) {
  .hm-testi-swiper-wrap { padding: 0 44px !important; }
  .hm-testi-arrow { width: 36px !important; height: 36px !important; }
  .hm-hero__slide-inner { min-height: 55vh !important; }
}

/* Align Hero text exactly with the left side container border / logo, shifted 1.5cm (60px) to the right */
.hm-hero__content {
  padding-left: 0 !important;
  margin-left: 60px !important;
  margin-right: auto !important;
}
.hm-hero__container {
  padding-left: var(--gutter) !important;
  display: block !important;
}

@media (max-width: 991px) {
  .hm-hero__content {
    margin-left: 40px !important; /* Shipped 1cm to the right on tablet */
  }
}
@media (max-width: 576px) {
  .hm-hero__content {
    margin-left: 20px !important; /* Shipped slightly to the right on mobile */
  }
}

/* =========================================================
   HERO FIXES (TEXT VISIBILITY & SPACING)
   ========================================================= */
.hm-hero__slide-inner {
  padding-bottom: 3rem !important;
  min-height: 70vh !important;
  max-height: none !important;
}
.hm-hero {
  min-height: 70vh !important;
}
.hm-hero__content {
  opacity: 1 !important;
  transform: none !important;
  visibility: visible !important;
}
.hm-hero__content * {
  opacity: 1 !important;
  transform: none !important;
  visibility: visible !important;
}

/* =========================================================
   MOST POPULAR — PREMIUM REBUILT SECTION
   ========================================================= */
.hm-popular-section {
  position: relative;
  padding: 80px 0 90px !important;
  background: #fafaf8 !important;
  background-image: none !important;
  overflow: hidden;
  border-bottom: 1px solid #e8e4de !important;
}

/* Background decorative blobs */
.hm-popular-bg-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  z-index: 0;
}
.hm-popular-bg-blob--1 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(195,74,54,0.06) 0%, transparent 70%);
  top: -100px;
  right: -80px;
}
.hm-popular-bg-blob--2 {
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(156,101,64,0.06) 0%, transparent 70%);
  bottom: -80px;
  left: -60px;
}

.hm-popular-section .hm-container {
  position: relative;
  z-index: 1;
}

/* ── Section Header ── */
.hm-popular-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 40px;
}
.hm-popular-header__left {
  flex: 1;
}
.hm-popular-header__right {
  flex-shrink: 0;
}

.hm-popular-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: linear-gradient(135deg, rgba(195,74,54,0.1), rgba(195,74,54,0.06));
  color: var(--color-primary);
  border: 1px solid rgba(195,74,54,0.18);
  padding: 5px 14px;
  border-radius: 50px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.hm-popular-eyebrow svg { flex-shrink: 0; }

.hm-popular-heading {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 700;
  color: var(--color-dark);
  letter-spacing: -0.03em;
  line-height: 1.15;
  margin: 0 0 10px;
}

.hm-popular-subtitle {
  font-size: 14.5px;
  color: #666;
  line-height: 1.65;
  max-width: 440px;
  margin: 0;
}

/* ── Navigation Buttons ── */
.hm-popular-nav {
  display: flex;
  gap: 8px;
  align-items: center;
}
.hm-pop-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1.5px solid #e0ddd8;
  background: #ffffff;
  color: var(--color-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--transition-fast);
  box-shadow: 0 2px 10px rgba(0,0,0,0.06);
  flex-shrink: 0;
}
.hm-pop-btn:hover {
  background: var(--color-primary);
  border-color: var(--color-primary);
  color: #fff;
  transform: scale(1.05);
  box-shadow: 0 4px 18px rgba(195,74,54,0.28);
}
.hm-pop-btn.is-disabled {
  opacity: 0.35;
  cursor: not-allowed;
  pointer-events: none;
}

/* ── Swiper Wrapper ── */
.hm-popular-swiper-wrap {
  overflow: visible;
}
.hm-popular-swiper {
  overflow: visible !important;
}
.hm-popular-swiper .swiper-slide {
  height: auto;
}

/* ── Product Card ── */
.hm-pop-card {
  background: #ffffff;
  border-radius: 16px;
  border: 1.5px solid #ece9e3;
  overflow: hidden;
  transition: transform 0.32s ease, box-shadow 0.32s ease, border-color 0.32s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
  position: relative;
}
.hm-pop-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.10);
  border-color: var(--color-primary);
}

/* ── Card Image ── */
.hm-pop-card__img-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1 / 1;
  background: #f4f1ec;
}
.hm-pop-card__img-link {
  display: block;
  width: 100%;
  height: 100%;
}
.hm-pop-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.hm-pop-card:hover .hm-pop-card__img {
  transform: scale(1.07);
}

/* ── Badges ── */
.hm-pop-card__badges {
  position: absolute;
  top: 10px;
  left: 10px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  z-index: 2;
}
.hm-pop-badge {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 20px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.hm-pop-badge--sale {
  background: var(--color-primary);
  color: #fff;
}
.hm-pop-badge--new {
  background: #1a7a4a;
  color: #fff;
}
.hm-pop-badge--sold {
  background: #555;
  color: #fff;
}

/* ── Quick Actions (appear on hover) ── */
.hm-pop-card__actions {
  position: absolute;
  top: 10px;
  right: 10px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  z-index: 2;
  opacity: 0;
  transform: translateX(8px);
  transition: opacity 0.25s ease, transform 0.25s ease;
}
.hm-pop-card:hover .hm-pop-card__actions {
  opacity: 1;
  transform: translateX(0);
}
.hm-pop-action-btn {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255,255,255,0.95);
  border: 1px solid rgba(0,0,0,0.08);
  color: #444;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
  text-decoration: none;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}
.hm-pop-action-btn:hover {
  background: var(--color-primary);
  color: #fff;
  border-color: var(--color-primary);
  transform: scale(1.1);
}

/* ── Card Body ── */
.hm-pop-card__body {
  padding: 16px 16px 18px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}

/* ── Stars ── */
.hm-pop-card__stars {
  display: flex;
  align-items: center;
  gap: 1px;
}
.hm-pop-star {
  font-size: 13px;
  color: #d5d0ca;
  line-height: 1;
}
.hm-pop-star--filled {
  color: #f5c518;
}
.hm-pop-card__rcount {
  font-size: 11.5px;
  color: #888;
  margin-left: 4px;
  font-weight: 500;
}

/* ── Title ── */
.hm-pop-card__title {
  font-size: 14.5px;
  font-weight: 600;
  color: var(--color-dark);
  line-height: 1.35;
  margin: 0;
}
.hm-pop-card__title a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease;
}
.hm-pop-card__title a:hover {
  color: var(--color-primary);
}

/* ── Price ── */
.hm-pop-card__price {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.hm-pop-price {
  font-size: 15px;
  font-weight: 700;
  color: var(--color-dark);
}
.hm-pop-price--sale {
  font-size: 15px;
  font-weight: 700;
  color: var(--color-primary);
}
.hm-pop-price--old {
  font-size: 12.5px;
  color: #aaa;
  font-weight: 400;
  text-decoration: line-through;
}
/* WooCommerce price override */
.hm-pop-card__price .woocommerce-Price-amount {
  font-size: 15px;
  font-weight: 700;
  color: var(--color-dark);
}
.hm-pop-card__price del .woocommerce-Price-amount {
  font-size: 12.5px;
  color: #aaa;
  font-weight: 400;
}
.hm-pop-card__price ins {
  text-decoration: none;
}
.hm-pop-card__price ins .woocommerce-Price-amount {
  color: var(--color-primary);
}

/* ── Add to Cart CTA ── */
.hm-pop-card__cta {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  width: 100%;
  padding: 11px 16px;
  border-radius: var(--radius-button);
  background: var(--color-dark);
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.02em;
  border: none;
  cursor: pointer;
  transition: background 0.22s ease, transform 0.18s ease, box-shadow 0.22s ease;
  font-family: var(--font-base);
}
.hm-pop-card__cta:hover {
  background: var(--color-primary);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(195,74,54,0.28);
}
.hm-pop-card__cta--muted {
  background: #ddd;
  color: #888;
  cursor: not-allowed;
}
.hm-pop-card__cta--muted:hover {
  background: #ddd;
  transform: none;
  box-shadow: none;
}

/* ── Pagination ── */
.hm-popular-pagination {
  margin-top: 32px;
  text-align: center;
  position: relative !important;
  bottom: auto !important;
}
.hm-popular-pagination .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  background: #d0cbc3;
  opacity: 1;
  border-radius: 50%;
  transition: all 0.3s ease;
  margin: 0 4px;
}
.hm-popular-pagination .swiper-pagination-bullet-active {
  background: var(--color-primary);
  width: 24px;
  border-radius: 4px;
}

/* =========================================================
   MOST POPULAR — RESPONSIVE
   ========================================================= */
@media (max-width: 1024px) {
  .hm-popular-section { padding: 60px 0 70px !important; }
  .hm-popular-heading { font-size: 2rem; }
}
@media (max-width: 768px) {
  .hm-popular-section { padding: 48px 0 60px !important; }
  .hm-popular-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 28px;
  }
  .hm-popular-heading { font-size: 1.7rem; }
  .hm-popular-subtitle { font-size: 13.5px; }
  .hm-popular-nav { align-self: flex-start; }
}
@media (max-width: 480px) {
  .hm-popular-section { padding: 36px 0 48px !important; }
  .hm-popular-heading { font-size: 1.5rem; }
  .hm-pop-card__body { padding: 12px 12px 14px; }
  .hm-pop-card__title { font-size: 13.5px; }
}

/* =========================================================
   POPULAR CARD — GLOBAL SECTION OVERRIDE GUARDS
   Prevent global .hm-section forced colours from bleeding
   into the new premium product card internals.
   ========================================================= */
.hm-popular-section .hm-pop-star.hm-pop-star--filled { color: #f5c518 !important; }
.hm-popular-section .hm-pop-star { color: #d5d0ca !important; }
.hm-popular-section .hm-pop-card__rcount { color: #888 !important; }
.hm-popular-section .hm-pop-price--sale,
.hm-popular-section .hm-pop-card__price ins .woocommerce-Price-amount { color: var(--color-primary) !important; }
.hm-popular-section .hm-pop-price--old,
.hm-popular-section .hm-pop-card__price del .woocommerce-Price-amount { color: #aaa !important; }
.hm-popular-section .hm-pop-card__cta { color: #fff !important; }
.hm-popular-section .hm-pop-badge--sale { color: #fff !important; }
.hm-popular-section .hm-pop-badge--new { color: #fff !important; }
.hm-popular-section .hm-pop-action-btn { color: #444 !important; }
.hm-popular-section .hm-pop-action-btn:hover { color: #fff !important; }
.hm-popular-section .hm-pop-card__title a { color: var(--color-dark) !important; }
.hm-popular-section .hm-pop-card__title a:hover { color: var(--color-primary) !important; }
.hm-popular-section .hm-popular-subtitle { color: #666 !important; }
.hm-popular-section .hm-popular-eyebrow { color: var(--color-primary) !important; }

/* =========================================================
   COLLECTION / SHOP PAGE  (hamarimitti.pk clone)
   ========================================================= */

/* ── Page Wrapper ── */
.hm-collection-page {
  background: #f9f9f7;
  min-height: 60vh;
  padding-bottom: 80px;
}

/* ── Hero Banner ── */
.hm-collection-hero {
  background: #111111;
  padding: 56px 0 48px;
  position: relative;
  overflow: hidden;
}
.hm-collection-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}
.hm-collection-hero__inner { position: relative; z-index: 1; }

/* Breadcrumb */
.hm-breadcrumb {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12.5px;
  color: rgba(255,255,255,0.5);
  margin-bottom: 18px;
}
.hm-breadcrumb a {
  color: rgba(255,255,255,0.5);
  transition: color 0.2s;
  text-decoration: none;
}
.hm-breadcrumb a:hover { color: rgba(255,255,255,0.9); }
.hm-breadcrumb__sep { color: rgba(255,255,255,0.3); }
.hm-breadcrumb span:last-child { color: rgba(255,255,255,0.85); }

.hm-collection-hero__title {
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 700;
  color: #ffffff !important;
  letter-spacing: -0.03em;
  margin-bottom: 12px;
  line-height: 1.15;
}
.hm-collection-hero__desc {
  font-size: 15px;
  color: rgba(255,255,255,0.6) !important;
  max-width: 520px;
  line-height: 1.65;
}

/* ── Toolbar ── */
.hm-collection-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 20px 0 16px;
  border-bottom: 1px solid #e8e4de;
  margin-bottom: 28px;
  flex-wrap: wrap;
}
.hm-collection-toolbar__left .woocommerce-result-count {
  font-size: 13.5px;
  color: #777 !important;
  margin: 0;
}
.hm-collection-toolbar__right {
  display: flex;
  align-items: center;
  gap: 10px;
}
/* WooCommerce ordering dropdown */
.hm-collection-toolbar .woocommerce-ordering {
  margin: 0;
}
.hm-collection-toolbar .woocommerce-ordering select {
  border: 1.5px solid #e0ddd8;
  border-radius: 8px;
  padding: 8px 32px 8px 14px;
  font-size: 13px;
  color: #333 !important;
  background: #fff url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23555' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E") no-repeat right 10px center;
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
  font-family: var(--font-base);
  transition: border-color 0.2s;
}
.hm-collection-toolbar .woocommerce-ordering select:focus {
  border-color: var(--color-primary);
  outline: none;
}

/* View toggle buttons */
.hm-view-toggle {
  display: flex;
  gap: 4px;
  border: 1.5px solid #e0ddd8;
  border-radius: 8px;
  overflow: hidden;
  padding: 3px;
  background: #fff;
}
.hm-view-btn {
  width: 32px;
  height: 32px;
  border-radius: 5px;
  border: none;
  background: transparent;
  color: #888;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.18s ease;
}
.hm-view-btn.is-active {
  background: #111;
  color: #fff;
}
.hm-view-btn:hover:not(.is-active) { background: #f2f0ec; color: #333; }

/* ── Active Filters Bar ── */
.hm-active-filters {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}
.hm-active-filters__label {
  font-size: 12.5px;
  font-weight: 600;
  color: #555 !important;
}
.hm-filter-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #fff;
  border: 1.5px solid #e0ddd8;
  border-radius: 20px;
  padding: 4px 12px;
  font-size: 12.5px;
  color: #333 !important;
}
.hm-filter-pill__remove {
  display: flex;
  align-items: center;
  color: #999 !important;
  transition: color 0.2s;
}
.hm-filter-pill__remove:hover { color: var(--color-primary) !important; }
.hm-filter-clear {
  font-size: 12.5px;
  color: var(--color-primary) !important;
  font-weight: 600;
  text-decoration: underline;
}

/* ── Layout: Sidebar + Grid ── */
.hm-collection-layout {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 32px;
  align-items: start;
}

/* ── Sidebar ── */
.hm-coll-sidebar {
  background: #fff;
  border: 1.5px solid #e8e4de;
  border-radius: 14px;
  overflow: hidden;
  position: sticky;
  top: 90px;
}
.hm-coll-sidebar__header {
  display: none;
  align-items: center;
  justify-content: space-between;
  padding: 16px 18px;
  border-bottom: 1px solid #f0ece6;
}
.hm-coll-sidebar__title {
  font-size: 15px;
  font-weight: 700;
  color: #111 !important;
}
.hm-coll-sidebar__close {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #f5f2ef;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #555;
  transition: all 0.2s;
}
.hm-coll-sidebar__close:hover { background: var(--color-primary); color: #fff; }

/* Filter Groups */
.hm-coll-filter-group {
  border-bottom: 1px solid #f0ece6;
}
.hm-coll-filter-group:last-of-type { border-bottom: none; }

.hm-coll-filter-group__toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 14px 18px;
  background: none;
  border: none;
  font-size: 13px;
  font-weight: 700;
  color: #111 !important;
  cursor: pointer;
  text-align: left;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-family: var(--font-base);
  transition: color 0.2s;
}
.hm-coll-filter-group__toggle:hover { color: var(--color-primary) !important; }
.hm-coll-chevron {
  transition: transform 0.25s ease;
  flex-shrink: 0;
}
.hm-coll-filter-group__toggle[aria-expanded="false"] .hm-coll-chevron {
  transform: rotate(-90deg);
}

.hm-coll-filter-list {
  list-style: none;
  padding: 0 18px 14px;
}
.hm-coll-filter-list__item + .hm-coll-filter-list__item { margin-top: 2px; }
.hm-coll-filter-list__link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 7px 10px;
  border-radius: 7px;
  font-size: 13.5px;
  color: #444 !important;
  text-decoration: none;
  transition: all 0.18s ease;
}
.hm-coll-filter-list__link:hover {
  background: #f9f6f2;
  color: var(--color-primary) !important;
}
.hm-coll-filter-list__link.is-active {
  background: rgba(195,74,54,0.08);
  color: var(--color-primary) !important;
  font-weight: 600;
}
.hm-coll-filter-count {
  font-size: 11.5px;
  color: #aaa !important;
  font-weight: 400;
  background: #f2ede8;
  border-radius: 10px;
  padding: 1px 7px;
}
.hm-coll-filter-list__link.is-active .hm-coll-filter-count {
  background: rgba(195,74,54,0.12);
  color: var(--color-primary) !important;
}

/* Price form */
.hm-coll-filter-body { padding: 0 18px 16px; }
.hm-coll-price-form {}
.hm-coll-price-inputs {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
}
.hm-coll-price-label {
  display: flex;
  align-items: center;
  gap: 4px;
  flex: 1;
}
.hm-coll-price-label span { font-size: 12px; color: #888 !important; }
.hm-coll-price-label input {
  flex: 1;
  border: 1.5px solid #e0ddd8;
  border-radius: 7px;
  padding: 7px 10px;
  font-size: 13px;
  width: 100%;
  color: #333 !important;
  background: #fff;
  transition: border-color 0.2s;
}
.hm-coll-price-label input:focus { border-color: var(--color-primary); }
.hm-coll-price-dash { color: #bbb; font-size: 14px; }
.hm-coll-price-apply {
  width: 100%;
  padding: 9px;
  background: #111;
  color: #fff !important;
  border: none;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  font-family: var(--font-base);
  transition: background 0.2s;
}
.hm-coll-price-apply:hover { background: var(--color-primary); }

/* Stars filter */
.hm-coll-stars { color: #f5c518 !important; font-size: 13px; letter-spacing: 1px; }
.hm-rating-link { gap: 6px; }

/* Sidebar footer */
.hm-coll-sidebar__footer { display: none; padding: 16px 18px; border-top: 1px solid #f0ece6; }
.hm-coll-sidebar__apply {
  width: 100%;
  padding: 13px;
  background: var(--color-primary);
  color: #fff !important;
  border: none;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  font-family: var(--font-base);
  transition: background 0.2s;
}
.hm-coll-sidebar__apply:hover { background: #b33c34; }

/* ── Mobile filter bar ── */
.hm-coll-mobile-bar {
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 12px 0 16px;
  border-bottom: 1px solid #e8e4de;
  margin-bottom: 20px;
}
.hm-coll-filter-trigger {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 9px 18px;
  border: 1.5px solid #e0ddd8;
  border-radius: 30px;
  background: #fff;
  color: #333 !important;
  font-size: 13.5px;
  font-weight: 600;
  cursor: pointer;
  font-family: var(--font-base);
  transition: all 0.2s;
}
.hm-coll-filter-trigger:hover { border-color: var(--color-primary); color: var(--color-primary) !important; }
.hm-coll-mobile-bar .woocommerce-result-count { font-size: 12.5px; color: #888 !important; margin: 0; }

/* ── Product Grid ── */
.hm-coll-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  list-style: none;
  padding: 0;
  margin: 0;
}

/* ── Product Card ── */
.hm-coll-card {
  background: #fff;
  border-radius: 12px;
  border: 1.5px solid #ece9e3;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  position: relative;
}
.hm-coll-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.09);
  border-color: var(--color-primary);
}

/* Image wrap */
.hm-coll-card__img-wrap {
  position: relative;
  overflow: hidden;
  background: #f4f1ec;
  aspect-ratio: 1 / 1;
}
.hm-coll-card__img-link { display: block; width: 100%; height: 100%; }
.hm-coll-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.hm-coll-card:hover .hm-coll-card__img { transform: scale(1.06); }

/* Badges */
.hm-coll-card__badges {
  position: absolute;
  top: 8px;
  left: 8px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  z-index: 2;
}
.hm-coll-badge {
  display: inline-block;
  padding: 3px 9px;
  border-radius: 20px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  line-height: 1.4;
}
.hm-coll-badge--sale { background: var(--color-primary); color: #fff !important; }
.hm-coll-badge--new { background: #1a7a4a; color: #fff !important; }
.hm-coll-badge--sold { background: #666; color: #fff !important; }

/* Quick actions */
.hm-coll-card__actions {
  position: absolute;
  top: 8px;
  right: 8px;
  display: flex;
  flex-direction: column;
  gap: 5px;
  z-index: 2;
  opacity: 0;
  transform: translateX(6px);
  transition: opacity 0.22s ease, transform 0.22s ease;
}
.hm-coll-card:hover .hm-coll-card__actions { opacity: 1; transform: translateX(0); }
.hm-coll-action {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255,255,255,0.95);
  border: 1px solid rgba(0,0,0,0.07);
  color: #444 !important;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  text-decoration: none;
  box-shadow: 0 2px 8px rgba(0,0,0,0.09);
  transition: all 0.2s ease;
}
.hm-coll-action:hover { background: var(--color-primary); color: #fff !important; border-color: var(--color-primary); transform: scale(1.08); }

/* Add to Cart bar (hover slide up) */
.hm-coll-card__cart-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 0 12px 10px;
  transform: translateY(100%);
  transition: transform 0.28s ease;
  z-index: 3;
}
.hm-coll-card:hover .hm-coll-card__cart-bar { transform: translateY(0); }
.hm-coll-card__add-to-cart {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  width: 100%;
  padding: 10px;
  background: rgba(17,17,17,0.92);
  backdrop-filter: blur(4px);
  color: #fff !important;
  border: none;
  border-radius: 8px;
  font-size: 12.5px;
  font-weight: 600;
  cursor: pointer;
  font-family: var(--font-base);
  transition: background 0.2s;
}
.hm-coll-card__add-to-cart:hover { background: var(--color-primary); }

/* Card body */
.hm-coll-card__body {
  padding: 13px 14px 15px;
  display: flex;
  flex-direction: column;
  gap: 7px;
  flex: 1;
}

/* Stars */
.hm-coll-card__stars {
  display: flex;
  align-items: center;
  gap: 1px;
}
.hm-coll-star { font-size: 12px; color: #d5d0ca !important; line-height: 1; }
.hm-coll-star.filled { color: #f5c518 !important; }
.hm-coll-card__rcount { font-size: 11px; color: #999 !important; margin-left: 3px; font-weight: 500; }

/* Title */
.hm-coll-card__title {
  font-size: 13.5px;
  font-weight: 600;
  color: #111 !important;
  line-height: 1.35;
  margin: 0;
}
.hm-coll-card__title a { color: inherit !important; text-decoration: none; transition: color 0.2s; }
.hm-coll-card__title a:hover { color: var(--color-primary) !important; }

/* Price */
.hm-coll-card__price { display: flex; align-items: center; gap: 7px; flex-wrap: wrap; }
.hm-coll-card__price .woocommerce-Price-amount {
  font-size: 14.5px;
  font-weight: 700;
  color: #111 !important;
}
.hm-coll-card__price ins { text-decoration: none; }
.hm-coll-card__price ins .woocommerce-Price-amount { color: var(--color-primary) !important; }
.hm-coll-card__price del .woocommerce-Price-amount { font-size: 12px; color: #bbb !important; font-weight: 400; }

/* CTA button */
.hm-coll-card__cta {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  width: 100%;
  padding: 10px 14px;
  border-radius: 30px;
  background: #111;
  color: #fff !important;
  font-size: 12.5px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  font-family: var(--font-base);
  transition: background 0.2s, transform 0.15s;
}
.hm-coll-card__cta:hover { background: var(--color-primary); transform: translateY(-1px); }
.hm-coll-card__cta--oos { background: #e5e5e5; color: #999 !important; cursor: not-allowed; }
.hm-coll-card__cta--oos:hover { background: #e5e5e5; transform: none; }

/* List view */
.hm-coll-grid.is-list {
  grid-template-columns: 1fr;
}
.hm-coll-grid.is-list .hm-coll-card {
  flex-direction: row;
  max-height: 200px;
}
.hm-coll-grid.is-list .hm-coll-card__img-wrap {
  width: 200px;
  min-width: 200px;
  aspect-ratio: unset;
}
.hm-coll-grid.is-list .hm-coll-card__body { padding: 20px; justify-content: center; }

/* ── Empty State ── */
.hm-coll-empty {
  text-align: center;
  padding: 80px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.hm-coll-empty__icon { color: #ccc !important; }
.hm-coll-empty h3 { font-size: 1.5rem; color: #111 !important; }
.hm-coll-empty p { color: #777 !important; font-size: 14.5px; }

/* ── Pagination ── */
.hm-coll-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 56px;
  flex-wrap: wrap;
}
.hm-coll-page-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  border: 1.5px solid #e0ddd8;
  background: #fff;
  color: #333 !important;
  font-size: 13.5px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.2s ease;
}
.hm-coll-page-num:hover:not(.is-current) {
  border-color: var(--color-primary);
  color: var(--color-primary) !important;
}
.hm-coll-page-num.is-current {
  background: #111;
  border-color: #111;
  color: #fff !important;
  font-weight: 700;
}
.hm-coll-page-dots {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  color: #bbb !important;
  font-size: 14px;
}
.hm-coll-page-numbers { display: flex; align-items: center; gap: 6px; }
.hm-coll-page-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 9px 18px;
  border-radius: 30px;
  border: 1.5px solid #e0ddd8;
  background: #fff;
  color: #333 !important;
  font-size: 13.5px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s ease;
  font-family: var(--font-base);
}
.hm-coll-page-btn:hover {
  border-color: var(--color-primary);
  color: var(--color-primary) !important;
  background: rgba(195,74,54,0.05);
}

/* ── Sidebar overlay (mobile) ── */
.hm-coll-sidebar-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 999;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.hm-coll-sidebar-overlay.is-visible {
  display: block;
  opacity: 1;
}

/* =========================================================
   COLLECTION PAGE — RESPONSIVE
   ========================================================= */
@media (max-width: 1200px) {
  .hm-collection-layout { grid-template-columns: 200px 1fr; gap: 24px; }
  .hm-coll-grid { grid-template-columns: repeat(3, 1fr); gap: 16px; }
}
@media (max-width: 1024px) {
  .hm-collection-layout { grid-template-columns: 190px 1fr; gap: 20px; }
  .hm-coll-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 768px) {
  /* Toolbar simplify */
  .hm-collection-toolbar { display: none; }
  .hm-coll-mobile-bar { display: flex; }

  /* Sidebar becomes slide-in drawer */
  .hm-collection-layout { grid-template-columns: 1fr; }
  .hm-coll-sidebar {
    position: fixed;
    top: 0;
    left: -100%;
    width: 300px;
    height: 100%;
    z-index: 1000;
    border-radius: 0;
    border: none;
    overflow-y: auto;
    transition: left 0.35s cubic-bezier(.4,0,.2,1);
    box-shadow: 4px 0 30px rgba(0,0,0,0.2);
  }
  .hm-coll-sidebar.is-open { left: 0; }
  .hm-coll-sidebar__header { display: flex; }
  .hm-coll-sidebar__footer { display: block; }

  .hm-coll-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .hm-collection-hero { padding: 36px 0 30px; }
  .hm-collection-hero__title { font-size: 1.8rem; }
}
@media (max-width: 480px) {
  .hm-coll-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .hm-coll-card__body { padding: 10px 11px 12px; gap: 5px; }
  .hm-coll-card__title { font-size: 12.5px; }
  .hm-coll-card__cta { font-size: 11.5px; padding: 8px 10px; }
  .hm-coll-pagination { gap: 5px; margin-top: 36px; }
  .hm-coll-page-num { width: 36px; height: 36px; font-size: 12.5px; }
  .hm-coll-page-btn { padding: 8px 13px; font-size: 12.5px; }
}

/* =========================================================
   SINGLE PRODUCT PAGE — PREMIUM OVERRIDES (hamarimitti.pk clone)
   ========================================================= */
.hm-product-layout {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr !important;
  gap: 40px !important;
  margin-top: 20px;
}
.hm-product-gallery {
  position: sticky;
  top: 110px;
  height: fit-content;
}
.hm-product-gallery__main {
  border: 1.5px solid #e8e4de !important;
  background: #ffffff !important;
  border-radius: 16px !important;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0,0,0,0.02);
}
.hm-product-gallery__thumbs {
  display: flex;
  gap: 10px !important;
  margin-top: 12px;
  overflow-x: auto;
  padding-bottom: 5px;
}
.hm-gallery-thumb {
  width: 76px !important;
  height: 76px !important;
  border-radius: 10px !important;
  border: 1.5px solid #e0ddd8 !important;
  background: #ffffff !important;
  padding: 3px;
  transition: all 0.2s ease !important;
}
.hm-gallery-thumb.is-active {
  border-color: var(--color-primary) !important;
  box-shadow: 0 0 0 2px rgba(195,74,54,0.15);
}
.hm-gallery-thumb:hover {
  border-color: var(--color-primary) !important;
}

/* Info detail overrides */
.hm-product-info__title {
  font-size: clamp(1.6rem, 3vw, 2.2rem) !important;
  font-weight: 700 !important;
  letter-spacing: -0.03em !important;
  color: #111111 !important;
  line-height: 1.25 !important;
  margin-bottom: 12px !important;
}
.hm-product-info__rating {
  margin-bottom: 14px !important;
}
.hm-product-info__price {
  font-size: 2.2rem !important;
  font-weight: 700 !important;
  color: var(--color-primary) !important;
  margin-bottom: 20px !important;
  display: flex;
  align-items: center;
  gap: 12px;
}
.hm-product-info__price del {
  font-size: 1.4rem !important;
  color: #bbb !important;
  font-weight: 400 !important;
}
.hm-product-info__price ins {
  text-decoration: none !important;
}
.hm-product-info__price .woocommerce-price-suffix {
  font-size: 13px !important;
  color: #777 !important;
  font-weight: 500;
}

/* Add to Cart form flex row */
form.cart {
  display: flex !important;
  gap: 12px !important;
  align-items: center !important;
  margin-bottom: 24px !important;
  flex-wrap: wrap !important;
}
form.cart .quantity {
  margin: 0 !important;
  float: none !important;
}
form.cart .quantity .qty {
  height: 52px !important;
  width: 90px !important;
  border: 1.5px solid #e0ddd8 !important;
  background: #ffffff !important;
  border-radius: 30px !important;
  text-align: center !important;
  font-weight: 700 !important;
  color: #111111 !important;
  font-size: 15px !important;
  outline: none !important;
}
form.cart .single_add_to_cart_button {
  flex: 1 !important;
  min-width: 220px !important;
  margin: 0 !important;
  height: 52px !important;
  padding: 0 2rem !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  text-transform: uppercase !important;
  letter-spacing: 0.05em !important;
  background: #111111 !important;
  color: #ffffff !important;
  font-size: 14.5px !important;
  font-weight: 700 !important;
  border: none !important;
  border-radius: 30px !important;
  transition: all 0.22s ease !important;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08) !important;
}
form.cart .single_add_to_cart_button:hover {
  background: var(--color-primary) !important;
  box-shadow: 0 6px 20px rgba(195,74,54,0.3) !important;
  transform: translateY(-1px);
}

/* Trust Signals list */
.hm-product-trust {
  background: #fbfbfa !important;
  border: 1.5px solid #e8e4de !important;
  border-radius: 12px !important;
  padding: 16px 20px !important;
  margin: 24px 0 !important;
  gap: 12px !important;
}
.hm-product-trust__item {
  font-size: 13.5px !important;
  font-weight: 600 !important;
  color: #444444 !important;
}
.hm-product-trust__item svg {
  stroke: var(--color-primary) !important;
}

@media (max-width: 768px) {
  .hm-product-layout {
    grid-template-columns: 1fr !important;
    gap: 24px !important;
  }
  .hm-product-gallery {
    position: static !important;
  }
}

