/* ==========================================================================
   HARINAMA STORE - Master Stylesheet (Exact Match to Reference Design)
   ========================================================================== */

@import './variables.css';

/* Global Reset & Base */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body,
button,
input,
select,
textarea,
.btn,
.form-control,
.form-select,
h1,
h2,
h3,
h4,
h5,
h6,
p,
span,
a,
label,
table,
th,
td,
.hn-serif,
.hn-display,
.hn-script,
.hn-brand-title {
  font-family: 'Work Sans', sans-serif !important;
  letter-spacing: -0.012em;
}

body {
  font-family: 'Work Sans', sans-serif !important;
  background-color: var(--hn-body-bg);
  color: var(--hn-text-primary);
  line-height: 1.6;
  overflow-x: clip;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

h1,
h2,
h3,
h4,
h5,
h6,
.hn-serif {
  color: var(--hn-navy);
  letter-spacing: -0.015em;
  font-weight: 700;
}

a {
  color: var(--hn-navy);
  text-decoration: none;
  transition: var(--hn-transition);
}

a:hover {
  color: var(--hn-gold);
}

/* --------------------------------------------------------------------------
   1. TOP ANNOUNCEMENT BAR
   -------------------------------------------------------------------------- */
.hn-topbar {
  background-color: var(--hn-navy-dark);
  color: #FFFFFF;
  font-size: 0.82rem;
  padding: 8px 16px;
  text-align: center;
  letter-spacing: 0.03em;
  font-weight: 500;
}

.hn-topbar .separator {
  margin: 0 10px;
  opacity: 0.5;
}

/* --------------------------------------------------------------------------
   2. GLOBAL HEADER & NAVBAR
   -------------------------------------------------------------------------- */
#hn-header-placeholder,
#cres-header-placeholder {
  display: contents;
}

.hn-header {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
  max-width: 100%;
  background-color: #FFFFFF;
  border: 1px solid transparent;
  border-bottom: 1px solid var(--hn-border-subtle);
  border-radius: 0px;
  box-shadow: 0 0 0 transparent;
  padding: 10px 0;
  z-index: 1050;
  box-sizing: border-box;
  transition: background-color 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

/* Floating Pill Navbar on Scroll (Desktop Only: min-width: 992px) */
@media (min-width: 992px) {
  .hn-header {
    padding: 12px 0;
    transition: 
      top 0.25s ease,
      width 0.25s ease,
      max-width 0.25s ease,
      padding 0.25s ease,
      border-radius 0.25s ease,
      background-color 0.25s ease,
      box-shadow 0.25s ease,
      border-color 0.25s ease;
  }

  .hn-header.scrolled {
    top: 12px;
    width: min(1280px, calc(100% - 32px));
    max-width: 1280px;
    background-color: rgba(255, 255, 255, 0.96);
    -webkit-backdrop-filter: blur(16px);
    backdrop-filter: blur(16px);
    border-color: rgba(220, 205, 185, 0.85);
    border-radius: 9999px;
    box-shadow: 
      0 10px 30px -4px rgba(28, 20, 10, 0.10),
      0 2px 8px -2px rgba(28, 20, 10, 0.05),
      0 0 0 1px rgba(255, 255, 255, 0.8) inset;
    padding: 6px 18px;
  }

  .hn-header .container {
    transition: padding 0.35s cubic-bezier(0.16, 1, 0.3, 1), max-width 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  }

  .hn-header.scrolled .container {
    padding-left: 6px;
    padding-right: 6px;
    max-width: 100%;
  }

  .hn-header .hn-brand-logo-wrap,
  .hn-header .hn-brand-title,
  .hn-header .hn-brand-tagline,
  .hn-header .hn-nav-link,
  .hn-header .hn-icon-btn,
  .hn-header .hn-header-account-btn {
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  }

  .hn-header.scrolled .hn-brand-logo-wrap {
    width: 34px;
    height: 34px;
  }

  .hn-header.scrolled .hn-brand-title {
    font-size: 1.15rem;
  }

  .hn-header.scrolled .hn-brand-tagline {
    display: block !important;
    font-size: 0.54rem;
    opacity: 0.95;
  }

  .hn-header.scrolled .hn-nav-link {
    padding: 6px 14px;
    font-size: 0.90rem;
  }

  .hn-header.scrolled .hn-icon-btn {
    width: 36px;
    height: 36px;
    font-size: 1.05rem;
  }

  .hn-header.scrolled .hn-header-account-btn {
    padding: 4px 12px 4px 8px;
    border-radius: 9999px;
  }
}

.hn-brand {
  display: inline-flex;
  align-items: center;
  gap: clamp(8px, 1.8vw, 12px);
  text-decoration: none;
  color: var(--hn-navy);
  flex-shrink: 0;
  min-width: 0;
}

.hn-brand-logo-wrap {
  width: clamp(34px, 4vw + 18px, 42px);
  height: clamp(34px, 4vw + 18px, 42px);
  border-radius: 50%;
  overflow: hidden;
  border: 1.5px solid var(--hn-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: var(--hn-transition);
  background: #FFFFFF;
}

.hn-brand:hover .hn-brand-logo-wrap {
  transform: scale(1.06);
}

.hn-brand-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hn-brand-logo-wrap.footer-logo {
  width: 36px;
  height: 36px;
  border-color: rgba(197, 155, 39, 0.8);
}

.hn-brand-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
}

.hn-brand-title {
  font-family: var(--hn-font-display);
  font-size: clamp(1rem, 3.8vw + 0.28rem, 1.48rem);
  font-weight: 700;
  color: var(--hn-navy);
  line-height: 1.15;
  letter-spacing: -0.012em;
  white-space: nowrap;
}

.hn-brand-tagline {
  font-size: 0.62rem;
  color: #8A640D;
  letter-spacing: 0.08em;
  font-family: 'Playfair Display', Georgia, serif;
  font-style: italic;
  font-weight: 600;
  line-height: 1.1;
  margin-top: 1px;
  display: block !important;
  white-space: nowrap;
}

.hn-nav-link {
  font-family: var(--hn-font-sans);
  color: var(--hn-navy);
  font-weight: 600;
  font-size: 0.92rem;
  letter-spacing: 0.01em;
  padding: 8px 14px;
  position: relative;
  transition: color 0.25s ease;
}

.hn-nav-link::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 14px;
  right: 14px;
  height: 2px;
  background-color: var(--hn-gold);
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.28s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.hn-nav-link:hover,
.hn-nav-link.active {
  color: var(--hn-gold);
}

.hn-nav-link:hover::after,
.hn-nav-link.active::after {
  transform: scaleX(1);
}

.hn-icon-btn {
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--hn-navy);
  font-size: 1.15rem;
  border-radius: 50%;
  position: relative;
  transition: transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1), background-color 0.2s ease, color 0.2s ease;
}

.hn-icon-btn:hover {
  background-color: var(--hn-navy-subtle);
  color: var(--hn-navy);
  transform: translateY(-2px) scale(1.06);
}

.hn-icon-btn:active {
  transform: translateY(0) scale(0.92);
}

.hn-badge-pill {
  position: absolute;
  top: 2px;
  right: 2px;
  background-color: var(--hn-gold);
  color: #FFFFFF;
  font-size: 0.65rem;
  font-weight: 700;
  width: 17px;
  height: 17px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease;
}

@keyframes hnBadgePop {
  0% { transform: scale(1); }
  50% { transform: scale(1.35); }
  100% { transform: scale(1); }
}

.hn-badge-pill.hn-badge-bounce {
  animation: hnBadgePop 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* Modern Animated Hamburger Menu Button */
.hn-hamburger-btn {
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #FFFFFF;
  border: 1.5px solid var(--hn-border);
  border-radius: 50%;
  padding: 0;
  cursor: pointer;
  position: relative;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  outline: none;
  pointer-events: auto !important;
  touch-action: manipulation !important;
  user-select: none !important;
  -webkit-tap-highlight-color: transparent;
}

.hn-hamburger-btn:hover {
  background-color: var(--hn-gold-light);
  border-color: var(--hn-gold);
  transform: translateY(-1px);
}

.hn-hamburger-btn:active {
  transform: scale(0.93);
}

.hn-hamburger-btn:focus-visible {
  outline: none;
}

.hn-hamburger-lines {
  width: 20px;
  height: 16px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-end;
  position: relative;
  pointer-events: none !important;
}

.hn-hamburger-line {
  display: block;
  height: 2.2px;
  background-color: var(--hn-navy);
  border-radius: 4px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  transform-origin: center;
  pointer-events: none !important;
}

.hn-hamburger-line.line-1 {
  width: 20px;
}

.hn-hamburger-line.line-2 {
  width: 14px;
  transition: width 0.2s ease, opacity 0.2s ease, transform 0.2s ease;
}

.hn-hamburger-line.line-3 {
  width: 20px;
}

/* Dynamic Hover State - Middle Bar Expands */
.hn-hamburger-btn:hover .hn-hamburger-line.line-2 {
  width: 20px;
}

.hn-hamburger-btn:hover .hn-hamburger-line {
  background-color: var(--hn-gold-hover);
}

/* Active / Open State - Smooth Morphing into Close "X" */
.hn-hamburger-btn[aria-expanded="true"],
.hn-hamburger-btn:not(.collapsed) {
  background-color: var(--hn-gold-light);
  border-color: var(--hn-gold);
}

.hn-hamburger-btn[aria-expanded="true"] .hn-hamburger-lines,
.hn-hamburger-btn:not(.collapsed) .hn-hamburger-lines {
  align-items: center;
}

.hn-hamburger-btn[aria-expanded="true"] .hn-hamburger-line,
.hn-hamburger-btn:not(.collapsed) .hn-hamburger-line {
  background-color: var(--hn-gold);
}

.hn-hamburger-btn[aria-expanded="true"] .hn-hamburger-line.line-1,
.hn-hamburger-btn:not(.collapsed) .hn-hamburger-line.line-1 {
  transform: translateY(6.9px) rotate(45deg);
}

.hn-hamburger-btn[aria-expanded="true"] .hn-hamburger-line.line-2,
.hn-hamburger-btn:not(.collapsed) .hn-hamburger-line.line-2 {
  opacity: 0;
  transform: scaleX(0);
}

.hn-hamburger-btn[aria-expanded="true"] .hn-hamburger-line.line-3,
.hn-hamburger-btn:not(.collapsed) .hn-hamburger-line.line-3 {
  transform: translateY(-6.9px) rotate(-45deg);
}

/* --------------------------------------------------------------------------
   3. HERO SECTION (Panoramic Devotional Design)
   -------------------------------------------------------------------------- */
.hn-hero-section {
  position: relative;
  background-color: #FAF6EE;
  background-image: url('/assets/images/desktop_hero_banner.jpg');
  background-repeat: no-repeat;
  background-position: right center;
  background-size: cover;
  padding: 68px 0 52px;
  border-bottom: 1px solid rgba(197, 155, 39, 0.18);
  overflow: hidden;
  min-height: 560px;
  display: flex;
  align-items: center;
}

.hn-hero-section::before {
  display: none;
}

.hn-hero-bg-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, rgba(254, 250, 240, 0.98) 0%, rgba(254, 250, 240, 0.94) 38%, rgba(254, 250, 240, 0.45) 58%, rgba(254, 250, 240, 0.0) 80%);
  pointer-events: none;
  z-index: 1;
}

.min-vh-hero {
  min-height: 480px;
}



/* Eyebrow */
.hn-hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  color: #8C7B65;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.hn-eyebrow-dot {
  width: 6px;
  height: 6px;
  background: #C59B27;
  border-radius: 50%;
  display: inline-block;
  animation: hnPulse 2s infinite;
}

.hn-eyebrow-text {
  letter-spacing: 0.16em;
}

.hn-badge-pulse {
  width: 7px;
  height: 7px;
  background: #C59B27;
  border-radius: 50%;
  display: inline-block;
  box-shadow: 0 0 8px rgba(197, 155, 39, 0.8);
  animation: hnPulse 2s infinite;
}

@keyframes hnPulse {
  0% {
    transform: scale(0.95);
    opacity: 0.6;
  }
  70% {
    transform: scale(1);
    opacity: 1;
  }
  100% {
    transform: scale(0.95);
    opacity: 0.6;
  }
}

/* --------------------------------------------------------------------------
   3. HERO SECTION ANIMATIONS & TRANSITIONS
   -------------------------------------------------------------------------- */
@keyframes hnHeroTitleIn {
  0% {
    opacity: 0;
    transform: translateY(28px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes hnHeroFadeUp {
  0% {
    opacity: 0;
    transform: translateY(22px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.hn-hero-title {
  font-family: 'Playfair Display', 'Cinzel', serif;
  font-size: clamp(2.4rem, 4.4vw, 3.8rem);
  font-weight: 800;
  line-height: 1.12;
  margin-bottom: 18px;
  letter-spacing: -0.015em;
  animation: hnHeroTitleIn 0.85s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.hn-title-carry {
  color: #0B2545;
  font-weight: 800;
}

.hn-title-accent {
  color: #C59B27;
  font-weight: 800;
  display: inline-block;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.hn-title-accent:hover {
  transform: scale(1.03);
}

.hn-title-wherever {
  color: #0B2545;
  font-weight: 800;
}

.hn-hero-desc {
  font-size: 1.05rem;
  color: #556070;
  max-width: 490px;
  margin-bottom: 24px;
  line-height: 1.6;
  animation: hnHeroFadeUp 0.85s cubic-bezier(0.16, 1, 0.3, 1) 0.16s both;
}

.hero-content-col .d-flex {
  animation: hnHeroFadeUp 0.85s cubic-bezier(0.16, 1, 0.3, 1) 0.28s both;
}

/* 4 Trust Badges Horizontal Bar (Bottom-Left) */
.hn-hero-trust-bar {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 24px;
  flex-wrap: wrap;
  animation: hnHeroFadeUp 0.85s cubic-bezier(0.16, 1, 0.3, 1) 0.36s both;
}

.hn-trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 4px;
}

.hn-trust-icon {
  font-size: 1.35rem;
  line-height: 1;
  color: #B58A32;
}

.hn-trust-label {
  font-size: 0.72rem;
  font-weight: 700;
  color: #4A5568;
  line-height: 1.2;
}

.hn-trust-divider {
  width: 1px;
  height: 28px;
  background: rgba(197, 155, 39, 0.3);
}

/* Bottom-Right Floating Glassmorphic Devotional Card */
.hn-hero-devotional-pill {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: rgba(255, 252, 245, 0.88);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(212, 175, 55, 0.4);
  border-radius: 18px;
  padding: 12px 24px 10px;
  box-shadow: 0 10px 30px rgba(11, 37, 69, 0.08), 0 2px 8px rgba(197, 155, 39, 0.12);
  margin-top: auto;
  align-self: flex-end;
  animation: hnHeroFadeUp 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.3s both;
}

.hn-pill-nav-row {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 6px;
}

.hn-pill-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  text-decoration: none !important;
  color: #334155;
  transition: transform 0.2s ease, color 0.2s ease;
}

.hn-pill-link:hover {
  transform: translateY(-2px);
  color: #B58A32;
}

.hn-pill-icon {
  font-size: 1.25rem;
  line-height: 1;
}

.hn-pill-text {
  font-size: 0.72rem;
  font-weight: 700;
  color: #1E293B;
}

.hn-pill-sep {
  width: 1px;
  height: 20px;
  background: rgba(197, 155, 39, 0.35);
}

.hn-pill-tagline {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: #8C7B65;
  text-transform: uppercase;
  border-top: 1px solid rgba(197, 155, 39, 0.2);
  padding-top: 6px;
  width: 100%;
  text-align: center;
}



.hn-btn-gold,
button.hn-btn-gold,
a.hn-btn-gold,
.btn.hn-btn-gold {
  background-color: var(--hn-gold, #C59B27) !important;
  background: var(--hn-gold, #C59B27) !important;
  color: #FFFFFF !important;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 10px 22px;
  border-radius: var(--hn-radius-sm, 8px);
  border: 1px solid var(--hn-gold, #C59B27) !important;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-decoration: none !important;
  box-shadow: 0 2px 6px rgba(197, 155, 39, 0.22);
  transition: transform 0.25s cubic-bezier(0.2, 0.8, 0.2, 1), background-color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.hn-btn-gold:hover,
button.hn-btn-gold:hover,
a.hn-btn-gold:hover,
.btn.hn-btn-gold:hover {
  background-color: var(--hn-gold-hover, #A67E14) !important;
  background: var(--hn-gold-hover, #A67E14) !important;
  border-color: var(--hn-gold-hover, #A67E14) !important;
  color: #FFFFFF !important;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(197, 155, 39, 0.35);
}

.hn-btn-gold:active,
button.hn-btn-gold:active,
a.hn-btn-gold:active,
.btn.hn-btn-gold:active {
  transform: translateY(1px) scale(0.98);
}

.text-navy {
  color: var(--hn-navy, #0B2545) !important;
}

.hn-btn-gold i.bi-arrow-right,
.hn-btn-gold i.bi-arrow-right-short {
  display: inline-block;
  transition: transform 0.25s ease;
}

.hn-btn-gold:hover i.bi-arrow-right,
.hn-btn-gold:hover i.bi-arrow-right-short {
  transform: translateX(4px);
}

.hn-btn-outline-dark {
  background-color: #FFFFFF;
  color: var(--hn-navy) !important;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 12px 24px;
  border-radius: var(--hn-radius-sm);
  border: 1.5px solid var(--hn-navy);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: transform 0.25s cubic-bezier(0.2, 0.8, 0.2, 1), background-color 0.2s ease, color 0.2s ease;
}

.hn-btn-outline-dark:hover {
  background-color: var(--hn-navy);
  color: #FFFFFF !important;
  transform: translateY(-2px);
}

.hn-btn-outline-dark:active {
  transform: translateY(1px) scale(0.98);
}

/* Sacred Quote Card */
.hn-hero-quote-card {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid var(--hn-gold-border);
  border-left: 3.5px solid var(--hn-gold);
  border-radius: var(--hn-radius-sm);
  padding: 12px 16px;
  max-width: 480px;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), border-left-color 0.3s ease;
  animation: hnHeroFadeUp 0.85s cubic-bezier(0.16, 1, 0.3, 1) 0.44s both;
}

.hn-hero-quote-card:hover {
  transform: translateX(6px) translateY(-2px);
  border-left-color: var(--hn-gold-hover);
}

.hn-quote-icon {
  font-size: 1.4rem;
  line-height: 1;
  color: var(--hn-gold);
  opacity: 0.9;
  display: inline-block;
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.hn-hero-quote-card:hover .hn-quote-icon {
  transform: scale(1.2) rotate(-8deg);
}

.hn-quote-verse {
  font-family: var(--hn-font-serif);
  font-style: italic;
  font-size: 1.05rem;
  color: var(--hn-navy);
  font-weight: 600;
}

.hn-quote-sub {
  font-size: 0.76rem;
  color: var(--hn-text-muted);
  display: block;
  margin-top: 2px;
}

/* Devotee Social Proof Strip */
.hn-hero-trust {
  display: flex;
  align-items: center;
  gap: 12px;
  animation: hnHeroFadeUp 0.85s cubic-bezier(0.16, 1, 0.3, 1) 0.56s both;
}

.hn-trust-avatars {
  display: flex;
  align-items: center;
}

.hn-avatar-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #FFFFFF;
  border: 2px solid var(--hn-cream);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  margin-right: -8px;
  position: relative;
  transition: transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.hn-avatar-icon:hover {
  transform: translateY(-4px) scale(1.2);
  z-index: 5;
}

.hn-trust-caption {
  font-size: 0.78rem;
  color: var(--hn-text-secondary);
  display: block;
}

/* Hero Showcase Image & Floating Badges */
.hn-hero-image-wrap {
  position: relative;
  border-radius: var(--hn-radius-lg);
  overflow: visible;
  padding: 6px;
  background: #FFFFFF;
  border: 1px solid var(--hn-gold-border);
  transition: border-color 0.4s ease, transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  animation: hnHeroImageIn 0.95s cubic-bezier(0.16, 1, 0.3, 1) 0.2s both;
}

.hn-hero-image-wrap:hover {
  border-color: var(--hn-gold);
  transform: translateY(-4px);
}

.hn-hero-img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: calc(var(--hn-radius-lg) - 4px);
  display: block;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.hn-hero-image-wrap:hover .hn-hero-img {
  transform: scale(1.025);
}

@keyframes hnFloatBadge {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-5px);
  }
}

.hn-floating-badge {
  position: absolute;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(197, 155, 39, 0.35);
  border-radius: var(--hn-radius-md);
  padding: 8px 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 2;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.25s ease;
}

.hn-floating-badge.top-badge {
  top: 18px;
  right: 18px;
  animation: hnBadgeEnterTop 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.65s both, hnFloatBadge 4.5s ease-in-out 1.45s infinite;
}

.hn-floating-badge.bottom-badge {
  bottom: 20px;
  left: 20px;
  animation: hnBadgeEnterBottom 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.8s both, hnFloatBadge 5.2s ease-in-out 1.6s infinite;
}

.hn-floating-badge:hover {
  animation-play-state: paused;
  transform: translateY(-4px) scale(1.03);
  border-color: var(--hn-gold);
}

.badge-icon-wrap {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--hn-green-light);
  color: var(--hn-green);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.hn-floating-badge:hover .badge-icon-wrap {
  transform: scale(1.15) rotate(8deg);
}

.badge-icon-wrap.gold-icon {
  background: var(--hn-gold-light);
  color: var(--hn-gold);
}

.badge-title {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--hn-navy);
  line-height: 1.2;
}

.badge-sub {
  font-size: 0.7rem;
  color: var(--hn-text-secondary);
}

/* Hero Benefits 3-Strip Keyframe & Transitions */
@keyframes hnBenefitsEntrance {
  0% {
    opacity: 0;
    transform: translateY(28px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes hnIconBreathe {
  0%, 100% {
    transform: translateY(0) scale(1);
  }
  50% {
    transform: translateY(-4px) scale(1.05);
  }
}

.hn-hero-benefits {
  background: #FFFFFF;
  border: 1px solid var(--hn-border);
  border-radius: var(--hn-radius-md);
  padding: 24px 20px;
  margin-top: 40px;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.3s ease;
  animation: hnBenefitsEntrance 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.65s both;
}

.hn-hero-benefits:hover {
  border-color: var(--hn-gold-border);
  transform: translateY(-3px);
}

.hn-benefit-col {
  text-align: center;
  padding: 16px 20px;
  position: relative;
  border-radius: var(--hn-radius-sm);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), background-color 0.25s ease;
  cursor: default;
}

.hn-benefit-col:hover {
  transform: translateY(-4px);
  background-color: #FAF6ED;
}

.hn-benefit-col:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 15%;
  height: 70%;
  width: 1px;
  background-color: var(--hn-border);
  transition: background-color 0.3s ease;
}

.hn-hero-benefits:hover .hn-benefit-col:not(:last-child)::after {
  background-color: var(--hn-gold-border);
}

.hn-benefit-icon {
  font-size: 1.65rem;
  color: var(--hn-gold);
  margin-bottom: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--hn-gold-light);
  border: 1px solid var(--hn-gold-border);
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
  animation: hnIconBreathe 4.5s ease-in-out infinite;
}

.hn-benefit-col:nth-child(1) .hn-benefit-icon {
  animation-delay: 0s;
}

.hn-benefit-col:nth-child(2) .hn-benefit-icon {
  animation-delay: 0.9s;
}

.hn-benefit-col:nth-child(3) .hn-benefit-icon {
  animation-delay: 1.8s;
}

.hn-benefit-col:hover .hn-benefit-icon {
  animation-play-state: paused;
  transform: scale(1.18) rotate(8deg);
  background-color: var(--hn-gold);
  border-color: var(--hn-gold);
  color: #FFFFFF;
}

.hn-benefit-title {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--hn-navy);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 6px;
  transition: color 0.25s ease, letter-spacing 0.25s ease;
}

.hn-benefit-col:hover .hn-benefit-title {
  color: var(--hn-gold-hover);
  letter-spacing: 0.1em;
}

.hn-benefit-desc {
  font-size: 0.85rem;
  color: var(--hn-text-secondary);
  line-height: 1.45;
  margin: 0;
  transition: color 0.25s ease;
}

.hn-benefit-col:hover .hn-benefit-desc {
  color: var(--hn-navy);
}

/* --------------------------------------------------------------------------
   4. SECTION HEADERS
   -------------------------------------------------------------------------- */
.hn-section-header {
  text-align: center;
  margin-bottom: 36px;
}

.hn-section-title {
  font-family: var(--hn-font-serif);
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--hn-navy);
  letter-spacing: -0.015em;
  margin-bottom: 6px;
}

.hn-section-subtitle {
  font-size: 1.02rem;
  color: var(--hn-gold-hover);
  font-style: italic;
  font-family: var(--hn-font-script);
  letter-spacing: 0.02em;
}

/* --------------------------------------------------------------------------
   5. PRODUCT CARDS (Exact Reference Proportions)
   -------------------------------------------------------------------------- */
.hn-product-card {
  background: #FFFFFF;
  border: 1px solid var(--hn-border);
  border-radius: var(--hn-radius-sm);
  padding: 14px;
  display: flex;
  flex-direction: column;
  height: 100%;
  position: relative;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.3s ease;
}

.hn-product-card:hover {
  border-color: var(--hn-gold);
  transform: translateY(-4px);
}

.hn-card-img-box {
  background-color: var(--hn-cream);
  border-radius: var(--hn-radius-sm);
  height: 190px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin-bottom: 12px;
  position: relative;
}

.hn-card-img-box img {
  max-width: 90%;
  max-height: 90%;
  object-fit: contain;
  transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}

.hn-product-card:hover .hn-card-img-box img {
  transform: scale(1.08);
}

.hn-card-wishlist {
  position: absolute;
  top: 10px;
  right: 10px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid var(--hn-border);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--hn-text-secondary);
  font-size: 0.9rem;
  cursor: pointer;
  z-index: 2;
  transition: transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1), color 0.2s ease, border-color 0.2s ease, background-color 0.2s ease;
}

.hn-card-wishlist:hover {
  color: var(--hn-red);
  border-color: var(--hn-red);
  background: #FFFFFF;
  transform: scale(1.15);
}

.hn-card-wishlist:active {
  transform: scale(0.9);
}

@keyframes hnHeartPop {
  0% { transform: scale(1); }
  50% { transform: scale(1.35); }
  100% { transform: scale(1); }
}

.hn-card-wishlist.active i {
  animation: hnHeartPop 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* --------------------------------------------------------------------------
   SKELETON LOADING SHIMMER ANIMATION
   -------------------------------------------------------------------------- */
.hn-skeleton-card {
  background: #FFFFFF;
  border: 1px solid var(--hn-border, #EAE5D9);
  border-radius: var(--hn-radius-sm, 8px);
  padding: 14px;
  display: flex;
  flex-direction: column;
  height: 100%;
  position: relative;
  overflow: hidden;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.02);
}

.hn-skeleton {
  background: linear-gradient(90deg, #F0ECE1 0%, #FAF7F0 50%, #F0ECE1 100%);
  background-size: 200% 100%;
  animation: hnSkeletonShimmer 1.5s infinite ease-in-out;
  border-radius: 6px;
}

@keyframes hnSkeletonShimmer {
  0% {
    background-position: 200% 0;
  }
  100% {
    background-position: -200% 0;
  }
}

.hn-skeleton-img {
  height: 190px;
  width: 100%;
  border-radius: var(--hn-radius-sm, 8px);
  margin-bottom: 12px;
}

.hn-skeleton-title {
  height: 16px;
  width: 85%;
  margin-bottom: 8px;
}

.hn-skeleton-title-short {
  height: 14px;
  width: 60%;
  margin-bottom: 10px;
}

.hn-skeleton-price {
  height: 18px;
  width: 45%;
  margin-bottom: 10px;
}

.hn-skeleton-rating {
  height: 12px;
  width: 65%;
  margin-bottom: 14px;
}

.hn-skeleton-btn {
  height: 36px;
  width: 100%;
  border-radius: 6px;
  margin-top: auto;
}

.hn-card-title {
  font-family: var(--hn-font-sans);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--hn-navy);
  letter-spacing: -0.01em;
  margin-bottom: 4px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.hn-card-price {
  font-family: var(--hn-font-numbers);
  font-size: 1.08rem;
  font-weight: 700;
  color: var(--hn-navy);
  letter-spacing: -0.01em;
  margin-bottom: 4px;
  font-variant-numeric: tabular-nums;
}

.hn-card-old-price {
  font-family: var(--hn-font-numbers);
  font-size: 0.85rem;
  color: var(--hn-text-muted);
  text-decoration: line-through;
  margin-left: 6px;
  font-weight: 500;
}

.hn-card-rating {
  font-family: var(--hn-font-sans);
  font-size: 0.8rem;
  color: var(--hn-yellow);
  display: flex;
  align-items: center;
  gap: 3px;
  margin-bottom: 12px;
}

.hn-card-rating-count {
  color: var(--hn-text-muted);
  font-size: 0.75rem;
  font-weight: 500;
  margin-left: 3px;
}

.hn-btn-card-add {
  font-family: var(--hn-font-sans);
  background-color: var(--hn-gold);
  color: #FFFFFF;
  border: none;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  padding: 8px 12px;
  border-radius: var(--hn-radius-sm);
  width: 100%;
  margin-top: auto;
  transition: var(--hn-transition);
}

.hn-btn-card-add:hover {
  background-color: var(--hn-gold-hover);
  color: #FFFFFF;
}

/* --------------------------------------------------------------------------
   6. PROMOTIONAL MAHA-MANTRA SECTION (Exact Reference)
   -------------------------------------------------------------------------- */
.hn-promo-banner {
  background-color: #FFFFFF;
  border: 1px solid var(--hn-border);
  border-radius: var(--hn-radius-md);
  overflow: hidden;
  transition: border-color 0.3s ease;
}

.hn-promo-banner:hover {
  border-color: var(--hn-gold);
}

.hn-promo-img-wrap {
  height: 100%;
  min-height: 280px;
  overflow: hidden;
}

.hn-promo-img,
.hn-promo-video-player {
  width: 100%;
  height: 100%;
  min-height: 280px;
  object-fit: cover;
  display: block;
  border: none;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.hn-promo-banner:hover .hn-promo-img {
  transform: scale(1.04);
}

.hn-promo-content {
  padding: 32px 28px;
}

.hn-promo-sloka-wrap {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 2px;
}

.hn-promo-title,
.hn-promo-subtitle,
.hn-promo-desc {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.35rem;
  font-weight: 700;
  color: #0B2545;
  line-height: 1.6;
  margin: 0;
  padding: 0;
  font-style: italic;
  letter-spacing: 0.01em;
}

.hn-mantra-box {
  background-color: var(--hn-cream);
  border: 1px solid var(--hn-gold-border);
  border-radius: var(--hn-radius-sm);
  padding: 24px 20px;
  text-align: center;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.hn-mantra-box:hover {
  transform: translateY(-2px);
  border-color: var(--hn-gold);
}

.hn-mantra-verse {
  font-family: var(--hn-font-script);
  font-size: 1.22rem;
  font-weight: 600;
  color: var(--hn-navy);
  line-height: 1.8;
  letter-spacing: 0.02em;
}

.hn-mantra-chant {
  font-family: var(--hn-font-display);
  font-style: normal;
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--hn-gold);
  letter-spacing: 0.05em;
  margin-top: 14px;
  text-transform: uppercase;
}

/* --------------------------------------------------------------------------
   7. WHY HARINAMA STORE SECTION (Ultra-Premium Refined UI)
   -------------------------------------------------------------------------- */
.hn-why-section {
  background: linear-gradient(180deg, #FFFDF8 0%, #FAF5EA 100%);
  padding: 64px 0 54px;
  border-top: 1px solid rgba(197, 155, 39, 0.15);
  border-bottom: 1px solid rgba(197, 155, 39, 0.15);
  position: relative;
  overflow: hidden;
}

.hn-why-card {
  text-align: center;
  padding: 24px 16px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.4);
  border: 1px solid transparent;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.hn-why-card:hover {
  transform: translateY(-5px);
  background: #FFFFFF;
  border-color: rgba(197, 155, 39, 0.3);
  box-shadow: 0 12px 30px rgba(11, 37, 69, 0.05);
}

.hn-why-circle {
  width: 76px;
  height: 76px;
  border-radius: 50%;
  background: #FFFFFF;
  border: 1.5px solid rgba(197, 155, 39, 0.45);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.85rem;
  color: var(--hn-gold);
  margin-bottom: 20px;
  box-shadow: 0 4px 16px rgba(197, 155, 39, 0.08);
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), border-color 0.3s ease, background-color 0.3s ease, box-shadow 0.3s ease;
}

.hn-why-card:hover .hn-why-circle {
  transform: scale(1.12) rotate(6deg);
  border-color: var(--hn-gold);
  background: #FFFDF5;
  box-shadow: 0 8px 24px rgba(197, 155, 39, 0.2);
}

.hn-why-title {
  font-family: var(--hn-font-sans);
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--hn-navy);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.hn-why-text {
  font-size: 0.9rem;
  color: var(--hn-text-secondary);
  line-height: 1.6;
  max-width: 280px;
  margin: 0 auto;
}

.hn-why-quote-wrap {
  text-align: center;
  margin-top: 42px;
  position: relative;
  padding-top: 24px;
}

.hn-why-quote-wrap::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--hn-gold), transparent);
}

.hn-why-quote {
  font-family: 'Playfair Display', Georgia, serif;
  font-style: italic;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--hn-navy);
  letter-spacing: -0.01em;
  line-height: 1.4;
  text-shadow: 0 1px 2px rgba(0,0,0,0.02);
}

/* --------------------------------------------------------------------------
   8. TAKE KRISHNA WITH YOU (Lifestyle 5-Grid)
   -------------------------------------------------------------------------- */
.hn-lifestyle-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}

.hn-lifestyle-item {
  border-radius: var(--hn-radius-sm);
  overflow: hidden;
  height: 230px;
  background-color: #FFFFFF;
  border: 1px solid var(--hn-border);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.3s ease;
}

.hn-lifestyle-item:hover {
  transform: translateY(-4px);
  border-color: var(--hn-gold);
}

.hn-lifestyle-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.hn-lifestyle-item:hover img {
  transform: scale(1.08);
}

/* --------------------------------------------------------------------------
   9. GIFT SECTION (2 Large Cards)
   -------------------------------------------------------------------------- */
.hn-gift-card {
  background: #FFFFFF;
  border: 1px solid var(--hn-border);
  border-radius: var(--hn-radius-md);
  padding: 20px;
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.3s ease;
}

.hn-gift-card:hover {
  transform: translateY(-4px);
  border-color: var(--hn-gold);
}

.hn-gift-img-box {
  background-color: var(--hn-cream);
  border-radius: var(--hn-radius-sm);
  height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin-bottom: 16px;
}

.hn-gift-img-box img {
  max-width: 95%;
  max-height: 95%;
  object-fit: contain;
  transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}

.hn-gift-card:hover .hn-gift-img-box img {
  transform: scale(1.06);
}

.hn-gift-title {
  font-family: var(--hn-font-serif);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--hn-navy);
  margin-bottom: 8px;
}

.hn-gift-price-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}

.hn-gift-price {
  font-size: 1.45rem;
  font-weight: 700;
  color: var(--hn-navy);
}

.hn-gift-old-price {
  font-size: 1rem;
  color: var(--hn-text-muted);
  text-decoration: line-through;
}

.hn-gift-badge {
  background-color: var(--hn-gold-light);
  color: var(--hn-gold-hover);
  border: 1px solid var(--hn-gold-border);
  font-size: 0.78rem;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: var(--hn-radius-sm);
}

/* --------------------------------------------------------------------------
   10. SERVICE / TRUST BAR
   -------------------------------------------------------------------------- */
.hn-service-bar {
  background: #FFFFFF;
  border-top: 1px solid var(--hn-border);
  border-bottom: 1px solid var(--hn-border);
  padding: 24px 0;
}

.hn-service-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: var(--hn-navy);
  font-weight: 600;
  font-size: 0.92rem;
  transition: transform 0.25s ease, color 0.2s ease;
}

.hn-service-item:hover {
  transform: translateY(-2px);
  color: var(--hn-gold);
}

.hn-service-item i {
  font-size: 1.4rem;
  color: var(--hn-gold);
  display: inline-block;
  transition: transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.hn-service-item:hover i {
  transform: scale(1.2);
}

/* --------------------------------------------------------------------------
   11. BRAND STORY / PURPOSE SECTION
   -------------------------------------------------------------------------- */
.hn-story-section {
  background-color: var(--hn-cream);
  padding: 60px 0;
  border-bottom: 1px solid var(--hn-border);
}

.hn-story-title {
  font-family: var(--hn-font-serif);
  font-size: 2.1rem;
  font-weight: 600;
  color: var(--hn-navy);
  margin-bottom: 14px;
}

.hn-story-desc {
  font-size: 0.98rem;
  color: var(--hn-text-secondary);
  line-height: 1.65;
  margin-bottom: 24px;
  max-width: 500px;
}

.hn-story-quote {
  font-family: var(--hn-font-serif);
  font-style: italic;
  font-size: 1.3rem;
  color: var(--hn-navy);
  margin-top: 20px;
  text-align: center;
}

/* --------------------------------------------------------------------------
   12. FOOTER (Exact Reference)
   -------------------------------------------------------------------------- */
.hn-footer {
  background-color: var(--hn-navy-dark);
  color: #FFFFFF;
  padding: 50px 0 20px;
}

.hn-footer a {
  color: #D1D8E0;
  font-size: 0.88rem;
  display: block;
  margin-bottom: 8px;
}

.hn-footer a:hover {
  color: var(--hn-gold);
}

.hn-footer-title {
  font-family: var(--hn-font-serif);
  font-size: 1.05rem;
  font-weight: 600;
  color: #FFFFFF;
  margin-bottom: 16px;
  letter-spacing: 0.04em;
}

.hn-footer-desc {
  color: #9EABBA;
  font-size: 0.86rem;
  line-height: 1.5;
  margin-bottom: 20px;
  max-width: 320px;
}

.hn-footer-social {
  display: flex;
  gap: 12px;
}

.hn-footer-social a {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #FFFFFF;
  margin-bottom: 0;
  transition: var(--hn-transition);
}

.hn-footer-social a:hover {
  background-color: var(--hn-gold);
  color: #FFFFFF;
}

.hn-footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  margin-top: 36px;
  padding-top: 18px;
  font-size: 0.8rem;
  color: #8C99A8;
  text-align: center;
}

/* --------------------------------------------------------------------------
   13. SHOP PAGE & SIDEBAR FILTERS
   -------------------------------------------------------------------------- */
.hn-shop-sidebar {
  background: #FFFFFF;
  border: 1px solid var(--hn-border);
  border-radius: var(--hn-radius-sm);
  padding: 20px;
}

.hn-filter-title {
  font-family: var(--hn-font-serif);
  font-size: 0.98rem;
  font-weight: 600;
  color: var(--hn-navy);
  margin-bottom: 12px;
  padding-bottom: 6px;
  border-bottom: 1px solid var(--hn-border-subtle);
}

.hn-filter-link {
  display: block;
  font-size: 0.88rem;
  color: var(--hn-text-secondary);
  padding: 5px 0;
}

.hn-filter-link:hover,
.hn-filter-link.active {
  color: var(--hn-gold-hover);
  font-weight: 600;
}

.hn-checkbox-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.86rem;
  color: var(--hn-text-secondary);
  margin-bottom: 8px;
  cursor: pointer;
}

/* --------------------------------------------------------------------------
   14. PRODUCT DETAILS PAGE
   -------------------------------------------------------------------------- */
.hn-detail-main-img {
  width: 100%;
  height: 420px;
  object-fit: contain;
  background-color: var(--hn-cream);
  border: 1px solid var(--hn-border);
  border-radius: var(--hn-radius-sm);
  padding: 16px;
}

.hn-thumb-img {
  width: 70px;
  height: 70px;
  object-fit: contain;
  background-color: var(--hn-cream);
  border: 1px solid var(--hn-border);
  border-radius: var(--hn-radius-sm);
  cursor: pointer;
  padding: 4px;
  transition: var(--hn-transition);
}

.hn-thumb-img.active,
.hn-thumb-img:hover {
  border-color: var(--hn-gold);
}

.hn-qty-box {
  display: inline-flex;
  border: 1px solid var(--hn-border);
  border-radius: var(--hn-radius-sm);
  overflow: hidden;
  background: #FFFFFF;
}

.hn-qty-btn {
  background: none;
  border: none;
  width: 36px;
  height: 36px;
  font-weight: 700;
  color: var(--hn-navy);
  display: flex;
  align-items: center;
  justify-content: center;
}

.hn-qty-input {
  width: 45px;
  border: none;
  text-align: center;
  font-weight: 600;
  color: var(--hn-navy);
}

.hn-nav-tabs .nav-link {
  font-family: var(--hn-font-serif);
  font-size: 1rem;
  color: var(--hn-text-secondary);
  border: none;
  border-bottom: 2px solid transparent;
  padding: 10px 20px;
}

.hn-nav-tabs .nav-link.active {
  color: var(--hn-navy);
  border-bottom-color: var(--hn-gold);
  background: none;
  font-weight: 600;
}

/* --------------------------------------------------------------------------
   15. CART & CHECKOUT
   -------------------------------------------------------------------------- */
.hn-table-cart th {
  font-family: var(--hn-font-serif);
  font-size: 0.92rem;
  color: var(--hn-navy);
  background-color: var(--hn-cream);
  border-bottom: 1px solid var(--hn-border);
  padding: 12px;
  white-space: nowrap;
}

.hn-table-cart td {
  padding: 16px 12px;
  vertical-align: middle;
  border-bottom: 1px solid var(--hn-border-subtle);
}

.hn-summary-box {
  background: #FFFFFF;
  border: 1px solid var(--hn-border);
  border-radius: var(--hn-radius-sm);
  padding: 24px;
}

/* Mobile Navigation Drawer */
.hn-mobile-drawer {
  background: #FFFFFF;
  border-radius: var(--hn-radius-md);
  padding: 16px;
  margin-top: 14px;
  border: 1px solid var(--hn-border);
}

.hn-mobile-nav-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 14px;
  border-radius: var(--hn-radius-sm);
  color: var(--hn-navy);
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  transition: var(--hn-transition);
}

.hn-mobile-nav-link:hover,
.hn-mobile-nav-link.active {
  background-color: var(--hn-cream);
  color: var(--hn-gold-hover);
}

.hn-mobile-nav-link.admin-link {
  color: #B45309;
  background-color: #FEF3C7;
}

/* Responsive Product Gallery */
.hn-detail-gallery-row {
  display: flex;
  gap: 16px;
}

.hn-detail-thumb-col {
  width: 75px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

/* --------------------------------------------------------------------------
   16. COMPREHENSIVE RESPONSIVE BREAKPOINTS
   -------------------------------------------------------------------------- */

/* Laptops & Tablets (max-width: 991px) */
@media (max-width: 991.98px) {
  .hn-brand-tagline {
    display: block !important;
    font-size: 0.54rem;
  }

  .hn-lifestyle-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
  }

  .hn-benefit-col:not(:last-child)::after {
    display: none;
  }

  .hn-benefit-col {
    padding: 12px 10px;
  }

  .hn-hero-section {
    padding: 36px 0 24px;
  }

  .hn-hero-img {
    height: 340px;
  }

  .hn-section-header {
    margin-bottom: 28px;
  }

  .hn-section-title {
    font-size: 1.85rem;
  }

  .hn-promo-img-wrap {
    min-height: 220px;
  }

  .hn-promo-content {
    padding: 24px 20px;
  }

  .hn-promo-title,
  .hn-promo-subtitle,
  .hn-promo-desc {
    font-size: 1.25rem;
  }

  .hn-story-section,
  .hn-why-section {
    padding: 44px 0;
  }

  .hn-footer {
    padding: 40px 0 20px;
  }
}

/* Tablets to Phablets (max-width: 767.98px) */
@media (max-width: 767.98px) {
  .hn-detail-gallery-row {
    flex-direction: column-reverse;
  }

  .hn-detail-thumb-col {
    width: 100%;
    flex-direction: row;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 6px;
  }

  .hn-thumb-img {
    width: 60px;
    height: 60px;
    flex-shrink: 0;
  }

  .hn-detail-main-img {
    height: 320px;
  }

  .hn-hero-benefits {
    padding: 16px 12px;
    margin-top: 24px;
  }

  .hn-benefit-col {
    border-bottom: 1px solid var(--hn-border-subtle);
  }

  .hn-benefit-col:last-child {
    border-bottom: none;
  }

  .hn-service-bar {
    padding: 18px 0;
  }

  .hn-service-item {
    padding: 8px 4px;
    font-size: 0.85rem;
  }

  .hn-service-item i {
    font-size: 1.2rem;
  }

  .hn-why-card {
    padding: 14px 8px;
  }

  .hn-why-circle {
    width: 58px;
    height: 58px;
    font-size: 1.5rem;
    margin-bottom: 12px;
  }

  .hn-table-cart td,
  .hn-table-cart th {
    padding: 10px 8px;
    font-size: 0.85rem;
  }
}

/* Mobile Phones (max-width: 575.98px) */
@media (max-width: 575.98px) {
  .hn-brand-tagline {
    display: block !important;
    font-size: 0.50rem;
    letter-spacing: 0.04em;
  }

  .hn-hero-badge {
    font-size: 0.68rem;
    padding: 5px 10px;
    gap: 6px;
  }

  .hn-hero-title {
    font-size: 2.1rem;
    line-height: 1.18;
  }

  .hn-hero-desc {
    font-size: 0.95rem;
    margin-bottom: 20px;
  }

  .hn-hero-img {
    height: 290px;
  }

  .hn-floating-badge {
    padding: 5px 10px;
    gap: 6px;
  }

  .hn-floating-badge.top-badge {
    top: 12px;
    right: 12px;
  }

  .hn-floating-badge.bottom-badge {
    bottom: 12px;
    left: 12px;
  }

  .badge-icon-wrap {
    width: 26px;
    height: 26px;
    font-size: 0.85rem;
  }

  .badge-title {
    font-size: 0.72rem;
  }

  .badge-sub {
    font-size: 0.62rem;
  }

  .hn-hero-quote-card {
    padding: 10px 12px;
  }

  .hn-quote-verse {
    font-size: 0.95rem;
  }

  .hn-section-title {
    font-size: 1.55rem;
  }

  .hn-section-subtitle {
    font-size: 0.85rem;
  }

  .hn-product-card {
    padding: 10px;
  }

  .hn-card-img-box {
    height: 140px;
    margin-bottom: 8px;
  }

  .hn-card-title {
    font-size: 0.88rem;
  }

  .hn-card-price {
    font-size: 0.95rem;
  }

  .hn-card-rating {
    font-size: 0.75rem;
    margin-bottom: 8px;
  }

  .hn-btn-card-add {
    font-size: 0.8rem;
    padding: 6px 8px;
  }

  .hn-lifestyle-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }

  .hn-lifestyle-item {
    height: 150px;
  }

  .hn-gift-card {
    padding: 14px;
  }

  .hn-gift-img-box {
    height: 160px;
    margin-bottom: 12px;
  }

  .hn-gift-title {
    font-size: 1.15rem;
  }

  .hn-gift-price {
    font-size: 1.2rem;
  }

  .hn-promo-banner {
    border-radius: var(--hn-radius-sm);
  }

  .hn-promo-content {
    padding: 18px 14px;
  }

  .hn-mantra-box {
    padding: 16px 12px;
  }

  .hn-mantra-verse {
    font-size: 1rem;
    line-height: 1.6;
  }

  .hn-mantra-chant {
    font-size: 0.85rem;
    margin-top: 10px;
  }

  .hn-story-title {
    font-size: 1.6rem;
  }

  .hn-story-desc {
    font-size: 0.9rem;
  }

  .hn-story-quote {
    font-size: 1.1rem;
  }

  .hn-summary-box {
    padding: 18px 14px;
  }

  .hn-detail-main-img {
    height: 260px;
  }
}

/* Extra Small Phones (max-width: 380px) */
@media (max-width: 380px) {
  .hn-brand-tagline {
    display: block !important;
    font-size: 0.46rem;
  }

  .hn-icon-btn,
  .hn-hamburger-btn {
    width: 35px;
    height: 35px;
    font-size: 1.05rem;
  }

  .hn-card-img-box {
    height: 120px;
  }

  .hn-lifestyle-item {
    height: 130px;
  }
}

/* --------------------------------------------------------------------------
   17. GLOBAL SCROLL REVEAL & UI MOTION SYSTEM
   -------------------------------------------------------------------------- */
.hn-reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.65s cubic-bezier(0.16, 1, 0.3, 1), transform 0.65s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

.hn-reveal.hn-revealed {
  opacity: 1;
  transform: translateY(0);
}

.hn-reveal-stagger > * {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.55s cubic-bezier(0.16, 1, 0.3, 1), transform 0.55s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

.hn-reveal-stagger.hn-revealed > *:nth-child(1) { opacity: 1; transform: translateY(0); transition-delay: 0.04s; }
.hn-reveal-stagger.hn-revealed > *:nth-child(2) { opacity: 1; transform: translateY(0); transition-delay: 0.10s; }
.hn-reveal-stagger.hn-revealed > *:nth-child(3) { opacity: 1; transform: translateY(0); transition-delay: 0.16s; }
.hn-reveal-stagger.hn-revealed > *:nth-child(4) { opacity: 1; transform: translateY(0); transition-delay: 0.22s; }
.hn-reveal-stagger.hn-revealed > *:nth-child(5) { opacity: 1; transform: translateY(0); transition-delay: 0.28s; }
.hn-reveal-stagger.hn-revealed > *:nth-child(6) { opacity: 1; transform: translateY(0); transition-delay: 0.34s; }

/* Toast Smooth Slide Animation */
.hn-toast-animated {
  animation: hnToastIn 0.35s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

@keyframes hnToastIn {
  from {
    opacity: 0;
    transform: translateY(16px) scale(0.95);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* Accessibility: Respect Reduced Motion Preferences */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
  .hn-reveal,
  .hn-reveal-stagger > * {
    opacity: 1 !important;
    transform: none !important;
  }
}

/* ==========================================================================
   INTERACTIVE DIVINE AUTH POPUP MODAL (EXACT 2-COLUMN LUXURY CARD)
   ========================================================================== */
.hn-auth-overlay-exact {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  bottom: 0 !important;
  width: 100vw !important;
  height: 100vh !important;
  z-index: 999999 !important;
  background: rgba(14, 11, 10, 0.72) !important;
  backdrop-filter: blur(12px) !important;
  -webkit-backdrop-filter: blur(12px) !important;
  display: none !important;
  pointer-events: none !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 16px !important;
  box-sizing: border-box !important;
}

.hn-auth-overlay-exact.active {
  display: flex !important;
  pointer-events: auto !important;
}

.hn-auth-card-exact {
  position: relative;
  background: #FFFFFF;
  border-radius: 28px;
  box-shadow: 0 32px 85px rgba(0, 0, 0, 0.45);
  max-width: 960px;
  width: 100%;
  display: grid;
  grid-template-columns: 1.15fr 0.95fr;
  align-items: stretch;
  animation: hnAuthCardPop 0.32s cubic-bezier(0.16, 1, 0.3, 1);
  overflow: hidden;
}

@keyframes hnAuthCardPop {
  from { opacity: 0; transform: scale(0.92) translateY(20px); }
  to { opacity: 1; transform: scale(1) translateY(0); }
}

.hn-auth-img-col {
  position: relative;
  background-image: linear-gradient(135deg, rgba(20, 15, 10, 0.46) 0%, rgba(20, 15, 10, 0.22) 50%, rgba(0, 0, 0, 0.14) 100%), url('/assets/images/krishna_hero_keychain.jpg');
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  padding: 44px 40px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: #FFFFFF;
  min-height: 520px;
}

.hn-auth-modal-brand {
  font-family: 'Work Sans', sans-serif;
  font-size: 1.65rem;
  font-weight: 800;
  color: #FFFFFF;
  letter-spacing: -0.02em;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.45);
}

.hn-auth-modal-hero-wrap {
  margin-top: auto;
  margin-bottom: 40px;
}

.hn-auth-modal-headline {
  font-family: 'Work Sans', sans-serif;
  font-size: 2.35rem;
  font-weight: 800;
  line-height: 1.15;
  color: #FFFFFF;
  letter-spacing: -0.025em;
  margin-bottom: 12px;
  text-shadow: 0 3px 12px rgba(0, 0, 0, 0.5);
}

.hn-auth-modal-subtext {
  font-size: 1.05rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.94);
  margin-bottom: 0;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.45);
}

.hn-auth-form-col {
  position: relative;
  background-color: #FFF8F3;
  padding: 44px 38px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hn-auth-exact-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #EFE8DE;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #5C524A;
  font-size: 1.1rem;
  cursor: pointer;
  transition: all 0.2s ease;
  z-index: 10;
}

.hn-auth-exact-close:hover {
  background: #DFD5C7;
  color: #231C18;
  transform: rotate(90deg) scale(1.06);
}

.hn-auth-exact-title {
  font-size: 1.55rem;
  font-weight: 700;
  color: #231C18;
  text-align: center;
  letter-spacing: -0.02em;
  margin-bottom: 22px;
}

.hn-exact-field {
  margin-bottom: 14px;
  text-align: left;
}

.hn-exact-label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: #5C524A;
  margin-bottom: 5px;
}

.hn-exact-input-wrap {
  position: relative;
  display: flex;
  align-items: center;
  background: #FFFFFF;
  border: 1.5px solid #EFE8DE;
  border-radius: 12px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.02);
  transition: all 0.2s ease;
}

.hn-exact-input-wrap:focus-within {
  border-color: #4CAE24;
  box-shadow: 0 0 0 3px rgba(76, 174, 36, 0.15);
}

.hn-exact-icon {
  padding-left: 14px;
  color: #9C8E84;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
}

.hn-exact-input {
  width: 100%;
  padding: 11px 12px;
  border: none;
  background: transparent;
  color: #231C18;
  font-size: 0.92rem;
  outline: none;
}

.hn-exact-input::placeholder {
  color: #A09489;
}

.hn-exact-eye-btn {
  background: none;
  border: none;
  padding: 0 14px;
  color: #9C8E84;
  cursor: pointer;
  font-size: 1.1rem;
  transition: color 0.2s;
  display: flex;
  align-items: center;
}

.hn-exact-eye-btn:hover {
  color: #231C18;
}

.hn-exact-forgot-wrap {
  text-align: right;
  margin-top: 4px;
  margin-bottom: 18px;
}

.hn-exact-forgot {
  color: #3E322A;
  font-size: 0.8rem;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.2s;
}

.hn-exact-forgot:hover {
  color: #4CAE24;
  text-decoration: underline;
}

.hn-exact-btn-primary {
  width: 100%;
  padding: 12px 20px;
  background: #4CAE24;
  color: #FFFFFF;
  border: none;
  border-radius: 12px;
  font-size: 0.96rem;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(76, 174, 36, 0.25);
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 0;
}

.hn-exact-btn-primary:hover {
  background: #41961F;
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(76, 174, 36, 0.32);
}

.hn-exact-btn-primary:disabled {
  opacity: 0.75;
  cursor: not-allowed;
}

.hn-exact-divider {
  position: relative;
  text-align: center;
  margin: 16px 0;
}

.hn-exact-divider::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 1px;
  background: #E8DFD5;
}

.hn-exact-divider span {
  position: relative;
  background: #FFF8F3;
  padding: 0 12px;
  font-size: 0.82rem;
  color: #9C8E84;
}

.hn-exact-btn-google {
  width: 100%;
  padding: 11px 20px;
  background: #FFFFFF;
  border: 1.5px solid #E8DFD5;
  border-radius: 12px;
  color: #231C18;
  font-size: 0.92rem;
  font-weight: 500;
  cursor: pointer;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.02);
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.hn-exact-btn-google:hover {
  background: #FDFBF8;
  border-color: #D6CCC0;
}

.hn-exact-guest-wrap {
  text-align: center;
  margin-top: 10px;
}

.hn-exact-guest-link {
  font-size: 0.8rem;
  color: #6B7280;
  text-decoration: none;
  cursor: pointer;
  font-weight: 500;
  transition: color 0.2s;
}

.hn-exact-guest-link:hover {
  color: #231C18;
  text-decoration: underline;
}

.hn-exact-switch {
  text-align: center;
  margin-top: 18px;
  font-size: 0.84rem;
  color: #5C524A;
}

.hn-exact-switch a {
  color: #4CAE24;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  margin-left: 4px;
  transition: color 0.2s;
}

.hn-exact-switch a:hover {
  text-decoration: underline;
  color: #3E8F1F;
}

.hn-exact-alert {
  display: none;
  padding: 9px 12px;
  border-radius: 10px;
  font-size: 0.82rem;
  margin-bottom: 12px;
  line-height: 1.35;
}

.hn-exact-alert.error {
  display: block;
  background: #FDF2F2;
  border: 1px solid #F8B4B4;
  color: #9B1C1C;
}

.hn-exact-alert.success {
  display: block;
  background: #F0FDF4;
  border: 1px solid #BBF7D0;
  color: #166534;
}

@media (max-width: 768px) {
  .hn-auth-card-exact {
    grid-template-columns: 1fr;
    max-height: 90vh;
    overflow-y: auto;
    border-radius: 24px;
  }
  .hn-auth-img-col {
    min-height: 160px;
    padding: 24px;
  }
  .hn-auth-modal-headline {
    font-size: 1.6rem;
  }
  .hn-auth-form-col {
    padding: 26px 20px;
  }
}

/* Instant Add to Cart Button Feedback */
.hn-btn-card-add.btn-added-feedback {
  background: #166534 !important;
  color: #FFFFFF !important;
  border-color: #166534 !important;
  transform: scale(0.98);
}

/* ==========================================================================
   17. LUXURY DEVOTIONAL ACCOUNT / PROFILE COMPONENT & DROPDOWN
   ========================================================================== */

.hn-header-account-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  height: 40px;
  padding: 0 12px 0 8px;
  background: linear-gradient(135deg, #FFFDF8 0%, #F7F1E1 100%);
  border: 1.5px solid rgba(197, 155, 39, 0.45);
  border-radius: 28px;
  color: var(--hn-navy);
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(197, 155, 39, 0.12);
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  text-decoration: none;
}

@media (max-width: 575.98px) {
  .hn-header-account-btn {
    padding: 0 8px;
    width: auto;
    min-width: 36px;
    height: 36px;
    justify-content: center;
    border-radius: 20px;
    gap: 4px;
  }
  .hn-header-account-btn.logged-in {
    padding: 2px 8px 2px 3px;
    height: 36px;
    border-radius: 20px;
    gap: 4px;
  }
  .hn-header-account-btn.logged-in .hn-account-avatar-wrap {
    width: 28px;
    height: 28px;
  }
  .hn-header-account-btn.logged-in .hn-header-avatar {
    width: 28px;
    height: 28px;
  }
  .hn-header-account-btn.logged-in .hn-account-caret {
    font-size: 0.7rem;
    margin-left: 2px !important;
  }
  .hn-user-menu {
    right: -8px;
    width: 220px;
  }
}

.hn-header-account-btn:hover {
  background: linear-gradient(135deg, #FAF3E0 0%, #F2E4C2 100%);
  border-color: #C59B27;
  transform: translateY(-2px);
  box-shadow: 0 5px 16px rgba(197, 155, 39, 0.24);
}

.hn-header-account-btn:active {
  transform: translateY(0);
}

.hn-account-icon-wrap {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: linear-gradient(135deg, #C59B27 0%, #9E7916 100%);
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  box-shadow: 0 2px 6px rgba(197, 155, 39, 0.3);
}

.hn-account-avatar-wrap {
  position: relative;
  width: 28px;
  height: 28px;
}

.hn-header-avatar {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #C59B27;
  box-shadow: 0 2px 6px rgba(197, 155, 39, 0.3);
}

.hn-avatar-status-dot {
  position: absolute;
  bottom: -1px;
  right: -1px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #22C55E;
  border: 1.5px solid #FFFFFF;
}

.hn-account-text-wrap {
  display: flex;
  flex-direction: column;
  text-align: left;
  line-height: 1.15;
}

.hn-account-sub {
  font-size: 0.62rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #8C8278;
  font-weight: 600;
}

.hn-account-main {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--hn-navy);
  white-space: nowrap;
}

.hn-account-caret {
  font-size: 0.72rem;
  color: #8C8278;
  transition: transform 0.22s ease;
}

.hn-user-dropdown {
  position: relative;
}

.hn-user-dropdown:hover .hn-account-caret,
.hn-user-menu.active ~ .hn-header-account-btn .hn-account-caret {
  transform: rotate(180deg);
}

/* User Dropdown Menu Card */
.hn-user-menu {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  width: 240px;
  background: #FFFFFF;
  border-radius: 16px;
  box-shadow: 0 16px 40px rgba(11, 37, 69, 0.16), 0 0 0 1px rgba(197, 155, 39, 0.2);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px) scale(0.96);
  transition: all 0.22s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 1100;
  overflow: hidden;
}

.hn-user-dropdown:hover .hn-user-menu,
.hn-user-dropdown.active .hn-user-menu,
.hn-user-menu.active,
.hn-user-menu.show {
  opacity: 1 !important;
  visibility: visible !important;
  transform: translateY(0) scale(1) !important;
  pointer-events: auto !important;
}

.hn-user-menu-header {
  padding: 16px;
  background: linear-gradient(135deg, #FAF6EE 0%, #F5ECDA 100%);
  border-bottom: 1px solid rgba(197, 155, 39, 0.22);
}

.hn-menu-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 2px solid #C59B27;
  object-fit: cover;
  flex-shrink: 0;
}

.hn-user-menu-links {
  padding: 8px 0;
}

.hn-user-menu-links a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 9px 18px;
  font-size: 0.88rem;
  color: #2D2722;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.18s ease;
}

.hn-user-menu-links a i {
  font-size: 1.05rem;
  color: var(--hn-gold);
  width: 20px;
  text-align: center;
  transition: transform 0.18s ease;
}

.hn-user-menu-links a:hover {
  background: #FAF6EE;
  color: #7A1C1C;
  padding-left: 22px;
}

.hn-user-menu-links a:hover i {
  transform: scale(1.15);
}

.hn-user-menu-footer {
  padding: 10px 14px;
  background: #FFFDF8;
  border-top: 1px solid #F0EAE1;
}

.hn-menu-logout-btn {
  width: 100%;
  padding: 9px 14px;
  border-radius: 10px;
  border: 1px solid #FCA5A5;
  background: #FEF2F2;
  color: #991B1B;
  font-weight: 600;
  font-size: 0.86rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.hn-menu-logout-btn:hover {
  background: #FEE2E2;
  border-color: #EF4444;
  color: #7F1D1D;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(239, 68, 68, 0.18);
}

/* ==========================================================================
   18. LUXURY DEVOTIONAL PROFILE & ACCOUNT DASHBOARD
   ========================================================================== */

.hn-profile-hero {
  position: relative;
  background-color: #0B2545;
  background: #0B2545;
  border-radius: 20px;
  padding: 36px 32px;
  color: #FFFFFF;
  margin-bottom: 28px;
  border: none;
  box-shadow: none;
  overflow: hidden;
}

.hn-profile-hero::before {
  display: none;
}

.hn-profile-hero::after {
  display: none;
}

.hn-profile-avatar-large {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  border: 3px solid #C59B27;
  object-fit: cover;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.28);
  flex-shrink: 0;
}

.hn-profile-badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(197, 155, 39, 0.2);
  border: 1px solid rgba(197, 155, 39, 0.5);
  color: #F8E7B9;
  font-size: 0.78rem;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 20px;
  letter-spacing: 0.02em;
}

.hn-profile-stat-box {
  background: #FFFFFF;
  border: 1px solid var(--hn-border);
  border-radius: 16px;
  padding: 22px 18px;
  text-align: center;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
  transition: all 0.26s cubic-bezier(0.16, 1, 0.3, 1);
}

.hn-profile-stat-box:hover {
  transform: translateY(-3px);
  border-color: var(--hn-gold);
  box-shadow: 0 8px 24px rgba(197, 155, 39, 0.14);
}

.hn-profile-stat-num {
  font-size: 2rem;
  font-weight: 800;
  color: var(--hn-navy);
  line-height: 1.1;
  margin-bottom: 4px;
}

.hn-profile-stat-label {
  font-size: 0.82rem;
  font-weight: 600;
  color: #7A726D;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.hn-profile-nav-card {
  background: #FFFFFF;
  border: 1px solid var(--hn-border);
  border-radius: 16px;
  padding: 14px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
}

.hn-profile-tab-link {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  padding: 14px 18px !important;
  border-radius: 12px;
  color: #4A443E;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  transition: all 0.2s ease;
  margin-bottom: 6px;
  border: 1px solid transparent;
  background: transparent;
  width: 100% !important;
  min-height: 52px;
  box-sizing: border-box !important;
  text-align: left;
  cursor: pointer !important;
  user-select: none;
  -webkit-tap-highlight-color: rgba(197, 155, 39, 0.2);
  touch-action: manipulation;
}

.hn-profile-tab-link * {
  pointer-events: none !important;
}

.hn-profile-tab-link i.tab-icon {
  font-size: 1.15rem;
  color: var(--hn-gold);
  margin-right: 12px;
  width: 22px;
  text-align: center;
}

.hn-profile-tab-link:hover {
  background: #FAF6EE;
  color: #7A1C1C;
}

.hn-profile-tab-link:active {
  transform: scale(0.985);
  background: #F3ECE0;
}

.hn-profile-tab-link.active {
  background: linear-gradient(135deg, #FAF4E6 0%, #F5E8CD 100%) !important;
  color: #7A1C1C !important;
  font-weight: 700;
  border-left: 4px solid #C59B27 !important;
  box-shadow: 0 2px 8px rgba(197, 155, 39, 0.12);
}

.hn-profile-content-card {
  background: #FFFFFF;
  border: 1px solid var(--hn-border);
  border-radius: 18px;
  padding: 30px;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.04);
}

.hn-profile-input {
  border: 1.5px solid #E8DFD3;
  border-radius: 10px;
  padding: 10px 14px;
  font-size: 0.92rem;
  color: #1F1B18;
  transition: all 0.2s;
  background: #FCFBF9;
}

.hn-profile-input:focus {
  border-color: #C59B27;
  background: #FFFFFF;
  box-shadow: 0 0 0 3px rgba(197, 155, 39, 0.16);
  outline: none;
}

.hn-order-card {
  border: 1px solid var(--hn-border);
  border-radius: 14px;
  padding: 18px;
  margin-bottom: 14px;
  background: #FFFFFF;
  transition: all 0.22s ease;
}

.hn-order-card:hover {
  border-color: var(--hn-gold);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
}

.hn-order-badge-status {
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 0.76rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

/* Global smooth animations */
html { scroll-behavior: smooth; }
a, button, .btn, .card, .nav-link { transition: all 0.2s ease; }
body { opacity: 0; animation: fadeIn 0.5s forwards; }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

/* ==========================================================================
   19. UNIVERSAL RESPONSIVE & MOBILE USER-FRIENDLY SYSTEM
   ========================================================================== */

/* Prevent horizontal overflow without breaking position sticky */
html, body {
  max-width: 100vw;
  overflow-x: clip;
}

/* Fluid images, videos & embeds */
img, video, iframe, object {
  max-width: 100%;
  height: auto;
}

/* Touch-friendly forms & tables across mobile viewports */
@media (max-width: 767.98px) {
  input[type="text"],
  input[type="email"],
  input[type="password"],
  input[type="tel"],
  input[type="number"],
  select,
  textarea,
  .form-control,
  .form-select {
    font-size: 16px !important; /* Prevents auto-zoom on iOS safari */
    min-height: 44px;
  }

  /* Header & Navigation */
  .hn-header {
    padding: 8px 0;
  }
  .hn-brand-title {
    font-size: 1.15rem !important;
  }
  .hn-topbar {
    font-size: 0.75rem;
    padding: 6px 10px;
  }

  /* Devotee Account Hero & Dashboard Cards */
  .hn-profile-hero {
    padding: 20px 16px !important;
    border-radius: 16px !important;
  }
  .hn-profile-avatar-large {
    width: 64px !important;
    height: 64px !important;
  }
  .hn-profile-stat-box {
    padding: 12px 8px !important;
    border-radius: 12px !important;
  }
  .hn-profile-stat-num {
    font-size: 1.35rem !important;
  }
  .hn-profile-stat-label {
    font-size: 0.68rem !important;
  }
  .hn-profile-content-card {
    padding: 18px 14px !important;
    border-radius: 14px !important;
  }

  /* Product Details Page */
  .hn-product-gallery-main {
    max-height: 340px !important;
    object-fit: contain;
  }
  .hn-product-actions {
    flex-direction: column;
    gap: 10px;
  }
  .hn-product-actions .btn {
    width: 100%;
  }

  /* Cart & Checkout Pages */
  .table-responsive,
  .hn-cart-table-wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    border-radius: 10px;
  }
  .hn-checkout-summary-card {
    position: static !important;
    margin-top: 20px;
  }

  /* Auth, Login & Register Cards */
  .hn-auth-card {
    padding: 22px 18px !important;
    border-radius: 16px !important;
  }
  .hn-social-login-grid {
    flex-direction: column;
  }

  /* Footer responsiveness */
  .hn-footer {
    padding: 36px 0 24px !important;
  }
  .hn-footer-title {
    margin-top: 12px;
    margin-bottom: 12px;
    font-size: 1rem;
    color: #FFFFFF;
    position: relative;
    display: inline-block;
  }
  .hn-footer-title::after {
    content: '';
    display: block;
    width: 24px;
    height: 2px;
    background: var(--hn-gold);
    margin-top: 4px;
    border-radius: 2px;
  }
  .hn-footer a {
    padding: 3px 0;
    font-size: 0.88rem;
    color: #E2E8F0;
  }
  .hn-footer-desc {
    max-width: 100%;
    margin-bottom: 16px;
    font-size: 0.85rem;
  }
  .hn-footer-social {
    margin-bottom: 16px;
  }
  .hn-footer-social a {
    width: 38px;
    height: 38px;
    font-size: 1.1rem;
  }
  .hn-footer-bottom {
    margin-top: 28px;
    padding-top: 16px;
    font-size: 0.78rem;
    line-height: 1.5;
  }
}

/* ==========================================================================
   DEVOTIONAL REVIEW SUBMISSION MODAL (LUXURY SACRED GLASS DESIGN)
   ========================================================================== */
.hn-review-modal-overlay {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  bottom: 0 !important;
  width: 100vw !important;
  height: 100vh !important;
  z-index: 999999 !important;
  background: rgba(15, 23, 42, 0.72) !important;
  backdrop-filter: blur(14px) !important;
  -webkit-backdrop-filter: blur(14px) !important;
  display: none !important;
  pointer-events: none !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 20px !important;
  box-sizing: border-box !important;
  opacity: 0;
  transition: opacity 0.28s ease;
}

.hn-review-modal-overlay.active {
  display: flex !important;
  pointer-events: auto !important;
  opacity: 1 !important;
}

.hn-review-card {
  position: relative;
  background: #FFFFFF;
  border-radius: 28px;
  box-shadow: 0 25px 70px -10px rgba(15, 23, 42, 0.35), 0 0 0 1px rgba(217, 119, 6, 0.15);
  max-width: 540px;
  width: 100%;
  padding: 38px 34px;
  box-sizing: border-box;
  animation: hnReviewPop 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  overflow: hidden;
}

@keyframes hnReviewPop {
  from { opacity: 0; transform: scale(0.92) translateY(24px); }
  to { opacity: 1; transform: scale(1) translateY(0); }
}

.hn-review-close-btn {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #F8FAFC;
  border: 1px solid #E2E8F0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #64748B;
  font-size: 1.15rem;
  cursor: pointer;
  transition: all 0.22s ease;
  z-index: 10;
}

.hn-review-close-btn:hover {
  background: #FEE2E2;
  border-color: #FECACA;
  color: #DC2626;
  transform: rotate(90deg) scale(1.08);
}

.hn-review-header {
  text-align: center;
  margin-bottom: 24px;
}

.hn-review-emblem {
  width: 60px;
  height: 60px;
  margin: 0 auto 14px;
  border-radius: 20px;
  background: linear-gradient(135deg, #D97706 0%, #F59E0B 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFFFFF;
  font-size: 1.75rem;
  box-shadow: 0 12px 28px -6px rgba(217, 119, 6, 0.45);
  position: relative;
}

.hn-review-emblem::after {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 24px;
  border: 1.5px dashed rgba(217, 119, 6, 0.35);
  animation: hnRotateDashed 20s linear infinite;
}

@keyframes hnRotateDashed {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.hn-review-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.75rem;
  font-weight: 800;
  color: #0F172A;
  letter-spacing: -0.02em;
  margin-bottom: 6px;
}

.hn-review-subtitle {
  font-size: 0.95rem;
  color: #64748B;
  margin-bottom: 0;
}

.hn-review-rating-box {
  background: #FFFBEB;
  border: 1px solid #FDE68A;
  border-radius: 18px;
  padding: 16px 20px;
  margin-bottom: 22px;
  text-align: center;
}

.hn-review-rating-label {
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #92400E;
  margin-bottom: 8px;
  display: block;
}

.hn-review-stars {
  display: inline-flex;
  gap: 8px;
  font-size: 2rem;
  color: #F59E0B;
  cursor: pointer;
  user-select: none;
}

.hn-review-stars i {
  transition: transform 0.18s cubic-bezier(0.34, 1.56, 0.64, 1), color 0.15s ease, filter 0.15s ease;
}

.hn-review-stars i:hover {
  transform: scale(1.25);
  filter: drop-shadow(0 4px 10px rgba(245, 158, 11, 0.5));
}

.hn-review-rating-badge {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 600;
  color: #B45309;
  margin-top: 6px;
  background: #FEF3C7;
  padding: 4px 14px;
  border-radius: 20px;
  border: 1px solid rgba(217, 119, 6, 0.2);
}

.hn-review-form-group {
  margin-bottom: 18px;
}

.hn-review-label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.88rem;
  font-weight: 600;
  color: #1E293B;
  margin-bottom: 7px;
}

.hn-review-input-wrap {
  position: relative;
  display: flex;
  align-items: center;
}

.hn-review-input-icon {
  position: absolute;
  left: 14px;
  color: #94A3B8;
  font-size: 1.1rem;
  pointer-events: none;
  transition: color 0.2s ease;
}

.hn-review-input {
  width: 100%;
  height: 48px;
  padding: 0 16px 0 42px;
  background: #F8FAFC;
  border: 1.5px solid #E2E8F0;
  border-radius: 14px;
  font-size: 0.95rem;
  color: #0F172A;
  transition: all 0.2s ease;
  outline: none;
}

.hn-review-input:focus {
  background: #FFFFFF;
  border-color: #D97706;
  box-shadow: 0 0 0 4px rgba(217, 119, 6, 0.14);
}

.hn-review-input:focus + .hn-review-input-icon,
.hn-review-input-wrap:focus-within .hn-review-input-icon {
  color: #D97706;
}

.hn-review-textarea {
  width: 100%;
  padding: 14px 16px;
  background: #F8FAFC;
  border: 1.5px solid #E2E8F0;
  border-radius: 14px;
  font-size: 0.93rem;
  color: #0F172A;
  line-height: 1.55;
  transition: all 0.2s ease;
  outline: none;
  resize: vertical;
  min-height: 105px;
}

.hn-review-textarea:focus {
  background: #FFFFFF;
  border-color: #D97706;
  box-shadow: 0 0 0 4px rgba(217, 119, 6, 0.14);
}

.hn-review-alert {
  padding: 12px 16px;
  border-radius: 12px;
  font-size: 0.9rem;
  margin-bottom: 16px;
  display: none;
  animation: hnFadeIn 0.25s ease;
}

.hn-review-alert.error {
  display: flex;
  align-items: center;
  background: #FEF2F2;
  border: 1px solid #FECACA;
  color: #B91C1C;
}

.hn-review-alert.success {
  display: flex;
  align-items: center;
  background: #F0FDF4;
  border: 1px solid #BBF7D0;
  color: #15803D;
}

.hn-review-submit-btn {
  width: 100%;
  height: 52px;
  border-radius: 14px;
  background: linear-gradient(135deg, #D97706 0%, #B45309 100%);
  border: none;
  color: #FFFFFF;
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  cursor: pointer;
  transition: all 0.22s ease;
  box-shadow: 0 10px 24px -4px rgba(217, 119, 6, 0.4);
  position: relative;
  overflow: hidden;
}

.hn-review-submit-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.25), transparent);
  transition: left 0.5s ease;
}

.hn-review-submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px -4px rgba(217, 119, 6, 0.5);
  background: linear-gradient(135deg, #F59E0B 0%, #D97706 100%);
}

.hn-review-submit-btn:hover::before {
  left: 100%;
}

.hn-review-submit-btn:active {
  transform: translateY(1px);
}

@media (max-width: 576px) {
  .hn-review-card {
    padding: 28px 20px;
    border-radius: 20px;
  }
  .hn-review-title {
    font-size: 1.45rem;
  }
}

/* ==========================================================================
   DEVOTIONAL MOBILE & HOMEPAGE ENHANCEMENT STYLES (Exact Reference Match)
   ========================================================================== */

/* Top Announcement Bar */
.hn-topbar {
  background-color: #FCFBF7;
  border-bottom: 1px solid #EADBBE;
  color: #3F4B3B;
  font-size: 0.78rem;
  padding: 6px 16px;
  text-align: center;
  font-weight: 600;
  letter-spacing: 0.04em;
  white-space: nowrap;
}

.hn-topbar-content {
  color: #2F3E2E;
  white-space: nowrap;
  flex-wrap: nowrap;
}

.hn-topbar-item {
  white-space: nowrap;
  display: inline-block;
}

.hn-topbar-leaf {
  font-size: 0.85rem;
  color: #2D6A4F;
  flex-shrink: 0;
}

.hn-topbar-divider {
  color: #C59B27;
  opacity: 0.6;
  font-weight: 300;
  margin: 0 4px;
  flex-shrink: 0;
}

@media (max-width: 767.98px) {
  .hn-topbar-desktop-only {
    display: none !important;
  }
  .hn-topbar {
    font-size: 0.75rem;
    padding: 5px 8px;
    letter-spacing: 0.02em;
  }
  .hn-topbar-content {
    gap: 6px !important;
    justify-content: center !important;
  }
  .hn-topbar-item {
    white-space: nowrap !important;
  }
}

/* Brand Accent */
.hn-brand-accent {
  color: var(--hn-gold, #C59B27);
  font-weight: 700;
}

/* Hero Eyebrow */
.hn-hero-eyebrow {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: #8C7B65;
  text-transform: uppercase;
  margin-bottom: 12px;
}

/* Hero Titles */
.hn-title-carry {
  color: #0B2545;
  font-weight: 800;
  font-family: 'Playfair Display', 'Cinzel', serif;
}

.hn-title-wherever {
  color: #0B2545;
  font-weight: 800;
  font-family: 'Playfair Display', 'Cinzel', serif;
}

/* Hero Action Button */
.hn-hero-cta-btn {
  background: linear-gradient(135deg, #E5B83B 0%, #C59B27 50%, #A67E14 100%) !important;
  border: 1px solid rgba(255, 255, 255, 0.35) !important;
  color: #FFFFFF !important;
  border-radius: 50px !important;
  padding: 12px 32px !important;
  font-weight: 700 !important;
  font-size: 0.95rem !important;
  letter-spacing: 0.02em !important;
  box-shadow: 0 6px 20px rgba(197, 155, 39, 0.32), inset 0 1px 1px rgba(255, 255, 255, 0.45) !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 8px !important;
  text-decoration: none !important;
  transition: all 0.28s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.hn-hero-cta-btn:hover {
  background: linear-gradient(135deg, #ECC856 0%, #D4A72E 50%, #B38819 100%) !important;
  transform: translateY(-2px) scale(1.02) !important;
  box-shadow: 0 10px 24px rgba(197, 155, 39, 0.42), inset 0 1px 1px rgba(255, 255, 255, 0.6) !important;
  color: #FFFFFF !important;
}

.hn-hero-cta-btn:hover i {
  transform: translateX(4px);
}

.hn-hero-cta-btn:active {
  transform: translateY(1px) scale(0.98) !important;
}

/* Hero 3 Feature Badges Row */
.hn-hero-features-row {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 6px;
  animation: hnHeroFadeUp 0.85s cubic-bezier(0.16, 1, 0.3, 1) 0.32s both;
}

.hn-feature-pill {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(197, 155, 39, 0.24);
  border-radius: 14px;
  padding: 10px 18px;
  box-shadow: 0 4px 14px rgba(11, 37, 69, 0.04);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.hn-feature-pill:hover {
  background: #FFFFFF;
  border-color: rgba(197, 155, 39, 0.5);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(197, 155, 39, 0.12);
}

.hn-feature-pill-icon {
  font-size: 1.35rem;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.06));
}

.hn-feature-pill-text {
  display: flex;
  flex-direction: column;
  font-size: 0.78rem;
  font-weight: 700;
  line-height: 1.25;
  color: #0B2545;
}

.hn-feature-pill-text span:last-child {
  color: #64748B;
  font-weight: 500;
  font-size: 0.72rem;
}

/* Devotional Script Watermark Tag */
.hn-hero-script-tag {
  margin-top: 14px;
  font-family: 'Playfair Display', Georgia, serif;
  font-style: italic;
  color: #8B5E3C;
  line-height: 1.25;
}

.hn-script-line-1 {
  font-size: 1.1rem;
}

.hn-script-line-2 {
  font-size: 1.2rem;
  font-weight: 600;
}

.hn-script-heart {
  color: #8B5E3C;
  font-style: normal;
}

/* Circular Categories Strip (Soft Blurred Divider) */
.hn-categories-circles-section {
  background: #FFFFFF;
  border: none !important;
  position: relative;
}

/* --------------------------------------------------------------------------
   CURATED SPIRITUAL COLLECTIONS (Cards & Grid)
   -------------------------------------------------------------------------- */
.hn-collection-card {
  background: #FFFFFF;
  border: 1px solid var(--hn-border);
  border-radius: var(--hn-radius-md, 16px);
  overflow: hidden;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.35s ease, border-color 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
  box-shadow: 0 4px 16px rgba(10, 25, 47, 0.04);
}

.hn-collection-card:hover {
  transform: translateY(-6px);
  border-color: var(--hn-gold-border, rgba(200, 150, 60, 0.3));
  box-shadow: 0 12px 28px rgba(10, 25, 47, 0.09);
}

.hn-collection-img-wrap {
  height: 200px;
  overflow: hidden;
  position: relative;
  background: var(--hn-cream, #fdfbf7);
}

@media (min-width: 992px) {
  .hn-collection-img-wrap {
    height: 220px;
  }
}

.hn-collection-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.hn-collection-card:hover .hn-collection-img {
  transform: scale(1.06);
}

.hn-collection-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  padding: 4px 10px;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--hn-navy, #0B192C);
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}

.hn-collection-title {
  font-family: var(--hn-font-serif, 'Cinzel', 'Playfair Display', serif);
  font-size: 1.15rem;
  font-weight: 700;
  line-height: 1.3;
}

@media (max-width: 767.98px) {
  .hn-collection-title {
    font-size: 1rem;
  }
  .hn-collection-img-wrap {
    height: 160px;
  }
}

.hn-collection-desc {
  font-size: 0.85rem;
  line-height: 1.5;
  color: var(--hn-text-secondary, #4A5568);
}

.hn-collection-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--hn-navy, #0B192C);
  text-decoration: none;
  transition: color 0.2s ease, transform 0.2s ease;
  margin-top: auto;
  padding-top: 6px;
}

.hn-collection-link i {
  transition: transform 0.2s ease;
}

.hn-collection-card:hover .hn-collection-link {
  color: var(--hn-gold, #D4AF37);
}

.hn-collection-card:hover .hn-collection-link i {
  transform: translateX(4px);
}

.hn-categories-circles-section {
  background: #FFFFFF;
  border: none !important;
  border-top: none !important;
  border-bottom: none !important;
  padding: 26px 0 22px;
  position: relative;
}

.hn-categories-circles-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1.5px;
  background: linear-gradient(90deg, transparent 0%, rgba(217, 119, 6, 0.1) 15%, rgba(217, 119, 6, 0.28) 50%, rgba(217, 119, 6, 0.1) 85%, transparent 100%);
  filter: blur(0.6px);
  pointer-events: none;
}

.hn-categories-circles-section::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1.5px;
  background: linear-gradient(90deg, transparent 0%, rgba(217, 119, 6, 0.1) 15%, rgba(217, 119, 6, 0.28) 50%, rgba(217, 119, 6, 0.1) 85%, transparent 100%);
  filter: blur(0.6px);
  pointer-events: none;
}

.hn-cat-circles-scroll {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 32px;
  overflow-x: auto;
  padding: 6px 36px 12px;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  /* Smooth blur/fade mask on left and right edges */
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 40px, black calc(100% - 40px), transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, black 40px, black calc(100% - 40px), transparent 100%);
}

.hn-cat-circles-scroll::-webkit-scrollbar {
  display: none;
}

.hn-cat-circle-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  flex: 0 0 auto;
  min-width: 86px;
  transition: transform 0.28s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.hn-cat-circle-item:hover {
  transform: translateY(-4px);
}

.hn-cat-circle-img-wrap {
  width: 82px;
  height: 82px;
  border-radius: 50%;
  padding: 3px;
  background: #FFFFFF;
  border: 2px solid #E6D5BC;
  box-shadow: 0 4px 14px rgba(160, 112, 40, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.hn-cat-circle-item:hover .hn-cat-circle-img-wrap {
  border-color: #C59B27;
  box-shadow: 0 8px 22px rgba(197, 155, 39, 0.3);
  transform: scale(1.05);
}

.hn-cat-circle-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  display: block;
}

.hn-cat-circle-label {
  margin-top: 10px;
  font-size: 0.86rem;
  font-weight: 700;
  color: #0B2545;
  text-align: center;
  line-height: 1.2;
  white-space: nowrap;
  transition: color 0.2s ease;
}

.hn-cat-circle-item:hover .hn-cat-circle-label {
  color: #C59B27;
}

/* Daily Bhakti Banner Card */
.hn-bhakti-banner-section {
  background: transparent;
}

.hn-bhakti-banner-card {
  background: linear-gradient(135deg, #FBF5E8 0%, #F3E5CD 100%);
  border: 1px solid #EAD8B8;
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  box-shadow: 0 6px 20px rgba(160, 112, 40, 0.07);
}

.hn-bhakti-banner-content {
  padding: 24px 28px;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hn-bhakti-banner-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #382415;
  line-height: 1.2;
  margin-bottom: 6px;
}

.hn-bhakti-banner-sub {
  font-size: 0.85rem;
  color: #6B5542;
  margin-bottom: 16px;
}

.hn-bhakti-btn {
  background-color: #A07028 !important;
  background: #A07028 !important;
  border-color: #A07028 !important;
  color: #FFFFFF !important;
  border-radius: 30px !important;
  padding: 8px 20px !important;
  font-size: 0.82rem !important;
  font-weight: 600 !important;
  align-self: flex-start;
}

.hn-bhakti-banner-img-wrap {
  width: 44%;
  align-self: stretch;
  min-height: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  position: relative;
  overflow: hidden;
}

.hn-bhakti-banner-img {
  width: 100%;
  height: 100%;
  min-height: 100%;
  object-fit: cover;
  object-position: center right;
  display: block;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, rgba(0, 0, 0, 0.15) 8%, rgba(0, 0, 0, 0.7) 25%, #000 45%);
  mask-image: linear-gradient(to right, transparent 0%, rgba(0, 0, 0, 0.15) 8%, rgba(0, 0, 0, 0.7) 25%, #000 45%);
}

/* Featured Products Header */
.hn-lotus-header-icon {
  font-size: 1.35rem;
  color: #C59B27;
}

.hn-view-all-link {
  font-size: 0.85rem;
  font-weight: 600;
  color: #A07028;
  text-decoration: underline;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: color 0.2s ease, transform 0.2s ease;
}

.hn-view-all-link:hover {
  color: #784E13;
  transform: translateX(2px);
}

/* Devotional Footer Signoff */
.hn-footer-signoff {
  position: relative;
  background: #FAF5EB;
  border-top: 1px solid #EADDC8;
  overflow: hidden;
}

.hn-footer-signoff-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.75;
  pointer-events: none;
}

.hn-footer-signoff-content {
  position: relative;
  z-index: 2;
}

.hn-signoff-verse {
  font-family: 'Playfair Display', Georgia, serif;
  font-style: italic;
  font-size: 1.85rem;
  font-weight: 600;
  color: #8C5329;
  letter-spacing: -0.01em;
}

.hn-signoff-heart {
  font-style: normal;
  color: #8C5329;
}

.hn-signoff-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin: 6px auto;
  max-width: 220px;
}

.hn-divider-line {
  flex: 1;
  height: 1px;
  background: #D9C3A3;
}

.hn-divider-icon {
  font-size: 1.05rem;
  color: #C59B27;
}

.hn-signoff-sub {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: #7A583B;
  text-transform: uppercase;
}

/* ==========================================================================
   MOBILE SPECIFIC RULES (@media max-width: 991px)
   ========================================================================== */
@media (max-width: 991.98px) {
  /* Rock-solid, vibration-free floating pill navbar on mobile */
  .hn-header {
    position: sticky !important;
    top: 8px !important;
    left: 0 !important;
    right: 0 !important;
    width: calc(100% - 16px) !important;
    max-width: 600px !important;
    margin-left: auto !important;
    margin-right: auto !important;
    border-radius: 9999px !important;
    background-color: rgba(255, 255, 255, 0.96) !important;
    -webkit-backdrop-filter: blur(20px) saturate(180%) !important;
    backdrop-filter: blur(20px) saturate(180%) !important;
    border: 1.5px solid rgba(220, 205, 185, 0.85) !important;
    padding: 6px 14px !important;
    box-shadow: 
      0 12px 30px -4px rgba(28, 20, 10, 0.12),
      0 4px 10px -2px rgba(28, 20, 10, 0.05),
      0 0 0 1px rgba(255, 255, 255, 0.8) inset !important;
    z-index: 1050 !important;
    box-sizing: border-box !important;
    overflow: visible !important;
    transition: none !important;
  }

  /* Scrolled State: Stable identical geometry with deep soft shadow */
  .hn-header.scrolled {
    top: 8px !important;
    left: 0 !important;
    right: 0 !important;
    width: calc(100% - 16px) !important;
    max-width: 600px !important;
    margin-left: auto !important;
    margin-right: auto !important;
    border-radius: 9999px !important;
    background-color: rgba(255, 255, 255, 0.98) !important;
    -webkit-backdrop-filter: blur(20px) saturate(180%) !important;
    backdrop-filter: blur(20px) saturate(180%) !important;
    padding: 6px 14px !important;
    border: 1.5px solid rgba(220, 205, 185, 0.9) !important;
    box-shadow: 
      0 14px 34px -4px rgba(28, 20, 10, 0.16),
      0 5px 12px -2px rgba(28, 20, 10, 0.08),
      0 0 0 1px rgba(255, 255, 255, 0.9) inset !important;
    transition: none !important;
  }

  .hn-header,
  .hn-header.scrolled,
  .hn-header .container,
  .hn-header.scrolled .container,
  .hn-header .hn-brand-logo-wrap,
  .hn-header.scrolled .hn-brand-logo-wrap,
  .hn-header .hn-brand-title,
  .hn-header.scrolled .hn-brand-title,
  .hn-header .hn-brand-tagline,
  .hn-header.scrolled .hn-brand-tagline,
  .hn-header .hn-icon-btn,
  .hn-header.scrolled .hn-icon-btn,
  .hn-header .hn-header-account-btn,
  .hn-header.scrolled .hn-header-account-btn {
    transition: none !important;
  }

  .hn-header .container,
  .hn-header.scrolled .container {
    position: relative !important;
    padding-left: 2px !important;
    padding-right: 2px !important;
    max-width: 100% !important;
    overflow: visible !important;
  }

  .hn-header-inner {
    display: flex !important;
    flex-wrap: nowrap !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 8px;
    width: 100%;
    position: relative;
    z-index: 2;
  }

  .hn-brand {
    justify-content: flex-start;
    margin: 0;
    text-align: left;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 1;
    min-width: 0;
  }

  .hn-brand-logo-wrap,
  .hn-header.scrolled .hn-brand-logo-wrap {
    width: 36px !important;
    height: 36px !important;
    min-width: 36px !important;
    min-height: 36px !important;
    max-width: 36px !important;
    max-height: 36px !important;
    flex-shrink: 0 !important;
    border-radius: 50% !important;
    border: 1.5px solid var(--hn-gold) !important;
    transition: none !important;
    transform: none !important;
    will-change: auto !important;
    background: #FFFFFF !important;
  }

  .hn-brand-img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    display: block !important;
    transform: none !important;
    transition: none !important;
  }

  .hn-brand-text {
    align-items: flex-start;
    display: flex;
    flex-direction: column;
    min-width: 0;
  }

  .hn-brand-title,
  .hn-header.scrolled .hn-brand-title {
    font-size: 1.15rem !important;
    line-height: 1.1 !important;
    white-space: nowrap !important;
    transition: none !important;
  }

  .hn-brand-tagline,
  .hn-header.scrolled .hn-brand-tagline {
    font-size: 0.52rem !important;
    letter-spacing: 0.06em !important;
    color: #8A640D !important;
    display: block !important;
    white-space: nowrap !important;
    transition: none !important;
  }

  .hn-header-actions {
    display: flex !important;
    flex-wrap: nowrap !important;
    justify-content: flex-end;
    align-items: center;
    gap: 6px !important;
    flex-shrink: 0;
  }

  .hn-header.scrolled .hn-icon-btn,
  .hn-header .hn-icon-btn {
    width: 34px;
    height: 34px;
    font-size: 1.05rem;
    flex-shrink: 0;
  }

  .hn-hamburger-btn {
    width: 36px;
    height: 36px;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    position: relative !important;
    z-index: 1060 !important;
    cursor: pointer !important;
    pointer-events: auto !important;
    touch-action: manipulation !important;
    user-select: none !important;
    -webkit-tap-highlight-color: transparent !important;
    flex-shrink: 0;
  }

  .hn-header-account-btn {
    height: 34px;
    padding: 0 10px 0 6px;
    gap: 6px;
    font-size: 0.85rem;
  }

  @media (max-width: 440px) {
    .hn-header {
      padding: 5px 10px;
      width: calc(100% - 12px);
      top: 6px;
    }
    .hn-header.scrolled {
      padding: 5px 10px !important;
      width: calc(100% - 12px) !important;
      top: 6px !important;
    }
    .hn-brand-title {
      font-size: 1.05rem !important;
    }
    .hn-brand-tagline {
      font-size: 0.48rem !important;
      letter-spacing: 0.03em !important;
    }
    .hn-header-actions {
      gap: 5px !important;
    }
    .hn-icon-btn {
      width: 32px;
      height: 32px;
      font-size: 0.95rem;
    }
  }

  /* Seamless Floating Mobile Navigation Dropdown Card */
  #hnMobileNav {
    position: absolute !important;
    top: calc(100% + 10px) !important;
    left: 0 !important;
    right: 0 !important;
    width: 100% !important;
    z-index: 1065 !important;
    display: none !important;
    animation: hnMobileDrawerFade 0.2s ease-out;
  }

  #hnMobileNav.show,
  #hnMobileNav.active {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    pointer-events: auto !important;
  }

  @keyframes hnMobileDrawerFade {
    from { opacity: 0; transform: translateY(-6px); }
    to { opacity: 1; transform: translateY(0); }
  }

  .hn-mobile-drawer,
  .hn-header.scrolled .hn-mobile-drawer {
    background: #FFFFFF !important;
    border-radius: 22px !important;
    margin-top: 0 !important;
    border: 1.5px solid rgba(220, 205, 185, 0.85) !important;
    box-shadow: 0 20px 48px rgba(11, 37, 69, 0.18) !important;
    padding: 16px !important;
  }

  /* Mobile Hero Section (Exact Match to Reference Screenshot) */
  .hn-hero-section {
    padding: 24px 0 16px !important;
    background-position: center !important;
    min-height: auto !important;
    border-bottom: 1px solid rgba(230, 213, 188, 0.4);
  }

  .hn-hero-bg-overlay {
    background: linear-gradient(to bottom, rgba(254, 250, 240, 0.94) 0%, rgba(254, 250, 240, 0.88) 60%, rgba(254, 250, 240, 0.65) 100%) !important;
  }

  .min-vh-hero {
    min-height: auto !important;
  }

  .hero-content-col {
    padding-bottom: 0 !important;
  }

  .hn-hero-eyebrow {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    color: #8A640D;
    margin-bottom: 10px;
  }

  .hn-eyebrow-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #C59B27;
  }

  .hn-hero-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(2.1rem, 7.6vw, 2.65rem);
    font-weight: 800;
    line-height: 1.12;
    margin-bottom: 12px;
    color: #0B2545;
  }

  .hn-title-accent {
    color: #C5931D;
  }

  .hn-hero-desc {
    font-size: 0.92rem;
    line-height: 1.48;
    margin-bottom: 16px;
    color: #4A5568;
    font-weight: 500;
  }

  .hn-hero-btn-wrap {
    margin-bottom: 16px !important;
  }

  .hn-hero-cta-btn {
    padding: 11px 26px !important;
    font-size: 0.92rem !important;
    font-weight: 700 !important;
    border-radius: 50px !important;
    background: linear-gradient(135deg, #DFAC2D 0%, #C5931D 100%) !important;
    color: #FFFFFF !important;
    box-shadow: 0 4px 14px rgba(197, 147, 29, 0.35) !important;
  }

  .hn-hero-trust-bar {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px 12px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(230, 213, 188, 0.7);
    border-radius: 16px;
    padding: 12px 16px;
    margin-top: 14px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
  }

  .hn-trust-divider {
    display: none;
  }

  .hn-trust-item {
    display: flex;
    flex-direction: row;
    align-items: center;
    text-align: left;
    gap: 8px;
  }

  .hn-trust-icon {
    font-size: 1.25rem;
    line-height: 1;
  }

  .hn-trust-label {
    font-size: 0.74rem;
    font-weight: 700;
    color: #0B2545;
    line-height: 1.2;
    white-space: nowrap;
  }

  .hn-trust-label br {
    display: none !important;
  }

  /* Mobile Category Circle Spacing & Blurred Edges */
  .hn-categories-circles-section {
    padding: 16px 0 12px !important;
    background: #FFFFFF;
    border: none !important;
  }

  .hn-cat-circles-scroll {
    display: flex;
    justify-content: flex-start;
    gap: 18px;
    padding: 4px 20px 10px;
    overflow-x: auto;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x proximity;
    width: 100%;
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 24px, black calc(100% - 24px), transparent 100%);
    mask-image: linear-gradient(to right, transparent 0%, black 24px, black calc(100% - 24px), transparent 100%);
  }

  .hn-cat-circle-item {
    flex: 0 0 auto;
    min-width: 78px;
    scroll-snap-align: start;
  }

  .hn-cat-circle-img-wrap {
    width: 68px;
    height: 68px;
    padding: 2.5px;
    border-width: 2px;
    border-color: #E6D5BC;
    box-shadow: 0 4px 12px rgba(160, 112, 40, 0.1);
  }

  .hn-cat-circle-label {
    font-size: 0.78rem;
    font-weight: 700;
    color: #0B2545;
    white-space: nowrap;
    margin-top: 8px;
    text-align: center;
    line-height: 1.2;
    min-height: auto;
  }

  /* Mobile Bhakti Banner */
  .hn-bhakti-banner-card {
    border-radius: 16px;
    align-items: stretch;
  }

  .hn-bhakti-banner-content {
    padding: 16px 14px;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .hn-bhakti-banner-title {
    font-size: 1.15rem;
    margin-bottom: 4px;
  }

  .hn-bhakti-banner-sub {
    font-size: 0.75rem;
    margin-bottom: 12px;
  }

  .hn-bhakti-btn {
    padding: 6px 14px !important;
    font-size: 0.76rem !important;
    align-self: flex-start;
  }

  .hn-bhakti-banner-img-wrap {
    width: 48%;
    min-height: 100%;
    align-self: stretch;
    display: flex;
  }

  .hn-bhakti-banner-img {
    width: 100%;
    height: 100%;
    min-height: 100%;
    object-fit: cover;
    object-position: center right;
  }

  /* Mobile Service Bar */
  .hn-service-bar {
    background: #FAF5EB;
    padding: 14px 0;
  }

  .hn-service-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    font-size: 0.72rem;
    font-weight: 600;
    color: #2D3748;
  }

  .hn-service-item i {
    font-size: 1.1rem;
    color: #A07028;
  }

  /* Mobile Featured Products Cards & Scroll (Exact Match to Reference Image) */
  #hn-featured-grid {
    display: flex !important;
    flex-wrap: nowrap !important;
    overflow-x: auto !important;
    scrollbar-width: none !important;
    -webkit-overflow-scrolling: touch !important;
    gap: 12px !important;
    padding: 4px 2px 10px !important;
  }

  #hn-featured-grid::-webkit-scrollbar {
    display: none !important;
  }

  #hn-featured-grid > div {
    flex: 0 0 calc(50% - 6px) !important;
    width: calc(50% - 6px) !important;
    max-width: 200px !important;
    min-width: 140px !important;
  }

  @media (max-width: 480px) {
    #hn-featured-grid > div {
      flex: 0 0 160px !important;
      width: 160px !important;
      max-width: 160px !important;
    }
  }

  .hn-product-card {
    padding: 10px !important;
    border-radius: 14px !important;
    border: 1px solid #F0ECE1 !important;
    background: #FFFFFF !important;
    box-shadow: 0 4px 12px rgba(160, 112, 40, 0.05) !important;
  }

  .hn-card-img-box {
    height: 130px !important;
    border-radius: 10px !important;
    margin-bottom: 8px !important;
    background: #FAF6EF !important;
  }

  .hn-card-title {
    font-size: 0.84rem !important;
    margin-bottom: 2px !important;
    color: #1E293B !important;
    white-space: normal !important;
    line-height: 1.25 !important;
    display: -webkit-box !important;
    -webkit-line-clamp: 2 !important;
    -webkit-box-orient: vertical !important;
    overflow: hidden !important;
  }

  .hn-card-title a {
    color: #1E293B !important;
  }

  .hn-product-card .hn-card-rating {
    display: none !important;
  }

  .hn-product-card .hn-btn-card-add {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 0.78rem !important;
    font-weight: 600 !important;
    padding: 7px 10px !important;
    border-radius: 8px !important;
    margin-top: 8px !important;
    width: 100% !important;
    background-color: var(--hn-gold) !important;
    color: #FFFFFF !important;
  }

  /* Mobile Lifestyle Grid ("Take Krishna With You") */
  .hn-lifestyle-section {
    padding: 24px 0 16px !important;
  }

  .hn-lifestyle-grid {
    display: flex !important;
    overflow-x: auto !important;
    gap: 12px !important;
    padding: 4px 16px 14px !important;
    margin: 0 -16px !important;
    scrollbar-width: none !important;
    -webkit-overflow-scrolling: touch !important;
    scroll-snap-type: x proximity !important;
  }

  .hn-lifestyle-grid::-webkit-scrollbar {
    display: none !important;
  }

  .hn-lifestyle-item {
    flex: 0 0 160px !important;
    width: 160px !important;
    height: 160px !important;
    border-radius: 14px !important;
    scroll-snap-align: start !important;
    border: 1px solid #EAD8B8 !important;
    box-shadow: 0 4px 12px rgba(160, 112, 40, 0.08) !important;
  }

  .hn-lifestyle-item img {
    border-radius: 13px !important;
  }
}

/* ==========================================================================
   FEATURED DROPDOWN NAVIGATION & CURATED FEATURED TABS
   ========================================================================== */
.hn-nav-dropdown-wrap {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.hn-nav-dropdown-toggle {
  cursor: pointer;
  user-select: none;
}

.hn-nav-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 250px;
  background: #1C222B;
  border: 1px solid rgba(212, 175, 55, 0.35);
  border-radius: 14px;
  padding: 8px 6px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.45);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: all 0.22s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 1050;
  pointer-events: none;
}

.hn-nav-dropdown-wrap:hover .hn-nav-dropdown-menu,
.hn-nav-dropdown-wrap:focus-within .hn-nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

.hn-dropdown-item {
  display: flex;
  align-items: center;
  padding: 9px 14px;
  color: #F1F5F9 !important;
  font-size: 0.88rem;
  font-weight: 500;
  text-decoration: none;
  border-radius: 8px;
  transition: all 0.15s ease;
}

.hn-dropdown-item:hover {
  background: rgba(212, 175, 55, 0.18);
  color: #FFDF78 !important;
  transform: translateX(4px);
}

/* Curated Featured Tabs Strip on Homepage */
.hn-featured-tabs-wrapper {
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding-bottom: 6px;
  margin-top: 4px;
}
.hn-featured-tabs-wrapper::-webkit-scrollbar {
  display: none;
}

.hn-featured-tabs-scroll {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: max-content;
}

.hn-curated-tab {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 9px 20px;
  background: #FFFFFF;
  border: 1px solid #E2E8F0;
  border-radius: 50px;
  font-size: 0.88rem;
  font-weight: 600;
  color: #334155;
  cursor: pointer;
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 2px 6px rgba(0,0,0,0.03);
}

.hn-curated-tab:hover {
  border-color: #D4AF37;
  color: #0B2545;
  background: #FFFDF8;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(212, 175, 55, 0.15);
}

.hn-curated-tab.active {
  background: linear-gradient(135deg, #0B2545 0%, #133966 100%);
  color: #FFFFFF;
  border-color: #0B2545;
  box-shadow: 0 4px 16px rgba(11, 37, 69, 0.25);
  transform: translateY(-1px);
}