/* ==========================================================================
   AURA HERBAL & WELLNESS - MINIMALIST CSS DESIGN SYSTEM
   Palette: Off-White (#FBFBFA / #F4F4F0), Pure White (#FFFFFF),
   Accents: Crimson Red (#D90429), Amber Yellow (#FFB703), Obsidian (#111111)
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400..700;1,400..700&family=Plus+Jakarta+Sans:wght@300;400;500;600;700&display=swap');

:root {
  /* Color Tokens */
  --bg-main: #FAF9F6;
  /* Off-white background */
  --bg-card: #FFFFFF;
  /* Pure white card container */
  --bg-subtle: #F4F3EF;
  /* Slightly darker warm off-white */
  --text-primary: #111111;
  /* Deep charcoal obsidian */
  --text-secondary: #555555;
  /* Neutral mid gray */
  --text-muted: #888888;
  /* Subtle meta gray */

  /* Required Accent Colors */
  --accent-red: #D90429;
  /* Vibrant Crimson Red */
  --accent-red-hover: #EF233C;
  --accent-red-bg: #FFF0F2;
  --accent-yellow: #FFB703;
  /* Warm Vibrant Amber Yellow */
  --accent-yellow-dark: #E5A300;
  --accent-yellow-bg: #FFF9E6;

  /* Borders & Shadows */
  --border-light: #EBEAE5;
  --border-focus: #111111;
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.03);
  --shadow-md: 0 12px 32px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 24px 48px rgba(0, 0, 0, 0.12);

  /* Layout & Spacing */
  --container-width: 1320px;
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-full: 9999px;

  /* Transitions */
  --transition-fast: 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-normal: 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

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

html,
body {
  overflow-x: hidden !important;
  max-width: 100vw !important;
  width: 100% !important;
  position: relative;
}

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

body {
  font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  background-color: var(--bg-main);
  color: var(--text-primary);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a {
  color: inherit;
  text-decoration: none;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

input,
select,
textarea {
  font-family: inherit;
  font-size: 1rem;
}

/* Container */
.container {
  width: 90%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Typography Headings */
h1,
h2,
h3,
.serif-font {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 500;
  letter-spacing: -0.02em;
  color: var(--text-primary);
}

/* ==========================================================================
   TOP PROMO BAR
   ========================================================================== */
.top-bar {
  background-color: var(--text-primary);
  color: #FFFFFF;
  font-size: 0.85rem;
  padding: 0.6rem 0;
  text-align: center;
  font-weight: 500;
  letter-spacing: 0.03em;
}

.top-bar .highlight-yellow {
  color: var(--accent-yellow);
  font-weight: 700;
}

.top-bar .highlight-red-tag {
  background-color: var(--accent-red);
  color: #FFFFFF;
  padding: 0.15rem 0.5rem;
  border-radius: var(--radius-sm);
  font-size: 0.75rem;
  margin-left: 0.5rem;
  text-transform: uppercase;
  font-weight: 700;
}

/* ==========================================================================
   HEADER & NAVIGATION
   ========================================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background-color: rgba(250, 249, 246, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-light);
  padding: 1.25rem 0;
  transition: var(--transition-fast);
}

.nav-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: 'Playfair Display', serif;
  font-size: 1.75rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  order: 1;
}

nav {
  order: 2;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  list-style: none;
}

.nav-link {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-secondary);
  transition: var(--transition-fast);
  position: relative;
}

.nav-link:hover,
.nav-link.active {
  color: var(--text-primary);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--accent-red), var(--accent-yellow));
  transition: var(--transition-fast);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.search-box {
  position: relative;
  width: 240px;
  order: 3;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  order: 4;
}

.search-box input {
  width: 100%;
  padding: 0.6rem 1rem 0.6rem 2.4rem;
  background-color: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-full);
  font-size: 0.875rem;
  outline: none;
  transition: var(--transition-fast);
}

.search-box input:focus {
  border-color: var(--text-primary);
  box-shadow: 0 0 0 3px rgba(217, 4, 41, 0.1);
}

.search-icon {
  position: absolute;
  left: 0.85rem;
  top: 50%;
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
  stroke: var(--text-muted);
}

.action-icon-btn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background-color: var(--bg-card);
  border: 1px solid var(--border-light);
  transition: var(--transition-fast);
}

.action-icon-btn:hover {
  border-color: var(--text-primary);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

.icon-badge {
  position: absolute;
  top: -4px;
  right: -4px;
  background-color: var(--accent-red);
  color: #FFFFFF;
  font-size: 0.7rem;
  font-weight: 700;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--bg-card);
}

.wishlist-badge {
  background-color: var(--accent-yellow);
  color: var(--text-primary);
}

/* ==========================================================================
   HERO SECTION (SPACIOUS & MINIMAL)
   ========================================================================== */
.hero-section {
  padding: 5rem 0 4rem;
  background: radial-gradient(circle at 80% 20%, rgba(255, 183, 3, 0.08), transparent 40%),
    radial-gradient(circle at 10% 80%, rgba(217, 4, 41, 0.05), transparent 40%);
  position: relative;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 4rem;
  align-items: center;
}

.hero-content {
  max-width: 620px;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 1rem;
  background-color: var(--accent-yellow-bg);
  border: 1px solid rgba(255, 183, 3, 0.3);
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 600;
  color: #996B00;
  margin-bottom: 1.5rem;
}

.hero-tag .tag-dot-red {
  width: 7px;
  height: 7px;
  background-color: var(--accent-red);
  border-radius: 50%;
}

.hero-title {
  font-size: 3.75rem;
  line-height: 1.15;
  margin-bottom: 1.5rem;
}

.hero-title em {
  font-style: italic;
  color: var(--accent-red);
  font-weight: 400;
}

.hero-description {
  font-size: 1.15rem;
  color: var(--text-secondary);
  margin-bottom: 2.5rem;
  font-weight: 400;
  max-width: 520px;
}

.hero-buttons {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.95rem 2rem;
  border-radius: var(--radius-full);
  font-size: 0.95rem;
  font-weight: 600;
  transition: var(--transition-normal);
}

.btn-primary {
  background-color: var(--text-primary);
  color: #FFFFFF;
  border: 1px solid var(--text-primary);
}

.btn-primary:hover {
  background-color: var(--accent-red);
  border-color: var(--accent-red);
  box-shadow: 0 8px 24px rgba(217, 4, 41, 0.25);
  transform: translateY(-2px);
}

.btn-outline {
  background-color: transparent;
  color: var(--text-primary);
  border: 1px solid var(--border-focus);
}

.btn-outline:hover {
  background-color: var(--bg-card);
  border-color: var(--accent-yellow-dark);
  box-shadow: 0 4px 12px rgba(255, 183, 3, 0.2);
  transform: translateY(-2px);
}

.hero-visual {
  position: relative;
}

.hero-card-frame {
  background-color: var(--bg-card);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-md);
  position: relative;
}

.hero-card-frame img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: var(--radius-md);
}

.hero-floating-badge {
  position: absolute;
  bottom: 2rem;
  left: -1.5rem;
  background-color: var(--bg-card);
  border: 1px solid var(--border-light);
  padding: 1rem 1.25rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 1rem;
}

.badge-icon-yellow {
  width: 42px;
  height: 42px;
  background-color: var(--accent-yellow-bg);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
}

.badge-text-title {
  font-size: 0.85rem;
  font-weight: 700;
}

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

/* ==========================================================================
   FEATURE BAR (TRUST BADGES)
   ========================================================================== */
.features-bar {
  padding: 2.5rem 0;
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
  background-color: var(--bg-card);
}

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

.feature-item {
  display: flex;
  align-items: center;
  gap: 1rem;
}

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

.feature-title {
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 0.15rem;
}

.feature-desc {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* ==========================================================================
   CATALOG SECTION & CONTROLS
   ========================================================================== */
.catalog-section {
  padding: 5rem 0;
}

.section-header {
  margin-bottom: 3rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.section-tag {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent-red);
}

.section-title {
  font-size: 2.5rem;
}

/* Toolbar & Filters */
.toolbar-wrapper {
  background-color: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 1.25rem 1.5rem;
  margin-bottom: 3rem;
  box-shadow: var(--shadow-sm);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.category-pills {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  flex-wrap: wrap;
}

.category-pill {
  padding: 0.6rem 1.25rem;
  border-radius: var(--radius-full);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-secondary);
  background-color: var(--bg-subtle);
  border: 1px solid transparent;
  transition: var(--transition-fast);
}

.category-pill:hover {
  color: var(--text-primary);
  background-color: #EAE8E3;
}

.category-pill.active {
  background-color: var(--text-primary);
  color: #FFFFFF;
  font-weight: 600;
}

.filter-controls {
  display: flex;
  align-items: center;
  gap: 1.75rem;
}

.filter-group {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.875rem;
  color: var(--text-secondary);
}

.filter-group label {
  font-weight: 600;
}

.range-input-wrapper {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.range-input-wrapper input[type="range"] {
  accent-color: var(--accent-red);
  cursor: pointer;
}

.price-display {
  font-weight: 700;
  color: var(--text-primary);
  min-width: 42px;
}

.select-dropdown {
  padding: 0.55rem 1rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-light);
  background-color: var(--bg-main);
  color: var(--text-primary);
  outline: none;
  cursor: pointer;
  font-size: 0.875rem;
}

.results-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2rem;
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* ==========================================================================
   PRODUCT CARD GRID & CARDS
   ========================================================================== */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(290px, 1fr));
  gap: 2.5rem;
}

.product-card {
  background-color: var(--bg-card);
  border-radius: var(--radius-md);
  border: 1px solid var(--border-light);
  overflow: hidden;
  transition: var(--transition-normal);
  display: flex;
  flex-direction: column;
  position: relative;
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: rgba(217, 4, 41, 0.2);
}

.card-image-wrapper {
  position: relative;
  aspect-ratio: 1 / 1;
  background-color: var(--bg-subtle);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

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

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

/* Badges: Red & Yellow Accent */
.product-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  z-index: 2;
  padding: 0.35rem 0.8rem;
  border-radius: var(--radius-sm);
  font-size: 0.725rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.badge-red {
  background-color: var(--accent-red);
  color: #FFFFFF;
}

.badge-yellow {
  background-color: var(--accent-yellow);
  color: var(--text-primary);
}

.wishlist-btn {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 2;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-fast);
}

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

.heart-icon {
  width: 18px;
  height: 18px;
  transition: var(--transition-fast);
}

.card-overlay-actions {
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition-fast);
}

.product-card:hover .card-overlay-actions {
  opacity: 1;
  pointer-events: auto;
}

.btn-quickview {
  background-color: #FFFFFF;
  color: var(--text-primary);
  padding: 0.7rem 1.4rem;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 600;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-fast);
}

.btn-quickview:hover {
  background-color: var(--accent-yellow);
  color: var(--text-primary);
}

.card-body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.card-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.5rem;
  font-size: 0.8rem;
}

.card-category {
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 600;
}

.card-rating {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  font-weight: 600;
}

.star-accent {
  color: var(--accent-yellow);
  font-size: 1rem;
}

.rating-num {
  color: var(--text-primary);
}

.reviews-count {
  color: var(--text-muted);
  font-weight: 400;
}

.card-title {
  font-size: 1.2rem;
  margin-bottom: 0.35rem;
  line-height: 1.3;
}

.card-subtitle {
  font-size: 0.875rem;
  color: var(--text-secondary);
  margin-bottom: 1.25rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.card-footer {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1rem;
  border-top: 1px solid var(--border-light);
}

.card-prices {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
}

.current-price {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-primary);
}

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

.btn-add-cart {
  background-color: var(--bg-subtle);
  color: var(--text-primary);
  padding: 0.55rem 1rem;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 700;
  transition: var(--transition-fast);
  border: 1px solid var(--border-light);
}

.btn-add-cart:hover {
  background-color: var(--accent-red);
  color: #FFFFFF;
  border-color: var(--accent-red);
}

/* No Results State */
.no-results {
  grid-column: 1 / -1;
  text-align: center;
  padding: 5rem 1rem;
  background-color: var(--bg-card);
  border-radius: var(--radius-md);
  border: 1px solid var(--border-light);
}

.no-results-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.no-results h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.no-results p {
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
}

/* ==========================================================================
   SLIDE-OUT CART DRAWER
   ========================================================================== */
.drawer-backdrop {
  position: fixed;
  inset: 0;
  background-color: rgba(17, 17, 17, 0.4);
  backdrop-filter: blur(4px);
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-normal);
}

.drawer-backdrop.active {
  opacity: 1;
  visibility: visible;
}

.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  max-width: 440px;
  background-color: var(--bg-card);
  z-index: 1001;
  box-shadow: var(--shadow-lg);
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.cart-drawer.open {
  transform: translateX(0);
}

.drawer-header {
  padding: 1.5rem;
  border-bottom: 1px solid var(--border-light);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.drawer-header h3 {
  font-size: 1.35rem;
}

.close-drawer-btn {
  font-size: 1.5rem;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: var(--transition-fast);
}

.close-drawer-btn:hover {
  background-color: var(--bg-subtle);
}

.drawer-body {
  padding: 1.5rem;
  flex-grow: 1;
  overflow-y: auto;
}

.cart-drawer-item {
  display: grid;
  grid-template-columns: 70px 1fr auto;
  gap: 1rem;
  padding-bottom: 1.25rem;
  margin-bottom: 1.25rem;
  border-bottom: 1px solid var(--border-light);
  align-items: center;
}

.cart-item-thumb {
  width: 70px;
  height: 70px;
  object-fit: contain;
  border-radius: var(--radius-sm);
  background-color: var(--bg-subtle);
  padding: 0.25rem;
}

.cart-item-title {
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.cart-item-unit-price {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.cart-item-controls {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 0.5rem;
}

.mini-qty-picker {
  display: flex;
  align-items: center;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  overflow: hidden;
}

.mini-qty-btn {
  width: 24px;
  height: 24px;
  background-color: var(--bg-subtle);
  font-weight: 700;
  font-size: 0.8rem;
}

.mini-qty-val {
  padding: 0 0.5rem;
  font-size: 0.85rem;
  font-weight: 600;
}

.cart-item-remove {
  font-size: 0.75rem;
  color: var(--accent-red);
  font-weight: 600;
  text-decoration: underline;
}

.cart-item-subtotal {
  font-size: 1rem;
  font-weight: 700;
}

/* Empty Cart Drawer View */
.empty-cart-view {
  text-align: center;
  padding: 4rem 1rem;
}

.empty-cart-icon {
  font-size: 3.5rem;
  margin-bottom: 1rem;
}

.drawer-footer {
  padding: 1.5rem;
  background-color: var(--bg-subtle);
  border-top: 1px solid var(--border-light);
}

.promo-form {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
}

.promo-form input {
  flex-grow: 1;
  padding: 0.6rem 0.85rem;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
  text-transform: uppercase;
}

.applied-promo-tag {
  background-color: var(--accent-yellow-bg);
  border: 1px solid rgba(255, 183, 3, 0.4);
  padding: 0.4rem 0.75rem;
  border-radius: var(--radius-sm);
  font-size: 0.8rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
}

.btn-remove-promo {
  color: var(--accent-red);
  font-size: 1.1rem;
  font-weight: 700;
}

.summary-line {
  display: flex;
  justify-content: space-between;
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin-bottom: 0.5rem;
}

.summary-line.total-line {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-primary);
  border-top: 1px solid var(--border-light);
  padding-top: 0.75rem;
  margin-top: 0.75rem;
  margin-bottom: 1.5rem;
}

.btn-full {
  width: 100%;
}

.btn-checkout {
  background-color: var(--accent-red);
  color: #FFFFFF;
  padding: 1rem;
  font-size: 1rem;
}

.btn-checkout:hover {
  background-color: var(--accent-red-hover);
  box-shadow: 0 8px 24px rgba(217, 4, 41, 0.3);
}

/* ==========================================================================
   MODAL WINDOWS (QUICK VIEW, CHECKOUT, WISHLIST)
   ========================================================================== */
.modal-overlay {
  position: fixed;
  inset: 0;
  background-color: rgba(17, 17, 17, 0.6);
  backdrop-filter: blur(6px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-normal);
}

.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.modal-container {
  background-color: var(--bg-card);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-light);
  width: 100%;
  max-width: 900px;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  box-shadow: var(--shadow-lg);
  transform: scale(0.95);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.modal-overlay.active .modal-container {
  transform: scale(1);
}

.modal-close-btn {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  z-index: 10;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: var(--bg-subtle);
  font-size: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-fast);
}

.modal-close-btn:hover {
  background-color: var(--accent-red);
  color: #FFFFFF;
}

/* QuickView Layout */
.qv-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  padding: 2.5rem;
}

.qv-image-col {
  position: relative;
  background-color: var(--bg-subtle);
  border-radius: var(--radius-md);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  min-height: 320px;
}

.qv-img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
}

.qv-info-col {
  display: flex;
  flex-direction: column;
}

.qv-category {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}

.qv-title {
  font-size: 2rem;
  margin-bottom: 0.35rem;
}

.qv-subtitle {
  font-size: 1rem;
  color: var(--text-secondary);
  margin-bottom: 1.25rem;
}

.qv-rating-row {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
  font-size: 0.9rem;
}

.qv-rating-row .stars {
  color: var(--accent-yellow);
  letter-spacing: 2px;
}

.qv-price-row {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.qv-price {
  font-size: 2rem;
  font-weight: 700;
  color: var(--text-primary);
}

.qv-orig-price {
  font-size: 1.15rem;
  color: var(--text-muted);
  text-decoration: line-through;
}

.stock-tag {
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.25rem 0.6rem;
  border-radius: var(--radius-sm);
}

.stock-tag.in-stock {
  background-color: #E6F4EA;
  color: #137333;
}

.qv-description {
  font-size: 0.95rem;
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.qv-accordion {
  background-color: var(--bg-subtle);
  padding: 1rem 1.25rem;
  border-radius: var(--radius-md);
  margin-bottom: 2rem;
  font-size: 0.875rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.qv-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: auto;
}

.quantity-picker {
  display: flex;
  align-items: center;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-full);
  padding: 0.25rem;
  background-color: var(--bg-subtle);
}

.qty-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  font-weight: 700;
  font-size: 1.1rem;
  transition: var(--transition-fast);
}

.qty-btn:hover {
  background-color: #FFFFFF;
}

.qty-num {
  padding: 0 1rem;
  font-weight: 700;
}

.btn-add-qv {
  flex-grow: 1;
}

/* Checkout Wizard Layout */
.checkout-container {
  max-width: 720px;
  padding: 2.5rem;
}

.checkout-steps-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2rem;
  border-bottom: 1px solid var(--border-light);
  padding-bottom: 1rem;
}

.step-indicator {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-muted);
}

.step-indicator.active {
  color: var(--accent-red);
}

.step-indicator.completed {
  color: var(--text-primary);
}

.step-num {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background-color: var(--bg-subtle);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
}

.step-indicator.active .step-num {
  background-color: var(--accent-red);
  color: #FFFFFF;
}

.step-indicator.completed .step-num {
  background-color: var(--accent-yellow);
  color: var(--text-primary);
}

.checkout-step {
  display: none;
}

.checkout-step.active {
  display: block;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  margin-bottom: 1.5rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.form-group.full-width {
  grid-column: 1 / -1;
}

.form-group label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-secondary);
}

.form-group input {
  padding: 0.75rem 1rem;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  background-color: var(--bg-main);
  outline: none;
  transition: var(--transition-fast);
}

.form-group input:focus {
  border-color: var(--text-primary);
  background-color: #FFFFFF;
}

.checkout-summary-mini {
  background-color: var(--bg-subtle);
  border-radius: var(--radius-md);
  padding: 1.25rem;
  margin-bottom: 1.5rem;
}

.checkout-summary-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.5rem 0;
}

.item-thumb-title {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.item-thumb-title img {
  width: 40px;
  height: 40px;
  border-radius: 4px;
  object-fit: cover;
}

.summary-item-title {
  font-size: 0.85rem;
}

.summary-item-qty {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.confirmation-view {
  text-align: center;
  padding: 2rem 1rem;
}

.confirm-badge {
  width: 72px;
  height: 72px;
  background-color: #E6F4EA;
  color: #137333;
  font-size: 2.5rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}

/* Wishlist Modal */
.wishlist-modal-container {
  max-width: 600px;
  padding: 2rem;
}

.wishlist-row {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--border-light);
}

.wishlist-row img {
  width: 60px;
  height: 60px;
  border-radius: var(--radius-sm);
  object-fit: cover;
}

.wishlist-details {
  flex-grow: 1;
}

.wishlist-details h4 {
  font-size: 1rem;
}

.wishlist-price {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text-primary);
}

.wishlist-remove {
  font-size: 1.25rem;
  color: var(--text-muted);
}

.wishlist-remove:hover {
  color: var(--accent-red);
}

/* ==========================================================================
   TOAST NOTIFICATIONS
   ========================================================================== */
#toast-container {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 3000;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  pointer-events: none;
}

.toast {
  background-color: var(--text-primary);
  color: #FFFFFF;
  padding: 0.9rem 1.4rem;
  border-radius: var(--radius-full);
  font-size: 0.875rem;
  font-weight: 500;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  opacity: 0;
  transform: translateY(1rem);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  pointer-events: auto;
}

.toast.show {
  opacity: 1;
  transform: translateY(0);
}

.toast-success {
  border-left: 4px solid var(--accent-yellow);
}

.toast-warning {
  border-left: 4px solid var(--accent-red);
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.site-footer {
  background-color: #111111;
  color: #FFFFFF;
  padding: 5rem 0 2.5rem;
  margin-top: 4rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 4rem;
  margin-bottom: 4rem;
}

.footer-brand .brand-logo {
  color: #FFFFFF;
  margin-bottom: 1.25rem;
}

.footer-brand p {
  color: #AAAAAA;
  font-size: 0.95rem;
  max-width: 340px;
}

.footer-col h4 {
  font-size: 1rem;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  margin-bottom: 1.5rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--accent-yellow);
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-links a {
  color: #CCCCCC;
  font-size: 0.9rem;
  transition: var(--transition-fast);
}

.footer-links a:hover {
  color: var(--accent-red);
}

.newsletter-form {
  display: flex;
  gap: 0.5rem;
  margin-top: 1rem;
}

.newsletter-form input {
  padding: 0.75rem 1rem;
  border-radius: var(--radius-full);
  border: 1px solid #333333;
  background-color: #1E1E1E;
  color: #FFFFFF;
  outline: none;
  flex-grow: 1;
  font-size: 0.85rem;
}

.newsletter-form input:focus {
  border-color: var(--accent-yellow);
}

.footer-bottom {
  border-top: 1px solid #222222;
  padding-top: 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.85rem;
  color: #777777;
}

/* Spinner */
.spinner {
  display: inline-block;
  width: 14px;
  height: 14px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  border-top-color: #FFFFFF;
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* ==========================================================================
   MOBILE HAMBURGER TOGGLE BUTTON & RESPONSIVE DESIGN
   ========================================================================== */
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 28px;
  height: 20px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 105;
  margin-left: 0.5rem;
}

.mobile-menu-toggle span {
  width: 100%;
  height: 2.5px;
  background-color: var(--text-primary);
  border-radius: 2px;
  transition: var(--transition-fast);
}

.mobile-menu-toggle.active span:nth-child(1) {
  transform: translateY(8.5px) rotate(45deg);
}

.mobile-menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
  transform: translateY(-8.5px) rotate(-45deg);
}

/* --- TABLET BREAKPOINT (max-width: 1024px) --- */
@media (max-width: 1024px) {
  .container {
    width: 95%;
    padding: 0 1rem;
  }

  .site-header {
    padding: 1rem 0;
  }

  .mobile-menu-toggle {
    display: flex;
  }

  .nav-links {
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background-color: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border-light);
    box-shadow: var(--shadow-md);
    flex-direction: column;
    padding: 1.75rem 2rem;
    gap: 1.25rem;
    align-items: flex-start;
    transform: translateY(-150%);
    opacity: 0;
    visibility: hidden;
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 99;
  }

  .nav-links.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .nav-link {
    font-size: 1.1rem;
    width: 100%;
    padding: 0.5rem 0;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
    text-align: center;
  }

  .hero-content {
    max-width: 100%;
    margin: 0 auto;
  }

  .hero-description {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-buttons {
    justify-content: center;
  }

  .hero-title {
    font-size: 2.85rem;
  }

  .hero-card-frame img {
    height: 350px;
  }

  .features-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
  }
}

/* --- SMARTPHONE MOBILE BREAKPOINT (max-width: 768px) --- */
@media (max-width: 768px) {

  html,
  body {
    overflow-x: hidden !important;
    max-width: 100vw !important;
    width: 100% !important;
  }

  .container {
    width: 100% !important;
    max-width: 100% !important;
    padding-left: 0.85rem !important;
    padding-right: 0.85rem !important;
    box-sizing: border-box !important;
  }

  .top-bar {
    font-size: 0.72rem;
    padding: 0.4rem 0.5rem;
    line-height: 1.3;
    max-width: 100%;
    word-break: break-word;
    overflow: hidden;
  }

  .nav-wrapper {
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 0.4rem;
  }

  .brand-logo {
    order: 1;
    font-size: 1.35rem;
    white-space: nowrap;
    flex-shrink: 0;
  }

  .header-actions {
    order: 2;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-left: auto;
  }

  .action-icon-btn {
    width: 38px;
    height: 38px;
  }

  .search-box {
    order: 3;
    width: 100%;
    flex-basis: 100%;
    margin-top: 0.5rem;
  }

  .search-box input {
    width: 100%;
    padding: 0.5rem 0.75rem 0.5rem 2rem;
    font-size: 0.8rem;
  }

  .search-icon {
    left: 0.6rem;
    width: 14px;
    height: 14px;
  }

  .hero-section {
    padding: 2.5rem 0 2rem;
    overflow: hidden;
  }

  .hero-content {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
  }

  .hero-tag {
    font-size: 0.75rem;
    padding: 0.35rem 0.75rem;
    max-width: 100%;
    white-space: normal;
    text-align: center;
    line-height: 1.3;
    margin-bottom: 1rem;
    display: inline-flex;
  }

  .hero-title {
    font-size: clamp(1.75rem, 6.5vw, 2.25rem);
    line-height: 1.2;
    word-break: break-word;
    max-width: 100%;
  }

  .hero-description {
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    max-width: 100%;
    word-break: break-word;
  }

  .hero-buttons {
    flex-direction: column;
    width: 100%;
    gap: 0.6rem;
  }

  .btn {
    width: 100%;
    padding: 0.85rem 1.25rem;
    box-sizing: border-box;
    justify-content: center;
  }

  .hero-card-frame {
    padding: 0.75rem;
  }

  .hero-card-frame img {
    height: 240px;
  }

  .hero-floating-badge {
    bottom: 0.75rem;
    left: 50%;
    transform: translateX(-50%);
    width: 92%;
    padding: 0.6rem 0.85rem;
    gap: 0.75rem;
  }

  .badge-icon-yellow {
    width: 34px;
    height: 34px;
    font-size: 1rem;
    flex-shrink: 0;
  }

  .badge-text-title {
    font-size: 0.78rem;
  }

  .badge-text-sub {
    font-size: 0.7rem;
  }

  /* Trust Badges Features Bar (Mobile Centered Layout) */
  .features-bar {
    padding: 2rem 0;
  }

  .features-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.75rem 1rem;
  }

  .feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.4rem;
  }

  .feature-icon {
    width: 44px;
    height: 44px;
    font-size: 1.25rem;
    margin-bottom: 0.25rem;
  }

  .feature-title {
    font-size: 0.92rem;
    line-height: 1.3;
    margin-bottom: 0.15rem;
    word-break: normal;
  }

  .feature-desc {
    font-size: 0.78rem;
    line-height: 1.35;
    color: var(--text-muted);
  }

  .catalog-section {
    padding: 2.5rem 0;
    overflow: hidden;
  }

  .toolbar-wrapper {
    flex-direction: column;
    align-items: stretch;
    padding: 0.85rem;
    gap: 0.85rem;
    margin-bottom: 1.5rem;
  }

  .category-pills {
    overflow-x: auto;
    white-space: nowrap;
    padding-bottom: 0.4rem;
    flex-wrap: nowrap;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    width: 100%;
  }

  .category-pills::-webkit-scrollbar {
    display: none;
  }

  .category-pill {
    flex-shrink: 0;
    padding: 0.45rem 0.85rem;
    font-size: 0.8rem;
  }

  .filter-controls {
    flex-direction: column;
    align-items: stretch;
    gap: 0.85rem;
  }

  .filter-group {
    justify-content: space-between;
    width: 100%;
  }

  .select-dropdown {
    width: 100%;
  }

  /* 2-Column Mobile Product Grid (Sleek Compact Cards) */
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
    width: 100%;
  }

  .product-card {
    border-radius: var(--radius-md);
  }

  .product-badge {
    top: 0.4rem;
    left: 0.4rem;
    padding: 0.2rem 0.45rem;
    font-size: 0.6rem;
    border-radius: 4px;
    letter-spacing: 0.02em;
    max-width: calc(100% - 40px);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .wishlist-btn {
    top: 0.4rem;
    right: 0.4rem;
    width: 28px;
    height: 28px;
  }

  .heart-icon {
    width: 14px;
    height: 14px;
  }

  .card-image-wrapper {
    padding: 0.4rem;
    aspect-ratio: 1 / 1;
  }

  .card-img {
    max-width: 88%;
    max-height: 88%;
  }

  .card-body {
    padding: 0.75rem 0.6rem;
  }

  .card-meta {
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 0.2rem;
    margin-bottom: 0.35rem;
  }

  .card-category {
    font-size: 0.68rem;
    white-space: nowrap;
  }

  .card-rating {
    font-size: 0.7rem;
    white-space: nowrap;
    gap: 0.15rem;
  }

  .star-accent {
    font-size: 0.8rem;
  }

  .card-title {
    font-size: 0.88rem;
    line-height: 1.25;
    margin-bottom: 0.2rem;
  }

  .card-subtitle {
    font-size: 0.75rem;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-bottom: 0.5rem;
  }

  .card-footer {
    padding-top: 0.4rem;
    margin-top: auto;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0.4rem;
  }

  .card-prices {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    width: 100%;
  }

  .current-price {
    font-size: 0.95rem;
  }

  .original-price {
    font-size: 0.75rem;
  }

  .btn-add-cart {
    width: 100%;
    justify-content: center;
    padding: 0.45rem 0.5rem;
    font-size: 0.78rem;
  }

  .cart-drawer {
    width: 100%;
    max-width: 100%;
  }

  /* Quick View Mobile Modal Optimization */
  .modal-overlay {
    padding: 0.75rem 0.5rem;
    align-items: center;
  }

  .modal-container {
    width: 95%;
    max-width: 95%;
    max-height: 88vh;
    overflow-y: auto;
    border-radius: 16px;
    position: relative;
    padding: 0;
  }

  .modal-close-btn {
    position: absolute;
    top: 0.75rem;
    right: 0.75rem;
    z-index: 20;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: #FFFFFF;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    border: 1px solid var(--border-light);
    color: var(--text-primary);
    font-size: 1.35rem;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .qv-grid {
    grid-template-columns: 1fr;
    padding: 1.25rem 1rem 1.75rem;
    gap: 1rem;
  }

  .qv-image-col {
    min-height: 200px;
    max-height: 240px;
    padding: 0.75rem;
    aspect-ratio: 1 / 1;
    border-radius: var(--radius-md);
  }

  .qv-img {
    max-height: 200px;
    object-fit: contain;
  }

  .qv-category {
    font-size: 0.75rem;
    margin-bottom: 0.25rem;
  }

  .qv-title {
    font-size: 1.35rem;
    line-height: 1.25;
    word-break: break-word;
    margin-bottom: 0.25rem;
  }

  .qv-subtitle {
    font-size: 0.88rem;
    line-height: 1.35;
    margin-bottom: 0.75rem;
    word-break: break-word;
  }

  .qv-rating-row {
    flex-wrap: wrap;
    gap: 0.35rem;
    font-size: 0.8rem;
    margin-bottom: 0.85rem;
  }

  .qv-price-row {
    flex-wrap: wrap;
    gap: 0.6rem;
    margin-bottom: 1rem;
    align-items: baseline;
  }

  .qv-price {
    font-size: 1.5rem;
  }

  .qv-orig-price {
    font-size: 1rem;
  }

  .qv-description {
    font-size: 0.88rem;
    line-height: 1.5;
    margin-bottom: 1rem;
  }

  .qv-accordion {
    padding: 0.85rem;
    font-size: 0.8rem;
    margin-bottom: 1.25rem;
  }

  .qv-actions {
    flex-direction: column;
    align-items: stretch;
    gap: 0.75rem;
    margin-top: 1rem;
  }

  .quantity-picker {
    justify-content: center;
    width: 100%;
  }

  .btn-add-qv {
    width: 100%;
    justify-content: center;
    padding: 0.85rem;
    font-size: 0.95rem;
    font-weight: 700;
  }

  .form-grid {
    grid-template-columns: 1fr;
    gap: 0.85rem;
  }

  /* Mobile Checkout Wizard Step Bar */
  .checkout-container {
    padding: 1.25rem 1rem !important;
    position: relative;
  }

  .checkout-steps-bar {
    margin-bottom: 1.25rem;
    padding-bottom: 0.75rem;
    padding-right: 2.5rem;
    gap: 0.35rem;
    justify-content: flex-start;
  }

  .step-indicator {
    font-size: 0.75rem;
    gap: 0.3rem;
  }

  .step-num {
    width: 22px;
    height: 22px;
    font-size: 0.72rem;
    flex-shrink: 0;
  }

  .step-indicator span:not(.step-num) {
    font-size: 0.72rem;
    white-space: nowrap;
  }

  .modal-container {
    padding: 1.25rem 1rem;
    max-height: 92vh;
    border-radius: var(--radius-md);
    width: 95%;
  }

  .site-footer {
    padding: 3rem 0 2rem;
    margin-top: 2.5rem;
    overflow: hidden;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 1.75rem;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 0.5rem;
    text-align: center;
  }

  #toast-container {
    left: 0.75rem;
    right: 0.75rem;
    bottom: 0.75rem;
  }

  .toast {
    justify-content: center;
    width: 100%;
    font-size: 0.8rem;
    padding: 0.75rem 1rem;
  }
}

/* --- SMALL MOBILE PHONES (max-width: 480px) --- */
@media (max-width: 480px) {
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.6rem;
  }

  .card-body {
    padding: 0.65rem 0.5rem;
  }

  .card-footer {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.4rem;
  }

  .btn-add-cart {
    width: 100%;
  }

  .hero-title {
    font-size: 1.75rem;
  }

  .checkout-steps-bar {
    padding-right: 2.2rem;
  }

  .step-indicator span:not(.step-num) {
    font-size: 0.68rem;
  }
}

/* ==========================================================================
   MINIMALIST MICRO-ANIMATIONS & INTERACTIVE TRANSITIONS
   ========================================================================== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes badgePulse {

  0%,
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(217, 4, 41, 0.4);
  }

  50% {
    transform: scale(1.04);
    box-shadow: 0 0 0 6px rgba(217, 4, 41, 0);
  }
}

.highlight-red-tag {
  animation: badgePulse 3s infinite;
  display: inline-block;
}

/* Scroll Reveal Animations */
.reveal-on-scroll {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.55s cubic-bezier(0.16, 1, 0.3, 1), transform 0.55s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

.reveal-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Interactive Element Hover Animations */
.product-card {
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.35s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.3s ease !important;
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.07);
}

.btn {
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.25s cubic-bezier(0.16, 1, 0.3, 1), background-color 0.25s ease, border-color 0.25s ease !important;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn:active {
  transform: translateY(0) scale(0.98);
}

.btn-primary:hover {
  box-shadow: 0 6px 20px rgba(217, 4, 41, 0.25);
}

.category-pill {
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.category-pill:hover {
  transform: translateY(-1px);
}

.action-icon-btn {
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.action-icon-btn:hover {
  transform: scale(1.08);
}

.feature-item {
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.feature-item:hover {
  transform: translateY(-3px);
}

.feature-icon {
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), background-color 0.3s ease !important;
}

.feature-item:hover .feature-icon {
  transform: scale(1.08) rotate(3deg);
}

/* Weight Variant Selector Styles */
.weight-variant-selector {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 0.6rem 0 0.8rem 0;
}

.variant-pill, .weight-pill {
  background: var(--bg-subtle, #f4f6f8);
  border: 1.5px solid var(--border-light, #e2e8f0);
  color: var(--text-secondary, #475569);
  padding: 0.3rem 0.7rem;
  border-radius: 20px;
  font-size: 0.78rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  outline: none;
}

.variant-pill:hover, .weight-pill:hover {
  border-color: var(--accent-red, #D90429);
  color: var(--accent-red, #D90429);
  transform: translateY(-1px);
}

.variant-pill.active, .weight-pill.active {
  background-color: var(--accent-red, #D90429);
  border-color: var(--accent-red, #D90429);
  color: #ffffff;
  box-shadow: 0 2px 8px rgba(217, 4, 41, 0.25);
}