/* ============================================
   REJCAN - Artículos Diversos al Por Mayor
   Theme: Light with green/teal accents
   Fonts: Playfair Display (serif) + Inter (sans)
   ============================================ */

:root {
  --bg: #e8f5f0;
  --bg-rgb: 232, 245, 240;
  --fg: #1a1a1a;
  --card-bg: #f7fcfa;
  --card-fg: #1a1a1a;
  --primary: #3ba88a;
  --primary-dark: #2d8a6e;
  --primary-light: #d9efe6;
  --primary-15: rgba(59, 168, 138, 0.15);
  --secondary: #d9efe6;
  --secondary-50: rgba(217, 239, 230, 0.5);
  --muted-fg: #5a5a5a;
  --accent: #2d8a6e;
  --border: #c5e5d9;
  --input-bg: #e8f5f0;
  --footer-bg: #1a2f2a;
  --white: #ffffff;
  --font-sans: 'Inter', sans-serif;
  --font-serif: 'Playfair Display', serif;
  --radius: 0.5rem;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.06);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.08);
  --shadow-lg: 0 8px 30px rgba(0,0,0,0.12);
  --transition: 0.3s ease;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  font-family: var(--font-sans);
  color: var(--fg);
  background-color: var(--bg);
  margin: 0;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; }
a { text-decoration: none; color: inherit; }

/* ============ HEADER ============ */
#mainHeader { z-index: 1000; }

.header-inner {
  background: rgba(var(--bg-rgb), 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: background var(--transition), box-shadow var(--transition);
}

.header-inner.scrolled {
  background: rgba(var(--bg-rgb), 0.97);
  box-shadow: var(--shadow-sm);
}

.header-logo { display: flex; align-items: center; gap: 0.5rem; }

.logo-img {
  height: 42px;
  width: 42px;
  border-radius: 50%;
  object-fit: cover;
}

.nav-link-custom {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--fg);
  padding: 0.5rem 0.75rem;
  border-radius: var(--radius);
  transition: color var(--transition), background var(--transition);
}

.nav-link-custom:hover {
  color: var(--primary);
  background: var(--primary-15);
}

.cart-btn {
  background: none;
  border: none;
  padding: 0.5rem;
  cursor: pointer;
  position: relative;
  color: var(--fg);
  transition: color var(--transition);
  display: flex;
  align-items: center;
}

.cart-btn:hover { color: var(--primary); }

.cart-badge {
  position: absolute;
  top: 0;
  right: -2px;
  background: var(--primary);
  color: var(--white);
  font-size: 0.65rem;
  font-weight: 700;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

.mobile-menu-btn {
  background: none;
  border: none;
  padding: 0.5rem;
  cursor: pointer;
  color: var(--fg);
  display: flex;
  align-items: center;
}

.mobile-menu {
  background: var(--card-bg);
  border-top: 1px solid var(--border);
}

/* ============ HERO ============ */
.hero-section {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg { position: absolute; inset: 0; z-index: 0; }

.hero-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(26, 47, 42, 0.85) 0%, rgba(45, 138, 110, 0.5) 100%);
}

.py-hero {
  padding-top: 8rem;
  padding-bottom: 6rem;
  z-index: 1;
}

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

.hero-label {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: rgba(255,255,255,0.7);
  margin-bottom: 1rem;
}

.hero-title {
  font-family: var(--font-serif);
  font-size: 3rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.15;
  margin: 0;
}

.hero-subtitle {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.8);
  line-height: 1.7;
  margin-top: 1.25rem;
  max-width: 580px;
}

.btn-primary-custom {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--primary);
  color: var(--fg);
  font-weight: 600;
  font-size: 0.9rem;
  padding: 0.75rem 1.75rem;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  transition: background var(--transition), transform 0.15s ease;
}

.btn-primary-custom:hover {
  background: var(--primary-dark);
  color: var(--fg);
  transform: translateY(-1px);
}

.btn-outline-light-custom {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  color: var(--white);
  font-weight: 600;
  font-size: 0.9rem;
  padding: 0.75rem 1.75rem;
  border-radius: var(--radius);
  border: 2px solid rgba(255,255,255,0.4);
  cursor: pointer;
  transition: all var(--transition);
}

.btn-outline-light-custom:hover {
  background: rgba(255,255,255,0.15);
  border-color: rgba(255,255,255,0.7);
  color: var(--white);
}

/* ============ FEATURES BANNER ============ */
.features-banner {
  background: var(--card-bg);
  padding: 3rem 0;
  border-bottom: 1px solid var(--border);
}

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

.feature-icon-box {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 0.75rem;
  background: var(--primary-15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
}

.feature-title {
  font-family: var(--font-serif);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--fg);
  margin: 0 0 0.15rem;
}

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

/* ============ SECTIONS COMMON ============ */
.section-label {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.section-label-accent {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--accent);
  margin-bottom: 0.5rem;
}

.section-title {
  font-family: var(--font-serif);
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--fg);
  margin: 0;
}

.section-desc {
  font-size: 1rem;
  color: var(--muted-fg);
  line-height: 1.7;
  max-width: 640px;
  margin-top: 1rem;
}

/* ============ PRODUCTS ============ */
.products-section {
  padding: 5rem 0;
  background: var(--bg);
}

.filter-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.5rem 1.1rem;
  border: 1px solid var(--border);
  border-radius: 2rem;
  background: var(--card-bg);
  color: var(--muted-fg);
  font-size: 0.85rem;
  font-weight: 500;
  cursor: pointer;
  transition: all var(--transition);
}

.filter-btn:hover {
  border-color: var(--primary);
  color: var(--primary);
}

.filter-btn.active {
  background: var(--primary);
  color: var(--fg);
  border-color: var(--primary);
  font-weight: 600;
}

.product-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.product-card-image {
  position: relative;
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--secondary);
  cursor: pointer;
}

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

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

.product-card-badge {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  background: var(--primary);
  color: var(--fg);
  font-size: 0.7rem;
  font-weight: 600;
  padding: 0.25rem 0.75rem;
  border-radius: 2rem;
}

.product-card-body {
  padding: 1.25rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.product-card-category {
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent);
  margin-bottom: 0.4rem;
}

.product-card-name {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--fg);
  margin: 0 0 0.5rem;
}

.product-card-desc {
  font-size: 0.82rem;
  color: var(--muted-fg);
  line-height: 1.5;
  margin-bottom: 1rem;
  flex: 1;
}

.product-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
}

.product-card-price {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--fg);
}

.product-card-price .currency {
  font-size: 0.75rem;
  font-weight: 400;
  color: var(--muted-fg);
}

.btn-add-cart {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.5rem 1rem;
  background: var(--primary);
  color: var(--fg);
  border: none;
  border-radius: var(--radius);
  font-size: 0.8rem;
  font-weight: 600;
  cursor: pointer;
  transition: background var(--transition);
}

.btn-add-cart:hover { background: var(--primary-dark); }

/* ============ ABOUT SECTION ============ */
.about-section {
  padding: 5rem 0;
  background: var(--card-bg);
}

.about-carousel {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--bg);
  box-shadow: var(--shadow-lg);
}

.carousel-image-wrapper {
  position: relative;
  height: 300px;
  overflow: hidden;
}

@media (min-width: 992px) {
  .carousel-image-wrapper { height: 480px; }
}

.carousel-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.7s ease-in-out;
  pointer-events: none;
}

.carousel-slide.active {
  opacity: 1;
  pointer-events: auto;
}

.carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.carousel-img-overlay {
  position: absolute;
  inset: 0;
  background: rgba(26, 47, 42, 0.2);
}

.carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.85);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--fg);
  box-shadow: var(--shadow-md);
  backdrop-filter: blur(4px);
  transition: background var(--transition);
  z-index: 2;
}

.carousel-arrow:hover { background: var(--white); }
.carousel-arrow-left { left: 1rem; }
.carousel-arrow-right { right: 1rem; }

.carousel-content-wrapper {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 300px;
}

@media (min-width: 992px) {
  .carousel-content-wrapper { padding: 3rem; min-height: 480px; }
}

.carousel-content { display: none; }

.carousel-content.active {
  display: block;
  animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

.carousel-icon-box {
  width: 48px;
  height: 48px;
  border-radius: 0.75rem;
  background: var(--primary-15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  flex-shrink: 0;
}

.carousel-title {
  font-family: var(--font-serif);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--fg);
  margin: 0;
}

.carousel-text {
  font-size: 0.95rem;
  color: var(--muted-fg);
  line-height: 1.7;
}

.carousel-dots { display: flex; align-items: center; gap: 0.75rem; }

.carousel-dot {
  width: 10px;
  height: 10px;
  border-radius: 9999px;
  border: none;
  background: var(--border);
  cursor: pointer;
  transition: all var(--transition);
  padding: 0;
}

.carousel-dot:hover { background: var(--muted-fg); }

.carousel-dot.active {
  width: 32px;
  background: var(--primary);
}

/* ============ STATS ============ */
.stat-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 2rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--bg);
}

.stat-icon { color: var(--accent); margin-bottom: 0.75rem; }

.stat-value {
  font-family: var(--font-serif);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--fg);
  margin: 0;
}

.stat-label {
  font-size: 0.85rem;
  color: var(--muted-fg);
  margin: 0.25rem 0 0;
}

/* ============ CONTACT ============ */
.contact-section {
  padding: 5rem 0;
  background: var(--bg);
}

.contact-info-item { display: flex; align-items: flex-start; gap: 1rem; }

.contact-icon-box {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 0.75rem;
  background: var(--primary-15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
}

.contact-info-title {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--fg);
  margin: 0 0 0.15rem;
}

.contact-info-detail {
  font-size: 0.875rem;
  color: var(--muted-fg);
  margin: 0;
  line-height: 1.5;
}

.wholesale-box {
  background: var(--secondary-50);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
}

.wholesale-title {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--fg);
  margin: 0 0 0.5rem;
}

.wholesale-text {
  font-size: 0.875rem;
  color: var(--muted-fg);
  line-height: 1.6;
  margin: 0;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
}

.form-label-custom {
  display: block;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--fg);
  margin-bottom: 0.4rem;
}

.form-control-custom {
  width: 100%;
  padding: 0.65rem 0.9rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-sans);
  font-size: 0.9rem;
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}

.form-control-custom:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px var(--primary-15);
}

.form-control-custom::placeholder { color: #999; }
textarea.form-control-custom { resize: none; }

/* ============ FOOTER ============ */
.site-footer {
  background: var(--footer-bg);
  color: var(--white);
}

.footer-logo {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  filter: brightness(0) invert(1);
}

.footer-brand {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 700;
}

.footer-desc {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.6;
}

.footer-heading {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.75rem;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-links a {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.7);
  transition: color var(--transition);
}

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

.footer-bottom {
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.2);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

@media (min-width: 576px) {
  .footer-bottom { flex-direction: row; }
}

.footer-copyright {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.6);
  margin: 0;
}

.footer-legal { display: flex; gap: 1.5rem; }

.footer-legal a {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.6);
  transition: color var(--transition);
}

.footer-legal a:hover { color: var(--white); }

/* ============ CART SIDEBAR ============ */
.cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 1050;
  cursor: pointer;
}

.cart-sidebar {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  max-width: 420px;
  height: 100vh;
  background: var(--card-bg);
  border-left: 1px solid var(--border);
  z-index: 1060;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.35s ease;
}

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

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

.cart-title {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 700;
  margin: 0;
}

.cart-close-btn {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--muted-fg);
  padding: 0.25rem;
  transition: color var(--transition);
}

.cart-close-btn:hover { color: var(--fg); }

.cart-empty {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: 2rem;
}

.cart-empty-icon { color: var(--border); }
.cart-empty-text { font-size: 1rem; color: var(--muted-fg); margin: 0; }

.cart-items {
  flex: 1;
  overflow-y: auto;
  padding: 1rem 1.5rem;
}

.cart-item {
  display: flex;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--border);
}

.cart-item:last-child { border-bottom: none; }

.cart-item-image {
  width: 80px;
  height: 80px;
  border-radius: var(--radius);
  object-fit: cover;
  background: var(--secondary);
  flex-shrink: 0;
}

.cart-item-info {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.cart-item-name {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--fg);
  margin: 0 0 0.25rem;
}

.cart-item-price {
  font-size: 0.85rem;
  color: var(--primary);
  font-weight: 600;
  margin: 0;
}

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

.cart-item-qty-btn {
  width: 28px;
  height: 28px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--bg);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  color: var(--fg);
  transition: all var(--transition);
}

.cart-item-qty-btn:hover {
  border-color: var(--primary);
  color: var(--primary);
}

.cart-item-qty {
  font-size: 0.85rem;
  font-weight: 600;
  min-width: 20px;
  text-align: center;
}

.cart-item-remove {
  background: none;
  border: none;
  cursor: pointer;
  color: #d9534f;
  font-size: 0.75rem;
  padding: 0;
  margin-left: auto;
  transition: color var(--transition);
}

.cart-item-remove:hover { color: #c9302c; }

.cart-footer {
  padding: 1.25rem 1.5rem;
  border-top: 1px solid var(--border);
}

.cart-subtotal-label { font-size: 0.95rem; font-weight: 500; color: var(--fg); }

.cart-subtotal-value {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--fg);
}

.cart-tax-note { font-size: 0.75rem; color: var(--muted-fg); margin: 0 0 1rem; }

.btn-accent-custom {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--accent);
  color: var(--white);
  font-weight: 600;
  font-size: 0.9rem;
  padding: 0.75rem 1.75rem;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  transition: background var(--transition);
  width: 100%;
}

.btn-accent-custom:hover { background: #246b58; }

.cart-clear-btn {
  display: block;
  width: 100%;
  text-align: center;
  background: none;
  border: none;
  color: var(--muted-fg);
  font-size: 0.8rem;
  cursor: pointer;
  margin-top: 0.75rem;
  padding: 0.5rem;
  transition: color var(--transition);
}

.cart-clear-btn:hover { color: #d9534f; }

/* ============ PRODUCT MODAL ============ */
.product-modal {
  position: fixed;
  inset: 0;
  z-index: 1070;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.product-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.6);
}

.product-modal-content {
  position: relative;
  background: var(--card-bg);
  border-radius: var(--radius);
  overflow: hidden;
  max-width: 900px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: var(--shadow-lg);
  animation: modalIn 0.3s ease;
}

@keyframes modalIn {
  from { opacity: 0; transform: scale(0.95); }
  to { opacity: 1; transform: scale(1); }
}

.product-modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.9);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--fg);
  z-index: 2;
  box-shadow: var(--shadow-sm);
  transition: background var(--transition);
}

.product-modal-close:hover { background: var(--white); }

.product-modal-image {
  width: 100%;
  height: 300px;
  background: var(--secondary);
  overflow: hidden;
}

@media (min-width: 768px) {
  .product-modal-image { height: 100%; min-height: 400px; }
}

.product-modal-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-modal-info { padding: 2rem; }

.product-modal-category {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent);
}

.product-modal-name {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--fg);
  margin: 0.5rem 0;
}

.product-modal-desc {
  font-size: 0.9rem;
  color: var(--muted-fg);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.product-modal-price {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 700;
  color: var(--fg);
  margin: 0 0 1.5rem;
}

.product-modal-currency {
  font-size: 0.85rem;
  font-weight: 400;
  color: var(--muted-fg);
}

.product-modal-qty { margin-bottom: 1.5rem; }

.qty-control {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 0.35rem 0.75rem;
}

.qty-btn {
  width: 32px;
  height: 32px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--bg);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--fg);
  transition: all var(--transition);
}

.qty-btn:hover { border-color: var(--primary); color: var(--primary); }

.qty-value {
  font-size: 1rem;
  font-weight: 600;
  min-width: 28px;
  text-align: center;
}

.product-modal-note {
  font-size: 0.75rem;
  color: var(--muted-fg);
  margin-top: 1rem;
  text-align: center;
}

/* ============ TOAST ============ */
.toast-notification {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  background: var(--primary);
  color: var(--fg);
  padding: 0.85rem 1.5rem;
  border-radius: var(--radius);
  font-size: 0.9rem;
  font-weight: 600;
  box-shadow: var(--shadow-lg);
  z-index: 1100;
  animation: toastIn 0.3s ease, toastOut 0.3s ease 2.5s forwards;
}

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

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

/* ============ SCROLL ANIMATIONS ============ */
.scroll-reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

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

/* ============ RESPONSIVE ============ */
@media (max-width: 767.98px) {
  .hero-title { font-size: 2rem; }
  .hero-subtitle { font-size: 0.95rem; }
  .section-title { font-size: 1.75rem; }
  .py-hero { padding-top: 6rem; padding-bottom: 4rem; }
  .product-modal-content { max-height: 95vh; }
}

@media (max-width: 575.98px) {
  .hero-title { font-size: 1.75rem; }
  .feature-item { flex-direction: column; text-align: center; }
}
