/*
Theme Name: Jewelry Ecom Theme
Theme URI: https://example.com/jewelry-ecom
Author: Ecom Dev
Description: Premium jewelry eCommerce WordPress theme. Feminine luxury design with White + Gold + Magenta palette. WooCommerce compatible.
Version: 2.0.0
Requires at least: 6.0
Tested up to: 7.0
Requires PHP: 8.0
License: GPL v2 or later
Text Domain: ecom-theme
Tags: jewelry, ecommerce, woocommerce, luxury, responsive
WooCommerce compatible: true
*/

:root {
  --j-primary: #B01265;
  --j-primary-dark: #6D004B;
  --j-gold: #D4AF37;
  --j-gold-light: #E8D48B;
  --j-bg: #FFFFFF;
  --j-beige: #F6F0EA;
  --j-text: #222222;
  --j-text-light: #666666;
  --j-border: #E5E5E5;
  --j-dark: #111111;
  --j-shadow: 0 4px 20px rgba(0,0,0,0.08);
  --j-shadow-hover: 0 8px 30px rgba(0,0,0,0.15);
  --j-radius: 12px;
  --j-radius-sm: 6px;
  --j-transition: all 0.3s ease;
  --j-font: 'Playfair Display', Georgia, serif;
  --j-font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --j-container: 1200px;
}

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700;800&family=Inter:wght@300;400;500;600;700&display=swap');

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--j-font-body);
  color: var(--j-text);
  font-size: 16px;
  line-height: 1.6;
  background: var(--j-bg);
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; transition: var(--j-transition); }

img { max-width: 100%; height: auto; display: block; }

.container { max-width: var(--j-container); margin: 0 auto; padding: 0 20px; width: 100%; }

h1, h2, h3, h4, h5, h6 { font-family: var(--j-font); font-weight: 700; line-height: 1.2; }

.section-title {
  text-align: center;
  font-size: 36px;
  color: var(--j-primary-dark);
  margin-bottom: 8px;
  position: relative;
}
.section-title::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--j-gold), var(--j-primary));
  margin: 12px auto 0;
  border-radius: 2px;
}
.section-subtitle {
  text-align: center;
  font-size: 14px;
  color: var(--j-text-light);
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 4px;
  font-family: var(--j-font-body);
}

/* === ANNOUNCEMENT BAR === */
.announcement-bar {
  background: var(--j-dark);
  color: rgba(255,255,255,0.85);
  font-size: 12px;
  padding: 8px 0;
  letter-spacing: 0.5px;
}
.announcement-bar .container { display: flex; justify-content: space-between; align-items: center; }
.announcement-bar a { color: var(--j-gold); margin: 0 4px; }
.announcement-bar a:hover { color: var(--j-gold-light); }
.announcement-bar .social-links { display: flex; gap: 12px; }
.announcement-bar .social-links a { color: rgba(255,255,255,0.7); font-size: 14px; }
.announcement-bar .social-links a:hover { color: var(--j-gold); }

/* === HEADER === */
.site-header {
  background: var(--j-bg);
  box-shadow: 0 2px 15px rgba(0,0,0,0.04);
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: var(--j-transition);
}
.site-header .container {
  max-width: 1360px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Row 1: Top Row */
.header-top-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 85px;
  gap: 20px;
}

.site-branding {
  flex-shrink: 0;
}
.logo-link {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--j-text);
  font-weight: bold;
  transition: var(--j-transition);
  text-decoration: none;
}
.logo-icon {
  color: var(--j-primary-dark);
}
.logo-text {
  font-family: var(--j-font);
  font-size: 26px;
  font-weight: 800;
  letter-spacing: 1.5px;
  color: var(--j-primary-dark);
}
.custom-logo {
  max-height: 50px;
  width: auto;
  display: block;
}

/* Category Dropdown Selector */
.category-dropdown-wrap {
  position: relative;
  flex-shrink: 0;
}
.category-dropdown-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #F3F4F6;
  border: 1px solid #E5E7EB;
  color: var(--j-text);
  font-family: var(--j-font-body);
  font-size: 14px;
  font-weight: 600;
  padding: 10px 18px;
  border-radius: 20px;
  cursor: pointer;
  transition: var(--j-transition);
}
.category-dropdown-btn:hover {
  background: #E5E7EB;
}
.category-dropdown-btn .menu-icon {
  color: var(--j-text);
}
.category-dropdown-btn .chevron-icon {
  opacity: 0.7;
}
.category-dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  background: var(--j-bg);
  min-width: 220px;
  border-radius: var(--j-radius);
  box-shadow: var(--j-shadow);
  border: 1px solid var(--j-border);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: var(--j-transition);
  z-index: 1010;
  padding: 10px 0;
}
.category-dropdown-wrap:hover .category-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.category-dropdown-menu ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.category-dropdown-menu ul li a {
  display: block;
  padding: 10px 20px;
  color: var(--j-text);
  font-size: 14px;
  font-weight: 500;
  transition: var(--j-transition);
}
.category-dropdown-menu ul li a:hover {
  background: var(--j-beige);
  color: var(--j-primary);
}

/* Search Bar Pill style */
.header-search-wrap {
  flex: 1;
  max-width: 480px;
  position: relative;
}
.header-search-wrap .search-form {
  position: relative;
  display: flex;
  align-items: center;
}
.header-search-wrap .search-field {
  width: 100%;
  height: 44px;
  border: 2px solid var(--j-border);
  border-radius: 22px;
  padding: 10px 52px 10px 22px;
  font-size: 14px;
  outline: none;
  font-family: var(--j-font-body);
  background: var(--j-bg);
  transition: var(--j-transition);
}
.header-search-wrap .search-field:focus {
  border-color: var(--j-primary);
  box-shadow: 0 0 0 4px rgba(176, 18, 101, 0.1);
}
.header-search-wrap .search-submit {
  position: absolute;
  right: 5px;
  top: 50%;
  transform: translateY(-50%);
  background: var(--j-dark);
  color: #FFFFFF;
  border: none;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--j-transition);
}
.header-search-wrap .search-submit:hover {
  background: var(--j-primary);
}
.header-search-wrap .search-icon {
  stroke: #FFFFFF;
}

/* Action Links on Right */
.header-action-links {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-shrink: 0;
}
.action-link {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--j-text);
  font-size: 13px;
  font-weight: 600;
  transition: var(--j-transition);
  text-decoration: none;
}
.action-link:hover {
  color: var(--j-primary);
}
.action-link svg {
  color: inherit;
  stroke-width: 1.8;
}
.cart-icon-wrap {
  position: relative;
  display: inline-flex;
}
.cart-badge {
  position: absolute;
  top: -8px;
  right: -8px;
  background: #10B981;
  color: #FFFFFF;
  font-size: 9px;
  font-weight: 700;
  min-width: 16px;
  height: 16px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1.5px solid var(--j-bg);
  line-height: 1;
}

/* Row 2: Bottom Navigation Row */
.header-navigation-row {
  display: flex;
  justify-content: flex-start;
  padding: 10px 0 16px 0;
}
.header-navigation-row .main-navigation {
  display: flex;
  justify-content: flex-start;
  flex: 1;
}
.header-navigation-row .main-navigation ul {
  list-style: none;
  display: flex;
  gap: 24px;
  margin: 0;
  padding: 0;
}
.header-navigation-row .main-navigation ul li {
  position: relative;
}
.header-navigation-row .main-navigation ul li a {
  display: block;
  padding: 6px 0;
  color: var(--j-text);
  font-weight: 600;
  font-size: 14px;
  text-transform: none;
  transition: var(--j-transition);
  white-space: nowrap;
}
.header-navigation-row .main-navigation ul li a:hover,
.header-navigation-row .main-navigation ul li.current-menu-item a {
  color: var(--j-primary);
}
.header-navigation-row .main-navigation ul li.menu-item-has-children > a::after {
  content: '\25BC';
  margin-left: 6px;
  font-size: 8px;
  transition: var(--j-transition);
}
.header-navigation-row .main-navigation ul li:hover > ul.sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.header-navigation-row .main-navigation ul ul.sub-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  background: var(--j-bg);
  min-width: 220px;
  box-shadow: var(--j-shadow);
  border-radius: var(--j-radius);
  padding: 12px 0;
  opacity: 0;
  visibility: hidden;
  transition: var(--j-transition);
  z-index: 999;
  border: 1px solid var(--j-border);
}
.header-navigation-row .main-navigation ul ul.sub-menu li a {
  padding: 8px 20px;
  font-size: 14px;
  font-weight: 500;
}

/* Row 3: Scrolling Announcement Bar */
.header-announcement-row {
  background: #162E24;
  padding: 8px 0;
  overflow: hidden;
  position: relative;
  border-top: 1px solid rgba(255,255,255,0.05);
}
.announcement-ticker-wrap {
  width: 100%;
  overflow: hidden;
}
.announcement-ticker {
  display: flex;
  width: max-content;
  animation: ticker-scroll 35s linear infinite;
}
.ticker-item {
  display: inline-flex;
  align-items: center;
  color: #FFFFFF;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 0 30px;
  white-space: nowrap;
}
.ticker-item .bullet {
  color: var(--j-gold);
  margin-right: 10px;
  font-size: 10px;
}
.brand-badge {
  background: var(--j-gold);
  color: #162E24;
  padding: 3px 12px;
  border-radius: 20px;
  font-weight: 800;
  font-size: 10px;
  letter-spacing: 2.5px;
  display: inline-block;
}

@keyframes ticker-scroll {
  0% {
    transform: translate3d(0, 0, 0);
  }
  100% {
    transform: translate3d(-50%, 0, 0);
  }
}

.menu-toggle { display: none; background: none; border: none; font-size: 22px; cursor: pointer; padding: 8px; color: var(--j-text); z-index: 1001; }
body.menu-open { overflow: hidden; }

/* === HERO BANNER / SLIDER (FULLSCREEN IMAGE) === */
.hero-section {
  position: relative;
  overflow: hidden;
  height: auto;
  min-height: unset;
  background: var(--j-dark);
}
.hero-slider-container {
  width: 100%;
  height: 100%;
  position: relative;
}
.hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.8s ease-in-out, visibility 0.8s ease-in-out;
  z-index: 1;
}
.hero-slide.active {
  position: relative;
  opacity: 1;
  visibility: visible;
  z-index: 2;
}
.hero-slide-inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 40px;
  align-items: center;
  padding: 80px 0;
}
  width: 100%;
}
.hero-slide .hero-content {
  text-align: left;
}
.hero-slide .hero-content h1 {
  font-family: var(--j-font);
  font-size: 56px;
  color: var(--j-bg); /* White text on dark overlay */
  text-shadow: 0 2px 10px rgba(0,0,0,0.3);
  line-height: 1.1;
  margin-bottom: 8px;
}
.hero-slide .hero-label {
  color: var(--j-gold-light);
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 3px;
  font-weight: 700;
  margin-bottom: 12px;
}
.hero-slide .hero-offer {
  font-size: 72px;
  font-weight: 800;
  color: var(--j-gold);
  font-family: var(--j-font);
  margin: 8px 0;
  text-shadow: 0 2px 15px rgba(0,0,0,0.3);
}
.hero-slide p {
  color: rgba(255,255,255,0.9);
  font-size: 18px;
  margin-bottom: 24px;
}
.btn-hero {
  display: inline-block;
  padding: 16px 48px;
  background: linear-gradient(135deg, var(--j-primary), var(--j-primary-dark));
  color: var(--j-bg);
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 2px;
  border-radius: 50px;
  transition: var(--j-transition);
  border: none;
  cursor: pointer;
}
.btn-hero:hover { transform: translateY(-3px); box-shadow: 0 10px 30px rgba(176,18,101,0.4); color: var(--j-bg); }

.hero-slide .hero-coupon-col {
  display: flex;
  justify-content: flex-end;
}
.hero-slide .hero-coupon {
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--j-radius);
  color: var(--j-bg);
  padding: 30px;
  width: 240px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0,0,0,0.25);
  animation: float 6s ease-in-out infinite;
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-15px); }
}
.hero-slide .hero-coupon .coupon-amount {
  font-family: var(--j-font);
  font-size: 36px;
  font-weight: 800;
  color: var(--j-gold);
}
.hero-slide .hero-coupon .coupon-label {
  font-size: 12px;
  color: rgba(255,255,255,0.7);
  text-transform: uppercase;
  letter-spacing: 1px;
}
.hero-slide .hero-coupon .coupon-code {
  display: inline-block;
  background: var(--j-primary);
  color: #fff;
  padding: 6px 16px;
  border-radius: 20px;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 1px;
  margin-top: 8px;
}

/* Slider Controls */
.hero-nav-arrows {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  padding: 0 30px;
  z-index: 10;
  pointer-events: none;
}
.hero-nav-arrows button {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(5px);
  border: 1px solid rgba(255,255,255,0.25);
  color: #fff;
  font-size: 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--j-transition);
  pointer-events: auto;
}
.hero-nav-arrows button:hover {
  background: var(--j-primary);
  border-color: var(--j-primary);
  transform: scale(1.05);
}
.hero-dots {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  gap: 8px;
}
.hero-dots .hero-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  border: none;
  cursor: pointer;
  transition: var(--j-transition);
}
.hero-dots .hero-dot.active {
  background: var(--j-primary);
  width: 30px;
  border-radius: 6px;
}

/* === WHAT'S NEW === */
.whats-new { padding: 80px 0; }
.product-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; margin-top: 40px; }

.product-card {
  background: var(--j-bg);
  border-radius: var(--j-radius);
  overflow: hidden;
  box-shadow: var(--j-shadow);
  transition: var(--j-transition);
  position: relative;
  border: 1px solid var(--j-border);
}
.product-card:hover { transform: translateY(-6px); box-shadow: var(--j-shadow-hover); }

.product-card .product-image {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1;
  background: var(--j-beige);
}
.product-card .product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.product-card:hover .product-image img { transform: scale(1.1); }

.product-card .product-actions-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  gap: 8px;
  padding: 16px;
  background: linear-gradient(transparent, rgba(0,0,0,0.4));
  opacity: 0;
  transform: translateY(10px);
  transition: var(--j-transition);
}
.product-card:hover .product-actions-overlay { opacity: 1; transform: translateY(0); }
.product-card .product-actions-overlay a {
  flex: 1;
  padding: 8px;
  background: var(--j-bg);
  color: var(--j-text);
  border-radius: var(--j-radius-sm);
  text-align: center;
  font-size: 13px;
  font-weight: 600;
  transition: var(--j-transition);
}
.product-card .product-actions-overlay a:hover { background: var(--j-primary); color: var(--j-bg); }
.product-card .product-actions-overlay .wishlist-btn {
  flex: 0 0 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  padding: 0;
}

.product-card .product-info { padding: 16px; text-align: center; }
.product-card .product-name {
  font-family: var(--j-font);
  font-size: 16px;
  font-weight: 600;
  color: var(--j-text);
  margin-bottom: 6px;
}
.product-card .product-price {
  font-size: 18px;
  font-weight: 700;
  color: var(--j-primary);
}
.product-card .product-old-price {
  font-size: 14px;
  color: var(--j-text-light);
  text-decoration: line-through;
  margin-right: 8px;
  font-weight: 400;
}
.product-badge-j {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--j-primary);
  color: var(--j-bg);
  font-size: 11px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 20px;
  z-index: 2;
  letter-spacing: 0.5px;
}
.product-badge-j.discount { background: var(--j-gold); color: var(--j-dark); }
.product-badge-j.new-badge { background: var(--j-primary-dark); }

/* === BEST SELLING === */
.best-selling { padding: 80px 0; background: var(--j-beige); }
.slider-wrapper { position: relative; margin-top: 40px; }
.slider-track { display: flex; gap: 20px; overflow-x: auto; scroll-snap-type: x mandatory; scrollbar-width: none; -ms-overflow-style: none; padding: 10px 4px; }
.slider-track::-webkit-scrollbar { display: none; }
.slider-track .product-card { min-width: 260px; scroll-snap-align: start; flex-shrink: 0; }
.slider-nav {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 24px;
}
.slider-nav button {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 2px solid var(--j-border);
  background: var(--j-bg);
  cursor: pointer;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--j-transition);
  color: var(--j-text);
}
.slider-nav button:hover { border-color: var(--j-primary); color: var(--j-primary); background: var(--j-beige); }

/* === TOP CATEGORIES === */
.top-categories {
  padding: 60px 0;
  background: var(--j-bg);
  color: var(--j-text);
}
.top-categories .section-title { color: var(--j-primary-dark); }
.top-categories .categories-grid { 
  display: grid; 
  grid-template-columns: repeat(auto-fit, minmax(130px, 1fr)); 
  gap: 30px; 
  margin-top: 40px; 
  justify-content: center;
}
.top-categories .category-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 12px;
  text-decoration: none;
  transition: var(--j-transition);
}
.top-categories .category-card:hover {
  transform: translateY(-5px);
}
.top-categories .category-image-wrap {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid var(--j-beige);
  box-shadow: 0 4px 10px rgba(0,0,0,0.03);
  transition: var(--j-transition);
}
.top-categories .category-card:hover .category-image-wrap {
  border-color: var(--j-primary);
  box-shadow: var(--j-shadow);
}
.top-categories .category-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
  color: transparent;
  text-indent: -9999px;
}
.top-categories .category-card:hover img {
  transform: scale(1.08);
}
.top-categories .category-name {
  font-family: var(--j-font-body);
  font-size: 14px;
  font-weight: 600;
  color: var(--j-text);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* === EVERYDAY STEALS / BUDGET === */
.shop-by-budget {
  padding: 70px 0;
  background: var(--j-beige);
}
.budget-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}
.budget-card {
  display: block;
  text-decoration: none;
  color: var(--j-text);
  padding: 30px 24px;
  border-radius: var(--j-radius);
  box-shadow: var(--j-shadow);
  transition: var(--j-transition);
  position: relative;
  overflow: hidden;
}
.budget-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--j-shadow-hover);
}
.budget-card-content h3 {
  font-family: var(--j-font);
  font-size: 24px;
  color: var(--j-dark);
  margin-bottom: 8px;
}
.budget-card-content .price-badge {
  display: inline-block;
  background: rgba(0,0,0,0.06);
  color: var(--j-primary-dark);
  font-weight: 700;
  font-size: 13px;
  padding: 6px 14px;
  border-radius: 20px;
  border: 1px solid rgba(0,0,0,0.04);
}
.budget-card:hover .price-badge {
  background: var(--j-primary);
  color: #FFF;
  border-color: var(--j-primary);
}

/* Card Specific Pastel Styles */
.card-rings {
  background: linear-gradient(135deg, #FFF5F5 0%, #FFE3E3 100%);
  border-left: 5px solid #F87171;
}
.card-earrings {
  background: linear-gradient(135deg, #F0F9FF 0%, #E0F2FE 100%);
  border-left: 5px solid #60A5FA;
}
.card-bangles {
  background: linear-gradient(135deg, #FEFBF0 0%, #FEF3C7 100%);
  border-left: 5px solid #FBBF24;
}
.card-necklaces {
  background: linear-gradient(135deg, #F0FDF4 0%, #DCFCE7 100%);
  border-left: 5px solid #34D399;
}
.card-silver {
  background: linear-gradient(135deg, #F9FAFB 0%, #F3F4F6 100%);
  border-left: 5px solid #9CA3AF;
}
.card-premium {
  background: linear-gradient(135deg, #FAF5FF 0%, #F3E8FF 100%);
  border-left: 5px solid #C084FC;
}

/* === PRODUCT ROW LAYOUTS === */
.product-row-section {
  padding: 75px 0;
  background: var(--j-bg);
  border-bottom: 1px solid var(--j-border);
}
.section-subtitle-bullets {
  text-align: center;
  font-size: 13px;
  letter-spacing: 1.5px;
  color: var(--j-text-light);
  margin-top: -4px;
  margin-bottom: 35px;
  font-weight: 500;
  text-transform: uppercase;
}
.product-card .product-seller {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--j-text-light);
  margin-bottom: 4px;
  font-weight: 600;
}
.product-card .discount-pct {
  font-size: 12px;
  color: #10B981;
  font-weight: 700;
  margin-left: 8px;
}

/* Subcategories row at the bottom of What's New / Best Selling */
.subcategories-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
  margin-top: 50px;
  flex-wrap: wrap;
}
.subcategory-badge-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 10px;
  text-decoration: none;
  transition: var(--j-transition);
}
.subcategory-badge-card .badge-img {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background-size: cover;
  background-position: center;
  background-color: var(--j-beige);
  background-image: linear-gradient(135deg, #F6F0EA 0%, #E8D48B 100%);
  border: 3px solid var(--j-border);
  transition: var(--j-transition);
}
.subcategory-badge-card:hover .badge-img {
  transform: scale(1.05);
  border-color: var(--j-primary);
  box-shadow: var(--j-shadow);
}
.subcategory-badge-card span {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: var(--j-text);
  text-transform: uppercase;
}

/* === FEATURED ON YOUTUBE === */
.featured-youtube { padding: 80px 0; background: var(--j-beige); }
.video-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: 40px; }
.video-grid.video-grid-1 { grid-template-columns: 1fr; max-width: 480px; margin-left: auto; margin-right: auto; }
.video-grid.video-grid-2 { grid-template-columns: repeat(2, 1fr); max-width: 860px; margin-left: auto; margin-right: auto; }
.video-grid.video-grid-3 { grid-template-columns: repeat(3, 1fr); max-width: 1100px; margin-left: auto; margin-right: auto; }
.video-card {
  background: var(--j-bg);
  border-radius: var(--j-radius);
  overflow: hidden;
  box-shadow: var(--j-shadow);
  transition: var(--j-transition);
}
.video-card:hover { transform: translateY(-4px); box-shadow: var(--j-shadow-hover); }
.video-card .video-thumb {
  position: relative;
  aspect-ratio: 16/9;
  background: var(--j-beige);
  overflow: hidden;
}
.video-card .video-thumb img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.6s ease;
}
.video-card:hover .video-thumb img { transform: scale(1.05); }
.video-card .video-thumb .play-btn {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 50px; height: 50px;
  background: var(--j-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--j-bg);
  font-size: 20px;
  box-shadow: 0 4px 15px rgba(176,18,101,0.4);
}
.video-card .video-info { padding: 12px 16px 16px; }
.video-card .video-title { font-size: 14px; font-weight: 600; margin-bottom: 4px; }
.video-card .video-price { font-size: 16px; font-weight: 700; color: var(--j-primary); }

/* === PROMO BANNER === */
.promo-banner {
  padding: 60px 0;
  background: linear-gradient(135deg, var(--j-primary), var(--j-primary-dark));
  color: var(--j-bg);
}
.promo-banner .container { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; }
.promo-banner .promo-image { text-align: center; }
.promo-banner .promo-image img { max-height: 350px; object-fit: contain; margin: 0 auto; }
.promo-banner .promo-content h2 {
  font-family: var(--j-font);
  font-size: 42px;
  color: var(--j-bg);
  margin-bottom: 16px;
}
.promo-banner .promo-content h2 span { color: var(--j-gold); }
.promo-banner .promo-content p { opacity: 0.9; margin-bottom: 24px; font-size: 16px; }
.btn-promo {
  display: inline-block;
  padding: 14px 36px;
  background: var(--j-gold);
  color: var(--j-dark);
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 2px;
  border-radius: 50px;
  transition: var(--j-transition);
}
.btn-promo:hover { background: var(--j-gold-light); transform: translateY(-2px); color: var(--j-dark); }

/* === BRANDS === */
.brands-section { padding: 60px 0; }
.brands-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; margin-top: 40px; }
.brand-card {
  background: linear-gradient(135deg, var(--j-primary-dark), #4a0032);
  border-radius: var(--j-radius);
  padding: 40px;
  text-align: center;
  color: var(--j-bg);
  transition: var(--j-transition);
}
.brand-card:hover { transform: translateY(-4px); box-shadow: var(--j-shadow-hover); }
.brand-card .brand-logo { font-family: var(--j-font); font-size: 32px; font-weight: 800; margin-bottom: 12px; }
.brand-card .brand-logo span { color: var(--j-gold); }
.brand-card p { opacity: 0.8; margin-bottom: 20px; font-size: 14px; }
.brand-card .btn-brand {
  display: inline-block;
  padding: 10px 28px;
  border: 2px solid var(--j-gold);
  color: var(--j-gold);
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: var(--j-transition);
}
.brand-card .btn-brand:hover { background: var(--j-gold); color: var(--j-dark); }

/* === GIFT CARD === */
.gift-card-section {
  padding: 80px 0;
  background: var(--j-beige);
}
.gift-card-banner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  background: var(--j-bg);
  border-radius: var(--j-radius);
  overflow: hidden;
  box-shadow: var(--j-shadow);
}
.gift-card-banner .gift-image { }
.gift-card-banner .gift-image img { width: 100%; height: 400px; object-fit: cover; }
.gift-card-banner .gift-content { padding: 40px; }
.gift-card-banner .gift-label { font-size: 12px; text-transform: uppercase; letter-spacing: 3px; color: var(--j-primary); margin-bottom: 8px; }
.gift-card-banner .gift-content h2 {
  font-family: var(--j-font);
  font-size: 36px;
  color: var(--j-dark);
  margin-bottom: 8px;
}
.gift-card-banner .gift-content .gift-sub {
  font-size: 28px;
  font-weight: 800;
  color: var(--j-gold);
  font-family: var(--j-font);
  margin-bottom: 20px;
}
.btn-gift {
  display: inline-block;
  padding: 14px 36px;
  background: var(--j-primary);
  color: var(--j-bg);
  border-radius: 50px;
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: var(--j-transition);
}
.btn-gift:hover { background: var(--j-primary-dark); transform: translateY(-2px); color: var(--j-bg); }

/* === REVIEWS === */
.reviews-section { padding: 80px 0; background: var(--j-bg); }
.reviews-slider { margin-top: 40px; overflow: hidden; }
.review-card {
  background: var(--j-beige);
  border-radius: var(--j-radius);
  padding: 30px;
  text-align: center;
  min-width: 320px;
  scroll-snap-align: start;
}
.review-card .stars { color: var(--j-gold); font-size: 18px; margin-bottom: 12px; }
.review-card .review-text {
  font-style: italic;
  color: var(--j-text-light);
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 16px;
}
.review-card .review-author { font-weight: 700; color: var(--j-text); font-size: 14px; }
.review-card .review-date { font-size: 12px; color: var(--j-text-light); margin-top: 4px; }

/* === TRUST BADGES === */
.trust-badges {
  padding: 60px 0;
  background: var(--j-bg);
  border-top: 1px solid var(--j-border);
  border-bottom: 1px solid var(--j-border);
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}
.trust-item {
  display: flex;
  align-items: center;
  text-align: left;
  gap: 16px;
}
.trust-item .trust-icon {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: var(--j-beige);
  color: var(--j-primary-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin: 0;
  border: none;
  box-shadow: none;
}
.trust-item .trust-icon svg {
  stroke-width: 1.8;
}
.trust-item h4 {
  font-family: var(--j-font-body);
  font-size: 15px;
  font-weight: 700;
  color: var(--j-dark);
  margin-bottom: 2px;
}
.trust-item p {
  font-size: 12px;
  color: var(--j-text-light);
  line-height: 1.4;
}

/* === FAQ === */
.faq-section { padding: 80px 0; }
.faq-list { max-width: 700px; margin: 40px auto 0; }
.faq-item {
  border-bottom: 1px solid var(--j-border);
  padding: 8px 0;
}
.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 0;
  cursor: pointer;
  font-weight: 600;
  font-size: 15px;
  background: none;
  border: none;
  width: 100%;
  text-align: left;
  font-family: var(--j-font-body);
  color: var(--j-text);
  transition: var(--j-transition);
}
.faq-question:hover { color: var(--j-primary); }
.faq-question .faq-icon { font-size: 20px; transition: var(--j-transition); color: var(--j-primary); display: inline-block; }
.faq-question .faq-icon::before { content: "+"; }
.faq-question.active .faq-icon::before { content: "\2212"; }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  padding: 0 0;
  color: var(--j-text-light);
  font-size: 14px;
  line-height: 1.7;
}
.faq-answer.open {
  max-height: 200px;
  padding: 0 0 16px;
}

/* === NEWSLETTER === */
.newsletter-section {
  padding: 60px 0;
  background: linear-gradient(135deg, var(--j-primary), var(--j-primary-dark));
  color: var(--j-bg);
  text-align: center;
}
.newsletter-section h2 {
  font-family: var(--j-font);
  font-size: 32px;
  color: var(--j-bg);
  margin-bottom: 8px;
}
.newsletter-section p { opacity: 0.9; margin-bottom: 24px; font-size: 15px; }
.newsletter-form { display: flex; max-width: 480px; margin: 0 auto; }
.newsletter-form input {
  flex: 1;
  padding: 14px 20px;
  border: none;
  border-radius: 50px 0 0 50px;
  font-size: 14px;
  outline: none;
  font-family: var(--j-font-body);
}
.newsletter-form button {
  padding: 14px 30px;
  background: var(--j-gold);
  color: var(--j-dark);
  border: none;
  border-radius: 0 50px 50px 0;
  font-weight: 700;
  cursor: pointer;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: var(--j-transition);
  font-family: var(--j-font-body);
}
.newsletter-form button:hover { background: var(--j-gold-light); }

/* === FOOTER === */
.site-footer {
  background: var(--j-dark);
  color: rgba(255,255,255,0.8);
  padding: 60px 0 0;
}
.footer-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 40px; margin-bottom: 40px; }
.footer-widget h3 {
  font-family: var(--j-font);
  color: var(--j-bg);
  font-size: 18px;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}
.footer-widget h3::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background: var(--j-gold);
}
.footer-widget ul { list-style: none; }
.footer-widget ul li { padding: 6px 0; }
.footer-widget ul li a { color: rgba(255,255,255,0.6); font-size: 14px; transition: var(--j-transition); }
.footer-widget ul li a:hover { color: var(--j-gold); padding-left: 4px; }
.footer-widget p { font-size: 14px; color: rgba(255,255,255,0.6); line-height: 1.8; }
.footer-widget .contact-item { display: flex; gap: 10px; margin-bottom: 10px; font-size: 14px; color: rgba(255,255,255,0.6); }
.footer-widget .contact-item strong { color: var(--j-gold); min-width: 60px; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom a { color: rgba(255,255,255,0.6); }
.footer-bottom a:hover { color: var(--j-gold); }
.footer-bottom .payment-icons { display: flex; gap: 8px; }
.footer-bottom .payment-icons img { height: 24px; }
.footer-bottom .social-icons { display: flex; gap: 12px; }
.footer-bottom .social-icons a {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  transition: var(--j-transition);
}
.footer-bottom .social-icons a:hover { background: var(--j-gold); color: var(--j-dark); }

/* === RESPONSIVE === */

/* ---- Tablet (max 1024px) ---- */
@media (max-width: 1024px) {
  .header-top-row {
    height: auto;
    flex-wrap: wrap;
    padding: 12px 0;
    gap: 12px;
  }
  .header-search-wrap {
    order: 10;
    flex: 1 1 100%;
    max-width: 100%;
  }
  .header-action-links {
    gap: 16px;
  }
  .action-link span {
    display: none;
  }
  .action-link svg {
    width: 20px;
    height: 20px;
  }
  .hero-slide .hero-slide-inner {
    grid-template-columns: 1fr;
  }
  .hero-slide .hero-coupon-col {
    display: none;
  }
  .hero-slide .hero-content h1 {
    font-size: 40px;
  }
  .hero-slide .hero-offer {
    font-size: 52px;
  }
  .product-grid { grid-template-columns: repeat(3, 1fr); }
  .top-categories .categories-grid { grid-template-columns: repeat(4, 1fr); gap: 20px; }
  .video-grid { grid-template-columns: repeat(2, 1fr); }
  .promo-banner .container { grid-template-columns: 1fr; text-align: center; }
  .gift-card-banner { grid-template-columns: 1fr; }
  .gift-card-banner .gift-image img { height: 280px; }
  .brands-grid { grid-template-columns: 1fr; }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ---- Mobile (max 768px) ---- */
@media (max-width: 768px) {
  /* -- Header restructure -- */
  .site-header .container {
    padding: 0 12px;
  }
  .header-top-row {
    height: auto;
    flex-wrap: wrap;
    padding: 10px 0;
    gap: 10px;
  }
  .site-branding {
    flex: 0 0 auto;
  }
  .logo-text {
    font-size: 20px;
  }
  .logo-icon {
    width: 20px;
    height: 20px;
  }
  .custom-logo {
    max-height: 40px;
  }
  /* Hide category dropdown on mobile */
  .category-dropdown-wrap {
    display: none;
  }
  /* Search takes full row */
  .header-search-wrap {
    order: 10;
    flex: 1 1 100%;
    max-width: 100%;
  }
  .header-search-wrap .search-field {
    height: 40px;
    padding: 8px 44px 8px 16px;
    font-size: 13px;
  }
  .header-search-wrap .search-submit {
    width: 30px;
    height: 30px;
  }
  /* Action links - icons only */
  .header-action-links {
    gap: 14px;
    margin-left: auto;
  }
  .action-link span {
    display: none;
  }
  .action-link svg {
    width: 20px;
    height: 20px;
  }
  /* Mobile hamburger */
  .menu-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    order: 99;
  }

  /* Navigation drawer */
  .header-navigation-row {
    padding: 0;
  }
  .header-navigation-row .main-navigation {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 85%;
    max-width: 320px;
    height: 100vh;
    background: var(--j-bg);
    box-shadow: 4px 0 30px rgba(0,0,0,0.15);
    z-index: 9999;
    overflow-y: auto;
    padding: 24px 0;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
  }
  .header-navigation-row .main-navigation.active {
    display: block;
    transform: translateX(0);
  }
  .header-navigation-row .main-navigation ul {
    flex-direction: column;
    gap: 0;
  }
  .header-navigation-row .main-navigation ul li a {
    padding: 14px 24px;
    border-bottom: 1px solid var(--j-border);
    font-size: 15px;
  }
  .header-navigation-row .main-navigation ul li:last-child a {
    border-bottom: none;
  }
  .header-navigation-row .main-navigation ul ul.sub-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: none;
    border-radius: 0;
    padding: 0 0 0 16px;
    min-width: auto;
    display: none;
    background: var(--j-beige);
  }
  .header-navigation-row .main-navigation ul li.menu-item-has-children.active > ul.sub-menu {
    display: block;
  }
  .header-navigation-row .main-navigation ul ul.sub-menu li a {
    font-size: 14px;
    padding: 12px 24px;
  }

  /* Mobile overlay backdrop */
  body.menu-open::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.4);
    z-index: 9998;
  }
  body.menu-open {
    overflow: hidden;
  }

  /* Announcement ticker */
  .header-announcement-row {
    padding: 6px 0;
  }
  .ticker-item {
    font-size: 10px;
    letter-spacing: 1px;
    padding: 0 20px;
  }
  .brand-badge {
    font-size: 8px;
    padding: 2px 8px;
  }

  /* -- Hero Section -- */
  .hero-section {
    height: auto;
    min-height: unset;
  }
  .hero-slide .hero-slide-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .hero-slide .hero-content {
    text-align: center;
  }
  .hero-slide .hero-content h1 {
    font-size: 28px;
  }
  .hero-slide .hero-label {
    font-size: 11px;
    letter-spacing: 2px;
  }
  .hero-slide .hero-offer {
    font-size: 40px;
  }
  .hero-slide p {
    font-size: 14px;
    margin-bottom: 16px;
  }
  .btn-hero {
    padding: 12px 30px;
    font-size: 12px;
  }
  .hero-slide .hero-coupon-col {
    display: none;
  }
  .hero-nav-arrows {
    padding: 0 12px;
  }
  .hero-nav-arrows button {
    width: 36px;
    height: 36px;
    font-size: 14px;
  }
  .hero-dots {
    bottom: 16px;
  }
  .hero-dots .hero-dot {
    width: 8px;
    height: 8px;
  }
  .hero-dots .hero-dot.active {
    width: 22px;
  }

  /* -- Product sections -- */
  .section-title {
    font-size: 24px;
  }
  .section-subtitle-bullets {
    font-size: 11px;
    letter-spacing: 1px;
  }
  .whats-new, .best-selling, .product-row-section {
    padding: 50px 0;
  }
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-top: 24px;
  }
  .product-card .product-info {
    padding: 10px;
  }
  .product-card .product-name {
    font-size: 13px;
  }
  .product-card .product-price {
    font-size: 15px;
  }
  .product-card .product-seller {
    font-size: 10px;
  }
  .product-card .product-actions-overlay {
    padding: 10px;
  }
  .product-card .product-actions-overlay a {
    font-size: 11px;
    padding: 6px;
  }
  .product-badge-j {
    font-size: 9px;
    padding: 3px 8px;
    top: 8px;
    left: 8px;
  }

  /* -- Subcategories row -- */
  .subcategories-row {
    gap: 16px;
    margin-top: 30px;
    overflow-x: auto;
    flex-wrap: nowrap;
    justify-content: flex-start;
    padding: 0 8px 8px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .subcategories-row::-webkit-scrollbar {
    display: none;
  }
  .subcategory-badge-card {
    flex-shrink: 0;
  }
  .subcategory-badge-card .badge-img {
    width: 65px;
    height: 65px;
  }
  .subcategory-badge-card span {
    font-size: 9px;
  }

  /* -- Categories section -- */
  .top-categories {
    padding: 40px 0;
  }
  .top-categories .categories-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-top: 24px;
  }
  .top-categories .category-image-wrap {
    width: 90px;
    height: 90px;
    border-width: 3px;
  }
  .top-categories .category-name {
    font-size: 11px;
  }

  /* -- Budget / Everyday Steals -- */
  .shop-by-budget {
    padding: 50px 0;
  }
  .budget-grid {
    grid-template-columns: 1fr;
    gap: 12px;
    margin-top: 24px;
  }
  .budget-card {
    padding: 20px 16px;
  }
  .budget-card-content h3 {
    font-size: 18px;
  }

  /* -- Videos -- */
  .featured-youtube {
    padding: 50px 0;
  }
  .video-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-top: 24px;
  }
  .video-grid.video-grid-1 {
    grid-template-columns: 1fr;
    max-width: 480px;
  }
  .video-grid.video-grid-2,
  .video-grid.video-grid-3 {
    grid-template-columns: repeat(2, 1fr);
    max-width: 100%;
  }
  .video-card .video-info {
    padding: 10px 12px 12px;
  }
  .video-card .video-title {
    font-size: 12px;
  }
  .video-card .video-price {
    font-size: 14px;
  }
  .video-card .video-thumb .play-btn {
    width: 36px;
    height: 36px;
    font-size: 14px;
  }

  /* -- Promo Banner -- */
  .promo-banner {
    padding: 40px 0;
  }
  .promo-banner .container {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 24px;
  }
  .promo-banner .promo-content h2 {
    font-size: 28px;
  }
  .promo-banner .promo-image img {
    max-height: 220px;
  }

  /* -- Brands -- */
  .brands-section {
    padding: 50px 0;
  }
  .brands-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .brand-card {
    padding: 28px 20px;
  }
  .brand-card .brand-logo {
    font-size: 24px;
  }

  /* -- Gift Card -- */
  .gift-card-section {
    padding: 50px 0;
  }
  .gift-card-banner {
    grid-template-columns: 1fr;
  }
  .gift-card-banner .gift-image img {
    height: 220px;
  }
  .gift-card-banner .gift-content {
    padding: 24px 20px;
  }
  .gift-card-banner .gift-content h2 {
    font-size: 24px;
  }
  .gift-card-banner .gift-content .gift-sub {
    font-size: 22px;
  }

  /* -- Reviews -- */
  .reviews-section {
    padding: 50px 0;
  }
  .reviews-slider {
    margin-top: 24px;
  }
  .review-card {
    min-width: 260px;
    padding: 20px;
  }
  .review-card .review-text {
    font-size: 13px;
  }

  /* -- Trust Badges -- */
  .trust-badges {
    padding: 40px 0;
  }
  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
  .trust-item .trust-icon {
    width: 44px;
    height: 44px;
  }
  .trust-item .trust-icon svg {
    width: 20px;
    height: 20px;
  }
  .trust-item h4 {
    font-size: 13px;
  }
  .trust-item p {
    font-size: 11px;
  }

  /* -- FAQ -- */
  .faq-section {
    padding: 50px 0;
  }
  .faq-list {
    margin-top: 24px;
  }
  .faq-question {
    font-size: 14px;
    padding: 14px 0;
  }

  /* -- Newsletter -- */
  .newsletter-section {
    padding: 40px 0;
  }
  .newsletter-section h2 {
    font-size: 24px;
  }
  .newsletter-section p {
    font-size: 13px;
  }
  .newsletter-form {
    flex-direction: column;
    gap: 10px;
  }
  .newsletter-form input {
    border-radius: 50px;
    text-align: center;
  }
  .newsletter-form button {
    border-radius: 50px;
  }

  /* -- Footer -- */
  .site-footer {
    padding: 40px 0 0;
  }
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-bottom: 24px;
  }
  .footer-widget h3 {
    font-size: 16px;
    margin-bottom: 14px;
  }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 16px;
    padding: 16px 0;
  }

  /* -- Slider Nav -- */
  .slider-nav button {
    width: 36px;
    height: 36px;
    font-size: 14px;
  }

  /* -- Page / Sidebar Layout -- */
  .site-content {
    padding: 30px 0;
  }
  .main-content article {
    padding: 20px;
  }
  .main-content article .entry-header h1 {
    font-size: 24px;
  }
  .sidebar {
    padding: 20px;
  }
}

/* ---- Small Mobile (max 480px) ---- */
@media (max-width: 480px) {
  .container {
    padding: 0 12px;
  }
  .header-top-row {
    gap: 8px;
    padding: 8px 0;
  }
  .logo-text {
    font-size: 18px;
    letter-spacing: 1px;
  }
  .header-action-links {
    gap: 10px;
  }
  .action-link svg {
    width: 18px;
    height: 18px;
  }
  .cart-badge {
    font-size: 8px;
    min-width: 14px;
    height: 14px;
    top: -6px;
    right: -6px;
  }

  /* Hero */
  .hero-section {
    height: auto;
    min-height: unset;
  }
  .hero-slide .hero-content h1 {
    font-size: 22px;
  }
  .hero-slide .hero-offer {
    font-size: 32px;
  }
  .hero-slide .hero-label {
    font-size: 10px;
  }
  .hero-slide p {
    font-size: 12px;
    margin-bottom: 12px;
  }
  .btn-hero {
    padding: 10px 24px;
    font-size: 11px;
    letter-spacing: 1px;
  }

  /* Products */
  .product-grid {
    gap: 8px;
  }
  .product-card .product-info {
    padding: 8px;
  }
  .product-card .product-name {
    font-size: 12px;
    margin-bottom: 4px;
  }
  .product-card .product-price {
    font-size: 13px;
  }
  .product-card .product-old-price {
    font-size: 11px;
  }
  .product-card .discount-pct {
    font-size: 10px;
  }
  .product-card .product-seller {
    font-size: 9px;
  }
  .product-card .product-actions-overlay {
    display: none;
  }
  .section-title {
    font-size: 20px;
  }
  .section-title::after {
    width: 40px;
    height: 2px;
    margin-top: 8px;
  }
  .section-subtitle-bullets {
    font-size: 10px;
    letter-spacing: 1px;
  }

  /* Categories */
  .top-categories .categories-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
  }
  .top-categories .category-image-wrap {
    width: 72px;
    height: 72px;
  }
  .top-categories .category-name {
    font-size: 10px;
  }

  /* Budget */
  .budget-card {
    padding: 16px 14px;
  }
  .budget-card-content h3 {
    font-size: 16px;
  }
  .budget-card-content .price-badge {
    font-size: 11px;
    padding: 4px 10px;
  }

  /* Videos */
  .video-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .video-grid.video-grid-1,
  .video-grid.video-grid-2,
  .video-grid.video-grid-3 {
    grid-template-columns: 1fr;
    max-width: 100%;
  }

  /* Trust */
  .trust-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  /* Footer */
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  /* Woo */
  .woocommerce div.product .product_title {
    font-size: 20px !important;
  }
  .woocommerce .related.products ul.products {
    grid-template-columns: 1fr !important;
  }
  .woocommerce .related.products h2 {
    font-size: 22px !important;
  }
  .woocommerce-tabs {
    margin-top: 30px !important;
    padding-top: 20px !important;
  }
}

/* === SINGLE PRODUCT LAYOUT === */
.product-summary {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}
.product-gallery {
  position: sticky;
  top: 120px;
}
.product-details {
  padding-top: 10px;
}
/* MOBILE PRODUCT PAGE FIX */
@media (max-width: 768px) {

    .product-summary {
        display: block !important;
    }

    .product-gallery {
        position: static !important;
    }

    .product-layout,
    .single-product-wrapper,
    .woocommerce div.product {
        display: block !important;
    }

    .woocommerce div.product .woocommerce-product-gallery,
    .woocommerce div.product .summary,
    .woocommerce div.product div.images,
    .woocommerce div.product div.summary {
        width: 100% !important;
        max-width: 100% !important;
        float: none !important;
        margin: 0 !important;
        padding: 0 !important;
    }

    .woocommerce-product-gallery {
        margin-bottom: 20px !important;
    }

    .woocommerce-product-gallery__image img {
        width: 100% !important;
        height: auto !important;
        display: block;
    }

    .summary.entry-summary {
        clear: both !important;
        margin-top: 20px !important;
    }

    .summary.entry-summary h1,
    .product_title {
        font-size: 30px !important;
        line-height: 1.3 !important;
        margin-bottom: 15px !important;
    }

    .woocommerce-product-gallery__wrapper {
        overflow: hidden;
    }

    .flex-control-thumbs {
        display: flex !important;
        gap: 8px;
        overflow-x: auto;
        margin-top: 10px;
    }

    .flex-control-thumbs li {
        width: 60px !important;
        flex: 0 0 60px;
    }

    .single_add_to_cart_button {
        width: 100% !important;
    }
}

/* Small mobile single product */
@media (max-width: 480px) {
  .summary.entry-summary h1,
  .woocommerce div.product .product_title {
    font-size: 20px !important;
  }
  .summary .price .woocommerce-Price-amount {
    font-size: 20px !important;
  }
  .woocommerce div.product form.cart .quantity input.qty {
    height: 42px !important;
    width: 60px !important;
  }
  .woocommerce div.product form.cart button.single_add_to_cart_button {
    height: 42px !important;
    font-size: 12px !important;
  }
  .woocommerce-product-gallery .flex-control-thumbs {
    grid-template-columns: repeat(3, 1fr) !important;
  }
}

/* WooCommerce overrides with new color scheme */
.woocommerce .button, .woocommerce button.button, .woocommerce a.button {
  background: var(--j-primary) !important;
  color: var(--j-bg) !important;
  border-radius: 50px !important;
  font-weight: 600 !important;
  font-size: 13px !important;
  padding: 12px 28px !important;
}
.woocommerce .button:hover, .woocommerce button.button:hover, .woocommerce a.button:hover {
  background: var(--j-primary-dark) !important;
  opacity: 1 !important;
}
.woocommerce .price { color: var(--j-primary) !important; font-family: var(--j-font); }
.woocommerce .price ins { text-decoration: none; }
.woocommerce .price del { color: var(--j-text-light); }
.woocommerce .onsale {
  background: var(--j-primary) !important;
  border-radius: 20px !important;
  min-width: auto !important;
  min-height: auto !important;
  padding: 4px 14px !important;
  font-size: 11px !important;
  line-height: normal !important;
}
.woocommerce .star-rating span { color: var(--j-gold) !important; }
.woocommerce-tabs ul.tabs li.active a { color: var(--j-primary) !important; border-bottom-color: var(--j-primary) !important; }
.woocommerce .widget_price_filter .price_slider_wrapper .ui-widget-content { background: var(--j-border); }
.woocommerce .widget_price_filter .ui-slider .ui-slider-range { background: var(--j-primary); }
.woocommerce .widget_price_filter .ui-slider .ui-slider-handle { background: var(--j-primary); }

/* Clickable overlay link for pure image banner slides */
.hero-slide-link-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 5;
  cursor: pointer;
}

/* === SINGLE PRODUCT PAGE PREMIUM OVERRIDES === */

/* Breadcrumbs */
.woocommerce .woocommerce-breadcrumb {
  font-family: var(--j-font-body) !important;
  font-size: 13px !important;
  color: var(--j-text-light) !important;
  margin-bottom: 24px !important;
  text-transform: uppercase !important;
  letter-spacing: 0.5px !important;
  padding: 0 !important;
  background: none !important;
}
.woocommerce .woocommerce-breadcrumb a {
  color: var(--j-text-light) !important;
  transition: var(--j-transition) !important;
}
.woocommerce .woocommerce-breadcrumb a:hover {
  color: var(--j-primary) !important;
}

/* Product Info Title & Description */
.woocommerce div.product .product_title {
  font-family: var(--j-font) !important;
  font-size: 32px !important;
  font-weight: 700 !important;
  color: var(--j-primary-dark) !important;
  margin-bottom: 12px !important;
}
.woocommerce div.product .woocommerce-product-details__short-description {
  color: var(--j-text-light) !important;
  font-size: 15px !important;
  line-height: 1.6 !important;
  margin: 18px 0 !important;
}

/* Quantity and Add to Cart Form */
.woocommerce div.product form.cart {
  display: flex !important;
  align-items: center !important;
  gap: 16px !important;
  margin-top: 30px !important;
}
.woocommerce div.product form.cart .quantity {
  margin: 0 !important;
  float: none !important;
}
.woocommerce div.product form.cart .quantity input.qty {
  height: 48px !important;
  width: 70px !important;
  border: 2px solid var(--j-border) !important;
  border-radius: 24px !important;
  text-align: center !important;
  font-size: 15px !important;
  font-weight: 600 !important;
  background: #FFF !important;
  outline: none !important;
  font-family: var(--j-font-body) !important;
  color: var(--j-text) !important;
  transition: var(--j-transition) !important;
}
.woocommerce div.product form.cart .quantity input.qty:focus {
  border-color: var(--j-primary) !important;
}
.woocommerce div.product form.cart button.single_add_to_cart_button {
  height: 48px !important;
  border-radius: 24px !important;
  padding: 0 40px !important;
  font-size: 14px !important;
  font-weight: 700 !important;
  text-transform: uppercase !important;
  letter-spacing: 1px !important;
  background: var(--j-primary) !important;
  color: #FFF !important;
  transition: var(--j-transition) !important;
  border: none !important;
}
.woocommerce div.product form.cart button.single_add_to_cart_button:hover {
  background: var(--j-primary-dark) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 4px 15px rgba(176,18,101,0.2) !important;
}

/* Product Tabs Overhaul */
.woocommerce-tabs {
  margin-top: 60px !important;
  border-top: 1px solid var(--j-border) !important;
  padding-top: 40px !important;
}
.woocommerce-tabs ul.tabs {
  border: none !important;
  background: transparent !important;
  display: flex !important;
  gap: 32px !important;
  padding-left: 0 !important;
  border-bottom: 1px solid var(--j-border) !important;
  margin-bottom: 24px !important;
}
.woocommerce-tabs ul.tabs::before,
.woocommerce-tabs ul.tabs::after {
  display: none !important;
}
.woocommerce-tabs ul.tabs li {
  background: transparent !important;
  border: none !important;
  border-radius: 0 !important;
  margin: 0 !important;
  padding: 0 0 12px 0 !important;
  position: relative !important;
}
.woocommerce-tabs ul.tabs li::after {
  display: none !important;
}
.woocommerce-tabs ul.tabs li a {
  font-family: var(--j-font-body) !important;
  font-weight: 600 !important;
  color: var(--j-text-light) !important;
  text-transform: uppercase !important;
  font-size: 13px !important;
  letter-spacing: 1px !important;
  padding: 0 !important;
  transition: var(--j-transition) !important;
  background: none !important;
}
.woocommerce-tabs ul.tabs li:hover a {
  color: var(--j-primary) !important;
}
.woocommerce-tabs ul.tabs li.active a {
  color: var(--j-primary-dark) !important;
}
.woocommerce-tabs ul.tabs li.active::before {
  content: '' !important;
  position: absolute !important;
  bottom: 0 !important;
  left: 0 !important;
  width: 100% !important;
  height: 3px !important;
  background: var(--j-primary) !important;
  border-radius: 2px !important;
}
.woocommerce-tabs .woocommerce-Tabs-panel {
  color: var(--j-text) !important;
  font-size: 15px !important;
  line-height: 1.7 !important;
  padding: 0 !important;
}

/* Related Products Grid Layout Correction */
.woocommerce .related.products {
  margin-top: 60px !important;
  padding-top: 40px !important;
  border-top: 1px solid var(--j-border) !important;
}
.woocommerce .related.products h2 {
  font-family: var(--j-font) !important;
  font-size: 28px !important;
  font-weight: 700 !important;
  color: var(--j-primary-dark) !important;
  margin-bottom: 30px !important;
  text-align: center !important;
}
.woocommerce .related.products ul.products {
  display: grid !important;
  grid-template-columns: repeat(4, 1fr) !important;
  gap: 24px !important;
  margin: 0 !important;
  padding: 0 !important;
}
.woocommerce .related.products ul.products::before,
.woocommerce .related.products ul.products::after {
  display: none !important;
}
.woocommerce .related.products ul.products li.product {
  width: 100% !important;
  margin: 0 !important;
  float: none !important;
  clear: none !important;
  background: #FFF !important;
  border: 1px solid var(--j-border) !important;
  border-radius: var(--j-radius) !important;
  padding: 16px !important;
  box-sizing: border-box !important;
  transition: var(--j-transition) !important;
}
.woocommerce .related.products ul.products li.product:hover {
  transform: translateY(-5px) !important;
  box-shadow: var(--j-shadow-hover) !important;
  border-color: var(--j-primary) !important;
}
.woocommerce .related.products ul.products li.product .woocommerce-loop-product__title {
  font-family: var(--j-font-body) !important;
  font-size: 14px !important;
  font-weight: 600 !important;
  color: var(--j-text) !important;
  margin-top: 12px !important;
  margin-bottom: 6px !important;
  line-height: 1.4 !important;
}
.woocommerce .related.products ul.products li.product .price {
  font-size: 16px !important;
  font-weight: 700 !important;
  color: var(--j-primary) !important;
  margin-bottom: 12px !important;
  display: block !important;
}
.woocommerce .related.products ul.products li.product .button {
  display: block !important;
  width: 100% !important;
  text-align: center !important;
  margin: 12px 0 0 0 !important;
  padding: 10px 16px !important;
  font-size: 12px !important;
  border-radius: 20px !important;
}

@media (max-width: 991px) {
  .woocommerce .related.products ul.products {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}
@media (max-width: 480px) {
  .woocommerce .related.products ul.products {
    grid-template-columns: 1fr !important;
  }
}

/* === SIDEBAR & PAGE LAYOUTS === */
.site-content {
  padding: 60px 0;
  background: var(--j-bg);
}
.content-area {
  display: grid;
  grid-template-columns: 8fr 3.5fr;
  gap: 48px;
  align-items: start;
}
.main-content {
  min-width: 0;
}
.main-content article {
  background: #FFF;
  border: 1px solid var(--j-border);
  border-radius: var(--j-radius);
  padding: 40px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.02);
}
.main-content article .entry-header h1 {
  font-family: var(--j-font);
  font-size: 36px;
  color: var(--j-primary-dark);
  margin-bottom: 24px;
  position: relative;
  padding-bottom: 12px;
}
.main-content article .entry-header h1::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 3px;
  background: var(--j-primary);
  border-radius: 2px;
}
.main-content article .entry-content {
  color: var(--j-text);
  font-size: 16px;
  line-height: 1.8;
}
.main-content article .entry-content h2 {
  font-family: var(--j-font);
  font-size: 24px;
  color: var(--j-primary-dark);
  margin-top: 30px;
  margin-bottom: 12px;
}
.main-content article .entry-content p {
  margin-bottom: 20px;
}

/* Sidebar Widgets */
.sidebar {
  background: #FFF;
  border: 1px solid var(--j-border);
  border-radius: var(--j-radius);
  padding: 30px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.02);
}
.sidebar .widget {
  margin-bottom: 35px;
}
.sidebar .widget:last-child {
  margin-bottom: 0;
}
.sidebar .widget-title {
  font-family: var(--j-font);
  font-size: 18px;
  font-weight: 700;
  color: var(--j-primary-dark);
  margin-bottom: 18px;
  position: relative;
  padding-bottom: 8px;
  border-bottom: 1.5px solid var(--j-border);
}
.sidebar .widget-title::after {
  content: '';
  position: absolute;
  bottom: -1.5px;
  left: 0;
  width: 40px;
  height: 1.5px;
  background: var(--j-primary);
}
.sidebar .widget ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.sidebar .widget ul li {
  padding: 10px 0;
  border-bottom: 1px dashed var(--j-border);
  font-size: 14px;
  font-weight: 500;
  color: var(--j-text-light);
  transition: var(--j-transition);
}
.sidebar .widget ul li:last-child {
  border-bottom: none;
}
.sidebar .widget ul li a {
  color: var(--j-text);
}
.sidebar .widget ul li a:hover {
  color: var(--j-primary);
  padding-left: 4px;
}
.sidebar .widget_search form {
  position: relative;
}
.sidebar .widget_search input[type="search"] {
  width: 100%;
  height: 40px;
  border: 1.5px solid var(--j-border);
  border-radius: 20px;
  padding: 10px 18px;
  font-size: 13px;
  outline: none;
  font-family: var(--j-font-body);
}
.sidebar .widget_search input[type="search"]:focus {
  border-color: var(--j-primary);
}

@media (max-width: 991px) {
  .content-area {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

/* ============================================================
   CATEGORY PAGE – HERO, TOOLBAR, PRODUCT CARDS
   ============================================================ */

/* ── Category Hero ── */
.j-cat-hero {
  background: linear-gradient(135deg, var(--j-primary) 0%, var(--j-primary-dark) 100%);
  padding: 70px 0 56px;
  position: relative;
  background-size: cover;
  background-position: center;
}
.j-cat-hero__inner { max-width: 700px; }
.j-cat-hero__bread { margin-bottom: 14px; }
.j-cat-hero__bread .woocommerce-breadcrumb { color: rgba(255,255,255,0.7); font-size: 12px; }
.j-cat-hero__bread .woocommerce-breadcrumb a { color: var(--j-gold-light); transition: var(--j-transition); }
.j-cat-hero__bread .woocommerce-breadcrumb a:hover { color: #fff; }
.j-cat-hero__subtitle {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: rgba(255,255,255,0.65);
  margin-bottom: 8px;
}
.j-cat-hero__title {
  font-family: var(--j-font);
  font-size: 48px;
  font-weight: 800;
  color: #fff;
  margin: 0 0 10px;
  line-height: 1.1;
  text-shadow: 0 2px 8px rgba(0,0,0,0.15);
}
.j-cat-hero__desc {
  color: rgba(255,255,255,0.88);
  font-size: 16px;
  line-height: 1.7;
  max-width: 540px;
  margin-bottom: 0;
}
.j-cat-hero__chips { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 28px; }
.j-chip {
  display: inline-block;
  padding: 7px 20px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  background: rgba(255,255,255,0.15);
  color: #fff;
  transition: var(--j-transition);
  text-decoration: none;
  border: 1.5px solid transparent;
}
.j-chip:hover { background: rgba(255,255,255,0.28); color: #fff; }
.j-chip--active { background: rgba(255,255,255,0.92); color: var(--j-primary-dark); border-color: rgba(255,255,255,0.92); }
.j-chip--active:hover { background: #fff; color: var(--j-primary-dark); }

/* ── Shop Content ── */
.shop-content { padding: 0 0 80px; background: var(--j-bg); }

/* ── Shop Toolbar ── */
.j-shop-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 14px;
  margin: 32px 0 28px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--j-border);
}
.j-shop-toolbar__count { font-size: 14px; color: var(--j-text-light); margin: 0; }
.j-shop-toolbar__right { display: flex; align-items: center; gap: 12px; }
.j-shop-toolbar__right .woocommerce-ordering select {
  padding: 9px 36px 9px 16px;
  border: 2px solid var(--j-border);
  border-radius: 50px;
  font-size: 13px;
  cursor: pointer;
  appearance: none;
  background: var(--j-bg) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 16 16'%3E%3Cpath fill='%23666' d='M8 11L3 6h10l-5 5z'/%3E%3C/svg%3E") no-repeat right 14px center;
  outline: none;
  min-width: 190px;
  font-family: var(--j-font-body);
  transition: var(--j-transition);
  color: var(--j-text);
}
.j-shop-toolbar__right .woocommerce-ordering select:focus { border-color: var(--j-primary); }

/* ── WooCommerce Grid Fix (clearfix pseudo-elements kill) ── */
.woocommerce ul.products::before,
.woocommerce ul.products::after,
.woocommerce-page ul.products::before,
.woocommerce-page ul.products::after {
    display: none !important;
    content: none !important;
}

.woocommerce ul.products {
    display: grid !important;
    grid-template-columns: repeat(4, 1fr) !important;
    gap: 24px !important;
}

.woocommerce ul.products li.product {
    float: none !important;
    width: auto !important;
    margin: 0 !important;
    clear: none !important;
}

.woocommerce ul.products li.first,
.woocommerce-page ul.products li.first,
.woocommerce ul.products li.last,
.woocommerce-page ul.products li.last {
    clear: none !important;
}

.product-card {
    display: flex !important;
    flex-direction: column;
    height: 100%;
}

/* ── Product Image ── */
.product-image img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    display: block;
}

/* ── Product Info ── */
.product-info {
    padding: 15px;
}

.product-name {
    font-size: 16px;
    line-height: 1.4;
    min-height: 48px;
}

/* ── Pagination ── */
.j-shop-pagination {
  margin-top: 48px;
  display: flex;
  justify-content: center;
}
.j-shop-pagination .woocommerce-pagination ul.page-numbers {
  display: flex;
  gap: 6px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.j-shop-pagination .woocommerce-pagination ul.page-numbers li a,
.j-shop-pagination .woocommerce-pagination ul.page-numbers li span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 14px;
  font-weight: 600;
  border: 2px solid var(--j-border);
  color: var(--j-text);
  transition: var(--j-transition);
}
.j-shop-pagination .woocommerce-pagination ul.page-numbers li a:hover {
  border-color: var(--j-primary);
  color: var(--j-primary);
  background: var(--j-beige);
}
.j-shop-pagination .woocommerce-pagination ul.page-numbers li span.current {
  background: var(--j-primary);
  border-color: var(--j-primary);
  color: #fff;
}

/* ── BLOG PAGE ── */
.j-blog-hero {
  background: linear-gradient(135deg, var(--j-primary) 0%, var(--j-primary-dark) 100%);
  padding: 70px 0 56px;
  text-align: center;
}
.j-blog-hero__inner { max-width: 600px; margin: 0 auto; }
.j-blog-hero__subtitle {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: rgba(255,255,255,0.65);
  margin-bottom: 8px;
}
.j-blog-hero__title {
  font-family: var(--j-font);
  font-size: 48px;
  font-weight: 800;
  color: #fff;
  margin: 0 0 10px;
  line-height: 1.1;
  text-shadow: 0 2px 8px rgba(0,0,0,0.15);
}
.j-blog-hero__desc {
  color: rgba(255,255,255,0.88);
  font-size: 16px;
  line-height: 1.7;
  max-width: 540px;
  margin: 0 auto;
}
.j-blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 10px;
}
.j-blog-card {
  background: #fff;
  border-radius: var(--j-radius);
  overflow: hidden;
  border: 1px solid var(--j-border);
  box-shadow: var(--j-shadow);
  transition: var(--j-transition);
}
.j-blog-card:hover { transform: translateY(-5px); box-shadow: var(--j-shadow-hover); }
.j-blog-card__image-link { display: block; overflow: hidden; }
.j-blog-card__image { aspect-ratio: 16/10; overflow: hidden; background: var(--j-beige); }
.j-blog-card__image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.j-blog-card:hover .j-blog-card__image img { transform: scale(1.08); }
.j-blog-card__body { padding: 20px 22px 24px; }
.j-blog-card__meta { font-size: 12px; color: var(--j-text-light); margin-bottom: 6px; font-weight: 500; }
.j-blog-card__sep { margin: 0 6px; }
.j-blog-card__cats a { color: var(--j-primary); font-weight: 600; }
.j-blog-card__cats a:hover { color: var(--j-primary-dark); }
.j-blog-card__title {
  font-family: var(--j-font);
  font-size: 18px;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 8px;
}
.j-blog-card__title a { color: var(--j-text); }
.j-blog-card__title a:hover { color: var(--j-primary); }
.j-blog-card__excerpt { font-size: 14px; color: var(--j-text-light); line-height: 1.6; margin-bottom: 14px; }
.j-blog-card__link { font-size: 13px; font-weight: 700; color: var(--j-primary); text-transform: uppercase; letter-spacing: 0.5px; }
.j-blog-card__link:hover { color: var(--j-primary-dark); }
.j-blog-pagination { margin-top: 48px; display: flex; justify-content: center; }
.j-blog-pagination .page-numbers { display: flex; gap: 6px; list-style: none; margin: 0; padding: 0; }
.j-blog-pagination .page-numbers li a,
.j-blog-pagination .page-numbers li span {
  display: flex; align-items: center; justify-content: center;
  width: 40px; height: 40px; border-radius: 50%;
  font-size: 14px; font-weight: 600;
  border: 2px solid var(--j-border); color: var(--j-text); transition: var(--j-transition);
}
.j-blog-pagination .page-numbers li a:hover { border-color: var(--j-primary); color: var(--j-primary); background: var(--j-beige); }
.j-blog-pagination .page-numbers li span.current { background: var(--j-primary); border-color: var(--j-primary); color: #fff; }

/* ── CONTACT PAGE ── */
.j-contact-hero {
  background: linear-gradient(135deg, var(--j-primary) 0%, var(--j-primary-dark) 100%);
  padding: 70px 0 56px;
  text-align: center;
}
.j-contact-hero__inner { max-width: 600px; margin: 0 auto; }
.j-contact-hero__subtitle {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: rgba(255,255,255,0.65);
  margin-bottom: 8px;
}
.j-contact-hero__title {
  font-family: var(--j-font);
  font-size: 48px;
  font-weight: 800;
  color: #fff;
  margin: 0 0 10px;
  line-height: 1.1;
  text-shadow: 0 2px 8px rgba(0,0,0,0.15);
}
.j-contact-hero__desc { color: rgba(255,255,255,0.88); font-size: 16px; line-height: 1.7; max-width: 540px; margin: 0 auto; }
.j-contact-section { padding: 60px 0 0; }
.j-contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 48px; align-items: start; }
.j-contact-info { background: #fff; border-radius: var(--j-radius); padding: 36px; border: 1px solid var(--j-border); }
.j-contact-info__title { font-family: var(--j-font); font-size: 26px; color: var(--j-primary-dark); margin-bottom: 8px; }
.j-contact-info__text { font-size: 14px; color: var(--j-text-light); margin-bottom: 28px; line-height: 1.6; }
.j-contact-info__items { display: flex; flex-direction: column; gap: 20px; }
.j-contact-info-item { display: flex; gap: 16px; align-items: flex-start; }
.j-contact-info-item__icon {
  width: 46px; height: 46px; border-radius: 50%;
  background: var(--j-beige); color: var(--j-primary);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.j-contact-info-item__content { display: flex; flex-direction: column; gap: 2px; }
.j-contact-info-item__content strong { font-size: 14px; color: var(--j-text); }
.j-contact-info-item__content span { font-size: 13px; color: var(--j-text-light); line-height: 1.5; }
.j-contact-social { margin-top: 32px; padding-top: 24px; border-top: 1px solid var(--j-border); }
.j-contact-social__label { font-size: 13px; font-weight: 700; color: var(--j-text-light); text-transform: uppercase; letter-spacing: 1px; display: block; margin-bottom: 12px; }
.j-contact-social__icons { display: flex; gap: 10px; }
.j-contact-social__icon {
  width: 40px; height: 40px; border-radius: 50%;
  border: 2px solid var(--j-border); color: var(--j-text-light);
  display: flex; align-items: center; justify-content: center;
  transition: var(--j-transition);
}
.j-contact-social__icon:hover { border-color: var(--j-primary); color: var(--j-primary); background: var(--j-beige); }
.j-contact-form-wrap { background: #fff; border-radius: var(--j-radius); padding: 36px; border: 1px solid var(--j-border); }
.j-contact-form__title { font-family: var(--j-font); font-size: 26px; color: var(--j-primary-dark); margin-bottom: 24px; }
.j-contact-form { display: flex; flex-direction: column; gap: 18px; }
.j-contact-form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.j-contact-form__group { display: flex; flex-direction: column; gap: 6px; }
.j-contact-form__group label { font-size: 13px; font-weight: 600; color: var(--j-text); }
.j-contact-form__group .required { color: var(--j-primary); }
.j-contact-form__input {
  height: 46px; padding: 0 16px; border: 2px solid var(--j-border);
  border-radius: var(--j-radius-sm); font-size: 14px; font-family: var(--j-font-body);
  outline: none; transition: var(--j-transition); color: var(--j-text);
}
.j-contact-form__input:focus { border-color: var(--j-primary); }
.j-contact-form__textarea {
  padding: 14px 16px; border: 2px solid var(--j-border);
  border-radius: var(--j-radius-sm); font-size: 14px; font-family: var(--j-font-body);
  outline: none; transition: var(--j-transition); resize: vertical; color: var(--j-text);
}
.j-contact-form__textarea:focus { border-color: var(--j-primary); }
.j-contact-form__submit {
  height: 48px; padding: 0 36px; border: none; border-radius: 50px;
  background: var(--j-primary); color: #fff; font-size: 14px; font-weight: 700;
  cursor: pointer; transition: var(--j-transition); align-self: flex-start;
  text-transform: uppercase; letter-spacing: 1px;
}
.j-contact-form__submit:hover { background: var(--j-primary-dark); transform: translateY(-2px); }
.j-map-section { padding: 48px 0 60px; }

/* ── Responsive ── */
@media (max-width: 1024px) {
  .j-cat-hero { padding: 50px 0 40px; }
  .j-cat-hero__title { font-size: 36px; }
  .j-cat-hero__desc { font-size: 14px; }
  .j-blog-hero { padding: 50px 0 40px; }
  .j-blog-hero__title { font-size: 36px; }
  .j-blog-hero__desc { font-size: 14px; }
  .j-blog-grid { grid-template-columns: repeat(2, 1fr); }
  .j-contact-hero { padding: 50px 0 40px; }
  .j-contact-hero__title { font-size: 36px; }
  .j-contact-hero__desc { font-size: 14px; }
  .j-contact-grid { grid-template-columns: 1fr; gap: 32px; }
}
@media (max-width: 991px) {
  .woocommerce ul.products {
      grid-template-columns: repeat(2, 1fr) !important;
  }
}
@media (max-width: 768px) {
  .j-cat-hero { padding: 36px 0 30px; }
  .j-cat-hero__title { font-size: 28px; }
  .j-cat-hero__desc { font-size: 13px; max-width: 100%; }
  .j-cat-hero__chips { gap: 8px; margin-top: 20px; }
  .j-chip { font-size: 10px; padding: 5px 14px; }
  .j-shop-toolbar { flex-direction: column; align-items: flex-start; gap: 10px; margin: 20px 0 18px; }
  .j-shop-toolbar__right { width: 100%; }
  .j-shop-toolbar__right .woocommerce-ordering { width: 100%; }
  .j-shop-toolbar__right .woocommerce-ordering select { min-width: 100%; }
  .j-blog-hero { padding: 36px 0 30px; }
  .j-blog-hero__title { font-size: 28px; }
  .j-blog-hero__desc { font-size: 13px; }
  .j-blog-grid { grid-template-columns: 1fr; gap: 20px; }
  .j-blog-card__body { padding: 16px 18px 20px; }
  .j-blog-card__title { font-size: 16px; }
  .j-contact-hero { padding: 36px 0 30px; }
  .j-contact-hero__title { font-size: 28px; }
  .j-contact-hero__desc { font-size: 13px; }
  .j-contact-section { padding: 40px 0 0; }
  .j-contact-form__row { grid-template-columns: 1fr; }
  .j-contact-form__submit { width: 100%; text-align: center; }
  .j-map-section { padding: 32px 0 40px; }
  .j-map-section iframe { height: 280px !important; }
}
@media (max-width: 576px) {
  .woocommerce ul.products {
      grid-template-columns: 1fr !important;
  }
}
@media (max-width: 480px) {
  .j-cat-hero__title { font-size: 24px; }
  .j-blog-hero__title { font-size: 24px; }
  .j-contact-hero__title { font-size: 24px; }
  .j-contact-info { padding: 24px; }
  .j-contact-form-wrap { padding: 24px; }
  .j-contact-info__title { font-size: 20px; }
  .j-contact-form__title { font-size: 20px; }
}
