/* =========================================================
   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: #111111;
  color: #ffffff;
  border-color: #111111;
  letter-spacing: 0.03em;
  box-shadow: 0 4px 18px rgba(0,0,0,0.12);
  gap: 10px;
}
.hm-btn--outline svg {
  transition: transform 0.3s cubic-bezier(0.25,1,0.5,1);
}
.hm-btn--outline:hover {
  background-color: #111111 !important;
  border-color: #111111 !important;
  color: #ffffff !important;
  box-shadow: 0 8px 28px rgba(0,0,0,0.25) !important;
  transform: translateY(-2px);
}
.hm-btn--outline:hover svg {
  stroke: #ffffff !important;
  transform: translateX(5px);
}

.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
   ========================================================= */
@keyframes hmBarSlideDown {
  from { transform: translateY(-100%); opacity: 0; }
  to   { transform: translateY(0);     opacity: 1; }
}
@keyframes hmBarSlideUp {
  from { transform: translateY(0);     opacity: 1; max-height: 100px; }
  to   { transform: translateY(-100%); opacity: 0; max-height: 0;     }
}
.hm-announcement-bar {
  background: #000000 !important;
  color: #ffffff !important;
  font-size: 13px;
  font-weight: 500;
  padding: 11px 0;
  text-align: center;
  position: relative;
  z-index: 1000;
  overflow: hidden;
  border-bottom: 1px solid #222222;
  animation: hmBarSlideDown 0.5s cubic-bezier(0.16, 1, 0.3, 1) both;
  max-height: 100px;
  transition: max-height 0.45s ease, opacity 0.35s ease, transform 0.4s ease;
}
.hm-announcement-bar.is-closing {
  animation: hmBarSlideUp 0.45s cubic-bezier(0.4, 0, 1, 1) forwards;
}
.hm-announcement-bar.is-hidden { display: none !important; }

.hm-announcement-bar__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px 60px 12px 16px;
  gap: 1rem;
  max-width: var(--container-fluid);
  margin: 0 auto;
  position: relative;
}

.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;
  color: #ffffff !important;
  letter-spacing: 0.01em;
}
.hm-ann-sep { opacity: 0.4; font-size: 12px; color: #ffffff !important; }

.hm-announcement-bar__close {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.25);
  color: #ffffff !important;
  opacity: 0.85;
  cursor: pointer;
  padding: 5px 7px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  right: 1.25rem;
  top: 50%;
  transform: translateY(-50%);
  flex-shrink: 0;
  transition: background 0.25s ease, opacity 0.25s ease, transform 0.2s ease;
  line-height: 0;
}
.hm-announcement-bar__close:hover {
  background: rgba(255,255,255,0.22);
  opacity: 1;
  transform: translateY(-50%) scale(1.1);
}

.hm-announcement-bar.is-closing {
  opacity: 0 !important;
  max-height: 0 !important;
  padding: 0 !important;
  margin: 0 !important;
  overflow: hidden !important;
  transition: all 0.35s ease-out !important;
}

.hm-announcement-bar.is-hidden {
  display: none !important;
}

/* =========================================================
   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: rgba(0,0,0,0.06) !important; color: #111111 !important; }
.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: 0;
  transform: translateX(-100%);
  width: 100%;
  max-width: 380px;
  height: 100vh;
  background: #000000;
  z-index: 2000;
  display: flex;
  flex-direction: column;
  transition: transform 0.6s cubic-bezier(0.77, 0, 0.175, 1), box-shadow 0.6s;
  overflow-y: auto;
}
.hm-mobile-nav.is-open { 
  transform: translateX(0); 
  box-shadow: 10px 0 30px rgba(0,0,0,0.5); 
}

.hm-mobile-nav__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 1.5rem 0.5rem 1.5rem;
}

.hm-mobile-nav__header .hm-logo-text { color: #ffffff !important; }

.hm-mobile-nav__close {
  width: 34px; height: 34px;
  background: transparent;
  border: none;
  color: #ffffff;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  padding: 0;
}
.hm-mobile-nav__close svg {
  width: 32px; height: 32px;
  transition: transform 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}
.hm-mobile-nav__close:hover svg { transform: rotate(180deg) scale(1.1); color: #ff4747; }
.hm-mobile-nav__close:active svg { transform: rotate(180deg) scale(0.85); }

.hm-mobile-nav__body { flex: 1; padding: 1.5rem 2rem; }
.hm-mobile-menu { list-style: none; display: flex; flex-direction: column; gap: 20px; }
.hm-mobile-menu > li {
  border-bottom: none;
}
.hm-mobile-menu > li > a {
  display: block;
  font-size: 24px;
  font-weight: 500;
  color: #ffffff;
  text-decoration: none;
  transition: all 0.2s ease;
}
.hm-mobile-menu > li > a:hover { color: #a95c33; transform: translateX(10px); }

.hm-mobile-menu .sub-menu { padding: 0.5rem 0 0 1rem; }
.hm-mobile-menu .sub-menu li a { display: block; padding: 0.5rem 0; font-size: 16px; color: rgba(255,255,255,0.7); transition: color 0.2s ease; }
.hm-mobile-menu .sub-menu li a:hover { color: #a95c33; }

.hm-mobile-nav__footer {
  display: flex;
  gap: 0.75rem;
  padding: 1.5rem 2rem;
  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.95);
  z-index: 1999;
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--transition-slow), visibility var(--transition-slow);
  backdrop-filter: blur(5px);
}
.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: inherit !important;
}
.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;
}
.hm-hero__eyebrow {
  color: #ffffff !important;
  background: rgba(255, 255, 255, 0.18) !important;
  border: 1px solid rgba(255, 255, 255, 0.3) !important;
  padding: 6px 16px !important;
  font-weight: 700 !important;
}
.hm-hero__heading {
  color: #ffffff !important;
}
.hm-hero__heading em {
  color: #ffffff !important;
  font-style: normal;
  display: block;
}
.hm-hero__subtext {
  font-size: clamp(15px, 2vw, 18px);
  color: rgba(255, 255, 255, 0.95) !important;
  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;
}
/* Hero Buttons — Fixed High Contrast Hover State */
.hm-hero .hm-btn {
  background: var(--color-primary, #c34a36) !important;
  color: #ffffff !important;
  border: 2px solid var(--color-primary, #c34a36) !important;
  font-weight: 700 !important;
  box-shadow: 0 4px 18px rgba(195, 74, 54, 0.35) !important;
  transition: all 0.25s ease !important;
}
.hm-hero .hm-btn:hover {
  background: #a63628 !important;
  color: #ffffff !important;
  border-color: #a63628 !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 8px 24px rgba(195, 74, 54, 0.5) !important;
}
.hm-hero .hm-btn svg {
  stroke: #ffffff !important;
}

.hm-hero-swiper-prev,
.hm-hero-swiper-next {
  width: 52px !important;
  height: 52px !important;
  border-radius: 50% !important;
  transition: all 0.3s ease !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  top: 50% !important;
  transform: translateY(-50%) !important;
  margin-top: 0 !important;
  background: rgba(0, 0, 0, 0.65) !important;
  border: 1.5px solid rgba(255, 255, 255, 0.3) !important;
  color: #ffffff !important;
  backdrop-filter: blur(8px) !important;
  opacity: 0.9 !important;
  pointer-events: auto !important;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3) !important;
}
.hm-hero-swiper-prev:hover,
.hm-hero-swiper-next:hover {
  background: #000000 !important;
  border-color: #ffffff !important;
  color: #ffffff !important;
  transform: translateY(-50%) scale(1.08) !important;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.5) !important;
}
.hm-hero-swiper-prev {
  display: flex !important;
  left: 24px !important;
}
.hm-hero-swiper-next { 
  display: flex !important;
  right: 24px !important; 
}
.hm-hero-swiper-pagination {
  bottom: 12px !important;
  z-index: 10 !important;
}
.hm-hero-swiper-pagination .swiper-pagination-bullet {
  background: rgba(255, 255, 255, 0.45) !important;
  opacity: 1 !important;
  width: 10px !important;
  height: 10px !important;
  transition: all 0.3s ease !important;
}
.hm-hero-swiper-pagination .swiper-pagination-bullet-active {
  background: #ffffff !important;
  width: 26px !important;
  border-radius: 10px !important;
  box-shadow: 0 2px 8px rgba(0,0,0,0.3) !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(3, 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;
  list-style: none !important;
  margin: 0 !important;
  padding: 0 !important;
}
.hm-product-grid--3col { grid-template-columns: repeat(3, 1fr); }
.hm-product-grid--4col { grid-template-columns: repeat(3, 1fr); }

.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; }

/* 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-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;
  display: flex;
  justify-content: center;
}
.hm-section-cta .hm-btn {
  min-width: 200px;
  justify-content: center;
}

/* =========================================================
   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: 3rem 0 3rem;
}
.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);
  opacity: 1;
  visibility: visible;
  transition: all var(--transition-base);
  z-index: 100;
  text-decoration: none;
}
.hm-whatsapp-float:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 6px 25px rgba(37,211,102,0.6);
  color: var(--color-white);
}

/* =========================================================
   22. CART EMPTY CENTER & SWIPER OVERFLOW
   ========================================================= */

/* Center Empty Cart layout */
.woocommerce-cart .cart-empty,
.woocommerce-cart .return-to-shop {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  display: block;
}

/* Ensure product card hover action button is visible within sliders */
.swiper-slide {
  overflow: visible !important;
}

/* =========================================================
   23. MOBILE RESPONSIVENESS FIXES
   ========================================================= */
@media (max-width: 991px) {
  /* Disable Sticky Header on Mobile to allow natural scrolling away */
  .hm-header { position: relative !important; top: auto !important; }
  
  /* Ensure announcement bar doesn't clip on mobile if text wraps */
  .hm-announcement-bar { max-height: auto !important; height: auto; }
  .hm-announcement-bar__inner { padding: 10px 12px; font-size: 13px; }

  /* Hamburger Menu Visibility */
  .hm-hamburger { display: flex !important; background: #000000 !important; border-radius: 4px; padding: 10px; width: 44px; height: 44px; justify-content: space-evenly; }
  .hm-hamburger__line { background: #ffffff !important; height: 2px; }
  .hm-header__nav { display: none !important; }
  
  /* Mobile Overlay ensure full obscure */
  .hm-mobile-nav {
    z-index: 99999 !important;
  }
  .hm-overlay {
    z-index: 99998 !important;
    background: rgba(0, 0, 0, 0.95) !important;
    backdrop-filter: blur(5px);
  }
}

@media (max-width: 768px) {
  /* Hero Banner Text alignment and spacing fix */
  .hm-hero__content {
    padding: 10px !important;
    text-align: center !important;
  }
  .hm-hero__heading {
    font-size: 38px !important;
    line-height: 1.15 !important;
  }
  .hm-hero__subtext {
    font-size: 15px !important;
  }
  
  /* Newsletter Mobile Fixes */
  .hm-newsletter-card {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    padding: 2rem 1.5rem;
  }
  .hm-newsletter-form__group {
    flex-direction: column !important;
  }
  .hm-newsletter-form__group input[type="email"],
  .hm-newsletter-form__group button,
  .hm-newsletter-form__group .hm-btn--primary {
    width: 100% !important;
  }
  .hm-footer__grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

/* =========================================================
   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
   ========================================================= */
/* =========================================================
   23. SINGLE PRODUCT PAGE — PREMIUM REDESIGN
   ========================================================= */
.hm-single-product-page {
  padding: 2.5rem 0 5rem;
  background: #fafaf8;
}

/* Breadcrumb */
.hm-breadcrumb {
  margin-bottom: 2rem;
  font-size: 13px;
  color: var(--color-muted);
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}
.hm-breadcrumb a { color: var(--color-body); text-decoration: none; transition: color 0.2s; }
.hm-breadcrumb a:hover { color: var(--color-primary); }
.woocommerce-breadcrumb { font-size: 13px; color: var(--color-muted); }
.woocommerce-breadcrumb a { color: var(--color-body); }

/* ── MAIN LAYOUT ── */
.hm-product-layout {
  display: grid;
  grid-template-columns: 52% 1fr;
  gap: 3.5rem;
  margin-bottom: 4.5rem;
  align-items: start;
}

/* ── GALLERY (LEFT) ── */
.hm-product-gallery {
  position: sticky;
  top: 100px;
  height: fit-content;
}

.hm-product-gallery__main {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  background: #f0ece6;
  aspect-ratio: 1 / 1;
  margin-bottom: 0.85rem;
  box-shadow: 0 8px 40px rgba(0,0,0,0.10);
  transition: box-shadow 0.3s ease;
}
.hm-product-gallery__main:hover {
  box-shadow: 0 16px 56px rgba(0,0,0,0.15);
}

.hm-product-gallery__img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.55s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.hm-gallery-zoom { display: block; position: relative; }
.hm-gallery-zoom:hover .hm-product-gallery__img { transform: scale(1.05); }

.hm-gallery-zoom__icon {
  position: absolute;
  top: 1rem; right: 1rem;
  width: 40px; height: 40px;
  background: rgba(0,0,0,0.52);
  backdrop-filter: blur(4px);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  opacity: 0;
  transition: opacity 0.25s ease, transform 0.25s ease;
}
.hm-gallery-zoom:hover .hm-gallery-zoom__icon {
  opacity: 1;
  transform: scale(1.05);
}

/* Gallery Thumbnails */
.hm-product-gallery__thumbs {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
  margin-top: 0.5rem;
}
.hm-gallery-thumb {
  width: 76px; height: 76px;
  border-radius: 12px;
  overflow: hidden;
  border: 2.5px solid transparent;
  cursor: pointer;
  background: #f0ece6;
  transition: border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
  flex-shrink: 0;
}
.hm-gallery-thumb.is-active {
  border-color: #111;
  box-shadow: 0 3px 12px rgba(0,0,0,0.18);
}
.hm-gallery-thumb:hover {
  border-color: var(--color-primary);
  transform: translateY(-2px);
}
.hm-gallery-thumb__img { width: 100%; height: 100%; object-fit: cover; }

/* Badges on gallery */
.hm-badge--lg {
  position: absolute;
  top: 1rem; left: 1rem;
  font-size: 12px; font-weight: 700;
  padding: 5px 12px;
  border-radius: 20px;
  z-index: 5;
}
.hm-badge--sale.hm-badge--lg  { background: #e53e3e; color: #fff; }
.hm-badge--sold-out.hm-badge--lg { background: #555; color: #fff; }

/* ── PRODUCT INFO (RIGHT) ── */
.hm-product-info {
  padding: 0.5rem 0;
}

/* Category pill */
.hm-product-info__cats { margin-bottom: 0.75rem; }
.hm-product-cat-link {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-primary);
  background: rgba(90,62,43,0.09);
  padding: 4px 12px;
  border-radius: 20px;
  text-decoration: none;
  transition: background 0.2s ease;
}
.hm-product-cat-link:hover { background: rgba(90,62,43,0.16); }

/* Title */
.hm-product-info__title {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  line-height: 1.2;
  color: #111;
  margin-bottom: 0.85rem;
  letter-spacing: -0.02em;
}

/* Rating */
.hm-product-info__rating {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 1.1rem;
}
.hm-product-info__rating .hm-stars { color: #f59e0b; font-size: 16px; letter-spacing: 1px; }
.hm-product-info__rating-link {
  font-size: 13px;
  color: var(--color-muted);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.hm-product-info__rating-link:hover { color: var(--color-primary); }

/* Price */
.hm-product-info__price {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 1.25rem;
  padding: 1rem 1.25rem;
  background: linear-gradient(135deg, #111 0%, #2d2d2d 100%);
  border-radius: 14px;
}
.hm-product-info__price .price,
.hm-product-info__price .woocommerce-Price-amount {
  font-size: 2rem !important;
  font-weight: 800 !important;
  color: #fff !important;
}
.hm-product-info__price .price ins {
  color: #fff !important;
  text-decoration: none !important;
}
.hm-product-info__price .price del {
  color: rgba(255,255,255,0.5) !important;
  font-size: 1.2rem !important;
  font-weight: 400 !important;
  text-decoration: line-through !important;
}
.hm-product-info__price .price del .woocommerce-Price-amount {
  font-size: 1.2rem !important;
  color: rgba(255,255,255,0.5) !important;
}

/* Short Description */
.hm-product-info__short-desc {
  font-size: 14.5px;
  line-height: 1.85;
  color: #555;
  margin-bottom: 1.35rem;
  border-bottom: 1px solid #e8e3dc;
  padding-bottom: 1.35rem;
}
.hm-product-info__short-desc ul { list-style: none; padding-left: 0; }
.hm-product-info__short-desc ul li {
  padding: 4px 0 4px 22px;
  position: relative;
  margin-bottom: 4px;
}
.hm-product-info__short-desc ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--color-primary);
  font-weight: 700;
}

/* Stock */
.hm-product-info__stock { margin-bottom: 1.35rem; font-size: 13px; font-weight: 600; }
.hm-in-stock {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #16a34a;
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 12.5px;
}
.hm-out-of-stock {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #dc2626;
  background: #fef2f2;
  border: 1px solid #fecaca;
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 12.5px;
}

/* ── ADD TO CART ── */
.cart { margin-bottom: 1rem; }
.cart .quantity { margin-bottom: 1rem; }

.quantity .qty {
  height: 52px !important;
  border: 2px solid #e8e3dc !important;
  border-radius: 12px !important;
  font-family: var(--font-base) !important;
  font-size: 17px !important;
  font-weight: 600 !important;
  padding: 0 1rem !important;
  width: 90px !important;
  text-align: center !important;
  background: #fff !important;
  color: #111 !important;
  transition: border-color 0.2s ease, box-shadow 0.2s ease !important;
}
.quantity .qty:focus {
  border-color: #111 !important;
  outline: none !important;
  box-shadow: 0 0 0 3px rgba(0,0,0,0.08) !important;
}

.single_add_to_cart_button {
  background: #111111 !important;
  color: #ffffff !important;
  border: none !important;
  border-radius: 14px !important;
  padding: 1.05rem 2.5rem !important;
  font-family: var(--font-base) !important;
  font-size: 15.5px !important;
  font-weight: 700 !important;
  letter-spacing: 0.02em !important;
  cursor: pointer !important;
  width: 100% !important;
  transition: background 0.25s ease, transform 0.2s cubic-bezier(0.34,1.56,0.64,1), box-shadow 0.25s ease !important;
  box-shadow: 0 6px 24px rgba(0,0,0,0.20) !important;
}
.single_add_to_cart_button:hover {
  background: #2a2a2a !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 12px 32px rgba(0,0,0,0.28) !important;
}
.single_add_to_cart_button:active {
  transform: translateY(0) !important;
  box-shadow: 0 4px 16px rgba(0,0,0,0.18) !important;
}

/* Wishlist button */
.hm-btn--wishlist {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0.9rem 2rem;
  border: 2px solid #e8e3dc;
  background: #fff;
  border-radius: 14px;
  font-family: var(--font-base);
  font-size: 14px;
  font-weight: 600;
  color: #555;
  cursor: pointer;
  margin-top: 0.75rem;
  transition: border-color 0.2s ease, color 0.2s ease, background 0.2s ease;
}
.hm-btn--wishlist:hover {
  border-color: #e53e3e;
  color: #e53e3e;
  background: #fff5f5;
}
.hm-btn--wishlist svg { transition: fill 0.2s ease; }
.hm-btn--wishlist:hover svg { stroke: #e53e3e; }

/* ── TRUST SIGNALS ── */
.hm-product-trust {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 0;
  background: #fff;
  border: 1px solid #e8e3dc;
  border-radius: 16px;
  overflow: hidden;
  margin: 1.35rem 0;
}
.hm-product-trust__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 7px;
  padding: 1rem 0.75rem;
  font-size: 12px;
  font-weight: 500;
  color: #444;
  border-right: 1px solid #e8e3dc;
  line-height: 1.4;
}
.hm-product-trust__item:last-child { border-right: none; }
.hm-product-trust__item svg { stroke: var(--color-primary); }

/* ── SHARE ── */
.hm-product-share {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: 1.1rem;
  font-size: 13px;
  color: var(--color-muted);
}
.hm-share-btn {
  width: 34px; height: 34px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: white; font-size: 14px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 3px 10px rgba(0,0,0,0.12);
}
.hm-share-btn:hover {
  transform: translateY(-3px);
  color: white;
  box-shadow: 0 6px 18px rgba(0,0,0,0.2);
}
.hm-share-btn--facebook { background: #1877f2; }
.hm-share-btn--whatsapp { background: #25d366; }

/* ── PRODUCT TABS ── */
.hm-product-tabs {
  margin-bottom: 4rem;
  background: #fff;
  border-radius: 20px;
  border: 1px solid #e8e3dc;
  overflow: hidden;
  box-shadow: 0 2px 20px rgba(0,0,0,0.05);
}
.hm-product-tabs__nav {
  display: flex;
  border-bottom: 1.5px solid #e8e3dc;
  gap: 0;
  overflow-x: auto;
  background: #fafaf8;
  padding: 0 1rem;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.hm-product-tabs__nav::-webkit-scrollbar { display: none; }

.hm-tab-btn {
  padding: 1rem 1.5rem;
  font-family: var(--font-base);
  font-size: 14px;
  font-weight: 600;
  color: #888;
  background: none;
  border: none;
  border-bottom: 3px solid transparent;
  margin-bottom: -1.5px;
  cursor: pointer;
  transition: color 0.2s ease, border-color 0.2s ease;
  display: flex; align-items: center; gap: 7px;
  white-space: nowrap;
}
.hm-tab-btn.is-active { color: #111; border-bottom-color: #111; }
.hm-tab-btn:hover { color: var(--color-primary); }
.hm-tab-btn__count {
  background: #f0ece6;
  border-radius: 20px;
  padding: 2px 8px;
  font-size: 11px;
  color: #666;
}

.hm-tab-panel { display: none; }
.hm-tab-panel.is-active { display: block; animation: hmFadeIn 0.3s ease; }

.hm-product-tabs__content { padding: 2rem 2rem; }

.hm-product-description { max-width: 100%; line-height: 1.85; font-size: 14.5px; color: #444; }
.hm-product-description h2, .hm-product-description h3 { margin-bottom: 0.75rem; margin-top: 1.5rem; font-size: 1.2rem; color: #111; }
.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;
  background: #fafaf8;
  border: 1px solid #e8e3dc;
  border-radius: 14px;
  padding: 1.25rem 1.25rem;
}
.hm-shipping-info__item svg { stroke: var(--color-primary); flex-shrink: 0; margin-top: 2px; }
.hm-shipping-info__item h4 { font-size: 15px; font-weight: 700; margin-bottom: 0.75rem; color: #111; }
.hm-shipping-info__item ul { list-style: none; padding-left: 0; }
.hm-shipping-info__item li {
  font-size: 13px;
  color: #555;
  margin-bottom: 0.5rem;
  padding-left: 18px;
  position: relative;
}
.hm-shipping-info__item li::before {
  content: '→';
  position: absolute; left: 0;
  color: var(--color-primary);
  font-weight: 700;
}

/* ── RELATED PRODUCTS ── */
.hm-related-products { margin-top: 1rem; }
.hm-related-products .hm-section-header { margin-bottom: 1.75rem; }
.hm-related-products .hm-section-title { font-size: 1.6rem; font-weight: 800; color: #111; }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .hm-product-layout { grid-template-columns: 1fr; gap: 2rem; }
  .hm-product-gallery { position: static; }
  .hm-product-trust { grid-template-columns: 1fr 1fr 1fr; }
  .hm-shipping-info { grid-template-columns: 1fr; gap: 1rem; }
}
@media (max-width: 600px) {
  .hm-single-product-page { padding: 1.25rem 0 3.5rem; }
  .hm-product-layout { gap: 1.5rem; }
  .hm-product-info__title { font-size: 1.5rem; }
  .hm-product-info__price { padding: 0.85rem 1rem; }
  .hm-product-info__price .price,
  .hm-product-info__price .woocommerce-Price-amount { font-size: 1.6rem !important; }
  .hm-product-trust { grid-template-columns: 1fr; border-radius: 14px; }
  .hm-product-trust__item { flex-direction: row; text-align: left; justify-content: flex-start; border-right: none; border-bottom: 1px solid #e8e3dc; }
  .hm-product-trust__item:last-child { border-bottom: none; }
  .hm-product-tabs__content { padding: 1.25rem 1rem; }
  .hm-shipping-info { grid-template-columns: 1fr; }
  .hm-gallery-thumb { width: 60px; height: 60px; }
  .single_add_to_cart_button { padding: 1rem 1.5rem !important; font-size: 15px !important; }
}

/* =========================================================
   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(3, 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
   ========================================================= */
@keyframes hmFadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0);    }
}
@keyframes hmFadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes hmScaleIn {
  from { opacity: 0; transform: scale(0.94); }
  to   { opacity: 1; transform: scale(1);    }
}
@keyframes hmSlideInLeft {
  from { opacity: 0; transform: translateX(-30px); }
  to   { opacity: 1; transform: translateX(0);     }
}
@keyframes hmSlideInRight {
  from { opacity: 0; transform: translateX(30px); }
  to   { opacity: 1; transform: translateX(0);    }
}
@keyframes hmPulse {
  0%, 100% { transform: scale(1); }
  50%       { transform: scale(1.04); }
}

/* Base — visible by default to prevent white screen if JS fails */
.hm-fade-up {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
/* When JS activates observer, animate in */
.hm-fade-up.will-animate {
  opacity: 0;
  transform: translateY(28px);
}
.hm-fade-up.is-visible {
  opacity: 1 !important;
  transform: translateY(0) !important;
}

/* 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="300"] { transition-delay: 0.3s;  }
[data-delay="400"] { transition-delay: 0.4s;  }

/* Section header animation */
.hm-section-header {
  animation: hmFadeUp 0.7s cubic-bezier(0.16,1,0.3,1) both;
  animation-delay: 0.1s;
}
.hm-testi-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.25) !important;
}

/* Button pulse on hover */
.hm-btn--primary:hover, .hm-btn--dark:hover {
  animation: hmPulse 0.4s ease;
}
[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; }
.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 — WHITE background, BLACK text */
.hm-footer__newsletter-strip { background: transparent !important; padding: 1rem 0 3rem 0 !important; border: none !important; }
.hm-newsletter-card {
  background: #ffffff !important;
  border-radius: 18px !important;
  box-shadow: 0 8px 32px rgba(0,0,0,0.08) !important;
  border: 1.5px solid #e5e5e5 !important;
}
.hm-newsletter-card__content h3 {
  color: #111111 !important;
  font-size: 2rem !important;
  font-weight: 800 !important;
  letter-spacing: -0.02em !important;
  text-shadow: none !important;
}
.hm-newsletter-card__content p { color: #444444 !important; font-size: 15px !important; line-height: 1.65 !important; }
.newsletter-card-tag {
  background: #f5f5f5 !important;
  color: #111111 !important;
  font-size: 11px !important;
  font-weight: 700 !important;
  border: 1px solid #ddd !important;
  letter-spacing: 0.12em !important;
}
/* Newsletter Form — Layout & Colors Fix */
.hm-newsletter-form__group {
  display: flex !important;
  flex-direction: row !important;
  gap: 10px !important;
  align-items: center !important;
  flex-wrap: nowrap !important;
}
.hm-newsletter-form__group input[type="email"] {
  flex: 1 1 auto !important;
  min-width: 0 !important;
  height: 48px !important;
  background: #f9f9f9 !important;
  border: 1.5px solid #ddd !important;
  border-radius: 30px !important;
  color: #111111 !important;
  font-size: 14px !important;
  padding: 0 1.25rem !important;
  outline: none !important;
  transition: border-color 0.2s !important;
}
.hm-newsletter-form__group input[type="email"]:focus {
  border-color: #c34a36 !important;
  background: #fff !important;
  box-shadow: 0 0 0 3px rgba(195,74,54,0.1) !important;
}
.hm-newsletter-form__group input::placeholder { color: #aaaaaa !important; }
.hm-newsletter-form__note {
  color: #888888 !important;
  font-size: 11.5px !important;
  margin-top: 10px !important;
  display: block !important;
}
.hm-newsletter-form__group .hm-btn--primary,
.hm-newsletter-form__group button[type="submit"] {
  flex-shrink: 0 !important;
  height: 48px !important;
  padding: 0 28px !important;
  background: #111111 !important;
  color: #ffffff !important;
  border: none !important;
  border-radius: 30px !important;
  font-size: 14px !important;
  font-weight: 700 !important;
  cursor: pointer !important;
  white-space: nowrap !important;
  transition: background 0.2s !important;
}
.hm-newsletter-form__group .hm-btn--primary:hover,
.hm-newsletter-form__group button[type="submit"]:hover {
  background: #c34a36 !important;
  color: #ffffff !important;
}

/* Main footer body — WHITE background, BLACK text */
.hm-footer { background: #ffffff !important; border-top: 1px solid #e5e5e5 !important; }
.hm-footer__main { background: #ffffff !important; padding: 2rem 0 3rem !important; }

/* Footer logo */
.hm-footer__logo-text { color: #111111 !important; font-size: 1.4rem !important; font-weight: 700 !important; }

/* Footer tagline */
.hm-footer__tagline { color: #555555 !important; font-size: 13.5px !important; line-height: 1.8 !important; }

/* Footer column titles */
.hm-footer__col-title {
  color: #111111 !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 */
.hm-footer__links a { color: #444444 !important; font-size: 13.5px !important; }
.hm-footer__links a:hover { color: #111111 !important; padding-left: 4px; text-decoration: underline; }

/* Footer contact info */
.hm-footer__contact-info p { color: #444444 !important; font-size: 13.5px !important; }
.hm-footer__contact-info a { color: #444444 !important; }
.hm-footer__contact-info a:hover { color: #111111 !important; text-decoration: underline; }

/* Payment badges */
.payment-badge {
  background: #f5f5f5 !important;
  border: 1px solid #ddd !important;
  color: #333333 !important;
  font-size: 11px !important;
  font-weight: 600 !important;
  padding: 4px 10px !important;
  border-radius: 5px !important;
}

/* Social links */
.hm-social-link { color: #444444 !important; }
.hm-social-link:hover { color: #111111 !important; }

/* Footer bottom bar */
.hm-footer__bottom { background: #f5f5f5 !important; border-top: 1px solid #e0e0e0 !important; }
.hm-footer__copyright { color: #666666 !important; font-size: 12.5px !important; }
.hm-footer__trust-stamps { color: #666666 !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; }

/* =========================================================
   45b. MARQUEE STATS BAR — WHITE BG & DARK HIGH-CONTRAST TEXT
   ========================================================= */
.hm-stats-marquee-bar {
  background: #ffffff !important;
  border-top: 1px solid #ede8e0 !important;
  border-bottom: 1px solid #ede8e0 !important;
  padding: 14px 0 !important;
  overflow: hidden !important;
  display: flex !important;
  align-items: center !important;
}
.hm-stats-marquee-track {
  display: flex !important;
  gap: 3rem !important;
  align-items: center !important;
  white-space: nowrap !important;
}
.hm-stats-marquee-item {
  display: inline-flex !important;
  align-items: center !important;
  gap: 8px !important;
  font-family: var(--font-base, system-ui) !important;
}
.hm-stats-marquee-item strong {
  color: #111111 !important;
  font-size: 19px !important;
  font-weight: 800 !important;
  letter-spacing: -0.01em !important;
}
.hm-stats-marquee-item span {
  color: #444444 !important;
  font-size: 14px !important;
  font-weight: 600 !important;
}

/* =========================================================
   45c. TESTIMONIALS ARROWS — MATCHED SLEEK BUTTONS (NO RED RING)
   ========================================================= */
.hm-testi-arrow,
.hm-testi-arrow--prev,
.hm-testi-arrow--next,
#hm-testi-prev,
#hm-testi-next {
  width: 46px !important;
  height: 46px !important;
  border-radius: 50% !important;
  background: #ffffff !important;
  border: 1px solid #dcdcdc !important;
  color: #111111 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  cursor: pointer !important;
  box-shadow: 0 4px 14px rgba(0,0,0,0.08) !important;
  outline: none !important;
  outline-offset: 0 !important;
  transition: all 0.25s ease !important;
}

.hm-testi-arrow:focus,
.hm-testi-arrow:active,
#hm-testi-prev:focus,
#hm-testi-next:focus,
#hm-testi-prev:active,
#hm-testi-next:active {
  background: #ffffff !important;
  color: #111111 !important;
  border-color: #111111 !important;
  outline: none !important;
  box-shadow: 0 0 0 3px rgba(0,0,0,0.1) !important;
}

.hm-testi-arrow:hover,
#hm-testi-prev:hover,
#hm-testi-next:hover {
  background: #111111 !important;
  color: #ffffff !important;
  border-color: #111111 !important;
  transform: translateY(-50%) scale(1.08) !important;
}

.hm-testi-swiper {
  overflow: hidden !important;
  padding: 10px 4px 30px 4px !important;
}
.hm-testi-swiper .swiper-wrapper {
  display: flex !important;
}
.hm-testi-swiper .swiper-slide {
  height: auto !important;
  display: flex !important;
  box-sizing: border-box !important;
}
.hm-testi-swiper .hm-testi-card {
  width: 100% !important;
  box-sizing: border-box !important;
}

/* =========================================================
   48. RECENT SALES POPUP — FLOATING SOCIAL PROOF NOTIFICATION
   ========================================================= */
.hm-sales-popup {
  position: fixed !important;
  bottom: 24px !important;
  left: 24px !important;
  z-index: 99999 !important;
  background: #ffffff !important;
  border: 1px solid #e2e8f0 !important;
  border-radius: 14px !important;
  padding: 14px 18px !important;
  box-shadow: 0 10px 35px rgba(0,0,0,0.15) !important;
  display: flex !important;
  align-items: center !important;
  gap: 12px !important;
  max-width: 350px !important;
  transform: translateY(140%) !important;
  opacity: 0 !important;
  visibility: hidden !important;
  transition: transform 0.45s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.35s ease, visibility 0.35s ease !important;
}
.hm-sales-popup.is-active {
  transform: translateY(0) !important;
  opacity: 1 !important;
  visibility: visible !important;
}
.hm-sales-popup__close {
  position: absolute !important;
  top: 6px !important;
  right: 8px !important;
  background: none !important;
  border: none !important;
  font-size: 16px !important;
  color: #999999 !important;
  cursor: pointer !important;
  line-height: 1 !important;
  padding: 4px !important;
}
.hm-sales-popup__close:hover { color: #111111 !important; }
.hm-sales-popup__content { flex: 1 !important; }
.hm-sales-popup__meta { display: flex !important; align-items: center !important; gap: 4px !important; margin-bottom: 2px !important; }
.hm-sales-popup__buyer { font-size: 13px !important; font-weight: 700 !important; color: #111111 !important; }
.hm-sales-popup__action { font-size: 12px !important; color: #666666 !important; }
.hm-sales-popup__product { font-size: 13.5px !important; font-weight: 700 !important; color: var(--color-primary, #d0473e) !important; margin: 3px 0 !important; line-height: 1.3 !important; }
.hm-sales-popup__time-line { font-size: 11px !important; color: #888888 !important; }

/* =========================================================
   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-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: -200px; /* Starts hidden below screen */
  left: 24px;
  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: bottom 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 {
  bottom: 30px; /* Slide up */
}

/* 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: -200px !important;
    left: 16px;
    width: 280px;
    padding: 0.85rem 1rem !important;
  }
  .hm-sales-popup.is-active {
    bottom: 85px !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; }
  /* 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(3, 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 { display: flex; 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; }

  /* ── 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; display: flex; 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 !important; }
  .hm-newsletter-card__form input[type="email"],
  .hm-newsletter-card__form button { width: 100% !important; 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; }

  /* ── 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; bottom: -200px; left: 12px; padding: 0.75rem 0.9rem !important; }
  .hm-sales-popup.is-active { bottom: 85px !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; }
}

/* ── 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: #000000 !important;
  color: #ffffff !important;
  padding: 1.6rem 0;
  overflow: hidden;
  width: 100%;
  display: flex;
  align-items: center;
  border-top: 1px solid rgba(255,255,255,0.15) !important;
  border-bottom: 1px solid rgba(255,255,255,0.15) !important;
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
  margin: 0;
}
.hm-stats-marquee-track {
  display: flex;
  width: max-content;
  animation: hmMarquee 22s linear infinite;
}
.hm-stats-marquee-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0 4rem;
  font-size: 1.15rem;
  font-weight: 500;
  color: rgba(255,255,255,0.9) !important;
  white-space: nowrap;
}
.hm-stats-marquee-item strong {
  font-size: 1.85rem;
  font-weight: 800;
  color: #ffffff !important;
  text-shadow: 0 2px 10px rgba(255,255,255,0.2);
}
@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 {
  overflow: hidden !important;
}
.hm-product-swiper .swiper-wrapper {
  overflow: visible !important;
}
.hm-product-swiper .swiper-slide {
  min-width: 0 !important;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

/* =========================================================
   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 {
  overflow: hidden !important;
}
.hm-product-swiper .swiper-wrapper {
  overflow: visible !important;
}
.hm-product-swiper .swiper-slide {
  min-width: 0 !important;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

/* =========================================================
   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;
}

/* =========================================================
   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;
}

/* Mobile Hero Swiper Fixes */
@media (max-width: 768px) {
  .hm-hero-swiper-prev,
  .hm-hero-swiper-next {
    display: none !important;
  }
  .hm-hero-swiper-pagination {
    bottom: 12px !important;
  }
  .hm-hero__slide-inner {
    padding-bottom: 50px !important;
    justify-content: center !important;
  }
  .hm-hero__content {
    text-align: center !important;
    margin: 0 auto !important;
    padding: 0 15px !important;
    width: 100% !important;
  }
  .hm-hero__content .hm-btn {
    margin: 15px auto 0 !important;
    display: inline-flex !important;
    min-width: 220px !important;
    width: auto !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(3, 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: 1fr 1fr !important;
  gap: 50px !important;
  margin-top: 20px;
  margin-bottom: 50px;
  align-items: start;
}
.hm-product-gallery {
  position: sticky !important;
  top: 110px !important;
  height: fit-content !important;
}
.hm-product-gallery__main {
  position: relative !important;
  border: 1px solid var(--color-border) !important;
  background: #ffffff !important;
  border-radius: var(--radius-large, 20px) !important;
  overflow: hidden !important;
  aspect-ratio: 1 / 1 !important;
  box-shadow: 0 8px 30px rgba(90,62,43,0.05) !important;
}
.hm-product-gallery__main img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1) !important;
}
.hm-product-gallery__main:hover img {
  transform: scale(1.06) !important;
}
.hm-product-gallery__thumbs {
  display: flex !important;
  gap: 12px !important;
  margin-top: 16px !important;
  overflow-x: auto !important;
  padding-bottom: 5px !important;
}
.hm-gallery-thumb {
  width: 80px !important;
  height: 80px !important;
  border-radius: var(--radius-medium, 12px) !important;
  overflow: hidden !important;
  border: 2px solid transparent !important;
  cursor: pointer !important;
  background: #ffffff !important;
  transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1) !important;
  padding: 0 !important;
  flex-shrink: 0 !important;
}
.hm-gallery-thumb.is-active {
  border-color: var(--color-primary) !important;
  box-shadow: 0 4px 12px rgba(195,74,54,0.15) !important;
}
.hm-gallery-thumb:hover {
  border-color: var(--color-primary) !important;
  transform: translateY(-2px) !important;
}

/* Info detail overrides */
.hm-product-info__title {
  font-size: 32px !important;
  font-weight: 800 !important;
  line-height: 1.25 !important;
  color: var(--color-dark, #111) !important;
  margin-bottom: 12px !important;
  letter-spacing: -0.02em !important;
}
.hm-product-info__rating {
  display: flex !important;
  align-items: center !important;
  gap: 8px !important;
  margin-bottom: 20px !important;
  font-size: 14px !important;
}
.hm-product-info__rating-link {
  color: var(--color-muted) !important;
  font-weight: 500 !important;
  border-bottom: 1px solid transparent !important;
}
.hm-product-info__rating-link:hover {
  color: var(--color-primary) !important;
  border-bottom-color: var(--color-primary) !important;
}
.hm-product-info__price {
  font-size: 28px !important;
  font-weight: 800 !important;
  color: var(--color-primary) !important;
  margin-bottom: 20px !important;
  display: flex !important;
  align-items: center !important;
  gap: 12px !important;
}
.hm-product-info__price del {
  font-size: 18px !important;
  color: #c5bfae !important;
  font-weight: 500 !important;
}
.hm-product-info__price ins {
  text-decoration: none !important;
}
.hm-product-info__short-desc {
  font-size: 15px !important;
  color: #555555 !important;
  line-height: 1.7 !important;
  margin-bottom: 24px !important;
  border-bottom: 1px solid var(--color-border) !important;
  padding-bottom: 20px !important;
}
.hm-product-info__stock {
  margin-bottom: 20px !important;
}
.hm-in-stock {
  display: flex !important;
  align-items: center !important;
  gap: 8px !important;
  font-size: 13.5px !important;
  font-weight: 600 !important;
  color: var(--color-green, #2d5a27) !important;
}
.hm-out-of-stock {
  font-size: 13.5px !important;
  font-weight: 600 !important;
  color: #d9534f !important;
}

/* Add to Cart form flex row */
form.cart {
  display: flex !important;
  gap: 12px !important;
  align-items: center !important;
  margin-bottom: 16px !important;
  flex-wrap: wrap !important;
}
form.cart .quantity {
  display: flex !important;
  align-items: center !important;
  border: 1.5px solid var(--color-border) !important;
  border-radius: var(--radius-button, 30px) !important;
  height: 52px !important;
  padding: 0 6px !important;
  background: #ffffff !important;
  margin: 0 !important;
  float: none !important;
}
form.cart .quantity .qty {
  width: 40px !important;
  border: none !important;
  text-align: center !important;
  font-weight: 700 !important;
  font-size: 15px !important;
  color: var(--color-dark, #111) !important;
  outline: none !important;
  background: none !important;
  height: auto !important;
}
form.cart .quantity .hm-qty-btn {
  width: 36px !important;
  height: 36px !important;
  border-radius: 50% !important;
  background: none !important;
  border: none !important;
  color: var(--color-dark, #111) !important;
  font-size: 18px !important;
  font-weight: 600 !important;
  cursor: pointer !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  transition: var(--transition-smooth) !important;
  padding: 0 !important;
}
form.cart .quantity .hm-qty-btn:hover {
  background: var(--color-bg-light) !important;
}
form.cart .single_add_to_cart_button {
  height: 52px !important;
  border-radius: var(--radius-button, 30px) !important;
  font-size: 14.5px !important;
  font-weight: 700 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.05em !important;
  border: none !important;
  cursor: pointer !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  background: var(--color-dark, #111) !important;
  color: #ffffff !important;
  flex: 1 !important;
  min-width: 180px !important;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08) !important;
  transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1) !important;
  margin: 0 !important;
}
form.cart .single_add_to_cart_button:hover {
  background: var(--color-primary) !important;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(195,74,54,0.25) !important;
}

/* Wishlist overrides */
.hm-btn--wishlist {
  width: 52px !important;
  height: 52px !important;
  border-radius: 50% !important;
  border: 1.5px solid var(--color-border) !important;
  background: #ffffff !important;
  color: var(--color-dark) !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  cursor: pointer !important;
  transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1) !important;
  padding: 0 !important;
  margin: 0 !important;
}
.hm-btn--wishlist:hover {
  border-color: var(--color-primary) !important;
  color: var(--color-primary) !important;
  transform: scale(1.05);
  background: rgba(195,74,54,0.02) !important;
}
.hm-btn--wishlist svg {
  fill: none;
  stroke: currentColor;
  transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1) !important;
}
.hm-btn--wishlist:hover svg {
  fill: var(--color-primary) !important;
}

/* Trust Signals overrides */
.hm-product-trust {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr) !important;
  gap: 0 !important;
  background: var(--color-bg-light) !important;
  border: 1px solid var(--color-border) !important;
  border-radius: var(--radius-medium) !important;
  overflow: hidden !important;
  margin: 30px 0 !important;
  padding: 0 !important;
}
.hm-product-trust__item {
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
  text-align: center !important;
  padding: 16px 10px !important;
  font-size: 12px !important;
  font-weight: 600 !important;
  color: var(--color-dark) !important;
  border-right: 1px solid var(--color-border) !important;
  line-height: 1.4 !important;
  gap: 8px !important;
  border-bottom: none !important;
}
.hm-product-trust__item:last-child {
  border-right: none !important;
}
.hm-product-trust__item svg {
  stroke: var(--color-primary) !important;
}

/* Cart Summary WhatsApp Checkout button overrides */
.hm-order-summary .checkout-button {
  background: #25d366 !important;
  color: #ffffff !important;
  border: none !important;
  border-radius: var(--radius-button, 30px) !important;
  font-weight: 700 !important;
  font-family: var(--font-heading) !important;
  text-transform: uppercase !important;
  letter-spacing: 0.05em !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 8px !important;
  transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1) !important;
  box-shadow: 0 4px 15px rgba(37,211,102,0.25) !important;
}
.hm-order-summary .checkout-button:hover {
  background: #1ebe5d !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 8px 25px rgba(37,211,102,0.35) !important;
}

/* Product Tabs Overrides */
.hm-product-tabs {
  background: #ffffff !important;
  border: 1px solid var(--color-border) !important;
  border-radius: var(--radius-large) !important;
  overflow: hidden !important;
  box-shadow: 0 4px 20px rgba(90,62,43,0.03) !important;
  margin-bottom: 60px !important;
}
.hm-product-tabs__nav {
  display: flex !important;
  background: var(--color-bg-light) !important;
  border-bottom: 1px solid var(--color-border) !important;
  overflow-x: auto !important;
  scrollbar-width: none !important;
  padding: 0 !important;
}
.hm-tab-btn {
  padding: 16px 28px !important;
  font-family: var(--font-heading) !important;
  font-size: 14.5px !important;
  font-weight: 700 !important;
  color: var(--color-muted) !important;
  background: none !important;
  border: none !important;
  border-bottom: 3px solid transparent !important;
  cursor: pointer !important;
  transition: var(--transition-smooth) !important;
  white-space: nowrap !important;
  margin-bottom: 0 !important;
}
.hm-tab-btn.is-active {
  color: var(--color-dark) !important;
  border-bottom-color: var(--color-primary) !important;
  background: #ffffff !important;
}
.hm-product-tabs__content {
  padding: 35px !important;
}

@media (max-width: 768px) {
  .hm-product-layout {
    grid-template-columns: 1fr !important;
    gap: 30px !important;
  }
  .hm-product-gallery {
    position: static !important;
  }
  .hm-product-gallery__main {
    max-width: 100% !important;
  }
  .hm-product-info__title {
    font-size: 26px !important;
  }
  .hm-product-trust {
    grid-template-columns: 1fr !important;
  }
  .hm-product-trust__item {
    border-right: none !important;
    border-bottom: 1px solid var(--color-border) !important;
    flex-direction: row !important;
    text-align: left !important;
    justify-content: flex-start !important;
    padding: 12px 16px !important;
  }
  .hm-product-trust__item:last-child {
    border-bottom: none !important;
  }
}

/* =========================================================
   WORDPRESS PAGES — White Background, Clean Theme Layout
   ========================================================= */

/* Body background — always white across all pages */
body {
  background-color: #ffffff !important;
}

/* Generic WordPress page content background */
.hm-page,
.hm-main.hm-page {
  background: #ffffff !important;
  min-height: 60vh;
  padding: 3rem 0 5rem;
}

/* Page title header */
.hm-page-header {
  padding: 2.5rem 0 1.5rem;
  border-bottom: 1px solid #f0ede8;
  margin-bottom: 2rem;
}
.hm-page-header__title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  color: #111111;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

/* Page body prose content */
.hm-page-body {
  font-size: 15.5px;
  line-height: 1.8;
  color: #333333;
  max-width: 780px;
}
.hm-page-body h1,
.hm-page-body h2,
.hm-page-body h3,
.hm-page-body h4 {
  color: #111111;
  margin: 1.5rem 0 .75rem;
  font-weight: 700;
}
.hm-page-body p { margin-bottom: 1.2rem; }
.hm-page-body a { color: var(--color-primary); }
.hm-page-body a:hover { text-decoration: underline; }
.hm-page-body ul, .hm-page-body ol { padding-left: 1.5rem; margin-bottom: 1.2rem; }
.hm-page-body li { margin-bottom: .4rem; }

/* Footer social label text color (fix for black background leftover) */
.hm-footer__social-label { color: #666666 !important; }

/* WooCommerce pages: shop, product, cart, checkout backgrounds */
.woocommerce,
.woocommerce-page,
body.woocommerce-cart,
body.woocommerce-checkout,
body.archive,
body.single-product,
body.post-type-archive-product,
body.page {
  background-color: #ffffff !important;
}



/* === SHOP ENHANCEMENTS === */
.hm-collection-hero { padding: 80px 0; position: relative; overflow: hidden; }
.hm-collection-hero::before { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0) 100%); pointer-events: none; }
.hm-coll-card { border: none !important; box-shadow: 0 4px 20px rgba(0,0,0,0.05); transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1); }
.hm-coll-card:hover { transform: translateY(-8px); box-shadow: 0 16px 40px rgba(0,0,0,0.12); }
.hm-coll-sidebar { background: rgba(255,255,255,0.7); backdrop-filter: blur(12px); border-radius: 16px; padding: 20px; box-shadow: 0 8px 32px rgba(0,0,0,0.04); }
.hm-coll-grid { gap: 2rem; }
.hm-coll-card__img-wrap { border-radius: 12px 12px 0 0; overflow: hidden; }
.hm-coll-card__img { transition: transform 0.6s ease; }
.hm-coll-card:hover .hm-coll-card__img { transform: scale(1.05); }

/* Purchase Notification */
.hm-purchase-notification { position: fixed; bottom: 30px; left: -400px; background: #fff; border-radius: 12px; box-shadow: 0 10px 30px rgba(0,0,0,0.15); display: flex; align-items: center; padding: 15px; width: 320px; z-index: 99999; transition: left 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275); border-left: 4px solid #4a7c59; }
.hm-purchase-notification.show { left: 30px; }
.hm-pn-img-wrap { width: 60px; height: 60px; flex-shrink: 0; border-radius: 8px; overflow: hidden; margin-right: 15px; }
.hm-pn-img-wrap img { width: 100%; height: 100%; object-fit: cover; }
.hm-pn-content { flex-grow: 1; }
.hm-pn-title { font-size: 12px; color: #666; margin: 0 0 4px 0; }
.hm-pn-product { font-size: 14px; font-weight: 600; color: #111; margin: 0 0 4px 0; font-family: inherit; }
.hm-pn-link { text-decoration: none; }
.hm-pn-link:hover h4 { color: #4a7c59; }
.hm-pn-time { font-size: 11px; color: #999; margin: 0; }
.hm-pn-close { background: none; border: none; position: absolute; top: 10px; right: 10px; font-size: 18px; color: #999; cursor: pointer; line-height: 1; }
.hm-pn-close:hover { color: #333; }
@media (max-width: 480px) { .hm-purchase-notification { width: 90%; bottom: 20px; } .hm-purchase-notification.show { left: 5%; } }

/* Hide Right Side Notification (WhatsApp) */
.hm-whatsapp-float {
    display: none !important;
}

/* Premium Cart Enhancements */
.hm-cart-page {
    padding: 60px 0;
    max-width: 1200px;
    margin: 0 auto;
}
.hm-cart-header { text-align: center; margin-bottom: 50px; }
.hm-cart-header .hm-section-title { font-size: 36px; margin: 10px 0; }
.hm-cart-layout {
    display: grid;
    grid-template-columns: 2.2fr 1fr;
    gap: 40px;
    align-items: start;
}
@media (max-width: 991px) {
    .hm-cart-layout { grid-template-columns: 1fr; }
}
.hm-cart-items, .hm-cart-summary {
    background: #fff;
    border-radius: 20px;
    padding: 35px;
    box-shadow: 0 12px 40px rgba(0,0,0,0.05);
    border: 1px solid rgba(0,0,0,0.03);
}
.hm-cart-table-header {
    display: flex;
    font-weight: 600;
    color: #888;
    border-bottom: 1px solid #eee;
    padding-bottom: 15px;
    margin-bottom: 15px;
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 1.5px;
}
.hm-cart-item {
    display: flex;
    align-items: center;
    border-bottom: 1px solid #f4f4f4;
    padding: 25px 0;
    transition: all 0.3s;
}
.hm-cart-item:last-child { border-bottom: none; }
.hm-cart-item:hover {
    background: #faf9f6;
    border-radius: 12px;
    padding-left: 15px;
    padding-right: 15px;
    margin-left: -15px;
    margin-right: -15px;
}
.hm-cart-col--product { flex: 2; display: flex; align-items: center; gap: 20px; }
.hm-cart-col--price, .hm-cart-col--qty, .hm-cart-col--total { flex: 1; font-weight: 600; font-size: 16px; }
.hm-cart-col--remove { width: 50px; text-align: right; }

.hm-cart-item__image img {
    border-radius: 12px;
    width: 90px;
    height: 90px;
    object-fit: cover;
    box-shadow: 0 6px 16px rgba(0,0,0,0.08);
}
.hm-cart-item__name {
    margin: 0 0 5px 0;
}
.hm-cart-item__name a {
    color: #111;
    font-weight: 600;
    text-decoration: none;
    font-size: 17px;
    transition: color 0.3s;
}
.hm-cart-item__name a:hover { color: var(--color-primary, #4a7c59); }
.hm-qty-stepper {
    display: inline-flex;
    align-items: center;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    overflow: hidden;
    background: #fff;
}
.hm-qty-btn {
    background: #fff;
    border: none;
    padding: 10px 14px;
    cursor: pointer;
    transition: background 0.2s;
    color: #555;
}
.hm-qty-btn:hover { background: #f0f0f0; color: #111; }
.hm-qty-stepper input {
    width: 40px;
    text-align: center;
    border: none;
    font-weight: 700;
    font-size: 15px;
}
.hm-cart-remove {
    color: #ff4d4f;
    background: #fff0f0;
    width: 36px;
    height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s;
}
.hm-cart-remove:hover {
    background: #ff4d4f;
    color: #fff;
    transform: scale(1.1);
}
.hm-order-summary__title {
    font-size: 22px;
    font-weight: 700;
    border-bottom: 2px solid #f0f0f0;
    padding-bottom: 20px;
    margin-bottom: 25px;
}
.hm-order-summary__row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 18px;
    color: #666;
    font-size: 15px;
}
.hm-order-summary__total {
    display: flex;
    justify-content: space-between;
    font-size: 24px;
    font-weight: 700;
    color: #111;
    border-top: 2px solid #f0f0f0;
    padding-top: 25px;
    margin-top: 10px;
    margin-bottom: 35px;
}
.hm-cart-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid #eee;
}
.hm-coupon-form__input-group {
    display: flex;
    gap: 10px;
    margin-top: 8px;
}
.hm-coupon-input {
    border-radius: 8px;
    border: 1px solid #ddd;
    padding: 10px 15px;
    width: 200px;
}
.checkout-button {
    width: 100%;
    padding: 16px;
    font-size: 16px;
    border-radius: 12px;
    background: #111;
    color: #fff;
    border: none;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}
.checkout-button:hover { background: #333; transform: translateY(-2px); box-shadow: 0 8px 20px rgba(0,0,0,0.15); }

/* Force High Black Color in Footer */
.hm-footer, .hm-footer *, .hm-footer__col-title, .hm-footer__tagline, .hm-footer__social-label, .hm-footer__copyright, .hm-footer__links a, .hm-footer__contact-info a, .hm-footer__contact-info p, .newsletter-card-tag { color: #000000 !important; }
.hm-footer__social-label { color: #000000 !important; }
.hm-footer svg { fill: #000000 !important; }
.hm-social-link svg { stroke: #000000 !important; }


.ig svg { fill: none !important; stroke: #000000 !important; }


/* Force Marquee Animation */
.hm-stats-marquee-track { animation: hmMarquee 15s linear infinite !important; -webkit-animation: hmMarquee 15s linear infinite !important; }
/* Fix Back to Top Color */
.hm-back-to-top { background-color: #111111 !important; color: #ffffff !important; border-color: #333333 !important; }
.hm-back-to-top:hover { background-color: #d0473e !important; border-color: #d0473e !important; }
/* Force WhatsApp Float */
.hm-whatsapp-float { display: flex !important; }

.hm-premium-card {
    width: 100%;
    max-width: 100%;
    background: #ffffff;
    border-radius: 20px;
    padding: 12px;
    position: relative;
    box-shadow: 0 10px 40px rgba(0,0,0,0.03);
    transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
    cursor: pointer;
    box-sizing: border-box;
    text-align: left;
}

.hm-premium-card:hover {
    box-shadow: 0 20px 50px rgba(0,0,0,0.08);
    transform: translateY(-5px);
}

.hm-premium-card__img-wrap {
    position: relative;
    width: 100%;
    height: 320px;
    border-radius: 14px;
    overflow: hidden;
    background-color: #f4f4f5;
    display: block;
}

.hm-premium-card__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

.hm-premium-card:hover .hm-premium-card__img {
    transform: scale(1.08);
}

.hm-premium-card__badges {
    position: absolute;
    top: 12px;
    left: 12px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    z-index: 2;
}

.hm-premium-badge {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(4px);
    color: #0a0a0a;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 6px 12px;
    border-radius: 30px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.hm-premium-badge.sale {
    background: #d0473e;
    color: #ffffff;
}

.hm-premium-badge.new {
    background: #0a0a0a;
    color: #ffffff;
}

.hm-premium-badge.sold-out {
    background: #52525b;
    color: #ffffff;
}

.btn-wishlist {
    position: absolute;
    top: 12px;
    right: 12px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(4px);
    border: none;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0a0a0a;
    cursor: pointer;
    z-index: 2;
    transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.btn-wishlist:hover {
    background: #d0473e;
    color: #ffffff;
    transform: scale(1.1);
}

.hm-premium-card__wishlist-container {
    position: absolute;
    top: 12px;
    right: 12px;
    z-index: 2;
}

.hm-premium-card__hover-action {
    position: absolute;
    bottom: -50px;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 24px);
    opacity: 0;
    transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
    z-index: 3;
}

.hm-premium-card:hover .hm-premium-card__hover-action {
    bottom: 12px;
    opacity: 1;
}

.hm-premium-btn-add {
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(8px);
    color: #0a0a0a;
    border: 1px solid rgba(0,0,0,0.05);
    padding: 12px 0;
    border-radius: 10px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.hm-premium-btn-add:hover {
    background: #0a0a0a;
    color: #ffffff;
}

.hm-premium-card__info {
    padding: 16px 8px 4px 8px;
    text-align: center;
}

.hm-premium-category {
    font-size: 11px;
    color: #a1a1aa;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 6px;
    display: block;
    font-weight: 500;
}

.hm-premium-title {
    font-size: 16px;
    font-weight: 700;
    color: #0a0a0a;
    margin: 0 0 8px 0;
    line-height: 1.3;
}

.hm-premium-title a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s;
}

.hm-premium-title a:hover {
    color: #d0473e;
}

.hm-premium-rating {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2px;
    margin-bottom: 12px;
}

.hm-premium-rating svg {
    width: 12px;
    height: 12px;
    fill: #f59e0b;
}

.hm-premium-price-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.hm-premium-price-wrap ins,
.hm-premium-price-wrap .woocommerce-Price-amount {
    font-size: 16px;
    font-weight: 700;
    color: #d0473e;
    text-decoration: none;
}

.hm-premium-price-wrap del,
.hm-premium-price-wrap del .woocommerce-Price-amount {
    font-size: 13px;
    color: #a1a1aa;
    font-weight: 400;
}
/* =========================================================
   CONTACT PAGE CSS
   ========================================================= */
.contact-hero {
    position: relative;
    background-color: #0a0a0a;
    color: #ffffff;
    text-align: center;
    padding: 100px 20px;
    background-image: url('https://images.unsplash.com/photo-1610701596007-11502861dcfa?q=80&w=1920&auto=format&fit=crop');
    background-size: cover;
    background-position: center;
}

.contact-hero::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(10, 10, 10, 0.7);
    z-index: 1;
}

.contact-hero__inner {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.contact-hero h1 {
    font-size: 48px;
    font-weight: 700;
    margin: 0 0 15px 0;
}

.contact-hero p {
    font-size: 18px;
    color: rgba(255,255,255,0.8);
    margin: 0;
    line-height: 1.6;
}

.contact-section {
    padding: 80px 20px;
    flex: 1;
}

.contact-container {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

@media (max-width: 768px) {
    .contact-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

.info-wrap {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.info-card {
    background: #ffffff;
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.03);
    display: flex;
    align-items: flex-start;
    gap: 20px;
    transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    border: 1px solid rgba(0,0,0,0.02);
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.08);
    border-color: rgba(208, 71, 62, 0.1);
}

.info-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    background: rgba(208, 71, 62, 0.1);
    color: #d0473e;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.info-details h3 {
    margin: 0 0 8px 0;
    font-size: 18px;
    font-weight: 600;
}

.info-details p, .info-details a {
    margin: 0;
    color: #52525b;
    font-size: 15px;
    line-height: 1.5;
    text-decoration: none;
}

.info-details a:hover {
    color: #d0473e;
}

.form-wrap {
    background: #ffffff;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.05);
    border: 1px solid rgba(0,0,0,0.03);
}

.form-title {
    margin: 0 0 24px 0;
    font-size: 28px;
    font-weight: 700;
}

.form-group {
    margin-bottom: 20px;
}

.form-label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #0a0a0a;
}

.form-control {
    width: 100%;
    padding: 14px 16px;
    border-radius: 10px;
    border: 1px solid #f4f4f5;
    background: #f4f4f5;
    font-family: inherit;
    font-size: 15px;
    color: #0a0a0a;
    transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    box-sizing: border-box;
}

.form-control:focus {
    outline: none;
    border-color: #d0473e;
    background: #ffffff;
    box-shadow: 0 0 0 4px rgba(208, 71, 62, 0.1);
}

textarea.form-control {
    resize: vertical;
    min-height: 120px;
}

.btn-submit {
    background: #0a0a0a;
    color: #ffffff;
    border: none;
    padding: 16px 32px;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    width: 100%;
    transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.btn-submit:hover {
    background: #d0473e;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(208, 71, 62, 0.2);
}

.map-section {
    width: 100%;
    height: 400px;
    background: #e5e5e5;
    position: relative;
    overflow: hidden;
}
.map-section iframe {
    width: 100%;
    height: 100%;
    border: none;
}


/* ==========================================================================
   Premium Product Card
   ========================================================================== */
.product-card {
    max-width: 300px;
    margin: 0 auto;
    --primary: #d0473e;
    --dark: #0a0a0a;
    --gray-light: #f4f4f5;
    --gray-med: #a1a1aa;
    --gray-dark: #52525b;
    --white: #ffffff;
    --transition-smooth: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
    
    width: 100%;
    background: var(--white);
    border-radius: 20px;
    padding: 12px;
    position: relative;
    box-shadow: 0 10px 40px rgba(0,0,0,0.03);
    transition: var(--transition-smooth);
    cursor: pointer;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    box-shadow: 0 20px 50px rgba(0,0,0,0.08);
    transform: translateY(-5px);
}

.product-card .card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

.product-card:hover .card-image {
    transform: scale(1.08);
}

.product-card .badges {
    position: absolute;
    top: 12px;
    left: 12px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    z-index: 2;
}

.product-card .badge {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(4px);
    color: var(--dark);
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 6px 12px;
    border-radius: 30px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.product-card .badge.sale {
    background: var(--primary);
    color: var(--white);
}

.product-card .btn-wishlist {
    position: absolute;
    top: 12px;
    right: 12px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(4px);
    border: none;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark);
    cursor: pointer;
    z-index: 2;
    transition: var(--transition-smooth);
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.product-card .btn-wishlist:hover {
    background: var(--primary);
    color: var(--white);
    transform: scale(1.1);
}

.product-card .hover-action {
    position: absolute;
    bottom: -50px;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 24px);
    opacity: 0;
    transition: var(--transition-smooth);
    z-index: 3;
}

.product-card:hover .hover-action {
    bottom: 12px;
    opacity: 1;
}

.product-card .btn-add {
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(8px);
    color: var(--dark);
    border: 1px solid rgba(0,0,0,0.05);
    padding: 12px 0;
    border-radius: 10px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: var(--transition-smooth);
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.product-card .btn-add:hover {
    background: var(--dark);
    color: var(--white);
}

.product-card .card-info {
    padding: 16px 8px 4px 8px;
    text-align: center;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.product-card .category {
    font-size: 11px;
    color: var(--gray-med);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 6px;
    display: block;
    font-weight: 500;
}

.product-card .title {
    font-size: 17px;
    font-weight: 600;
    color: var(--dark);
    margin: 0 0 10px 0;
    line-height: 1.4;
}

.product-card .title a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s;
}

.product-card .title a:hover {
    color: var(--primary);
}

.product-card .rating {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2px;
    margin-bottom: 12px;
    margin-top: auto;
}

.product-card .rating svg {
    width: 12px;
    height: 12px;
    fill: #f59e0b;
}

.product-card .price-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 16px;
    font-weight: 700;
    color: var(--color-primary, #c34a36);
}

.product-card .price-wrap,
.product-card .price-wrap .woocommerce-Price-amount,
.product-card .price-wrap bdi {
    font-size: 16px;
    font-weight: 700;
    color: var(--color-primary, #c34a36) !important;
}

.product-card .price-wrap ins,
.product-card .price-wrap ins .woocommerce-Price-amount,
.product-card .price-wrap ins bdi {
    font-size: 16px;
    font-weight: 700;
    color: var(--color-primary, #c34a36) !important;
    text-decoration: none !important;
}

.product-card .price-wrap del,
.product-card .price-wrap del .woocommerce-Price-amount,
.product-card .price-wrap del bdi {
    font-size: 13px;
    color: #999999 !important;
    font-weight: 400 !important;
}

/* Styles from about_us_example.html */

/* Reset and Base is handled by main.css, just specific About CSS here */
.container { max-width: 1200px; margin: 0 auto; }
.text-center { text-align: center; }
.section-header { max-width: 650px; margin: 0 auto 50px auto; }
.section-header h2 { font-size: 40px; font-weight: 700; color: #0a0a0a; margin: 0 0 15px 0; letter-spacing: -0.5px; }
.section-header p { font-size: 18px; color: #52525b; line-height: 1.6; margin: 0; }

/* Hero */
.about-hero {
    position: relative;
    background-color: #0a0a0a;
    color: #ffffff;
    text-align: center;
    padding: 160px 20px 140px;
    background-image: url('https://images.unsplash.com/photo-1578749556568-bc2c40e68b61?q=80&w=1920&auto=format&fit=crop');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}
.about-hero::before {
    content: '';
    position: absolute; top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(to bottom, rgba(10,10,10,0.8), rgba(10,10,10,0.4));
    z-index: 1;
}
.about-hero__inner { position: relative; z-index: 2; max-width: 800px; margin: 0 auto; }
.hero-subtitle { display: inline-block; font-size: 14px; font-weight: 700; text-transform: uppercase; letter-spacing: 3px; color: #d0473e; margin-bottom: 20px; background: rgba(255,255,255,0.1); padding: 6px 16px; border-radius: 30px; backdrop-filter: blur(5px); }
.about-hero h1 { font-size: 64px; font-weight: 700; margin: 0 0 25px 0; letter-spacing: -1.5px; line-height: 1.1; }
.about-hero p { font-size: 22px; color: rgba(255,255,255,0.9); margin: 0; line-height: 1.5; font-weight: 300; }

/* Story Section */
.story-section { padding: 120px 20px; background: #ffffff; }
.story-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 80px; align-items: center; }
.story-image { position: relative; border-radius: 24px; overflow: hidden; box-shadow: 0 30px 60px rgba(0,0,0,0.1); }
.story-image img { width: 100%; height: auto; display: block; transition: transform 0.8s ease; }
.story-image:hover img { transform: scale(1.05); }
.story-badge { position: absolute; bottom: -20px; right: -20px; background: #d0473e; color: #fff; width: 140px; height: 140px; border-radius: 50%; display: flex; flex-direction: column; align-items: center; justify-content: center; box-shadow: 0 15px 30px rgba(208,71,62,0.3); border: 8px solid #fff; }
.story-badge .years { font-size: 32px; font-weight: 800; line-height: 1; margin-bottom: 5px; }
.story-badge .text { font-size: 13px; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; text-align: center; line-height: 1.2; }
.story-content .section-title { font-size: 42px; font-weight: 700; margin: 0 0 25px 0; color: #0a0a0a; letter-spacing: -1px; }
.story-content p { font-size: 18px; color: #52525b; line-height: 1.8; margin: 0 0 20px 0; }
.highlight-quote { font-size: 24px; color: #d0473e; font-weight: 600; line-height: 1.5; margin: 40px 0 0 0; padding-left: 24px; border-left: 4px solid #d0473e; font-style: italic; }

/* Process Section */
.process-section { padding: 120px 20px; background: #fdfdfd; border-top: 1px solid #f0f0f0; }
.process-steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.step-card { background: #fff; padding: 40px 30px; border-radius: 20px; box-shadow: 0 10px 30px rgba(0,0,0,0.03); transition: all 0.4s ease; border: 1px solid rgba(0,0,0,0.02); position: relative; overflow: hidden; }
.step-card:hover { transform: translateY(-10px); box-shadow: 0 20px 50px rgba(0,0,0,0.08); border-color: rgba(208,71,62,0.2); }
.step-num { font-size: 64px; font-weight: 800; color: rgba(208,71,62,0.08); position: absolute; top: 10px; right: 20px; line-height: 1; transition: all 0.4s ease; }
.step-card:hover .step-num { color: rgba(208,71,62,0.15); transform: scale(1.1); }
.step-card h3 { font-size: 22px; font-weight: 700; margin: 0 0 15px 0; color: #0a0a0a; position: relative; z-index: 2; }
.step-card p { font-size: 15px; color: #52525b; line-height: 1.6; margin: 0; position: relative; z-index: 2; }

/* Values Section */
.values-section { padding: 120px 20px; background: #f4f4f5; }
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; }
.value-card { background: #ffffff; padding: 50px 40px; border-radius: 24px; box-shadow: 0 10px 30px rgba(0,0,0,0.03); transition: all 0.4s ease; text-align: center; }
.value-card:hover { transform: translateY(-10px); box-shadow: 0 20px 40px rgba(208, 71, 62, 0.1); }
.value-icon { width: 80px; height: 80px; background: rgba(208, 71, 62, 0.1); color: #d0473e; border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 25px auto; transition: transform 0.4s ease; }
.value-card:hover .value-icon { transform: rotate(10deg) scale(1.1); background: #d0473e; color: #fff; }
.value-card h3 { font-size: 24px; font-weight: 700; margin: 0 0 15px 0; color: #0a0a0a; }
.value-card p { font-size: 16px; color: #52525b; line-height: 1.6; margin: 0; }

/* Responsive */
@media (max-width: 1024px) {
    .story-grid { grid-template-columns: 1fr; gap: 50px; }
    .story-badge { bottom: 20px; right: 20px; }
    .process-steps { grid-template-columns: repeat(2, 1fr); }
    .values-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
    .about-hero h1 { font-size: 42px; }
    .about-hero p { font-size: 18px; }
    .process-steps, .values-grid { grid-template-columns: 1fr; }
    .story-content .section-title { font-size: 32px; }
}

/* Styles from cart_example.html */

        /* Base styles matching theme if main.css is not loaded */
        body {
            font-family: 'Inter', system-ui, sans-serif;
            background-color: #f5f3ef;
            color: #333;
            margin: 0;
            padding: 0;
            display: flex;
            flex-direction: column;
            min-height: 100vh;
        }

        /* Cart specific styles (mirrors main.css enhancements) */
        .hm-cart-page {
            padding: 60px 20px;
            max-width: 1200px;
            margin: 0 auto;
            flex-grow: 1;
            width: 100%;
            box-sizing: border-box;
        }
        .hm-cart-header { text-align: center; margin-bottom: 50px; }
        .hm-section-eyebrow { font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: 2px; color: #4a7c59; display: block; margin-bottom: 10px; }
        .hm-cart-header .hm-section-title { font-size: 36px; margin: 0 0 10px 0; color: #111; font-weight: 700; }
        .hm-cart-header__count { color: #666; font-size: 15px; margin: 0; }
        
        .hm-cart-layout {
            display: grid;
            grid-template-columns: 2.2fr 1fr;
            gap: 40px;
            align-items: start;
        }
        @media (max-width: 991px) {
            .hm-cart-layout { grid-template-columns: 1fr; }
        }

        .hm-cart-items, .hm-cart-summary {
            background: #fff;
            border-radius: 20px;
            padding: 35px;
            box-shadow: 0 12px 40px rgba(0,0,0,0.05);
            border: 1px solid rgba(0,0,0,0.03);
            box-sizing: border-box;
        }

        .hm-cart-table-header {
            display: flex;
            font-weight: 600;
            color: #888;
            border-bottom: 1px solid #eee;
            padding-bottom: 15px;
            margin-bottom: 15px;
            text-transform: uppercase;
            font-size: 12px;
            letter-spacing: 1.5px;
        }

        .hm-cart-item {
            display: flex;
            align-items: center;
            border-bottom: 1px solid #f4f4f4;
            padding: 25px 0;
            transition: all 0.3s;
        }
        .hm-cart-item:last-child { border-bottom: none; }
        .hm-cart-item:hover {
            background: #faf9f6;
            border-radius: 12px;
            padding-left: 15px;
            padding-right: 15px;
            margin-left: -15px;
            margin-right: -15px;
        }

        .hm-cart-col--product { flex: 2; display: flex; align-items: center; gap: 20px; }
        .hm-cart-col--price, .hm-cart-col--qty, .hm-cart-col--total { flex: 1; font-weight: 600; font-size: 16px; color: #111; }
        .hm-cart-col--remove { width: 50px; text-align: right; }

        .hm-cart-item__image img {
            border-radius: 12px;
            width: 90px;
            height: 90px;
            object-fit: cover;
            box-shadow: 0 6px 16px rgba(0,0,0,0.08);
        }
        
        .hm-cart-item__name { margin: 0 0 5px 0; }
        .hm-cart-item__name a {
            color: #111;
            font-weight: 600;
            text-decoration: none;
            font-size: 17px;
            transition: color 0.3s;
        }
        .hm-cart-item__name a:hover { color: #4a7c59; }

        .hm-badge--sale {
            background: #d9534f;
            color: #fff;
            padding: 3px 8px;
            border-radius: 4px;
            font-size: 11px;
            text-transform: uppercase;
            font-weight: 600;
        }

        .hm-qty-stepper {
            display: inline-flex;
            align-items: center;
            border: 1px solid #e0e0e0;
            border-radius: 10px;
            overflow: hidden;
            background: #fff;
        }
        .hm-qty-btn {
            background: #fff;
            border: none;
            padding: 10px 14px;
            cursor: pointer;
            transition: background 0.2s;
            color: #555;
            display: flex;
            align-items: center;
        }
        .hm-qty-btn:hover { background: #f0f0f0; color: #111; }
        .hm-qty-stepper input {
            width: 40px;
            text-align: center;
            border: none;
            font-weight: 700;
            font-size: 15px;
            color: #111;
            padding: 0;
        }

        .hm-cart-remove {
            color: #ff4d4f;
            background: #fff0f0;
            width: 36px;
            height: 36px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            transition: all 0.3s;
            text-decoration: none;
        }
        .hm-cart-remove:hover {
            background: #ff4d4f;
            color: #fff;
            transform: scale(1.1);
        }

        .hm-cart-actions {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-top: 30px;
            padding-top: 30px;
            border-top: 1px solid #eee;
        }

        .hm-coupon-label { font-weight: 600; font-size: 14px; color: #111; }
        .hm-coupon-form__input-group {
            display: flex;
            gap: 10px;
            margin-top: 8px;
        }
        .hm-coupon-input {
            border-radius: 8px;
            border: 1px solid #ddd;
            padding: 10px 15px;
            width: 200px;
            font-family: inherit;
        }
        
        .hm-btn {
            padding: 10px 20px;
            border-radius: 8px;
            font-size: 14px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s;
            font-family: inherit;
        }
        .hm-btn--outline {
            background: transparent;
            border: 1px solid #ccc;
            color: #333;
            display: inline-flex;
            align-items: center;
            gap: 6px;
            text-decoration: none;
        }
        .hm-btn--outline:hover { background: #f9f9f9; border-color: #111; }

        .hm-order-summary__title {
            font-size: 22px;
            font-weight: 700;
            border-bottom: 2px solid #f0f0f0;
            padding-bottom: 20px;
            margin-bottom: 25px;
            margin-top: 0;
        }
        .hm-order-summary__row {
            display: flex;
            justify-content: space-between;
            margin-bottom: 18px;
            color: #666;
            font-size: 15px;
        }
        .hm-order-summary__row span:last-child { font-weight: 600; color: #111; }
        
        .hm-order-summary__total {
            display: flex;
            justify-content: space-between;
            font-size: 24px;
            font-weight: 700;
            color: #111;
            border-top: 2px solid #f0f0f0;
            padding-top: 25px;
            margin-top: 10px;
            margin-bottom: 35px;
        }

        /* Product Card Styles */
        .product-card {
            --primary: #d0473e;
            --dark: #0a0a0a;
            --gray-light: #f4f4f5;
            --gray-med: #a1a1aa;
            --gray-dark: #52525b;
            --white: #ffffff;
            --transition-smooth: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
            width: 100%;
            background: var(--white);
            border-radius: 20px;
            padding: 12px;
            position: relative;
            box-shadow: 0 10px 40px rgba(0,0,0,0.03);
            transition: var(--transition-smooth);
            cursor: pointer;
            box-sizing: border-box;
        }

        .product-card:hover {
            box-shadow: 0 20px 50px rgba(0,0,0,0.08);
            transform: translateY(-5px);
        }

        .card-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
        }

        .product-card:hover .card-image {
            transform: scale(1.08);
        }

        .badges {
            position: absolute;
            top: 12px;
            left: 12px;
            display: flex;
            flex-direction: column;
            gap: 6px;
            z-index: 2;
        }

        .badge {
            background: rgba(255, 255, 255, 0.9);
            backdrop-filter: blur(4px);
            color: var(--dark);
            font-size: 10px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
            padding: 6px 12px;
            border-radius: 30px;
            box-shadow: 0 4px 10px rgba(0,0,0,0.05);
        }

        .badge.sale {
            background: var(--primary);
            color: var(--white);
        }

        .btn-wishlist {
            position: absolute;
            top: 12px;
            right: 12px;
            background: rgba(255, 255, 255, 0.9);
            backdrop-filter: blur(4px);
            border: none;
            width: 34px;
            height: 34px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--dark);
            cursor: pointer;
            z-index: 2;
            transition: var(--transition-smooth);
            box-shadow: 0 4px 10px rgba(0,0,0,0.05);
        }

        .btn-wishlist:hover {
            background: var(--primary);
            color: var(--white);
            transform: scale(1.1);
        }

        .hover-action {
            position: absolute;
            bottom: -50px;
            left: 50%;
            transform: translateX(-50%);
            width: calc(100% - 24px);
            opacity: 0;
            transition: var(--transition-smooth);
            z-index: 3;
        }

        .product-card:hover .hover-action {
            bottom: 12px;
            opacity: 1;
        }

        .btn-add {
            width: 100%;
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(8px);
            color: var(--dark);
            border: 1px solid rgba(0,0,0,0.05);
            padding: 12px 0;
            border-radius: 10px;
            font-size: 13px;
            font-weight: 600;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            transition: var(--transition-smooth);
            box-shadow: 0 8px 20px rgba(0,0,0,0.1);
        }

        .btn-add:hover {
            background: var(--dark);
            color: var(--white);
        }

        .card-info {
            padding: 16px 8px 4px 8px;
            text-align: center;
        }

        .category {
            font-size: 11px;
            color: var(--gray-med);
            text-transform: uppercase;
            letter-spacing: 1.5px;
            margin-bottom: 6px;
            display: block;
            font-weight: 500;
        }

        .title {
            font-size: 17px;
            font-weight: 600;
            color: var(--dark);
            margin: 0 0 10px 0;
            line-height: 1.4;
        }

        .title a {
            color: inherit;
            text-decoration: none;
            transition: color 0.3s;
        }

        .title a:hover {
            color: var(--primary);
        }

        .rating {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 2px;
            margin-bottom: 12px;
        }

        .rating svg {
            width: 12px;
            height: 12px;
            fill: #f59e0b;
        }

        .price-wrap {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
        }

        .price-wrap ins {
            font-size: 16px;
            font-weight: 700;
            color: var(--primary);
            text-decoration: none;
        }

        .price-wrap del {
            font-size: 13px;
            color: var(--gray-med);
            font-weight: 400;
        }

        .hm-recent-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
            margin-top: 30px;
        }
        @media (max-width: 1200px) { .hm-recent-grid { grid-template-columns: repeat(3, 1fr); gap: 20px; } }
        @media (max-width: 991px) { .hm-recent-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; } }
        @media (max-width: 576px) { .hm-recent-grid { grid-template-columns: 1fr; gap: 20px; } }
    
        /* Mobile Enhancements for Cart */
        @media (max-width: 991px) {
            .hm-cart-layout { grid-template-columns: 1fr; gap: 30px; }
            .hm-recent-grid { grid-template-columns: repeat(2, 1fr); }
            .hm-cart-page { padding: 40px 15px; }
            .hm-cart-item { flex-direction: column; align-items: flex-start; position: relative; padding: 20px 0; }
            .hm-cart-table-header { display: none; } /* Hide table header on mobile */
            .hm-cart-col--price, .hm-cart-col--qty, .hm-cart-col--total { margin-top: 15px; width: 100%; display: flex; justify-content: space-between; align-items: center; }
            .hm-cart-col--price::before { content: 'Price: '; font-weight: normal; color: #666; }
            .hm-cart-col--qty::before { content: 'Quantity: '; font-weight: normal; color: #666; }
            .hm-cart-col--total::before { content: 'Total: '; font-weight: normal; color: #666; }
            .hm-cart-col--remove { position: absolute; top: 20px; right: 0; width: auto; }
            .hm-cart-actions { flex-direction: column; gap: 20px; }
            .hm-coupon-form__input-group { width: 100%; flex-direction: column; }
            .hm-coupon-input { width: 100%; }
        }
        @media (max-width: 576px) {
            .hm-recent-grid { grid-template-columns: 1fr; }
            .hm-cart-items, .hm-cart-summary { padding: 20px; }
            .hm-cart-header .hm-section-title { font-size: 28px; }
            .hm-cart-item__image img { width: 70px; height: 70px; }
        }


/* Styles from shop_example.html */

        /* Base styles matching theme if main.css is not loaded */
        body {
            font-family: 'Inter', system-ui, sans-serif;
            background-color: #f5f3ef;
            color: #333;
            margin: 0;
            padding: 0;
            display: flex;
            flex-direction: column;
            min-height: 100vh;
        }

        /* Hero Banner */
        .hm-collection-hero {
            background-color: #111111;
            padding: 80px 20px;
            text-align: center;
        }
        .hm-collection-hero__inner {
            max-width: 800px;
            margin: 0 auto;
        }
        .hm-breadcrumb {
            font-size: 13px;
            margin-bottom: 20px;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        .hm-breadcrumb a { text-decoration: none; transition: opacity 0.3s; }
        .hm-breadcrumb a:hover { opacity: 1 !important; }
        .hm-breadcrumb__sep { margin: 0 10px; }
        
        .hm-collection-hero__title {
            font-size: 42px;
            font-weight: 700;
            margin: 0 0 15px 0;
        }
        .hm-collection-hero__desc {
            font-size: 16px;
            line-height: 1.6;
            margin: 0;
        }

        /* Category Pills */
        .hm-category-pills-wrap {
            background: #ffffff;
            border-bottom: 1px solid #eaeaea;
            padding: 20px 0;
            position: sticky;
            top: 72px; /* Approx header height */
            z-index: 90;
        }
        .hm-category-pills {
            display: flex;
            gap: 12px;
            overflow-x: auto;
            padding-bottom: 5px;
            scrollbar-width: none; /* Firefox */
        }
        .hm-category-pills::-webkit-scrollbar { display: none; } /* Chrome */
        
        .hm-category-pill {
            white-space: nowrap;
            padding: 10px 24px;
            background: #f5f3ef;
            color: #555;
            border-radius: 30px;
            font-size: 14px;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.3s;
            border: 1px solid transparent;
        }
        .hm-category-pill:hover { background: #e5e0d8; color: #111; }
        .hm-category-pill.active { background: #111; color: #fff; box-shadow: 0 4px 12px rgba(0,0,0,0.1); }

                /* Hide unexpected lines below pagination */
        .hm-shop-page hr, .hm-collection-section hr { display: none !important; }
        .hm-collection-section > div:empty { display: none !important; }
        .hm-collection-section table { border: none !important; }
        .hm-collection-section tr { border-bottom: none !important; }
        /* Shop Layout */
        .hm-collection-section {
            padding: 60px 20px;
            max-width: 1240px;
            margin: 0 auto;
            width: 100%;
            box-sizing: border-box;
            flex-grow: 1;
        }
        
        .hm-collection-toolbar {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 40px;
            border-bottom: 1px solid #eaeaea;
            padding-bottom: 15px;
            flex-wrap: wrap;
            gap: 15px;
        }
        
        .woocommerce-ordering select {
            padding: 10px 30px 10px 15px;
            border-radius: 8px;
            border: 1px solid #ddd;
            background-color: #fff;
            font-family: inherit;
            font-size: 14px;
            color: #111;
            cursor: pointer;
            appearance: none;
            background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
            background-repeat: no-repeat;
            background-position: right 10px center;
            background-size: 14px;
        }

        .hm-product-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
            list-style: none !important;
            margin: 0 !important;
            padding: 0 !important;
        }
        
        @media (max-width: 1100px) { .hm-product-grid { grid-template-columns: repeat(3, 1fr); } }
        @media (max-width: 768px) { .hm-product-grid { grid-template-columns: repeat(2, 1fr); gap: 15px; } }
        @media (max-width: 480px) { .hm-product-grid { grid-template-columns: 1fr; } }
        @media (max-width: 768px) { }

        .hm-badge { position: absolute; top: 12px; left: 12px; padding: 4px 10px; border-radius: 6px; font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.5px; z-index: 2; }
        .hm-badge--sale { background-color: #d9534f; color: #fff; }
        
        @media (max-width: 768px) { /* Always show on mobile */
        }

        .hm-btn--icon { width: 36px; height: 36px; border-radius: 50%; background: #fff; color: #333; border: none; display: flex; align-items: center; justify-content: center; cursor: pointer; box-shadow: 0 4px 12px rgba(0,0,0,0.1); transition: background 0.3s, color 0.3s; }
        .hm-btn--icon:hover { background: #4a7c59; color: #fff; }
        .hm-stars { color: #f5c518; letter-spacing: 1px; }
        .hm-rating-count { color: #888; }

        .hm-btn { padding: 10px 16px; border-radius: 8px; font-size: 14px; font-weight: 600; border: 1px solid transparent; cursor: pointer; text-align: center; transition: all 0.3s; text-decoration: none; }
        .hm-btn--dark { background: #111; color: #fff; }
        .hm-btn--dark:hover { background: #333; }
        .hm-btn--full { width: 100%; display: block; box-sizing: border-box; }

                /* Premium Pagination */
        .hm-coll-pagination { margin: 60px 0; text-align: center; }
        .hm-coll-pagination ul.page-numbers { display: flex; justify-content: center; align-items: center; gap: 12px; list-style: none; padding: 0; margin: 0; }
        .hm-coll-pagination ul.page-numbers li a, .hm-coll-pagination ul.page-numbers li span.page-numbers { display: inline-flex; align-items: center; justify-content: center; min-width: 44px; height: 44px; border-radius: 8px; background: #fff; color: #555; text-decoration: none; font-weight: 600; font-size: 15px; border: 1px solid #eaeaea; transition: all 0.3s ease; }
        .hm-coll-pagination ul.page-numbers li a:hover { background: #4a7c59; color: #fff; border-color: #4a7c59; transform: translateY(-2px); box-shadow: 0 4px 12px rgba(74, 124, 89, 0.2); }
        .hm-coll-pagination ul.page-numbers li span.current { background: #4a7c59; color: #fff; border-color: #4a7c59; box-shadow: 0 4px 12px rgba(74, 124, 89, 0.2); }
        .hm-coll-pagination ul.page-numbers li a.next, .hm-coll-pagination ul.page-numbers li a.prev { width: auto; padding: 0 24px; border-radius: 8px; }
    

/* Shop Grid Styles */
.hm-shop-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; width: 100%; box-sizing: border-box; }
@media (max-width: 1199px) { .hm-shop-grid { gap: 20px; } }
@media (max-width: 991px) { .hm-shop-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 575px) { .hm-shop-grid { grid-template-columns: 1fr; } }

/* Mobile Nav Cart Button Text Fix */
.hm-mobile-nav__footer .hm-btn { color: #ffffff !important; }

/* =========================================================
   14. POLICY & SUPPORT PAGES (Seasoning, FAQs, etc)
   ========================================================= */
.hm-policy-page { max-width: 900px; margin: 0 auto; padding: 60px 20px; }
.hm-policy-header { text-align: center; margin-bottom: 50px; }
.hm-policy-header h1 { font-size: clamp(32px, 5vw, 48px); font-weight: 800; color: #111; letter-spacing: -1px; margin-bottom: 15px; }
.hm-policy-header p { font-size: 18px; color: #555; max-width: 700px; margin: 0 auto; line-height: 1.6; }

.hm-policy-content { background: #fff; border-radius: 12px; padding: 40px; box-shadow: 0 5px 30px rgba(0,0,0,0.05); }

/* Seasoning Steps */
.hm-policy-step { display: flex; gap: 24px; margin-bottom: 40px; }
.hm-policy-step:last-child { margin-bottom: 0; }
.hm-policy-step-num { flex-shrink: 0; width: 48px; height: 48px; background: var(--color-primary); color: #fff; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 20px; font-weight: 700; }
.hm-policy-step-text h3 { margin: 0 0 10px 0; font-size: 22px; color: #111; }
.hm-policy-step-text p { margin: 0; color: #555; line-height: 1.7; }

/* Text Content (Refund/Shipping) */
.hm-policy-text-section { margin-bottom: 35px; }
.hm-policy-text-section h3 { font-size: 22px; color: #111; margin-bottom: 15px; border-bottom: 2px solid #eee; padding-bottom: 10px; }
.hm-policy-text-section p, .hm-policy-text-section ul { color: #555; line-height: 1.8; margin-bottom: 15px; }
.hm-policy-text-section ul { padding-left: 20px; }
.hm-policy-text-section li { margin-bottom: 8px; }

/* FAQs */
.hm-faq-container { max-width: 800px; margin: 0 auto; }
.hm-faq-item { border: 1px solid #eaeaea; border-radius: 8px; margin-bottom: 15px; overflow: hidden; background: #fff; transition: all 0.3s ease; }
.hm-faq-item:hover { border-color: #ccc; }
.hm-faq-q { padding: 20px 24px; cursor: pointer; display: flex; justify-content: space-between; align-items: center; background: #fafafa; font-weight: 600; font-size: 18px; color: #111; }
.hm-faq-q::after { content: '+'; font-size: 24px; font-weight: 300; transition: transform 0.3s ease; }
.hm-faq-item.is-active .hm-faq-q::after { transform: rotate(45deg); }

/* =========================================================
   SPECIAL COMBO DEAL & BUNDLE SECTION
   ========================================================= */
.hm-combo-deal-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #fffcf7 0%, #f7f3eb 100%);
}
.hm-deal-card {
  background: #ffffff;
  border-radius: 24px;
  border: 2px solid #e8e2d5;
  box-shadow: 0 20px 50px rgba(0,0,0,0.06);
  padding: 3rem;
  position: relative;
  overflow: hidden;
}
.hm-deal-card__grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 3.5rem;
  align-items: center;
}
.hm-deal-img-wrap {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 12px 35px rgba(0,0,0,0.09);
  aspect-ratio: 4 / 3;
}
.hm-deal-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hm-deal-savings-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--color-primary, #d0473e);
  color: #ffffff;
  font-weight: 800;
  font-size: 13px;
  padding: 6px 16px;
  border-radius: 30px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 6px 18px rgba(208, 71, 62, 0.4);
}
.hm-deal-eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  color: var(--color-primary, #d0473e);
  letter-spacing: 1px;
  margin-bottom: 8px;
  text-transform: uppercase;
}
.hm-deal-heading {
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  font-weight: 800;
  color: #111111;
  line-height: 1.25;
  margin-bottom: 0.75rem;
}
.hm-deal-subtitle {
  font-size: 15px;
  color: #555555;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}
.hm-deal-items-box {
  background: #fdfbf7;
  border: 1px dashed #dfd7c6;
  border-radius: 14px;
  padding: 1.25rem 1.5rem;
  margin-bottom: 1.75rem;
}
.hm-deal-items-title {
  font-size: 14px;
  font-weight: 700;
  color: #222222;
  margin-bottom: 0.75rem;
}
.hm-deal-items-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.hm-deal-items-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: #333333;
  font-weight: 500;
}
.hm-deal-items-list li svg {
  color: #2e7d32;
  flex-shrink: 0;
}
.hm-deal-price-area {
  margin-bottom: 1.5rem;
}
.hm-deal-prices {
  display: flex;
  align-items: baseline;
  gap: 14px;
}
.hm-deal-old-price {
  font-size: 1.2rem;
  color: #999999;
  text-decoration: line-through;
  font-weight: 500;
}
.hm-deal-new-price {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--color-primary, #d0473e);
}
.hm-deal-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.hm-deal-btn-buy, .hm-deal-btn-wa {
  width: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 1rem 1.75rem !important;
  font-size: 16px !important;
  font-weight: 700 !important;
  border-radius: 12px !important;
  text-decoration: none !important;
  cursor: pointer;
}
.hm-deal-btn-wa {
  background: #25d366 !important;
  border: 1px solid #20ba5a !important;
  color: #ffffff !important;
}

@media (max-width: 992px) {
  .hm-combo-deal-section { padding: 45px 0; overflow: hidden; max-width: 100vw; }
  .hm-deal-card { padding: 1.75rem 1.25rem; border-radius: 18px; box-sizing: border-box; max-width: 100%; overflow: hidden; }
  .hm-deal-card__grid { grid-template-columns: 1fr; gap: 1.75rem; }
  .hm-deal-img-wrap { aspect-ratio: 16 / 10; }
}
.hm-faq-a { padding: 0 24px; max-height: 0; overflow: hidden; transition: all 0.4s ease; color: #555; line-height: 1.7; }
.hm-faq-item.is-active .hm-faq-a { padding: 20px 24px; max-height: 500px; border-top: 1px solid #eaeaea; }

@media (max-width: 768px) {
  .hm-policy-content { padding: 24px; }
  .hm-policy-step { flex-direction: column; gap: 15px; }
}

/* Force Product Card Hover Button Active State */
.product-card .hover-action .btn-add,
.product-card .hover-action a,
.product-card .hover-action .button {
  background: var(--color-primary, #c34a36) !important;
  color: #ffffff !important;
  opacity: 1 !important;
  cursor: pointer !important;
  pointer-events: auto !important;
}
.product-card .hover-action .btn-add:hover,
.product-card .hover-action a:hover,
.product-card .hover-action .button:hover {
  background: var(--color-primary-dark, #a63628) !important;
  color: #ffffff !important;
}


/* Back to top */
.hm-back-to-top {
  position: fixed;
  bottom: 90px;
  right: 20px;
  background: var(--color-primary, #c34a36);
  color: #fff;
  border-radius: 50%;
  width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  border: none; cursor: pointer;
  opacity: 0; pointer-events: none; transition: 0.3s;
  z-index: 1999;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}
.hm-back-to-top.show { opacity: 1; pointer-events: auto; }
.hm-back-to-top:hover { background: #111; transform: translateY(-3px); }


/* =========================================================
   USER REQUEST: MAKE PC HERO CENTERED & ATTRACTIVE LIKE MOBILE
   ========================================================= */
.hm-hero__slide-inner {
  justify-content: center !important;
}
.hm-hero__content {
  text-align: center !important;
  margin: 0 auto !important;
  padding: 0 20px !important;
  width: 100% !important;
}
.hm-hero__content .hm-btn {
  margin: 20px auto 0 !important;
  display: inline-flex !important;
  min-width: 220px !important;
  width: auto !important;
}

/* Fix Mobile Product Grid (2 columns instead of 1) */
@media (max-width: 480px) {
  .hm-products-grid, .hm-product-grid, ul.products {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 12px !important;
  }
}

/* Ensure ALL product grids on mobile are 2 columns */
@media (max-width: 480px) {
  .hm-products-grid, .hm-product-grid, ul.products, .hm-shop-grid, .hm-sp-related-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 12px !important;
  }
}

@media (max-width: 480px) {
}
.desktop-hover-atc-btn {
    display: flex !important;
    position: relative !important;
    left: auto !important;
    right: auto !important;
    bottom: auto !important;
    top: auto !important;
    transform: none !important;
    align-items: center !important;
    justify-content: center !important;
    width: 100% !important;
    background: #111111 !important;
    color: #ffffff !important;
    font-size: 12px !important;
    font-weight: 700 !important;
    padding: 10px 5px !important;
    border-radius: 6px !important;
    text-decoration: none !important;
    text-align: center !important;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2) !important;
    border: none !important;
    box-sizing: border-box !important;
    margin: 0 !important;
    text-transform: uppercase !important;
    white-space: nowrap !important;
    letter-spacing: 0.5px !important;
    overflow: hidden !important;
    max-width: 100% !important;
}
.desktop-hover-atc-btn:hover {
    background: #c34a36 !important;
    color: #ffffff !important;
}
.desktop-hover-atc-btn::after {
    display: none !important;
}
@media (max-width: 768px) {
}

/* =========================================================
   USER REQUEST: FINAL MOBILE TWEAKS (ATC, SLICK, CHECKOUT)
   ========================================================= */

/* 1. Fix Mobile "Black Box" (Add to Cart Icon) on product cards */
@media (max-width: 480px) {
}

/* 2. Fix Trending Products Carousel arrows on mobile */
@media (max-width: 768px) {
  .slick-prev {
    left: 5px !important;
    z-index: 15 !important;
  }
  .slick-next {
    right: 5px !important;
    z-index: 15 !important;
  }
}

/* 3. Fix Checkout Order Summary visibility on mobile */
@media (max-width: 768px) {
  #order_review,
  .woocommerce-checkout-review-order {
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
    height: auto !important;
  }
  
  .woocommerce-checkout-review-order-table {
    display: table !important;
    width: 100% !important;
  }
}

/* Native WooCommerce Checkout Form Overrides */
.native-wc-fields .form-row {
    margin-bottom: 15px;
}
.native-wc-fields label {
    font-size: 14px;
    font-weight: 500;
    color: #1e293b;
    margin-bottom: 6px;
    display: block;
}
.native-wc-fields input.input-text,
.native-wc-fields textarea,
.native-wc-fields select {
    width: 100%;
    padding: 12px 14px;
    border: 1.5px solid #e2e8f0;
    border-radius: 8px;
    background: #f8fafc;
    font-size: 15px;
    color: #0f172a;
    transition: all 0.2s ease;
}
.native-wc-fields input.input-text:focus,
.native-wc-fields textarea:focus {
    border-color: var(--color-primary, #d0473e);
    background: #ffffff;
    box-shadow: 0 0 0 4px rgba(208, 71, 62, 0.1);
    outline: none;
}
.native-wc-order-review table.shop_table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
}
.native-wc-order-review table.shop_table th,
.native-wc-order-review table.shop_table td {
    padding: 12px 0;
    border-bottom: 1px solid #e2e8f0;
    text-align: left;
}
.native-wc-order-review table.shop_table th {
    font-weight: 600;
    color: #1e293b;
}
.native-wc-order-review #payment {
    background: #f8fafc;
    border-radius: 12px;
    padding: 20px;
    margin-top: 20px;
}
.native-wc-order-review #payment ul.payment_methods {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
}
.native-wc-order-review #payment ul.payment_methods li {
    margin-bottom: 10px;
}
.native-wc-order-review #payment .payment_box {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    padding: 15px;
    border-radius: 8px;
    margin-top: 10px;
    font-size: 14px;
    color: #475569;
}
.native-wc-order-review #payment .place-order button {
    width: 100%;
    padding: 16px;
    background: var(--color-primary, #d0473e);
    color: #ffffff;
    border: none;
    border-radius: 12px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: background 0.3s ease;
}
.native-wc-order-review #payment .place-order button:hover {
    background: #b03a31;
}

/* Hide floating bag icon on Desktop where the full hover ATC button is shown */
@media (min-width: 769px) {
}

/* ==========================================
   HIDE HERO SLIDER DOTS (Keep only Arrows)
   ========================================== */
.hm-hero-swiper-pagination {
    display: none !important;
}

/* ==========================================
   REMOVE ALL DOTS FROM ALL SLIDERS
   ========================================== */
.swiper-pagination,
.hm-hero-swiper-pagination,
.hm-popular-pagination,
.hm-swiper-pagination,
.hm-new-arrivals-pagination,
.slick-dots {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
    height: 0 !important;
    width: 0 !important;
    pointer-events: none !important;
}


/* ==========================================
   FIX SLIDER ARROWS (Trending & New Arrivals)
   User requested arrows to be hidden by default, 
   only visible on hover, and hidden on mobile.
   ========================================== */

/* 1. Hide on all screen sizes by default */
html body .hm-swiper-prev,
html body .hm-swiper-next,
html body .swiper-button-prev.hm-swiper-prev,
html body .swiper-button-next.hm-swiper-next {
    opacity: 0 !important;
    visibility: hidden !important;
    transition: all 0.3s ease !important;
    /* Ensure no ugly default swiper backgrounds */
    background: #ffffff !important;
    border: 1px solid #e1e1e1 !important;
    width: 44px !important;
    height: 44px !important;
    border-radius: 50% !important;
    box-shadow: 0 2px 10px rgba(0,0,0,0.06) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

/* 2. Hide Swiper default chevron completely */
html body .swiper-button-prev.hm-swiper-prev::after,
html body .swiper-button-next.hm-swiper-next::after,
html body .hm-swiper-prev::after,
html body .hm-swiper-next::after {
    display: none !important;
    content: '' !important;
}

/* 3. Style our custom SVG icons inside */
html body .hm-swiper-prev svg,
html body .hm-swiper-next svg {
    width: 20px !important;
    height: 20px !important;
    stroke: #111111 !important;
}

/* 4. Show only on hover on Desktop */
@media (min-width: 769px) {
    html body .hm-section:hover .hm-swiper-prev,
    html body .hm-section:hover .hm-swiper-next,
    html body .hm-product-slider-wrap:hover .hm-swiper-prev,
    html body .hm-product-slider-wrap:hover .hm-swiper-next {
        opacity: 1 !important;
        visibility: visible !important;
    }
    html body .hm-swiper-prev:hover,
    html body .hm-swiper-next:hover {
        background: var(--color-primary, #c34a36) !important;
        border-color: var(--color-primary, #c34a36) !important;
    }
    html body .hm-swiper-prev:hover svg,
    html body .hm-swiper-next:hover svg {
        stroke: #ffffff !important;
    }
}

/* 5. Force hide on Mobile */
@media (max-width: 768px) {
    html body .hm-swiper-prev,
    html body .hm-swiper-next,
    html body .swiper-button-prev.hm-swiper-prev,
    html body .swiper-button-next.hm-swiper-next {
        display: none !important;
        opacity: 0 !important;
        visibility: hidden !important;
        pointer-events: none !important;
    }
}

/* =========================================================
   THANK YOU / ORDER RECEIVED PAGE CSS
   ========================================================= */
.hm-thankyou-wrap {
    max-width: 800px;
    margin: 40px auto 80px;
    padding: 0 20px;
    font-family: var(--font-base, 'Instrument Sans', sans-serif);
}

.hm-thankyou-header {
    text-align: center;
    margin-bottom: 40px;
    padding: 40px 20px;
    background: #f0fdf4;
    border: 1px solid #bbf7d0;
    border-radius: 16px;
}

.hm-thankyou-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 96px;
    height: 96px;
    background: #ffffff;
    border-radius: 50%;
    margin-bottom: 24px;
    box-shadow: 0 8px 24px rgba(34, 197, 94, 0.2);
}

.hm-thankyou-title {
    font-size: 28px;
    font-weight: 800;
    color: #111;
    margin: 0 0 12px;
}

.hm-thankyou-subtitle {
    font-size: 16px;
    color: #555;
    margin: 0;
}

.hm-order-overview {
    list-style: none;
    padding: 24px 32px;
    margin: 0 0 40px;
    background: #ffffff;
    border: 1px solid #e8e3dc;
    border-radius: 16px;
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.03);
}

.hm-order-overview li {
    display: flex;
    flex-direction: column;
    gap: 8px;
    font-size: 13px;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 600;
}

.hm-order-overview li strong {
    font-size: 18px;
    color: #111;
    text-transform: none;
    letter-spacing: 0;
    font-weight: 800;
}

.hm-thankyou-details {
    background: #ffffff;
    border: 1px solid #e8e3dc;
    border-radius: 16px;
    padding: 32px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.03);
}

.hm-thankyou-details h2 {
    font-size: 22px;
    font-weight: 800;
    color: #111;
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 1px solid #eaeaea;
}

.hm-thankyou-details .order_details {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 32px;
}

.hm-thankyou-details .order_details th,
.hm-thankyou-details .order_details td {
    padding: 16px;
    border-bottom: 1px solid #eaeaea;
    text-align: left;
    font-size: 15px;
    color: #444;
}

.hm-thankyou-details .order_details th {
    font-weight: 700;
    color: #111;
}

.hm-thankyou-details .order_details tfoot th {
    text-align: right;
}

.hm-thankyou-details .order_details tfoot td {
    font-weight: 700;
    color: #111;
}

/* Fix customer details addresses */
.hm-thankyou-details address {
    font-style: normal;
    line-height: 1.6;
    color: #555;
    background: #fafaf8;
    padding: 20px;
    border-radius: 8px;
    border: 1px solid #eaeaea;
    margin-top: 16px;
}

@media (max-width: 768px) {
    .hm-order-overview {
        flex-direction: column;
        gap: 20px;
        padding: 20px;
    }
    .hm-thankyou-title { font-size: 24px; }
    .hm-thankyou-details { padding: 20px; }
}

/* =========================================================
   CHECKOUT FIXES (FRACTURED LAYOUT & COUPONS)
   ========================================================= */
   
/* Fix Coupon on Cart (Hide) */
.woocommerce-cart .coupon,


/* Fix Checkout Fields (Fractured Layout) */
.woocommerce-checkout .form-row {
    display: block !important;
    width: 100% !important;
    float: none !important;
    margin-bottom: 20px !important;
    clear: both !important;
}

.woocommerce-checkout .form-row label {
    display: block !important;
    width: 100% !important;
    margin-bottom: 8px !important;
    font-size: 14px !important;
    font-weight: 600 !important;
    color: #111 !important;
}

.woocommerce-checkout .form-row input.input-text,
.woocommerce-checkout .form-row textarea,
.woocommerce-checkout .form-row select,
.woocommerce-checkout .select2-container {
    width: 100% !important;
    box-sizing: border-box !important;
}

.woocommerce-checkout .form-row-first,
.woocommerce-checkout .form-row-last {
    width: 100% !important;
    float: none !important;
}

/* On Desktop, make first and last name sit side-by-side */
@media (min-width: 768px) {
    .woocommerce-checkout .form-row-first {
        width: 48% !important;
        float: left !important;
        clear: left !important;
    }
    .woocommerce-checkout .form-row-last {
        width: 48% !important;
        float: right !important;
        clear: right !important;
    }
    .woocommerce-checkout .form-row-wide {
        clear: both !important;
    }
}

/* Fix Payment Methods (Fractured Layout) */
#payment .wc_payment_methods {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 0 20px 0 !important;
    border-bottom: 1px solid #eaeaea !important;
}

#payment .wc_payment_method {
    margin-bottom: 15px !important;
    border: 1px solid #eaeaea !important;
    border-radius: 8px !important;
    padding: 15px !important;
    background: #fdfdfd !important;
}

#payment .wc_payment_method label {
    display: inline-flex !important;
    align-items: center !important;
    gap: 10px !important;
    font-weight: 700 !important;
    font-size: 16px !important;
    cursor: pointer !important;
    margin: 0 !important;
    width: auto !important;
}

#payment .wc_payment_method input[type="radio"] {
    margin: 0 !important;
    width: 18px !important;
    height: 18px !important;
    accent-color: var(--color-primary, #c34a36) !important;
}

#payment .payment_box {
    margin-top: 15px !important;
    padding: 15px !important;
    background: #f4f4f4 !important;
    border-radius: 6px !important;
    font-size: 14px !important;
    color: #555 !important;
    line-height: 1.6 !important;
}

#payment .payment_box p:last-child {
    margin-bottom: 0 !important;
}

/* Hide shipping destination in totals */


/* Style Coupon inside order review */
#order_review .checkout_coupon {
    margin: 20px 0 !important;
    padding: 20px !important;
    border: 1px dashed #c34a36 !important;
    background: #fffcfcfc !important;
    border-radius: 8px !important;
}
#order_review .checkout_coupon p {
    margin-bottom: 10px !important;
}

/* =========================================================
   VARIABLE PRODUCTS CSS
   ========================================================= */
.variations_form {
    margin-bottom: 20px;
}

.variations_form .variations {
    width: 100%;
    margin-bottom: 15px;
    border-collapse: collapse;
}

.variations_form .variations td {
    padding: 10px 0;
    vertical-align: middle;
}

.variations_form .variations td.label {
    width: 30%;
    font-weight: 700;
    color: #111;
}

.variations_form .variations select {
    width: 100%;
    padding: 12px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    font-family: inherit;
    font-size: 15px;
    background-color: #f9f9f9;
}

.variations_form .reset_variations {
    display: inline-block;
    margin-top: 10px;
    font-size: 13px;
    color: #c34a36;
    text-decoration: none;
}

.single_variation_wrap {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #eaeaea;
}

.woocommerce-variation-price {
    font-size: 22px;
    font-weight: 800;
    color: var(--color-primary, #c34a36);
    margin-bottom: 20px;
}

.woocommerce-variation-add-to-cart {
    display: flex;
    gap: 15px;
    align-items: center;
}

.woocommerce-variation-add-to-cart .quantity {
    display: flex !important;
}

.woocommerce-variation-add-to-cart button.single_add_to_cart_button {
    flex: 1;
    height: 50px;
    font-size: 16px;
    font-weight: 700;
    background-color: #111;
    color: #fff;
    border-radius: 30px;
    border: none;
    cursor: pointer;
    text-transform: uppercase;
    transition: background 0.3s;
}

.woocommerce-variation-add-to-cart button.single_add_to_cart_button:hover {
    background-color: var(--color-primary, #c34a36);
}

/* Force mobile checkout fields to be block */
@media (max-width: 767px) {
    .woocommerce-checkout .form-row-first,
    .woocommerce-checkout .form-row-last {
        width: 100% !important;
        float: none !important;
        clear: both !important;
        display: block !important;
    }
}





/* Fix Cart Page Buttons (Make them large and responsive) */
.woocommerce-cart .cart-collaterals .hm-buy-now-btn,
.woocommerce-cart .cart-collaterals .hm-wa-checkout {
    display: flex !important;
    width: 100% !important;
    justify-content: center !important;
    align-items: center !important;
    padding: 18px !important;
    border-radius: 30px !important;
    font-size: 16px !important;
    font-weight: 800 !important;
    margin-bottom: 15px !important;
    text-transform: uppercase !important;
    box-sizing: border-box !important;
}

/* Ensure Proceed to WhatsApp is styled distinctly */
.woocommerce-cart .cart-collaterals .hm-wa-checkout {
    background: #25d366 !important;
    color: #fff !important;
    box-shadow: 0 4px 15px rgba(37,211,102,0.2) !important;
}
.woocommerce-cart .cart-collaterals .hm-wa-checkout:hover {
    background: #20ba5a !important;
}

/* Fix WooCommerce Cart native button sizing */
.woocommerce-cart .cart-collaterals .checkout-button {
    display: flex !important;
    width: 100% !important;
    justify-content: center !important;
    padding: 18px !important;
    border-radius: 30px !important;
    font-size: 16px !important;
    font-weight: 800 !important;
    margin-bottom: 15px !important;
}


/* Fix WhatsApp button overlapping in Cart */
body.woocommerce-cart .hm-whatsapp-float {
    display: none !important;
}
body.woocommerce-cart .cart-collaterals {
    padding-bottom: 80px !important;
}

/* Fix Mobile Nav hiding notifications */
body.nav-is-open .hm-sales-popup {
    display: none !important;
    opacity: 0 !important;
    visibility: hidden !important;
    z-index: -1 !important;
}
body.nav-is-open .hm-announcement-bar {
    display: none !important;
    opacity: 0 !important;
    visibility: hidden !important;
}

/* Safe Fix for Checkout Mobile Fields (ONLY target billing/shipping fields, NOT order table) */
@media (max-width: 767px) {
    .woocommerce-checkout .woocommerce-billing-fields .form-row,
    .woocommerce-checkout .woocommerce-shipping-fields .form-row,
    .woocommerce-checkout .woocommerce-additional-fields .form-row {
        width: 100% !important;
        float: none !important;
        clear: both !important;
        display: block !important;
    }
}


/* Fix Coupon Box Appearance */
.woocommerce-checkout #order_review .checkout_coupon {
    border: 2px dashed #e2e8f0 !important;
    background: #f8fafc !important;
    padding: 20px !important;
    border-radius: 10px !important;
    margin: 30px 0 !important;
    box-sizing: border-box !important;
    clear: both !important;
}

.woocommerce-checkout #order_review .checkout_coupon p:first-child {
    font-weight: 600 !important;
    color: #1e293b !important;
    margin-bottom: 15px !important;
}



.woocommerce-checkout #order_review .checkout_coupon input.input-text {
    width: 100% !important;
    padding: 14px 15px !important;
    border: 1px solid #cbd5e1 !important;
    border-radius: 6px !important;
    font-size: 15px !important;
    box-sizing: border-box !important;
}

.woocommerce-checkout #order_review .checkout_coupon button.button {
    width: 100% !important;
    padding: 14px !important;
    background: #111 !important;
    color: #fff !important;
    border-radius: 6px !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.05em !important;
    box-sizing: border-box !important;
}


/* =========================================================
   CHECKOUT PAGE POLISH (ORDER SUMMARY, PAYMENT, COUPON)
   ========================================================= */

/* 1. Hide unwanted Shipping text in Order Summary */
.woocommerce-checkout-review-order-table .woocommerce-shipping-destination,
.woocommerce-checkout-review-order-table .woocommerce-shipping-calculator,
.woocommerce-checkout-review-order-table ul#shipping_method li p {
    display: none !important;
}

/* Make sure Shipping row is minimal and clean */
.woocommerce-checkout-review-order-table tr.shipping th,
.woocommerce-checkout-review-order-table tr.shipping td {
    padding-top: 15px !important;
    padding-bottom: 15px !important;
    vertical-align: middle !important;
}

/* 2. Hide Coupon Toggle (Red Box) */
.woocommerce-form-coupon-toggle {
    display: none !important;
}

/* Ensure our moved coupon box is always visible */
.woocommerce-checkout #order_review .checkout_coupon {
    display: block !important;
}

/* 3. Enhance Order Summary Size & Desktop Layout */
.woocommerce-checkout-review-order-table {
    font-size: 15px !important;
}
.woocommerce-checkout-review-order-table th, 
.woocommerce-checkout-review-order-table td {
    padding: 16px 12px !important;
}
.woocommerce-checkout-review-order-table .cart_item td.product-name {
    font-weight: 600 !important;
}
.woocommerce-checkout-review-order-table .cart_item td.product-total {
    font-weight: 700 !important;
    color: var(--color-primary, #c34a36) !important;
}



/* 4. Enhance Payment Methods (BACS & COD) */
#payment .wc_payment_methods {
    background: #f8fafc !important;
    border: 1px solid #e2e8f0 !important;
    border-radius: 8px !important;
    padding: 20px !important;
}
#payment .wc_payment_methods li {
    margin-bottom: 15px !important;
    padding-bottom: 15px !important;
    border-bottom: 1px solid #e2e8f0 !important;
}
#payment .wc_payment_methods li:last-child {
    border-bottom: none !important;
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
}
#payment .wc_payment_methods li label {
    font-weight: 700 !important;
    font-size: 16px !important;
    color: #0f172a !important;
    cursor: pointer !important;
}
#payment .payment_box {
    background: #fff !important;
    border: 1px solid #cbd5e1 !important;
    border-radius: 6px !important;
    padding: 15px !important;
    margin-top: 10px !important;
    font-size: 14px !important;
    color: #475569 !important;
    line-height: 1.6 !important;
}
#payment .payment_box::before {
    display: none !important; /* hide default WC triangle */
}

/* 5. WhatsApp Float Fix */
.hm-whatsapp-float {
    position: fixed !important;
    bottom: 24px !important;
    right: 24px !important;
    z-index: 999999 !important;
    max-width: 60px !important;
    max-height: 60px !important;
}
@media (max-width: 767px) {
    .hm-whatsapp-float {
        bottom: 20px !important;
        right: 20px !important;
        transform: scale(0.9) !important;
    }
}


/* =========================================================
   FORCE VISIBILITY OF VARIABLE ADD TO CART BUTTON
   ========================================================= */
.woocommerce-variation-add-to-cart {
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 15px !important;
    margin-top: 20px !important;
    align-items: center !important;
    width: 100% !important;
}

/* If variation is not yet selected, grey it out but keep it visible */
.woocommerce-variation-add-to-cart-disabled,
.woocommerce-variation-add-to-cart.disabled {
    opacity: 0.5 !important;
}

.woocommerce-variation-add-to-cart button.single_add_to_cart_button {
    flex: 1 !important;
    height: 52px !important;
    font-size: 16px !important;
    font-weight: 700 !important;
    background: #111 !important;
    color: #fff !important;
    border-radius: 30px !important;
    text-transform: uppercase !important;
    border: none !important;
    cursor: pointer !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
}

.woocommerce-variation-add-to-cart button.single_add_to_cart_button:hover {
    background: var(--color-primary, #c34a36) !important;
}

.woocommerce-variation-add-to-cart .quantity {
    display: flex !important;
    align-items: center !important;
}


/* =========================================================
   CART PAGE SPECIFIC FIXES (SHIPPING TEXT & BUTTON)
   ========================================================= */

/* Hide unwanted Shipping text & calculator in Cart Order Summary */
.woocommerce-cart .cart-collaterals .woocommerce-shipping-destination,
.woocommerce-cart .cart-collaterals .woocommerce-shipping-calculator,
.woocommerce-cart .cart-collaterals ul#shipping_method li p {
    display: none !important;
}

/* Ensure Shipping row is minimal and clean on cart */
.woocommerce-cart .cart-collaterals tr.shipping th,
.woocommerce-cart .cart-collaterals tr.shipping td {
    padding-top: 15px !important;
    padding-bottom: 15px !important;
    vertical-align: middle !important;
}



.woocommerce-cart .cart-collaterals .hm-buy-now-btn i,
.woocommerce-cart .cart-collaterals .checkout-button i,
.woocommerce-cart .cart-collaterals .hm-wa-checkout i,
.woocommerce-cart .cart-collaterals .hm-buy-now-btn svg,
.woocommerce-cart .cart-collaterals .checkout-button svg {
    flex-shrink: 0 !important;
    margin: 0 !important;
}


/* Larger Place Order button */
#place_order {
    font-size: 18px !important;
    padding: 20px !important;
}


/* =========================================================
   CART PAGE DESKTOP & MOBILE LAYOUT FIX
   ========================================================= */

@media (min-width: 992px) {
    .woocommerce-cart .woocommerce-cart-form {
        width: 58% !important;
        float: left !important;
    }
    .woocommerce-cart .cart-collaterals {
        width: 48% !important;
        float: right !important;
        margin-top: 0 !important;
        clear: right !important;
    }
    .woocommerce-cart .woocommerce::after {
        content: "" !important;
        display: table !important;
        clear: both !important;
    }
}

@media (max-width: 991px) {
    .woocommerce-cart .woocommerce-cart-form,
    .woocommerce-cart .cart-collaterals {
        width: 100% !important;
        float: none !important;
    }
    .woocommerce-cart .cart-collaterals {
        margin-top: 30px !important;
    }
}


/* =========================================================
   ORDER SUMMARY FINAL FIXES (CART PAGE)
   ========================================================= */

/* Completely hide the entire shipping row in the Cart */
.woocommerce-cart .cart-collaterals tr.shipping {
    display: none !important;
}








/* Completely hide the native Shipping error row in Checkout */
.woocommerce-checkout-review-order-table tr.shipping {
    display: none !important;
}


/* =========================================================
   PRODUCT TITLE SIZE FIX
   ========================================================= */
.hm-sp-content h1.hm-product-title,
.product_title.entry-title {
    font-size: 26px !important;
    line-height: 1.3 !important;
    margin-bottom: 15px !important;
    letter-spacing: -0.02em !important;
}

@media (min-width: 768px) {
    .hm-sp-content h1.hm-product-title,
    .product_title.entry-title {
        font-size: 32px !important; /* Smaller than before to save space */
    }
}


/* Guarantee Shipping Row is completely hidden from Cart Page */
.woocommerce-cart .cart-collaterals tr.shipping,
.woocommerce-cart .cart-collaterals tr.woocommerce-shipping-totals {
    display: none !important;
}


/* =========================================================
   CART PAGE BUTTON FIX (FORCE NATIVE LARGE STYLE)
   ========================================================= */
.woocommerce-cart .cart-collaterals .checkout-button,
.woocommerce-cart .cart-collaterals .hm-wa-checkout {
    display: block !important;
    width: 100% !important;
    text-align: center !important;
    padding: 15px !important;
    font-size: 16px !important;
    border-radius: 8px !important;
    white-space: normal !important;
    line-height: 1.5 !important;
    height: auto !important;
    margin-bottom: 10px !important;
}


/* =========================================================
   FINAL LAYOUT FIXES (CHECKOUT, IMAGES, BUTTONS, POPUP)
   ========================================================= */

/* 1. Fix First Name & Last Name Misalignment (Mobile Checkout) */
@media (max-width: 767px) {
    .woocommerce-checkout .form-row-first,
    .woocommerce-checkout .form-row-last {
        width: 100% !important;
        float: none !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        clear: both !important;
        display: block !important;
    }
}

/* 2. Fix Cart Buttons Overflowing on Mobile */
@media (max-width: 767px) {
    .woocommerce-cart .cart-collaterals .checkout-button,
    .woocommerce-cart .cart-collaterals .hm-wa-checkout {
        box-sizing: border-box !important;
        max-width: 100% !important;
        width: 100% !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
    }
    .woocommerce-cart .cart-collaterals {
        padding: 0 15px !important; /* Ensure the container itself has padding */
        box-sizing: border-box !important;
    }
}




/* =========================================================
   BULLETPROOF LAYOUT FIXES
   ========================================================= */

/* 1. Bulletproof Checkout Names (Mobile) */
@media (max-width: 767px) {
    form.checkout #customer_details .form-row-first,
    form.checkout #customer_details .form-row-last,
    .woocommerce-checkout .form-row-first,
    .woocommerce-checkout .form-row-last,
    p.form-row-first, p.form-row-last {
        width: 100% !important;
        float: none !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding-left: 0 !important;
        padding-right: 0 !important;
        display: block !important;
        clear: both !important;
    }
}

/* 2. Bulletproof Cart Buttons (Mobile) */
@media (max-width: 767px) {
    .woocommerce-cart .cart-collaterals,
    .woocommerce-cart .cart-collaterals .cart_totals {
        padding-left: 10px !important;
        padding-right: 10px !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }
    
    .woocommerce-cart .cart-collaterals .wc-proceed-to-checkout a.checkout-button,
    .woocommerce-cart .cart-collaterals .wc-proceed-to-checkout .hm-wa-checkout,
    .woocommerce-cart a.checkout-button,
    .woocommerce-cart .hm-wa-checkout {
        display: block !important;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
    }
}


/* =========================================================
   USER FEEDBACK FIXES (MOBILE ALIGNMENT, SHIPPING, TITLE, COUPON)
   ========================================================= */

/* 1. Universal Form Row Fix for Mobile (Forces First/Last Name to stack) */
@media (max-width: 767px) {
    .woocommerce form .form-row, 
    .woocommerce-page form .form-row,
    #customer_details .form-row {
        width: 100% !important;
        float: none !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        display: block !important;
        clear: both !important;
    }
}

/* CLEANED */

.woocommerce-cart .coupon, .woocommerce-checkout .checkout_coupon {
    display: flex !important;
    flex-wrap: nowrap !important;
    gap: 10px !important;
    align-items: stretch !important;
    width: 100% !important;
}
.woocommerce-cart .coupon .input-text, .woocommerce-checkout .checkout_coupon .input-text {
    width: 65% !important;
    margin: 0 !important;
}
.woocommerce-cart .coupon .button, .woocommerce-checkout .checkout_coupon .button {
    width: 35% !important;
    margin: 0 !important;
    padding: 10px 5px !important;
    text-align: center !important;
    white-space: nowrap !important;
}


/* =========================================================
   FLOATING ELEMENTS LAYOUT (RESTORED AS PER FEEDBACK)
   ========================================================= */

/* 1. WhatsApp Button - Bottom Right */
.hm-whatsapp-float {
    position: fixed !important;
    bottom: 20px !important;
    right: 20px !important; 
    left: auto !important;
    z-index: 9999 !important;
    width: 55px !important;
    height: 55px !important;
}

/* 2. Back to Top Button - Bottom Right (Directly Above WhatsApp) */
.hm-back-to-top {
    position: fixed !important;
    bottom: 90px !important; /* Spaced exactly above WhatsApp */
    right: 25px !important; 
    left: auto !important;
    z-index: 9998 !important;
    width: 45px !important;
    height: 38px !important;
}

/* 3. Sales Popup - Bottom Left */
#hm-sales-popup, .hm-sales-popup {
    left: 20px !important;
    bottom: 20px !important; /* Will slide up to here */
    display: flex !important;
}

@media (max-width: 767px) {
    .hm-whatsapp-float {
        bottom: 15px !important;
        right: 15px !important;
        width: 50px !important;
        height: 50px !important;
    }
    .hm-back-to-top {
        bottom: 75px !important; /* Above WhatsApp on mobile */
        right: 20px !important;
        width: 40px !important;
        height: 40px !important;
    }
    #hm-sales-popup, .hm-sales-popup {
        left: 15px !important;
        bottom: 15px !important;
        max-width: calc(100vw - 90px) !important; /* Ensure it doesn't overlap WhatsApp */
    }
}

/* =========================================================
   BRUTAL FIXES FOR CART BUTTONS AND WHATSAPP VISIBILITY
   ========================================================= */
   
/* Force WhatsApp Floating Button Visibility */
.hm-whatsapp-float, a.hm-whatsapp-float {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
    background-color: #25D366 !important; /* Ensure it has background */
    color: #fff !important;
}

/* Fix Cart Buttons "Pill" Squishing Text */
.woocommerce-cart .cart-collaterals .checkout-button,
.woocommerce-cart .cart-collaterals .hm-wa-checkout {
    white-space: nowrap !important; /* Stop text from wrapping to 2 lines */
    border-radius: 8px !important; /* Remove extreme 50px pill shape */
    padding: 12px 2px !important; /* Minimal side padding */
    font-size: 15px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 100% !important;
    max-width: 100% !important;
}

@media (max-width: 767px) {
    .woocommerce-cart .cart-collaterals .checkout-button,
    .woocommerce-cart .cart-collaterals .hm-wa-checkout {
        font-size: 14px !important; /* Slightly smaller for mobile */
    }
}

/* =========================================================
   FIX HORIZONTAL OVERFLOW, ZIP CODE, AND BUTTON OVERLAP
   ========================================================= */

/* 1. Prevent Horizontal Scrolling on Mobile (Movable Page Fix) */
html, body {
    overflow-x: hidden !important;
    max-width: 100vw !important;
    width: 100% !important;
}
.site-content, .site-main, .woocommerce, .woocommerce-checkout, .woocommerce-cart, #page {
    max-width: 100vw !important;
    overflow-x: hidden !important;
    box-sizing: border-box !important;
}
.woocommerce form .form-row {
    max-width: 100% !important;
    box-sizing: border-box !important;
}

/* 2. Brutally Hide Zip Code (in case PHP fails due to cache/plugins) */
#billing_postcode_field,
#shipping_postcode_field,
.woocommerce-billing-fields #billing_postcode_field {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
    height: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
    pointer-events: none !important;
}

/* 3. Fix WhatsApp and Back-To-Top Overlap on Mobile */
@media (max-width: 767px) {
    /* WhatsApp exactly at bottom corner */
    .hm-whatsapp-float, a.hm-whatsapp-float {
        bottom: 20px !important;
        right: 20px !important;
        z-index: 999999 !important; /* Ensure it stays on top */
    }
    
    /* Back to top strictly above WhatsApp */
    #ast-scroll-top, .hm-back-to-top, .back-to-top {
        bottom: 90px !important; /* 20px (wa) + 50px (wa height) + 20px gap */
        right: 20px !important;
        z-index: 999998 !important;
    }
}

/* =========================================================
   ULTIMATE COUPON FIX & CHECKOUT WHATSAPP FIX
   ========================================================= */

/* Force Coupon Form (Cart & Checkout) to be a single clean row */
.woocommerce-cart .coupon,
form.checkout_coupon.woocommerce-form-coupon,
.woocommerce form.checkout_coupon {
    display: flex !important;
    flex-direction: row !important;
    align-items: stretch !important;
    gap: 10px !important;
    width: 100% !important;
    clear: both !important;
    margin-bottom: 20px !important;
}

/* Make sure child paragraphs don't float and take proper width */
.woocommerce-cart .coupon .form-row-first,
form.checkout_coupon .form-row-first,
.woocommerce form.checkout_coupon p:nth-child(1) {
    flex: 1 !important;
    width: auto !important;
    margin: 0 !important;
    float: none !important;
}

.woocommerce-cart .coupon .form-row-last,
form.checkout_coupon .form-row-last,
.woocommerce form.checkout_coupon p:nth-child(2) {
    width: auto !important;
    margin: 0 !important;
    float: none !important;
    flex-shrink: 0 !important;
}

/* Fix Input Field */
.woocommerce-cart .coupon .input-text,
form.checkout_coupon .input-text,
.woocommerce form.checkout_coupon .input-text {
    width: 100% !important;
    min-height: 38px !important;
    margin: 0 !important;
    box-sizing: border-box !important;
}

/* Fix Apply Button (Kill the massive pill and weird wrap) */
.woocommerce-cart .coupon button.button,
form.checkout_coupon button.button,
.woocommerce form.checkout_coupon button.button {
    height: 100% !important;
    min-height: 38px !important;
    margin: 0 !important;
    white-space: nowrap !important; /* Stop "Apply coupon" from wrapping */
    border-radius: 6px !important; /* Remove extreme roundness */
    padding: 0 15px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 14px !important;
}

/* Ensure WhatsApp Button is absolutely forced visible even on checkout */
body .hm-whatsapp-float, 
body.woocommerce-checkout .hm-whatsapp-float {
    display: flex !important;
    opacity: 1 !important;
    visibility: visible !important;
    z-index: 9999999 !important;
}


/* =========================================================
   THE ONE TRUE COUPON FIX & WHATSAPP VISIBILITY
   ========================================================= */

/* Force ALL Coupon forms into a single flex row */
#order_review .checkout_coupon,
.woocommerce-cart .coupon,
form.checkout_coupon,
.woocommerce-checkout form.checkout_coupon {
    display: flex !important;
    flex-direction: row !important;
    align-items: stretch !important;
    flex-wrap: nowrap !important;
    gap: 8px !important;
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 0 20px 0 !important;
    padding: 15px !important;
    border: 2px dashed #e2e8f0 !important;
    background: #f8fafc !important;
    border-radius: 8px !important;
    box-sizing: border-box !important;
}

/* 1st column: Input */
#order_review .checkout_coupon .form-row-first,
.woocommerce-cart .coupon .form-row-first,
form.checkout_coupon .form-row-first {
    flex: 1 1 auto !important;
    width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
    float: none !important;
}

/* 2nd column: Button */
#order_review .checkout_coupon .form-row-last,
.woocommerce-cart .coupon .form-row-last,
form.checkout_coupon .form-row-last {
    flex: 0 0 auto !important;
    width: auto !important;
    margin: 0 !important;
    padding: 0 !important;
    float: none !important;
}

/* Input styling */
#order_review .checkout_coupon input.input-text,
.woocommerce-cart .coupon input.input-text,
form.checkout_coupon input.input-text {
    width: 100% !important;
    height: 38px !important;
    min-height: 38px !important;
    margin: 0 !important;
    padding: 0 10px !important;
    box-sizing: border-box !important;
    border: 1px solid #ccc !important;
    border-radius: 6px !important;
}

/* Button styling (KILL the massive pill) */
#order_review .checkout_coupon button.button,
.woocommerce-cart .coupon button.button,
form.checkout_coupon button.button {
    height: 38px !important;
    min-height: 38px !important;
    margin: 0 !important;
    padding: 0 15px !important;
    white-space: nowrap !important;
    border-radius: 6px !important;
    font-size: 14px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: max-content !important;
}

/* Ensure WhatsApp button is pinned securely inside the viewport */
body .hm-whatsapp-float, 
body.woocommerce-checkout .hm-whatsapp-float {
    position: fixed !important;
    right: 15px !important;
    bottom: 15px !important;
    display: flex !important;
    opacity: 1 !important;
    visibility: visible !important;
    z-index: 2147483647 !important; /* Max z-index */
    margin: 0 !important;
    transform: none !important;
}


/* =========================================================
   MOBILE PRODUCT CARD REDESIGN (FIXING CUT TEXT & BADGES)
   ========================================================= */

@media (max-width: 768px) {
}


/* =========================================================
   FIXING WHATSAPP / BACK TO TOP OVERFLOW
   ========================================================= */

/* Ensure WhatsApp button icon is perfectly centered and doesn't spill out */
body .hm-whatsapp-float, 
body.woocommerce-checkout .hm-whatsapp-float,
a.hm-whatsapp-float {
    width: 50px !important;
    height: 50px !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 0 !important;
    text-align: center !important;
    box-sizing: border-box !important;
}

body .hm-whatsapp-float svg, 
body.woocommerce-checkout .hm-whatsapp-float svg,
a.hm-whatsapp-float svg {
    width: 28px !important;
    height: 28px !important;
    margin: 0 !important;
    display: block !important;
}

/* Same for Back to Top Button */
#ast-scroll-top, .hm-back-to-top, .back-to-top {
    width: 40px !important;
    height: 40px !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 0 !important;
    box-sizing: border-box !important;
}

#ast-scroll-top span, .hm-back-to-top span, .back-to-top span {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 100% !important;
    height: 100% !important;
}


/* =========================================================
   FIXING SALES POPUP OVERLAP ON CHECKOUT
   ========================================================= */

/* Ensure the sales popup NEVER shows on the checkout page, overriding any inline styles */
body.woocommerce-checkout #hm-sales-popup,
body.woocommerce-checkout .hm-sales-popup {
    display: none !important;
    opacity: 0 !important;
    visibility: hidden !important;
    z-index: -999 !important;
    pointer-events: none !important;
}

/* Variable Price dash ( - ) fix */
.price {
    color: #111 !important; /* Dash color */
    font-size: 16px !important;
    font-weight: 700 !important;
}

/* Mobile specific tweaks */
@media (max-width: 768px) {
}


/* =========================================================
   MOBILE PRODUCT CARD TITLE & STAR FIX
   ========================================================= */
@media (max-width: 768px) {
}


/* =========================================================
   GOD MODE: MOBILE PRODUCT CARD TEXT & STARS
   ========================================================= */

@media (max-width: 768px) {
}


/* =========================================================
   GLOBAL OVERFLOW FIX (STOPS PAGE FROM MOVING/ZOOMING)
   ========================================================= */
html, body {
    max-width: 100vw !important;
    overflow-x: hidden !important;
    position: relative !important;
    margin: 0 !important;
    padding: 0 !important;
}

/* Containers wrapper fix removed to restore sticky header */
.ast-container, .site-content, #page { max-width: 100% !important; box-sizing: border-box !important; overflow: visible !important; clip-path: none !important; }

/* Fix any table that might be stretching the checkout page */
table.shop_table, .woocommerce-checkout table.shop_table {
    width: 100% !important;
    max-width: 100% !important;
    table-layout: fixed !important;
    word-wrap: break-word !important;
}

/* =========================================================
   GOD TIER COUPON ROW FIX
   ========================================================= */
/* Target every possible wrapper the coupon might be in */
form.checkout_coupon, 
.woocommerce-checkout .checkout_coupon, 
.woocommerce form.checkout_coupon,
.woocommerce-cart .coupon,
#order_review .checkout_coupon,
.woocommerce-checkout form.woocommerce-form-coupon {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    align-items: stretch !important;
    justify-content: space-between !important;
    gap: 10px !important;
    width: 100% !important;
    max-width: 100% !important;
    margin: 20px 0 !important;
    padding: 15px !important;
    background: #f8fafc !important;
    border: 2px dashed #cbd5e1 !important;
    border-radius: 8px !important;
    box-sizing: border-box !important;
}

/* Force input and button containers to stay inline */
form.checkout_coupon p, 
.woocommerce form.checkout_coupon p,
.woocommerce-checkout .checkout_coupon p,
.woocommerce-cart .coupon .form-row {
    margin: 0 !important;
    padding: 0 !important;
    float: none !important;
}

/* Input container */
form.checkout_coupon p:nth-child(1),
.woocommerce form.checkout_coupon p:nth-child(1),
.woocommerce-checkout .checkout_coupon p.form-row-first {
    flex: 1 1 auto !important;
    width: auto !important;
}

/* Button container */
form.checkout_coupon p:nth-child(2),
.woocommerce form.checkout_coupon p:nth-child(2),
.woocommerce-checkout .checkout_coupon p.form-row-last {
    flex: 0 0 auto !important;
    width: auto !important;
}

/* Input Styles */
form.checkout_coupon input.input-text,
.woocommerce form.checkout_coupon input.input-text,
.woocommerce-checkout .checkout_coupon input.input-text {
    width: 100% !important;
    height: 38px !important;
    min-height: 38px !important;
    border-radius: 6px !important;
    border: 1px solid #ccc !important;
    padding: 0 10px !important;
    box-sizing: border-box !important;
}

/* Button Styles (KILL PILL SHAPE FOREVER) */
form.checkout_coupon button.button,
.woocommerce form.checkout_coupon button.button,
.woocommerce-checkout .checkout_coupon button.button,
.woocommerce-cart .coupon button.button {
    height: 38px !important;
    min-height: 38px !important;
    border-radius: 6px !important; /* NOT a pill */
    padding: 0 20px !important;
    margin: 0 !important;
    white-space: nowrap !important;
    width: auto !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 14px !important;
    line-height: 1 !important;
    background-color: #111 !important; /* Force dark background */
    color: #fff !important; /* Force white text */
}

/* =========================================================
   ABSOLUTE PINNING OF FLOATING BUTTONS
   ========================================================= */
/* Pin WhatsApp */
html body .hm-whatsapp-float,
html body.woocommerce-checkout .hm-whatsapp-float {
    position: fixed !important;
    right: 15px !important;
    bottom: 20px !important;
    z-index: 2147483647 !important;
    transform: none !important;
    margin: 0 !important;
}

/* Pin Back to Top (must be directly above WhatsApp) */
html body #ast-scroll-top, 
html body .ast-scroll-top,
html body .hm-back-to-top {
    position: fixed !important;
    right: 20px !important;
    bottom: 85px !important; /* 20px (wa) + 50px (wa height) + 15px (gap) = 85px */
    z-index: 2147483646 !important;
    transform: none !important;
    margin: 0 !important;
}


/* =========================================================
   CHECKOUT TRUST PILLS WRAP FIX (MOBILE)
   ========================================================= */

/* Ensure the pills container allows wrapping */
.co-guarantee-pills {
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 8px !important;
    justify-content: center !important;
    width: 100% !important;
    margin-top: 15px !important;
}

/* Ensure individual pills don't force overflow */
.co-guarantee-pills .pill {
    flex: 1 1 auto !important;
    max-width: fit-content !important;
    white-space: nowrap !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 5px !important;
    padding: 8px 12px !important;
    border-radius: 20px !important;
    background: #fff !important;
    border: 1px solid #eaeaea !important;
    font-size: 12px !important;
    font-weight: 600 !important;
    color: #333 !important;
}

@media (max-width: 576px) {
    .co-guarantee-pills {
        gap: 6px !important;
    }
    .co-guarantee-pills .pill {
        flex: 1 1 45% !important; /* Forces a 2x2 or 2x3 grid approximately */
        max-width: 50% !important;
        font-size: 11px !important;
        padding: 6px 10px !important;
        white-space: normal !important; /* Allow long names to wrap if necessary */
        text-align: center !important;
        justify-content: center !important;
    }
}


/* =========================================================
   HEADER RESTORATION FIX
   ========================================================= */
.hm-header, .site-header, #ast-desktop-header {
    position: sticky !important;
    top: 0 !important;
    z-index: 9999 !important;
    width: 100% !important;
}
.hm-nav-menu > li > a {
    font-size: 16px !important; /* Made bigger as requested */
    padding: 0.8rem 1rem !important;
}
@media (max-width: 768px) {
    .hm-nav-menu > li > a {
        font-size: 18px !important;
    }
}

@media (max-width: 768px) {
}


/* =========================================================
   CART PAGE ORDER SUMMARY BUTTONS
   ========================================================= */
.cart-collaterals .cart_totals, 
.woocommerce-cart .cart-collaterals {
    width: 100% !important;
    max-width: 600px !important;
    margin: 0 auto !important;
    background: #f8fafc !important;
    padding: 25px !important;
    border-radius: 12px !important;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05) !important;
}

.wc-proceed-to-checkout {
    display: flex !important;
    flex-direction: column !important;
    gap: 12px !important;
    margin-top: 20px !important;
    padding: 0 !important;
}

.wc-proceed-to-checkout a.checkout-button,
.wc-proceed-to-checkout a.hm-whatsapp-checkout-btn,
.wc-proceed-to-checkout a.button {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 100% !important;
    height: 50px !important;
    border-radius: 8px !important;
    font-size: 16px !important;
    font-weight: 600 !important;
    text-align: center !important;
    margin: 0 !important;
}

.wc-proceed-to-checkout a.hm-whatsapp-checkout-btn {
    background: #25D366 !important;
    color: #fff !important;
}
.wc-proceed-to-checkout a.hm-whatsapp-checkout-btn:hover {
    background: #128C7E !important;
}


/* Make coupon text slightly smaller to match the new smaller height */
form.checkout_coupon input.input-text,
form.checkout_coupon button.button {
    font-size: 13px !important;
    padding: 0 12px !important;
}


.co-guarantee-pills {
    margin-top: 10px !important;
    margin-bottom: 20px !important;
}
.co-guarantee-pills .pill {
    padding: 6px 10px !important;
    font-size: 11px !important;
}


/* =========================================================
   WORDPRESS ADMIN BAR FIX FOR STICKY HEADER
   ========================================================= */
body.admin-bar .hm-header, 
body.admin-bar .site-header, 
body.admin-bar #ast-desktop-header {
    top: 32px !important;
}
@media screen and (max-width: 782px) {
    body.admin-bar .hm-header, 
    body.admin-bar .site-header, 
    body.admin-bar #ast-desktop-header {
        top: 46px !important;
    }
}


/* =========================================================
   STRICT SIDE-BY-SIDE COUPON (MOBILE)
   ========================================================= */
@media (max-width: 768px) {
    form.checkout_coupon, 
    .woocommerce form.checkout_coupon, 
    .woocommerce-checkout .checkout_coupon {
        display: flex !important;
        flex-direction: row !important;
        flex-wrap: nowrap !important; /* STRICTLY PREVENT STACKING */
        align-items: stretch !important;
        gap: 8px !important;
        padding: 10px !important;
    }
    form.checkout_coupon input.input-text,
    .woocommerce form.checkout_coupon input.input-text {
        width: 100% !important;
        min-width: 0 !important; /* Allow input to shrink if needed */
        font-size: 12px !important;
    }
    form.checkout_coupon button.button,
    .woocommerce form.checkout_coupon button.button {
        width: auto !important;
        min-width: 100px !important; /* Make button compact */
        padding: 0 10px !important;
        font-size: 12px !important;
        white-space: nowrap !important;
    }
}
@media (max-width: 768px) {
}


/* Removed conflicting button styles */


/* =========================================================
   AGGRESSIVE CART BUTTONS & SUMMARY WIDTH FIX
   ========================================================= */
/* Widen the order summary */
@media (min-width: 769px) {
    html body .woocommerce-cart .cart-collaterals,
    html body .woocommerce-cart .cart-collaterals .cart_totals {
        width: 100% !important;
        max-width: 550px !important; /* About 7cm-10cm depending on screen */
        flex: 0 0 550px !important;
    }
}

/* Fix the pill shape and text color of the buttons */
html body .woocommerce-cart .wc-proceed-to-checkout a.checkout-button,
html body .woocommerce-cart .wc-proceed-to-checkout a.hm-whatsapp-checkout-btn,
html body .woocommerce-cart .wc-proceed-to-checkout .button,
html body #order_review .button,
html body .woocommerce-checkout .place-order .button {
    border-radius: 8px !important; /* NO MORE PILLS */
    height: 50px !important;
    min-height: 50px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 16px !important;
    font-weight: 700 !important;
    text-transform: none !important;
    padding: 0 20px !important;
    width: 100% !important; /* Fill container */
    box-sizing: border-box !important;
    margin-bottom: 10px !important;
    line-height: 1 !important;
}

/* Specific WhatsApp Button Fix (Red text -> White text) */
html body .woocommerce-cart .wc-proceed-to-checkout a.hm-whatsapp-checkout-btn,
html body .wc-proceed-to-checkout a.hm-whatsapp-checkout-btn {
    background: #25D366 !important;
    color: #ffffff !important;
    text-shadow: none !important;
}
html body .woocommerce-cart .wc-proceed-to-checkout a.hm-whatsapp-checkout-btn * {
    color: #ffffff !important;
}

/* Standard Checkout Button Fix */
html body .woocommerce-cart .wc-proceed-to-checkout a.checkout-button {
    background: #111111 !important;
    color: #ffffff !important;
}

/* =========================================================
   AGGRESSIVE COUPON ROW FIX (SIDE-BY-SIDE ON MOBILE)
   ========================================================= */
html body form.checkout_coupon, 
html body .woocommerce form.checkout_coupon, 
html body .woocommerce-checkout .checkout_coupon {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    align-items: stretch !important;
    justify-content: space-between !important;
    gap: 8px !important;
    background: transparent !important;
    border: none !important;
    padding: 0 !important;
}

html body form.checkout_coupon p,
html body .woocommerce form.checkout_coupon p {
    margin: 0 !important;
    padding: 0 !important;
    display: flex !important;
}

/* Input container */
html body form.checkout_coupon p:first-of-type,
html body form.checkout_coupon p.form-row-first {
    flex: 1 1 auto !important;
    width: 100% !important;
}

/* Button container */
html body form.checkout_coupon p:last-of-type,
html body form.checkout_coupon p.form-row-last {
    flex: 0 0 auto !important;
    width: auto !important;
}

/* The actual input field */
html body form.checkout_coupon input.input-text {
    width: 100% !important;
    height: 42px !important;
    min-height: 42px !important;
    border-radius: 6px !important;
    border: 1px solid #ccc !important;
    font-size: 14px !important;
}

/* The actual button */
html body form.checkout_coupon button.button {
    height: 42px !important;
    min-height: 42px !important;
    border-radius: 6px !important; /* No pills */
    padding: 0 15px !important;
    white-space: nowrap !important;
    width: auto !important;
    font-size: 14px !important;
    background: #111 !important;
    color: #fff !important;
}
@media (max-width: 768px) {
}


/* =========================================================
   SINGLE PRODUCT PAGE FIXES (Huge Image & Title)
   ========================================================= */
/* Constrain Gallery Width */
@media (min-width: 769px) {
    html body.single-product .woocommerce-product-gallery {
        max-width: 450px !important;
        width: 45% !important;
        margin: 0 auto 20px !important;
    }
    html body.single-product .summary.entry-summary {
        width: 50% !important;
    }
}
/* Reduce Huge Title Size */
html body.single-product .product_title,
html body.single-product h1.product_title {
    font-size: 26px !important;
    line-height: 1.3 !important;
    font-weight: 700 !important;
    margin-bottom: 15px !important;
}

/* Hide the raw text dash if possible, or just style the range nicely */
html body ul.products li.product .price {
    font-size: 14px !important;
}

/* =========================================================
   CART & CHECKOUT BLOCKS/ASTRA EXTREME OVERRIDE
   ========================================================= */
/* Cart Summary Width */
html body .woocommerce-cart .cart-collaterals,
html body .woocommerce-cart .cart-collaterals .cart_totals,
html body .wc-block-cart__totals-wrapper,
html body .wc-block-cart .wc-block-components-main {
    max-width: 100% !important;
}
@media (min-width: 769px) {
    html body .woocommerce-cart .cart-collaterals,
    html body .wc-block-cart__totals-wrapper {
        width: 45% !important; /* Make it take up almost half the screen on desktop */
        max-width: 550px !important;
        flex: 1 1 550px !important;
    }
}

/* Buttons (Targeting both Classic & Block classes) */
html body .woocommerce-cart a.checkout-button,
html body .woocommerce-cart .wc-proceed-to-checkout > a,
html body .woocommerce-cart .wc-block-cart__submit-button,
html body .wc-block-components-button,
html body #order_review .button,
html body .woocommerce-checkout .place-order .button,
html body a.hm-whatsapp-checkout-btn,
html body button.hm-whatsapp-checkout-btn {
    border-radius: 8px !important; /* NO MORE PILLS */
    height: 52px !important;
    min-height: 52px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 16px !important;
    font-weight: 700 !important;
    padding: 0 20px !important;
    width: 100% !important;
    box-sizing: border-box !important;
    margin-bottom: 12px !important;
}

/* Explicitly fix the green WhatsApp button text color */
html body .woocommerce-cart a.hm-whatsapp-checkout-btn,
html body a.hm-whatsapp-checkout-btn {
    background-color: #25D366 !important;
    color: #ffffff !important;
    border: none !important;
}
html body a.hm-whatsapp-checkout-btn *,
html body a.hm-whatsapp-checkout-btn span {
    color: #ffffff !important;
}

/* =========================================================
   CHECKOUT COUPON FIELD - ABSOLUTE FORCE INLINE
   ========================================================= */
/* For WooCommerce Blocks and Classic */
html body form.checkout_coupon, 
html body .wc-block-components-totals-coupon,
html body .wc-block-components-totals-coupon__form,
html body .woocommerce-checkout .checkout_coupon {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    width: 100% !important;
    gap: 10px !important;
    align-items: center !important;
    clear: both !important;
}

/* Input */
html body form.checkout_coupon input.input-text,
html body .wc-block-components-totals-coupon__input {
    flex: 1 1 100% !important;
    width: 100% !important;
    height: 44px !important;
    min-height: 44px !important;
    border-radius: 6px !important;
}

/* Button */
html body form.checkout_coupon button.button,
html body .wc-block-components-totals-coupon__button {
    flex: 0 0 auto !important;
    width: auto !important;
    height: 44px !important;
    min-height: 44px !important;
    padding: 0 16px !important;
    white-space: nowrap !important;
    border-radius: 6px !important;
}

/* If the elements are wrapped in paragraphs */
html body form.checkout_coupon p {
    margin: 0 !important;
    padding: 0 !important;
    display: inline-flex !important;
}
html body form.checkout_coupon p:first-child { flex: 1 1 100% !important; }
html body form.checkout_coupon p:last-child { flex: 0 0 auto !important; }


/* =========================================================
   CUSTOM CART.PHP BUTTONS EXTREME FIX
   ========================================================= */
html body .woocommerce-cart a.hm-buy-now-btn,
html body .woocommerce-cart a.hm-wa-checkout {
    border-radius: 8px !important; /* NO MORE PILLS */
    height: 52px !important;
    min-height: 52px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 16px !important;
    font-weight: 700 !important;
    padding: 0 20px !important;
    width: 100% !important;
    box-sizing: border-box !important;
    margin-bottom: 12px !important;
    text-decoration: none !important;
    gap: 8px !important;
}

/* Specific Checkout Button styling */
html body .woocommerce-cart a.hm-buy-now-btn {
    background-color: #111111 !important;
    color: #ffffff !important;
}
html body .woocommerce-cart a.hm-buy-now-btn * {
    color: #ffffff !important;
}

/* Specific WhatsApp styling to fix RED text */
html body .woocommerce-cart a.hm-wa-checkout {
    background-color: #25D366 !important;
    color: #ffffff !important;
}
html body .woocommerce-cart a.hm-wa-checkout * {
    color: #ffffff !important;
}


/* =========================================================
   UNIVERSAL COUPON ROW FIX (BOMB-PROOF)
   ========================================================= */
html body [class*="checkout"] form[class*="coupon"],
html body [class*="checkout"] div[class*="coupon"] form,
html body .woocommerce-checkout form.checkout_coupon,
html body .woocommerce form.checkout_coupon,
html body form.checkout_coupon {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    width: 100% !important;
    max-width: 100% !important;
    gap: 8px !important;
    align-items: stretch !important;
    justify-content: space-between !important;
    clear: both !important;
    padding: 0 !important;
    border: none !important;
}

/* Ensure the input takes all available space */
html body [class*="checkout"] form[class*="coupon"] input[type="text"],
html body [class*="checkout"] div[class*="coupon"] form input[type="text"],
html body .woocommerce form.checkout_coupon input.input-text,
html body form.checkout_coupon input.input-text {
    flex: 1 1 auto !important;
    width: 100% !important;
    min-width: 0 !important; /* Prevents flex blowout */
    height: 46px !important;
    min-height: 46px !important;
    border-radius: 6px !important;
    margin: 0 !important;
    box-sizing: border-box !important;
}

/* Ensure the button is exactly wide enough for text and no more */
html body [class*="checkout"] form[class*="coupon"] button,
html body [class*="checkout"] form[class*="coupon"] input[type="submit"],
html body [class*="checkout"] div[class*="coupon"] form button,
html body .woocommerce form.checkout_coupon button.button,
html body form.checkout_coupon button.button {
    flex: 0 0 auto !important;
    width: auto !important;
    height: 46px !important;
    min-height: 46px !important;
    border-radius: 6px !important;
    padding: 0 16px !important;
    white-space: nowrap !important;
    margin: 0 !important;
    font-size: 14px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    box-sizing: border-box !important;
}

/* If wrapped in paragraph tags (WooCommerce default behavior) */
html body [class*="checkout"] form[class*="coupon"] p,
html body .woocommerce form.checkout_coupon p,
html body form.checkout_coupon p {
    display: flex !important;
    align-items: stretch !important;
    margin: 0 !important;
    padding: 0 !important;
}
html body [class*="checkout"] form[class*="coupon"] p:nth-child(1),
html body .woocommerce form.checkout_coupon p:nth-child(1),
html body form.checkout_coupon p:nth-child(1) {
    flex: 1 1 auto !important;
    width: 100% !important;
}
html body [class*="checkout"] form[class*="coupon"] p:nth-child(2),
html body .woocommerce form.checkout_coupon p:nth-child(2),
html body form.checkout_coupon p:nth-child(2) {
    flex: 0 0 auto !important;
    width: auto !important;
}

/* =========================================================
   NEAT PRODUCT CARD (REPLACED FROM OLD DESIGN)
   ========================================================= */
.np-card {
    background: transparent;
    text-align: center;
}

.np-image-wrap {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    background-color: #efefef;
    aspect-ratio: 4 / 5;
    margin-bottom: 15px;
}

.np-image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover !important;
    display: block;
}

/* Badge */
.np-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background-color: #894b2d; /* Brownish */
    color: #ffffff;
    font-size: 13px;
    font-weight: 700;
    padding: 5px 12px;
    border-radius: 20px;
    z-index: 10;
}

/* Icons Stack */
.np-actions {
    position: absolute;
    top: 12px;
    right: 12px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 10;
}

.np-action-btn {
    width: 38px;
    height: 38px;
    background: #ffffff !important;
    border: none;
    border-radius: 50%;
    display: flex !important;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0,0,0,0.08);
    cursor: pointer;
    color: #111 !important;
    transition: background 0.2s, color 0.2s;
    text-decoration: none !important;
    padding: 0;
}

.np-action-btn:hover {
    background: #111 !important;
    color: #fff !important;
}

.np-action-btn svg {
    width: 18px;
    height: 18px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.5;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.np-wishlist-wrapper .yith-wcwl-add-to-wishlist a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}
.np-wishlist-wrapper .yith-wcwl-add-to-wishlist a i {
    font-size: 16px;
    margin: 0;
}

/* Add to Cart Pill */
.np-add-to-cart-pill {
    position: absolute;
    bottom: 16px;
    left: 50%;
    transform: translate(-50%, 10px);
    width: 85%;
    background-color: #ffffff !important;
    color: #111111 !important;
    font-size: 15px;
    font-weight: 600;
    padding: 12px 0;
    border-radius: 30px;
    text-align: center;
    text-decoration: none !important;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    z-index: 10;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    display: block !important;
}

.np-card:hover .np-add-to-cart-pill {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, 0);
}

.np-add-to-cart-pill:hover {
    background-color: #111 !important;
    color: #fff !important;
}

/* Body */
.np-title {
    font-size: 16px;
    font-weight: 600;
    color: #111;
    margin: 0 0 8px 0;
    line-height: 1.3;
}
.np-title a {
    color: inherit;
    text-decoration: none;
}

.np-stars {
    color: #894b2d;
    font-size: 14px;
    margin-bottom: 8px;
    letter-spacing: 2px;
}

.np-price {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 15px;
    font-weight: 700;
}
.np-price ins {
    text-decoration: none;
    color: #d13239 !important;
    background: transparent !important;
}
.np-price del {
    color: #777;
    font-weight: 400;
    font-size: 14px;
}
.np-price span.amount {
    color: inherit !important;
}

/* Desktop vs Mobile display logic */
.np-mobile-only {
    display: none !important;
}

@media (max-width: 768px) {
    .np-desktop-only {
        display: none !important;
    }
    .np-mobile-only {
        display: flex !important;
    }
    .np-image-wrap {
        aspect-ratio: 1 / 1;
    }
    .np-title {
        font-size: 13px;
    }
    .np-price {
        font-size: 13px;
        gap: 4px;
    }
    .np-price del {
        font-size: 12px;
    }
    .np-action-btn {
        width: 32px;
        height: 32px;
    }
    .np-action-btn svg {
        width: 14px;
        height: 14px;
    }
}
