/* ============================================================
   JHANEX — style.css
   Path: /public_html/assets/css/style.css
   Premium luxury fashion e-commerce
   ============================================================ */

/* ── Google Fonts ─────────────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,500&family=Montserrat:wght@300;400;500;600;700&display=swap');

/* ── CSS Variables ────────────────────────────────────────── */
:root {
  --black:        #0A0A0A;
  --black-soft:   #1A1A1A;
  --black-mid:    #2A2A2A;
  --gold:         #C9A84C;
  --gold-light:   #DFC078;
  --gold-dark:    #A8893A;
  --cream:        #F8F6F1;
  --cream-dark:   #EDE9E0;
  --white:        #FFFFFF;
  --gray-100:     #F5F5F5;
  --gray-200:     #E8E8E8;
  --gray-400:     #AAAAAA;
  --gray-600:     #666666;
  --gray-800:     #333333;
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'Montserrat', sans-serif;
  --transition:   0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --shadow-sm:    0 2px 8px rgba(0,0,0,0.08);
  --shadow-md:    0 8px 30px rgba(0,0,0,0.12);
  --shadow-lg:    0 20px 60px rgba(0,0,0,0.18);
  --radius:       2px;
  --header-h:     80px;
}

/* ── Reset & Base ─────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--black);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; transition: var(--transition); }
img { max-width: 100%; height: auto; display: block; }
button { cursor: pointer; border: none; background: none; font-family: var(--font-body); }
input, textarea, select { font-family: var(--font-body); }

/* ── Typography ───────────────────────────────────────────── */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.2;
  color: var(--black);
}

.display-serif {
  font-family: var(--font-display);
  font-weight: 300;
  letter-spacing: 0.02em;
}

.section-label {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 400;
  line-height: 1.1;
  color: var(--black);
}

/* ── Utility ──────────────────────────────────────────────── */
.text-gold   { color: var(--gold); }
.text-cream  { color: var(--cream); }
.bg-black    { background: var(--black); }
.bg-cream    { background: var(--cream); }
.bg-gold     { background: var(--gold); }

/* ── Buttons ──────────────────────────────────────────────── */
.btn-jhanex {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 36px;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  border: 2px solid var(--black);
  color: var(--black);
  background: transparent;
  transition: var(--transition);
  cursor: pointer;
  position: relative;
  overflow: hidden;
}
.btn-jhanex::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--black);
  transform: translateX(-100%);
  transition: transform 0.35s cubic-bezier(0.4,0,0.2,1);
  z-index: 0;
}
.btn-jhanex:hover::before { transform: translateX(0); }
.btn-jhanex:hover { color: var(--white); }
.btn-jhanex span { position: relative; z-index: 1; }

.btn-jhanex-gold {
  border-color: var(--gold);
  color: var(--gold);
}
.btn-jhanex-gold::before { background: var(--gold); }
.btn-jhanex-gold:hover { color: var(--black); }

.btn-jhanex-solid {
  background: var(--black);
  color: var(--white);
  border-color: var(--black);
}
.btn-jhanex-solid::before { background: var(--gold); }
.btn-jhanex-solid:hover { color: var(--black); border-color: var(--gold); }

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

/* ── Header ───────────────────────────────────────────────── */
#jhanex-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--header-h);
  transition: background 0.4s ease, box-shadow 0.4s ease;
}

#jhanex-header.transparent {
  background: transparent;
}

#jhanex-header.scrolled {
  background: var(--white);
  box-shadow: 0 1px 0 rgba(0,0,0,0.1);
}

#jhanex-header.scrolled .nav-link,
#jhanex-header.scrolled .header-icon-btn,
#jhanex-header.scrolled .currency-btn {
  color: var(--black) !important;
}
#jhanex-header.scrolled .logo-img.logo-white { display: none; }
#jhanex-header.scrolled .logo-img.logo-dark  { display: block; }

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
  padding: 0 40px;
  max-width: 1600px;
  margin: 0 auto;
}

/* Logo */
.header-logo { flex: 0 0 auto; }
.header-logo img { height: 44px; width: auto; }
.logo-img.logo-dark { display: none; }

/* Nav */
.header-nav { display: flex; align-items: center; gap: 36px; list-style: none; }
.header-nav .nav-link {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--white);
  position: relative;
  padding-bottom: 4px;
}
.header-nav .nav-link::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width 0.3s ease;
}
.header-nav .nav-link:hover::after,
.header-nav .nav-link.active::after { width: 100%; }
.header-nav .nav-link.active { color: var(--gold); }

/* Header actions */
.header-actions { display: flex; align-items: center; gap: 20px; }

.header-icon-btn {
  color: var(--white);
  font-size: 1.1rem;
  position: relative;
  display: flex;
  align-items: center;
  padding: 4px;
  transition: color 0.3s;
}
.header-icon-btn:hover { color: var(--gold); }

.cart-badge {
  position: absolute;
  top: -6px; right: -8px;
  background: var(--gold);
  color: var(--black);
  font-size: 0.58rem;
  font-weight: 700;
  width: 16px; height: 16px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

/* Currency selector */
.currency-btn {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  color: var(--white);
  background: none;
  border: 1px solid rgba(255,255,255,0.4);
  padding: 5px 12px;
  transition: var(--transition);
}
.currency-btn:hover { border-color: var(--gold); color: var(--gold); }
.currency-dropdown { min-width: 80px; border-radius: 0; border: 1px solid var(--gray-200); }
.currency-dropdown .dropdown-item {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  padding: 8px 16px;
}
.currency-dropdown .dropdown-item.active,
.currency-dropdown .dropdown-item:hover { background: var(--black); color: var(--gold); }
.currency-dropdown .dropdown-item:focus { background: var(--black); color: var(--gold); outline: none; }

/* ── Hamburger — NEW class jx-hamburger ─────────────────── */
/* Hidden on desktop by default */
button.jx-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  padding: 8px 6px;
  cursor: pointer;
  background: none;
  border: none;
  outline: none;
  z-index: 10;
  position: relative;
}
button.jx-hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--white);
  transition: all 0.3s ease;
  border-radius: 1px;
}
#jhanex-header.scrolled button.jx-hamburger span { background: var(--black); }
button.jx-hamburger.is-open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
button.jx-hamburger.is-open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
button.jx-hamburger.is-open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile nav */
/* Old .mobile-nav removed — new drawer in header.php */

/* ── Hero Section ─────────────────────────────────────────── */
.hero-section {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: var(--black);
}
.hero-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.65;
  transform: scale(1.05);
  transition: transform 8s ease;
}
.hero-section:hover .hero-bg img { transform: scale(1.0); }

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(10,10,10,0.7) 0%,
    rgba(10,10,10,0.3) 50%,
    rgba(201,168,76,0.08) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 80px;
  padding-top: var(--header-h);
}

.hero-eyebrow {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.8s 0.3s forwards;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 8vw, 7.5rem);
  font-weight: 300;
  line-height: 1.0;
  color: var(--white);
  margin-bottom: 8px;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 0.9s 0.5s forwards;
}
.hero-title em {
  font-style: italic;
  color: var(--gold-light);
}

.hero-subtitle {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  font-weight: 300;
  color: rgba(255,255,255,0.8);
  margin-bottom: 40px;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.9s 0.7s forwards;
}

.hero-cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.9s 0.9s forwards;
}

.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.6);
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  z-index: 2;
  animation: bounce 2s infinite;
}
.hero-scroll svg { width: 20px; height: 20px; }

@keyframes fadeUp {
  to { opacity: 1; transform: translateY(0); }
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(8px); }
}

/* ── Section spacing ──────────────────────────────────────── */
.section-pad { padding: 100px 0; }
.section-pad-sm { padding: 60px 0; }

.container-jhanex {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
}

.section-header { margin-bottom: 60px; }
.section-header .section-label { display: block; margin-bottom: 14px; }

/* ── Category Cards ───────────────────────────────────────── */
.categories-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}

.cat-card {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3/4;
  cursor: pointer;
}

.cat-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.4,0,0.2,1);
}
.cat-card:hover img { transform: scale(1.08); }

.cat-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,10,10,0.75) 0%, rgba(10,10,10,0.1) 50%, transparent 100%);
  transition: background 0.4s;
}
.cat-card:hover::after {
  background: linear-gradient(to top, rgba(10,10,10,0.85) 0%, rgba(10,10,10,0.2) 60%, transparent 100%);
}

.cat-card-content {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 36px 32px;
  z-index: 2;
  transform: translateY(10px);
  transition: transform 0.4s ease;
}
.cat-card:hover .cat-card-content { transform: translateY(0); }

.cat-card-label {
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 8px;
}

.cat-card-name {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 400;
  color: var(--white);
  line-height: 1;
  display: block;
  margin-bottom: 16px;
}

.cat-card-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--white);
  border-bottom: 1px solid var(--gold);
  padding-bottom: 2px;
  transition: color 0.3s, border-color 0.3s;
  opacity: 0;
  transition: opacity 0.3s 0.1s;
}
.cat-card:hover .cat-card-link { opacity: 1; color: var(--gold); }

/* ── Product Cards ────────────────────────────────────────── */
.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.product-card {
  position: relative;
  cursor: pointer;
}

.product-card-image {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3/4;
  background: var(--gray-100);
  margin-bottom: 16px;
}

.product-card-image img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: opacity 0.5s ease, transform 0.6s ease;
}

.product-card-image .img-hover {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.5s ease;
}
.product-card:hover .img-hover { opacity: 1; }
.product-card:hover .product-card-image img:first-child { opacity: 0; }
.product-card:hover .product-card-image img { transform: scale(1.04); }

.product-card-actions {
  position: absolute;
  bottom: 16px;
  left: 16px; right: 16px;
  transform: translateY(10px);
  opacity: 0;
  transition: all 0.3s ease;
}
.product-card:hover .product-card-actions { opacity: 1; transform: translateY(0); }

.btn-quick-add {
  width: 100%;
  padding: 12px;
  background: var(--black);
  color: var(--white);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: background 0.3s;
}
.btn-quick-add:hover { background: var(--gold); color: var(--black); }

.product-badge {
  position: absolute;
  top: 12px; left: 12px;
  background: var(--black);
  color: var(--white);
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 4px 10px;
  z-index: 2;
}
.product-badge.sale { background: var(--gold); color: var(--black); }
.product-badge.new  { background: var(--black-soft); }

.product-card-info {}
.product-card-name {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 400;
  color: var(--black);
  margin-bottom: 6px;
  line-height: 1.3;
}
.product-card-name a:hover { color: var(--gold-dark); }

.product-card-price {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--black);
}
.product-card-price .price-original {
  color: var(--gray-400);
  text-decoration: line-through;
  margin-left: 8px;
  font-size: 0.75rem;
}

.product-rating {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.68rem;
  color: var(--gray-600);
  margin-top: 4px;
}
.product-rating .stars { color: var(--gold); letter-spacing: -1px; }

/* ── New Arrivals Section ─────────────────────────────────── */
.new-arrivals { background: var(--white); }
.new-arrivals .section-header { text-align: center; }

/* ── Brand Story Strip ────────────────────────────────────── */
.brand-story {
  background: var(--black);
  overflow: hidden;
}

.brand-story-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 560px;
}

.brand-story-image {
  position: relative;
  overflow: hidden;
}
.brand-story-image img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}
.brand-story:hover .brand-story-image img { transform: scale(1.04); }
.brand-story-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 60%, var(--black) 100%);
}

.brand-story-content {
  padding: 80px 70px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.brand-story-content .section-label { margin-bottom: 20px; }
.brand-story-content h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 400;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 24px;
}
.brand-story-content p {
  font-size: 0.88rem;
  line-height: 1.9;
  color: rgba(255,255,255,0.65);
  margin-bottom: 32px;
}

/* Stats strip */
.brand-stats {
  display: flex;
  gap: 40px;
  margin-bottom: 36px;
}
.brand-stat-item { border-left: 2px solid var(--gold); padding-left: 16px; }
.brand-stat-num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 400;
  color: var(--gold);
  line-height: 1;
}
.brand-stat-label {
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-top: 4px;
}

/* ── Features Strip ───────────────────────────────────────── */
.features-strip {
  background: var(--cream);
  padding: 50px 0;
  border-top: 1px solid var(--cream-dark);
  border-bottom: 1px solid var(--cream-dark);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 0;
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 30px 24px;
  border-right: 1px solid var(--cream-dark);
}
.feature-item:last-child { border-right: none; }

.feature-icon {
  width: 44px; height: 44px;
  margin-bottom: 14px;
  color: var(--gold);
}

.feature-title {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--black);
  margin-bottom: 6px;
}
.feature-desc {
  font-size: 0.75rem;
  color: var(--gray-600);
  line-height: 1.6;
}

/* ── Newsletter ───────────────────────────────────────────── */
.newsletter-section {
  background: var(--black);
  padding: 80px 0;
  text-align: center;
}
.newsletter-section h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 400;
  color: var(--white);
  margin-bottom: 12px;
}
.newsletter-section p {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.55);
  margin-bottom: 36px;
}
.newsletter-form {
  display: flex;
  max-width: 480px;
  margin: 0 auto;
  gap: 0;
}
.newsletter-form input {
  flex: 1;
  padding: 14px 20px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.2);
  color: var(--white);
  font-size: 0.8rem;
  outline: none;
  transition: border-color 0.3s;
}
.newsletter-form input::placeholder { color: rgba(255,255,255,0.35); }
.newsletter-form input:focus { border-color: var(--gold); }
.newsletter-form button {
  padding: 14px 28px;
  background: var(--gold);
  color: var(--black);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.3s;
}
.newsletter-form button:hover { background: var(--gold-light); }

/* ── WhatsApp Floating ────────────────────────────────────── */
.whatsapp-float {
  position: fixed;
  bottom: 32px;
  right: 32px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
}

.whatsapp-btn {
  width: 58px; height: 58px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  transition: transform 0.3s, box-shadow 0.3s;
  position: relative;
}
.whatsapp-btn:hover { transform: scale(1.1); box-shadow: 0 6px 28px rgba(37,211,102,0.55); }
.whatsapp-btn svg { width: 30px; height: 30px; fill: white; }

.whatsapp-pulse {
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid #25D366;
  opacity: 0;
  animation: waPulse 2.5s infinite;
}

@keyframes waPulse {
  0%   { transform: scale(1); opacity: 0.6; }
  100% { transform: scale(1.5); opacity: 0; }
}

.whatsapp-tooltip {
  background: var(--black);
  color: var(--white);
  font-size: 0.68rem;
  font-weight: 500;
  padding: 6px 14px;
  border-radius: 20px;
  white-space: nowrap;
  opacity: 0;
  transform: translateX(10px);
  transition: all 0.3s;
  pointer-events: none;
}
.whatsapp-float:hover .whatsapp-tooltip { opacity: 1; transform: translateX(0); }

/* ── Footer ───────────────────────────────────────────────── */
#jhanex-footer {
  background: var(--black);
  padding: 80px 0 0;
  color: rgba(255,255,255,0.65);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 60px;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-brand img { height: 40px; width: auto; margin-bottom: 20px; }
.footer-brand p {
  font-size: 0.8rem;
  line-height: 1.8;
  color: rgba(255,255,255,0.5);
  margin-bottom: 24px;
}

.footer-social { display: flex; gap: 14px; }
.footer-social a {
  width: 36px; height: 36px;
  border: 1px solid rgba(255,255,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
}
.footer-social a:hover { border-color: var(--gold); color: var(--gold); }

.footer-col-title {
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 24px;
}

.footer-links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
  transition: color 0.3s;
}
.footer-links a:hover { color: var(--gold); }

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
}
.footer-contact-icon {
  color: var(--gold);
  font-size: 0.9rem;
  margin-top: 2px;
  flex-shrink: 0;
}
.footer-contact-text {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.5;
}
.footer-contact-text a { color: rgba(255,255,255,0.5); }
.footer-contact-text a:hover { color: var(--gold); }

.footer-whatsapp-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(37,211,102,0.12);
  border: 1px solid rgba(37,211,102,0.3);
  color: #25D366;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  padding: 8px 16px;
  margin-top: 8px;
  transition: var(--transition);
}
.footer-whatsapp-link:hover { background: #25D366; color: var(--white); }

.footer-bottom {
  max-width: 1400px;
  margin: 0 auto;
  padding: 20px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.7rem;
  color: rgba(255,255,255,0.3);
}

/* ── Flash messages ───────────────────────────────────────── */
.flash-container { padding: 0 40px; max-width: 1400px; margin: 0 auto; margin-top: 10px; }

/* ── Star ratings ─────────────────────────────────────────── */
.star-rating .star-full  { color: var(--gold); }
.star-rating .star-half  { color: var(--gold); }
.star-rating .star-empty { color: var(--gray-200); }

/* ── Forms ────────────────────────────────────────────────── */
.form-control-jhanex {
  width: 100%;
  padding: 13px 16px;
  border: 1px solid var(--gray-200);
  background: var(--white);
  font-family: var(--font-body);
  font-size: 0.82rem;
  color: var(--black);
  border-radius: 0;
  outline: none;
  transition: border-color 0.3s;
}
.form-control-jhanex:focus { border-color: var(--black); }
.form-label-jhanex {
  display: block;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--black);
  margin-bottom: 8px;
}

/* ── Breadcrumb ───────────────────────────────────────────── */
.breadcrumb-jhanex {
  padding: calc(var(--header-h) + 20px) 0 20px;
  background: var(--cream);
  border-bottom: 1px solid var(--cream-dark);
}
.breadcrumb-jhanex ol {
  list-style: none;
  display: flex;
  gap: 8px;
  align-items: center;
  font-size: 0.7rem;
  color: var(--gray-600);
}
.breadcrumb-jhanex ol li::after { content: '/'; margin-left: 8px; color: var(--gray-400); }
.breadcrumb-jhanex ol li:last-child::after { display: none; }
.breadcrumb-jhanex ol li:last-child { color: var(--black); font-weight: 500; }
.breadcrumb-jhanex a:hover { color: var(--gold-dark); }

/* ── Page with header offset ──────────────────────────────── */
.page-content { padding-top: var(--header-h); }

/* ── Pagination override ──────────────────────────────────── */
.jhanex-pagination .page-link {
  border-radius: 0;
  border-color: var(--gray-200);
  color: var(--black);
  font-size: 0.75rem;
  padding: 8px 16px;
}
.jhanex-pagination .page-item.active .page-link {
  background: var(--black);
  border-color: var(--black);
  color: var(--white);
}
.jhanex-pagination .page-link:hover { background: var(--gold); border-color: var(--gold); color: var(--black); }

/* ── Responsive ───────────────────────────────────────────── */
@media (max-width: 1200px) {
  .products-grid { grid-template-columns: repeat(3, 1fr); }
  .hero-content { padding: 0 40px; padding-top: var(--header-h); }
}

@media (max-width: 992px) {
  .header-nav { display: none; }
  button.jx-hamburger { display: flex !important; } /* show on mobile */
  .categories-grid { grid-template-columns: 1fr; gap: 2px; }
  .categories-grid .cat-card { aspect-ratio: 16/9; }
  .brand-story-inner { grid-template-columns: 1fr; }
  .brand-story-content { padding: 60px 40px; }
  .features-grid { grid-template-columns: repeat(2,1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .header-inner { padding: 0 24px; }
}

@media (max-width: 768px) {
  :root { --header-h: 64px; }
  .hero-content { padding: 0 24px; padding-top: var(--header-h); }
  .hero-title { font-size: clamp(2.8rem, 12vw, 5rem); }
  .section-pad { padding: 60px 0; }
  .container-jhanex { padding: 0 24px; }
  .products-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .footer-grid { grid-template-columns: 1fr; gap: 36px; padding: 0 24px 40px; }
  .footer-bottom { padding: 16px 24px; flex-direction: column; gap: 8px; text-align: center; }
  .features-grid { grid-template-columns: 1fr 1fr; }
  .brand-stats { gap: 24px; }
  .newsletter-form { flex-direction: column; }
  .newsletter-form input, .newsletter-form button { width: 100%; }
  /* mobile-nav drawer in header.php */
}

@media (max-width: 480px) {
  .products-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .hero-cta { flex-direction: column; }
  .whatsapp-float { bottom: 20px; right: 20px; }
}
