/* ==========================================================================
   EUGENDA DESIGN SYSTEM - GREEN, WHITE & BLACK THEME
   Modern, Sleek, Global E-Commerce Architecture
   ========================================================================== */

:root {
  /* Brand Green Palette */
  --color-green-primary: #059669;       /* Emerald Green */
  --color-green-dark: #064e3b;          /* Deep Forest Green */
  --color-green-light: #10b981;         /* Vibrant Mint / Highlight */
  --color-green-subtle: #ecfdf5;        /* Soft Pastel Green Background */
  --color-green-glow: rgba(16, 185, 129, 0.25);

  /* Black & Dark Accents */
  --color-black-deep: #09090b;          /* Obsidian Black */
  --color-black-card: #121215;          /* Sleek Dark Surface */
  --color-charcoal: #27272a;            /* Neutral Dark Border */
  --color-black-muted: #52525b;         /* Muted Dark Grey */

  /* Pure White & Canvas Neutrals */
  --color-white: #ffffff;
  --color-canvas-bg: #f8fafc;           /* Crisp Light Background */
  --color-canvas-card: #ffffff;
  --color-border-light: #e2e8f0;
  --color-text-main: #0f172a;
  --color-text-muted: #64748b;

  /* Typography */
  --font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  
  /* Radii & Shadows */
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-full: 9999px;
  --shadow-subtle: 0 4px 20px -2px rgba(9, 9, 11, 0.05);
  --shadow-hover: 0 16px 32px -4px rgba(5, 150, 105, 0.15);
  --shadow-black: 0 10px 25px -3px rgba(0, 0, 0, 0.2);

  /* Transitions */
  --transition-smooth: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Global Reset & Base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--font-family);
  background-color: var(--color-canvas-bg);
  color: var(--color-text-main);
  line-height: 1.6;
  overflow-x: hidden;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

main {
  flex: 1;
}

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

/* --------------------------------------------------------------------------
   Top Announcement Bar (Green & Black)
   -------------------------------------------------------------------------- */
.top-bar {
  background: var(--color-black-deep);
  color: var(--color-white);
  font-size: 0.82rem;
  padding: 0.55rem 0;
  border-bottom: 1px solid rgba(16, 185, 129, 0.2);
}

.top-bar-badge {
  background: var(--color-green-primary);
  color: var(--color-white);
  padding: 0.2rem 0.6rem;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 0.72rem;
  letter-spacing: 0.5px;
  margin-right: 0.5rem;
}

/* --------------------------------------------------------------------------
   Navbar & Brand Identity
   -------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------
   Navbar & Brand Identity (Pixel-Perfect Match to Screenshot)
   -------------------------------------------------------------------------- */
.navbar-eugenda {
  background: var(--color-white);
  border-bottom: 1px solid #f1f5f9;
  padding: 0.75rem 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.03);
}

.brand-logo {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-weight: 800;
  font-size: 1.65rem;
  letter-spacing: -0.5px;
  color: #09090b;
  text-decoration: none;
  line-height: 1;
}

.brand-logo .logo-img {
  height: 48px;
  width: 48px;
  object-fit: contain;
  transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  flex-shrink: 0;
}

.brand-logo:hover .logo-img {
  transform: scale(1.06) rotate(-2deg);
}

.brand-logo .brand-text {
  font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  font-weight: 800;
  letter-spacing: -0.5px;
  color: #09090b;
  line-height: 1;
}

.brand-logo .brand-text .brand-green {
  color: #059669;
}

.brand-logo .brand-text .dot {
  color: #059669;
}

.brand-logo-white .brand-text {
  color: #ffffff !important;
}

.brand-logo-white .brand-text .brand-green {
  color: #34d399 !important;
}

.logo-img-footer {
  height: 52px;
  width: 52px;
  object-fit: contain;
  flex-shrink: 0;
  transition: transform 0.25s ease;
}

.brand-logo:hover .logo-img-footer {
  transform: scale(1.06) rotate(-2deg);
}

/* Search Bar Pill Container */
.search-pill-container {
  display: flex;
  align-items: center;
  background: #f1f5f9;
  border-radius: 9999px;
  padding: 4px 6px 4px 18px;
  width: 100%;
  max-width: 580px;
  border: 1px solid transparent;
  transition: var(--transition-smooth);
}

.search-pill-container:focus-within {
  background: #ffffff;
  border-color: #059669;
  box-shadow: 0 0 0 3px rgba(5, 150, 105, 0.15);
}

.search-pill-container input {
  background: transparent;
  border: none;
  outline: none;
  box-shadow: none;
  font-size: 0.92rem;
  color: #0f172a;
  padding: 0.35rem 0.5rem;
  width: 100%;
}

.search-pill-container input::placeholder {
  color: #94a3b8;
  font-size: 0.9rem;
}

.btn-search-round {
  width: 38px;
  height: 38px;
  min-width: 38px;
  border-radius: 50%;
  background-color: #047857;
  color: #ffffff;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-smooth);
}

.btn-search-round:hover {
  background-color: #065f46;
  transform: scale(1.05);
  color: #ffffff;
}

/* Nav Action Circular Buttons (Wishlist & Cart) */
.nav-action-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  color: #0f172a;
  background: #f1f5f9;
  font-size: 1.1rem;
  transition: var(--transition-smooth);
  text-decoration: none;
}

.nav-action-btn:hover {
  background: #ecfdf5;
  color: #059669;
  transform: translateY(-1px);
}

.badge-count {
  position: absolute;
  top: -3px;
  right: -3px;
  background: #059669;
  color: #ffffff;
  font-size: 0.68rem;
  font-weight: 700;
  width: 19px;
  height: 19px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #ffffff;
}

/* My Account Pill Button */
.btn-account-pill {
  background: #09090b;
  color: #ffffff;
  border-radius: 9999px;
  padding: 0.6rem 1.35rem;
  font-weight: 600;
  font-size: 0.92rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border: 1px solid #18181b;
  transition: var(--transition-smooth);
}

.btn-account-pill:hover {
  background: #047857;
  border-color: #047857;
  color: #ffffff;
}

/* --------------------------------------------------------------------------
   Category Navigation Sub-bar (100% Responsive, Zero Horizontal Scrollbars)
   -------------------------------------------------------------------------- */
.subnav-categories {
  background: #ffffff;
  border-bottom: 1px solid #f1f5f9;
  padding: 0.45rem 0;
  overflow: visible !important;
}

.subnav-flex-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  flex-wrap: nowrap;
  gap: 0.25rem;
}

.subnav-categories-list {
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  gap: 0.15rem;
  overflow: visible;
}

/* All Products Dark Green Pill Button */
.btn-all-products {
  background-color: #047857;
  color: #ffffff !important;
  font-weight: 600;
  font-size: 0.85rem;
  padding: 0.42rem 1.05rem;
  border-radius: 9999px;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  border: none;
  white-space: nowrap;
  flex-shrink: 0;
  transition: var(--transition-smooth);
}

.btn-all-products:hover {
  background-color: #065f46;
  color: #ffffff !important;
  box-shadow: 0 4px 12px rgba(4, 120, 87, 0.25);
}

.subnav-link {
  color: #1e293b;
  font-weight: 500;
  padding: 0.35rem 0.5rem;
  border-radius: 6px;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  white-space: nowrap;
  font-size: 0.83rem;
  flex-shrink: 0;
  transition: var(--transition-smooth);
}

.subnav-link:hover, .subnav-link.active {
  color: #059669;
}

.subnav-link i {
  color: #64748b;
  font-size: 0.88rem;
}

.subnav-link:hover i {
  color: #059669;
}

.subnav-divider {
  width: 1px;
  height: 16px;
  background-color: #e2e8f0;
  flex-shrink: 0;
  margin: 0 2px;
}

/* Flash Deals Pink/Red Pill Button */
.btn-flash-deals {
  background-color: #fef2f2;
  border: 1px solid #fee2e2;
  color: #dc2626 !important;
  font-weight: 700;
  font-size: 0.82rem;
  padding: 0.38rem 0.9rem;
  border-radius: 9999px;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  text-decoration: none;
  white-space: nowrap;
  flex-shrink: 0;
  transition: var(--transition-smooth);
}

.btn-flash-deals:hover {
  background-color: #fee2e2;
  border-color: #fca5a5;
  color: #b91c1c !important;
  transform: translateY(-1px);
}

/* Offcanvas Mobile Navigation */
.mobile-offcanvas-header {
  border-bottom: 1px solid #f1f5f9;
  padding: 1.25rem 1.5rem;
}

.mobile-nav-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 1rem;
  border-radius: 10px;
  color: #0f172a;
  font-weight: 600;
  font-size: 0.95rem;
  transition: var(--transition-smooth);
}

.mobile-nav-link:hover, .mobile-nav-link.active {
  background-color: #ecfdf5;
  color: #059669;
}

.mobile-nav-link i {
  width: 24px;
  color: #059669;
}

/* --------------------------------------------------------------------------
   Hero Section (Green & Black Gradient Hero)
   -------------------------------------------------------------------------- */
.hero-banner {
  background: linear-gradient(135deg, #09090b 0%, #064e3b 65%, #059669 100%);
  color: var(--color-white);
  padding: 5rem 0 6rem;
  border-radius: 0 0 36px 36px;
  position: relative;
  overflow: hidden;
}

.hero-banner::after {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.25) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 0.4rem 1rem;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-green-light);
  margin-bottom: 1.5rem;
}

.hero-title {
  font-size: 3.25rem;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -1px;
  margin-bottom: 1.25rem;
}

.hero-title span {
  color: var(--color-green-light);
}

.hero-subtitle {
  font-size: 1.15rem;
  color: #d1d5db;
  max-width: 540px;
  margin-bottom: 2rem;
  line-height: 1.6;
}

/* Buttons */
.btn-eugenda-primary {
  background: var(--color-green-primary);
  color: var(--color-white);
  font-weight: 600;
  padding: 0.85rem 1.85rem;
  border-radius: var(--radius-full);
  border: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  box-shadow: 0 10px 25px -4px rgba(5, 150, 105, 0.45);
  transition: var(--transition-smooth);
}

.btn-eugenda-primary:hover {
  background: var(--color-green-light);
  color: var(--color-black-deep);
  transform: translateY(-2px);
  box-shadow: 0 14px 28px -4px rgba(16, 185, 129, 0.5);
}

.btn-eugenda-outline-white {
  background: transparent;
  color: var(--color-white);
  border: 2px solid rgba(255, 255, 255, 0.4);
  font-weight: 600;
  padding: 0.85rem 1.85rem;
  border-radius: var(--radius-full);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: var(--transition-smooth);
}

.btn-eugenda-outline-white:hover {
  background: var(--color-white);
  color: var(--color-black-deep);
  border-color: var(--color-white);
  transform: translateY(-2px);
}

.btn-eugenda-dark {
  background: var(--color-black-deep);
  color: var(--color-white);
  border-radius: var(--radius-full);
  padding: 0.65rem 1.25rem;
  font-weight: 600;
  font-size: 0.9rem;
  border: 1px solid var(--color-charcoal);
  transition: var(--transition-smooth);
}

.btn-eugenda-dark:hover {
  background: var(--color-green-primary);
  border-color: var(--color-green-primary);
  color: var(--color-white);
}

/* --------------------------------------------------------------------------
   Trust Badges / Features Bar
   -------------------------------------------------------------------------- */
.features-strip {
  margin-top: -2.5rem;
  position: relative;
  z-index: 10;
}

.feature-box {
  background: var(--color-white);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  border: 1px solid var(--color-border-light);
  box-shadow: var(--shadow-subtle);
  display: flex;
  align-items: center;
  gap: 1.25rem;
  transition: var(--transition-smooth);
}

.feature-box:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-hover);
  border-color: var(--color-green-primary);
}

.feature-icon-wrapper {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  background: var(--color-green-subtle);
  color: var(--color-green-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
}

.feature-title {
  font-weight: 700;
  font-size: 0.95rem;
  margin-bottom: 0.15rem;
  color: var(--color-black-deep);
}

.feature-desc {
  font-size: 0.82rem;
  color: var(--color-text-muted);
  margin-bottom: 0;
}

/* --------------------------------------------------------------------------
   Product Cards
   -------------------------------------------------------------------------- */
.product-card {
  background: var(--color-white);
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border-light);
  padding: 1rem;
  transition: var(--transition-smooth);
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.product-card:hover {
  border-color: var(--color-green-primary);
  box-shadow: var(--shadow-hover);
  transform: translateY(-4px);
}

.product-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  z-index: 2;
  background: var(--color-black-deep);
  color: var(--color-white);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 0.25rem 0.65rem;
  border-radius: var(--radius-full);
}

.product-badge.sale {
  background: var(--color-green-primary);
}

.product-img-wrapper {
  background: #f8fafc;
  border-radius: var(--radius-sm);
  height: 230px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin-bottom: 1rem;
  position: relative;
}

.product-img-wrapper img {
  max-height: 85%;
  max-width: 85%;
  object-fit: contain;
  transition: transform 0.4s ease;
}

.product-card:hover .product-img-wrapper img {
  transform: scale(1.06);
}

.product-category {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: 600;
  color: var(--color-green-primary);
  margin-bottom: 0.25rem;
}

.product-title {
  font-weight: 700;
  font-size: 1rem;
  color: var(--color-black-deep);
  margin-bottom: 0.5rem;
  line-height: 1.35;
}

.product-price-row {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  margin-top: auto;
  padding-top: 0.75rem;
}

.product-price {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--color-black-deep);
}

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

.btn-add-cart {
  background: var(--color-black-deep);
  color: var(--color-white);
  border: none;
  width: 38px;
  height: 38px;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: auto;
  transition: var(--transition-smooth);
}

.btn-add-cart:hover {
  background: var(--color-green-primary);
  transform: scale(1.08);
}

/* --------------------------------------------------------------------------
   Newsletter Banner (Black & Green Callout)
   -------------------------------------------------------------------------- */
.newsletter-card {
  background: var(--color-black-deep);
  color: var(--color-white);
  border-radius: var(--radius-lg);
  padding: 3.5rem 3rem;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(16, 185, 129, 0.3);
}

.newsletter-card::after {
  content: '';
  position: absolute;
  right: -50px;
  bottom: -50px;
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.35) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

/* --------------------------------------------------------------------------
   Footer
   -------------------------------------------------------------------------- */
.footer-eugenda {
  background: var(--color-black-deep);
  color: #94a3b8;
  padding: 4.5rem 0 2rem;
  border-top: 2px solid var(--color-green-primary);
  font-size: 0.92rem;
}

.footer-brand {
  color: var(--color-white);
  font-weight: 800;
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.footer-heading {
  color: var(--color-white);
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 1.25rem;
  letter-spacing: -0.2px;
}

.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 0.65rem;
}

.footer-links a:hover {
  color: var(--color-green-light);
  padding-left: 4px;
}

.footer-bottom {
  border-top: 1px solid var(--color-charcoal);
  margin-top: 3rem;
  padding-top: 2rem;
  font-size: 0.85rem;
}

/* ==========================================================================
   ENHANCED HOMEPAGE DESIGN SYSTEM & COMPONENTS
   ========================================================================== */

/* 1. Standardized Product Card Component (1:1 Ratio, Wishlist, Badges, Add to Cart) */
.product-card {
  background: var(--color-white);
  border: 1px solid var(--color-border-light);
  border-radius: var(--radius-md);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
  overflow: hidden;
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px -6px rgba(5, 150, 105, 0.12), 0 4px 12px -2px rgba(0, 0, 0, 0.05);
  border-color: rgba(5, 150, 105, 0.3);
}

.product-media-container {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  background-color: #f8fafc;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-img-box {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.product-thumb-img {
  max-width: 90%;
  max-height: 90%;
  object-fit: contain;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.product-card:hover .product-thumb-img {
  transform: scale(1.06);
}

.product-icon-fallback {
  color: var(--color-green-primary);
  opacity: 0.85;
}

/* Wishlist Button Overlay */
.btn-wishlist-toggle {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(4px);
  border: 1px solid rgba(0, 0, 0, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-black-muted);
  cursor: pointer;
  z-index: 5;
  transition: transform 0.2s ease, background-color 0.2s ease, color 0.2s ease;
}

.btn-wishlist-toggle:hover {
  transform: scale(1.1);
  color: #dc2626;
  background: #ffffff;
}

.btn-wishlist-toggle.active {
  color: #dc2626;
  background: #ffffff;
}

/* Quick View Overlay Button */
.btn-quick-view {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  background: rgba(9, 9, 11, 0.88);
  backdrop-filter: blur(6px);
  color: #ffffff;
  border: none;
  border-radius: var(--radius-full);
  padding: 0.38rem 0.9rem;
  font-size: 0.76rem;
  font-weight: 600;
  cursor: pointer;
  z-index: 5;
  opacity: 0;
  transition: opacity 0.2s ease, transform 0.2s ease;
  white-space: nowrap;
}

.product-card:hover .btn-quick-view {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* Badges */
.product-badges-wrapper {
  position: absolute;
  top: 10px;
  left: 10px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  z-index: 4;
}

.product-badge {
  font-size: 0.7rem;
  font-weight: 700;
  padding: 0.2rem 0.55rem;
  border-radius: var(--radius-full);
  letter-spacing: 0.3px;
  text-transform: uppercase;
}

.product-badge.sale {
  background: #dc2626;
  color: #ffffff;
}

.product-badge.badge-custom {
  background: var(--color-green-primary);
  color: #ffffff;
}

/* Stock Status Pills */
.stock-pill {
  font-size: 0.7rem;
  font-weight: 600;
  padding: 0.15rem 0.5rem;
  border-radius: var(--radius-full);
}

.stock-pill.stock-in {
  background: #ecfdf5;
  color: #059669;
}

.stock-pill.stock-low {
  background: #fffbeb;
  color: #d97706;
}

.stock-pill.stock-out {
  background: #fef2f2;
  color: #dc2626;
}

/* Product Titles & Typography */
.product-title {
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1.35;
  margin-bottom: 0.4rem;
}

.text-truncate-2 {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.price-current {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--color-black-deep);
}

.price-original {
  font-size: 0.88rem;
  color: var(--color-text-muted);
  text-decoration: line-through;
}

/* Prominent Add to Cart Button */
.btn-add-to-cart {
  background: var(--color-green-primary);
  color: #ffffff;
  border: none;
  border-radius: var(--radius-full);
  padding: 0.55rem 1rem;
  font-size: 0.88rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}

.btn-add-to-cart:hover {
  background: var(--color-green-dark);
  color: #ffffff;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(5, 150, 105, 0.3);
}

/* 2. Category Discovery & Mobile Horizontal Scroll */
.category-card-item {
  min-width: 140px;
}

.category-icon-bubble {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background: #ecfdf5;
  color: var(--color-green-primary);
  font-size: 1.6rem;
  transition: transform 0.25s ease, background 0.25s ease;
}

.category-card-link:hover .category-icon-bubble {
  transform: scale(1.1);
  background: var(--color-green-primary);
  color: #ffffff;
}

.category-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.category-explore-pill {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--color-green-primary);
  transition: transform 0.2s ease;
}

.category-card-link:hover .category-explore-pill {
  transform: translateX(4px);
}

/* Mobile Horizontal Scroll for Categories */
@media (max-width: 767px) {
  .category-scroll-container {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 0.75rem;
    padding-bottom: 0.75rem;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .category-scroll-container::-webkit-scrollbar {
    display: none;
  }
  .category-scroll-container .category-card-item {
    flex: 0 0 145px;
    scroll-snap-align: start;
  }
}

/* 3. Flash Deals Section & Functional Countdown */
.deals-section-card {
  background: linear-gradient(135deg, #09090b 0%, #18181b 100%);
  border: 1px solid rgba(16, 185, 129, 0.25);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  position: relative;
  overflow: hidden;
}

.deals-section-card::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.15) 0%, transparent 70%);
  pointer-events: none;
}

.countdown-box {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.countdown-unit {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(8px);
  border-radius: 8px;
  padding: 0.4rem 0.65rem;
  text-align: center;
  min-width: 48px;
}

.countdown-digit {
  font-size: 1.25rem;
  font-weight: 800;
  color: #ffffff;
  line-height: 1;
  font-family: monospace;
}

.countdown-label {
  font-size: 0.62rem;
  text-transform: uppercase;
  color: var(--color-green-light);
  letter-spacing: 0.5px;
  margin-top: 2px;
}

/* 4. Professional 6 Trust Pillars */
.trust-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1rem;
}

.trust-card {
  background: var(--color-white);
  border: 1px solid var(--color-border-light);
  border-radius: var(--radius-md);
  padding: 1.25rem 1rem;
  text-align: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  height: 100%;
}

.trust-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px -4px rgba(0, 0, 0, 0.06);
  border-color: rgba(5, 150, 105, 0.25);
}

.trust-icon-box {
  width: 46px;
  height: 46px;
  margin: 0 auto 0.75rem;
  border-radius: 50%;
  background: #ecfdf5;
  color: var(--color-green-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

.trust-title {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--color-black-deep);
  margin-bottom: 0.25rem;
}

.trust-desc {
  font-size: 0.78rem;
  color: var(--color-text-muted);
  line-height: 1.4;
  margin-bottom: 0;
}

/* 5. Authentic Social Proof Strip */
.social-proof-strip {
  background: #ffffff;
  border: 1px solid var(--color-border-light);
  border-radius: var(--radius-md);
  padding: 1.5rem;
}

.proof-metric-number {
  font-size: 1.85rem;
  font-weight: 800;
  color: var(--color-black-deep);
  line-height: 1.1;
}

/* 6. Social Buttons & Footer Newsletter */
.social-icon-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #18181b;
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  transition: all 0.2s ease;
}

.social-icon-btn:hover {
  background: var(--color-green-primary);
  color: #ffffff;
  transform: translateY(-2px);
}

/* 7. Micro-Interactions & Reduced Motion */
.pulse-badge {
  animation: pulseAnimation 0.5s ease-in-out;
}

@keyframes pulseAnimation {
  0% { transform: scale(1); }
  50% { transform: scale(1.4); }
  100% { transform: scale(1); }
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* 8. Breakpoint Media Queries (320px to 1440px) */
@media (max-width: 425px) {
  .hero-title {
    font-size: 2rem !important;
  }
  .deals-section-card {
    padding: 1.5rem 1rem;
  }
  .countdown-unit {
    min-width: 40px;
    padding: 0.3rem 0.45rem;
  }
  .countdown-digit {
    font-size: 1rem;
  }
  .product-info-body {
    padding: 0.75rem;
  }
  .price-current {
    font-size: 1.1rem;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .hero-title {
    font-size: 2.5rem;
  }
}

@media (min-width: 1440px) {
  .container {
    max-width: 1380px;
  }
}
