/* ===========================
   ZaZa Primo - STYLE SHEET
   =========================== */

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

:root {
  --primary: #e8706a;
  --primary-hover: #d45f59;
  --green: #2d6a4f;
  --green-light: #52b788;
  --dark: #1a1a2e;
  --text: #333344;
  --text-muted: #666677;
  --bg-light: #f5f5f0;
  --bg-off: #eeeee8;
  --white: #ffffff;
  --border: #e0e0d8;
  --font-main: 'Poppins', sans-serif;
  --font-display: 'Poppins', sans-serif;
  --radius: 12px;
  --radius-sm: 8px;
  --shadow: 0 4px 20px rgba(0,0,0,0.08);
  --shadow-lg: 0 8px 40px rgba(0,0,0,0.12);
  --transition: 0.3s ease;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-main);
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  font-size: 15px;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { display: block; width: 100%; height: 100%; object-fit: cover; }

.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-block;
  padding: 13px 32px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  cursor: pointer;
  border: none;
  transition: var(--transition);
}
.btn-primary {
  background: var(--primary);
  color: var(--white);
}
.btn-primary:hover {
  background: var(--primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(232,112,106,0.35);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
}
.btn-outline:hover {
  background: var(--white);
  color: var(--primary);
}

/* ===== SECTION HEADINGS ===== */
.section-title {
  font-family: var(--font-display);
  font-size: 38px;
  font-weight: 700;
  color: var(--dark);
  text-align: center;
  margin-bottom: 12px;
}
.section-subtitle {
  text-align: center;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto 48px;
  font-size: 15px;
}
.section-title-left {
  font-family: var(--font-display);
  font-size: 38px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 12px;
}
.section-subtitle-left {
  color: var(--text-muted);
  max-width: 500px;
  margin-bottom: 48px;
  font-size: 15px;
}

/* ===========================
   HEADER
   =========================== */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid transparent;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.site-header.scrolled {
  border-bottom-color: var(--border);
  box-shadow: var(--shadow);
}
.header-inner {
  display: flex;
  align-items: center;
  gap: 40px;
  padding-top: 12px;
  padding-bottom: 12px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--green);
  white-space: nowrap;
}
.logo-icon { flex-shrink: 0; display: flex; align-items: center; }
.logo-icon img { width: 36px; height: 36px; object-fit: contain; }
.main-nav { flex: 1; }
.main-nav ul {
  display: flex;
  gap: 32px;
  justify-content: flex-end;
}
.main-nav a {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-muted);
  transition: color var(--transition);
  position: relative;
}
.main-nav a:hover,
.main-nav a.active {
  color: var(--primary);
}
.main-nav a.active::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0; right: 0;
  height: 2px;
  background: var(--primary);
  border-radius: 2px;
}
.cart-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--primary);
  font-weight: 600;
  font-size: 14px;
  white-space: nowrap;
}
.cart-icon-wrap {
  position: relative;
}
.cart-icon-wrap i { font-size: 18px; }
.cart-count {
  position: absolute;
  top: -8px; right: -8px;
  background: var(--primary);
  color: white;
  border-radius: 50%;
  width: 16px; height: 16px;
  font-size: 10px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: auto;
}
.mobile-menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: var(--transition);
}

/* ===========================
   HERO
   =========================== */
.hero {
  position: relative;
  height: 90vh;
  min-height: 550px;
  display: flex;
  align-items: center;
  padding: 80px 0;
}
.hero-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.hero-img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(15, 15, 20, 0.45);
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  width: 100%;
}
.hero-label {
  color: var(--white);
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 24px;
  opacity: 0.9;
  display: inline-block;
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(34px, 5.5vw, 56px);
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 40px;
  letter-spacing: -0.5px;
}

/* ===========================
   FEATURES STRIP
   =========================== */
.features-strip {
  background: var(--bg-light);
  padding: 48px 0;
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.feature-icon {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: #e8f5ee;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green-light);
  font-size: 20px;
  flex-shrink: 0;
}
.feature-text h3 {
  font-size: 15px;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 4px;
}
.feature-text p { color: var(--text-muted); font-size: 14px; }

/* ===========================
   CATEGORIES
   =========================== */
.categories-section {
  padding: 80px 0;
  background: var(--bg-light);
}
.categories-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.category-card {
  display: block;
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 3/4;
  cursor: pointer;
}
.category-card img {
  transition: transform 0.5s ease;
}
.category-card:hover img {
  transform: scale(1.06);
}
.category-card span {
  position: absolute;
  bottom: 12px; left: 0; right: 0;
  text-align: center;
  font-size: 15px;
  font-weight: 500;
  color: var(--text);
  background: rgba(255,255,255,0.0);
  padding: 4px 0;
}

/* ===========================
   HELP BANNER
   =========================== */
.help-banner {
  position: relative;
  padding: 64px 0;
  overflow: hidden;
}
.help-banner-bg {
  position: absolute;
  inset: 0;
}
.help-banner-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: brightness(0.5);
}
.help-overlay {
  position: absolute;
  inset: 0;
  background: rgba(80,90,80,0.5);
}
.help-banner-content {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.help-text h2 {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 8px;
}
.help-text p { color: rgba(255,255,255,0.8); font-size: 14px; }

/* ===========================
   TESTIMONIALS
   =========================== */
.testimonials-section {
  padding: 80px 0;
  background: var(--bg-light);
}
.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  max-width: 1000px;
}
.testimonial-card {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  background: var(--white);
  padding: 24px;
  border-radius: var(--radius);
  box-shadow: 0 4px 15px rgba(0,0,0,0.03);
}
.testimonial-card.right {
  flex-direction: row-reverse;
  text-align: right;
}
.testimonial-card.left:last-child {
  grid-column: 1 / span 2;
  max-width: 600px;
  margin: 0 auto;
}
.testimonial-photo {
  width: 90px;
  height: 110px;
  border-radius: 8px;
  overflow: hidden;
  flex-shrink: 0;
}
.testimonial-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}
.testimonial-body p {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 12px;
  line-height: 1.7;
}
.testimonial-body strong {
  display: block;
  font-size: 15px;
  font-weight: 600;
  color: var(--dark);
}
.testimonial-body span {
  font-size: 13px;
  color: var(--text-muted);
}

/* ===========================
   FEATURED PRODUCTS
   =========================== */
.featured-products {
  padding: 80px 0;
  background: var(--bg-light);
}
.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.product-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  transition: transform var(--transition), box-shadow var(--transition);
  display: flex;
  flex-direction: column;
}
.product-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.product-img-wrap {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
}
.product-img-wrap img {
  transition: transform 0.5s ease;
}
.product-card:hover .product-img-wrap img {
  transform: scale(1.05);
}
.sale-badge {
  position: absolute;
  top: 12px; left: 12px;
  background: var(--white);
  color: var(--text);
  font-size: 12px;
  font-weight: 500;
  padding: 3px 10px;
  border-radius: 50px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}
.wishlist-btn {
  position: absolute;
  top: 12px; right: 12px;
  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(--text-muted);
  font-size: 14px;
  opacity: 0;
  transition: opacity var(--transition), color var(--transition);
}
.product-card:hover .wishlist-btn {
  opacity: 1;
}
.wishlist-btn:hover { color: var(--primary); }
.product-info {
  padding: 16px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
.product-category {
  font-size: 12px;
  color: var(--text-muted);
  margin-bottom: 4px;
}
.product-name {
  font-size: 15px;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 6px;
  line-height: 1.4;
  height: 42px; /* Fixed height for product name lines (2 lines max) to align elements perfectly */
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.product-desc {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 12px;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  height: 38px; /* Fixed height for description lines to keep all cards uniform */
}
.product-price {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
  margin-top: auto; /* Push price and button to the bottom */
}
.price-original {
  font-size: 13px;
  color: var(--text-muted);
  text-decoration: line-through;
}
.price-sale {
  font-size: 16px;
  font-weight: 700;
  color: var(--dark);
}
.btn-add-cart {
  display: block;
  width: 100%;
  padding: 11px;
  background: var(--primary);
  color: var(--white);
  border: none;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  cursor: pointer;
  transition: background var(--transition), transform var(--transition);
}
.btn-add-cart:hover {
  background: var(--primary-hover);
  transform: translateY(-1px);
}

/* ===========================
   WHO WE ARE
   =========================== */
.who-we-are {
  padding: 80px 0;
  background: var(--bg-light);
}
.who-we-are-inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: center;
}
.who-image {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/5;
}
.who-text h2 {
  font-family: var(--font-display);
  font-size: 38px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 20px;
}
.who-text p {
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 16px;
}
.who-text p:last-child { margin-bottom: 0; }

/* ===========================
   PROMO BANNER
   =========================== */
.promo-banner {
  position: relative;
  padding: 100px 0;
  overflow: hidden;
}
.promo-bg {
  position: absolute;
  inset: 0;
}
.promo-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.promo-overlay {
  position: absolute;
  inset: 0;
  background: rgba(20,20,20,0.55);
}
.promo-content {
  position: relative;
  z-index: 2;
  text-align: center;
}
.promo-content h2 {
  font-family: var(--font-display);
  font-size: 40px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 16px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
.promo-content p {
  color: rgba(255,255,255,0.8);
  font-size: 15px;
  margin-bottom: 32px;
}

/* ===========================
   FOOTER
   =========================== */
.site-footer {
  background: var(--bg-light);
  padding-top: 60px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1.2fr 1.2fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--border);
}
.footer-brand p {
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.8;
  margin-top: 16px;
  max-width: 300px;
}
.footer-col h4 {
  font-size: 15px;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 20px;
}
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul a,
.footer-col p {
  color: var(--text-muted);
  font-size: 14px;
  transition: color var(--transition);
}
.footer-col ul a:hover { color: var(--primary); }
.footer-col p { margin-bottom: 8px; }
.footer-col p a { color: var(--text-muted); }
.footer-col p a:hover { color: var(--primary); }
.footer-col strong {
  color: var(--dark);
  font-weight: 600;
}
.footer-bottom {
  padding: 20px 0;
}
.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer-bottom p {
  font-size: 13px;
  color: var(--text-muted);
}
.payment-icons {
  display: flex;
  gap: 6px;
  align-items: center;
}
.payment-icons img {
  width: auto;
  height: 24px;
  object-fit: contain;
  border-radius: 4px;
}
.pay-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 3px 10px;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 5px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.5px;
  color: #333;
  height: 26px;
}
.pay-badge.visa { color: #1a1f71; font-style: italic; font-size: 13px; }
.pay-badge.discover { color: #e55b1e; }
.pay-badge.amex { color: #007bc1; }

/* ===========================
   SCROLL TOP
   =========================== */
.scroll-top {
  position: fixed;
  bottom: 24px; right: 24px;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--primary);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  box-shadow: 0 4px 16px rgba(232,112,106,0.4);
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition), transform var(--transition);
  z-index: 999;
}
.scroll-top.visible {
  opacity: 1;
  pointer-events: auto;
}
.scroll-top:hover { transform: translateY(-3px); }

/* ===========================
   PAGE HERO (inner pages)
   =========================== */
.page-hero {
  position: relative;
  height: 260px;
  display: flex;
  align-items: center;
  margin-top: 65px;
}
.page-hero-bg {
  position: absolute;
  inset: 0;
}
.page-hero-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(30,30,40,0.5);
}
.page-hero-content {
  position: relative;
  z-index: 2;
}
.page-hero-content h1 {
  font-family: var(--font-display);
  font-size: 52px;
  font-weight: 700;
  color: var(--white);
}

/* ===========================
   BREADCRUMB
   =========================== */
.breadcrumb {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 8px;
}
.breadcrumb a { color: var(--text-muted); }
.breadcrumb a:hover { color: var(--primary); }
.breadcrumb span { color: var(--primary); }

/* ===========================
   SHOP PAGE
   =========================== */
.shop-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 40px;
  padding: 60px 0 80px;
}
.filters-sidebar {
  background: var(--bg-light);
  border-radius: var(--radius);
  padding: 28px;
  align-self: start;
  position: sticky;
  top: 90px;
}
.filters-sidebar h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 24px;
}
.filter-group { margin-bottom: 28px; }
.filter-group h4 {
  font-size: 15px;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 16px;
}
.price-range-wrap {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.price-inputs {
  display: flex;
  gap: 12px;
}
.price-inputs input {
  flex: 1;
  padding: 8px 12px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 13px;
  color: var(--dark);
  font-family: var(--font-main);
}
input[type="range"] {
  width: 100%;
  accent-color: var(--primary);
}
.category-filters {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.category-filters label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--text-muted);
  cursor: pointer;
}
.category-filters input[type="checkbox"] {
  accent-color: var(--primary);
  width: 15px;
  height: 15px;
}
.btn-show-more {
  background: none;
  border: 2px solid var(--primary);
  color: var(--primary);
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 8px;
}
.btn-show-more:hover {
  background: var(--primary);
  color: var(--white);
}
.shop-main { }
.shop-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 28px;
}
.shop-header h1 {
  font-family: var(--font-display);
  font-size: 42px;
  font-weight: 700;
  color: var(--dark);
}
.shop-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 28px;
}
.shop-meta p {
  font-size: 14px;
  color: var(--text-muted);
}
.shop-sort {
  padding: 8px 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-family: var(--font-main);
  color: var(--text);
  background: var(--white);
  cursor: pointer;
}
.shop-products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.pagination {
  display: flex;
  gap: 8px;
  margin-top: 48px;
}
.page-btn {
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--white);
  color: var(--text);
  font-size: 14px;
  font-family: var(--font-main);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}
.page-btn.active,
.page-btn:hover {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}

/* ===========================
   ABOUT PAGE
   =========================== */
.about-intro {
  padding: 80px 0;
  background: var(--bg-light);
}
.about-intro-inner {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 60px;
  align-items: center;
}
.about-intro-text h2 {
  font-family: var(--font-display);
  font-size: 30px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 20px;
  line-height: 1.3;
}
.about-intro-text p {
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 12px;
}
.about-image {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/3;
}
.two-col-text {
  padding: 60px 0;
  background: var(--bg-light);
}
.two-col-text-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}
.two-col-text-inner p {
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.8;
}
.about-approach {
  padding: 60px 0;
  background: var(--bg-light);
  text-align: center;
}
.about-approach h2 {
  font-family: var(--font-display);
  font-size: 38px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 24px;
}
.about-approach p {
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.8;
  max-width: 640px;
  margin: 0 auto 16px;
}

/* ===========================
   CONTACT PAGE
   =========================== */
.contact-info-strip {
  padding: 60px 0 20px;
  background: var(--bg-light);
}
.contact-info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-bottom: 60px;
}
.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.contact-info-icon {
  color: var(--primary);
  font-size: 18px;
  margin-top: 2px;
}
.contact-info-text h4 {
  font-size: 15px;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 4px;
}
.contact-info-text p {
  font-size: 14px;
  color: var(--text-muted);
}
.contact-form-section {
  padding: 0 0 80px;
  background: var(--bg-light);
}
.contact-form-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.contact-form-inner h2 {
  font-family: var(--font-display);
  font-size: 30px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 28px;
  grid-column: 1 / -1;
}
.contact-image {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/3;
}
.contact-form { }
.form-group {
  margin-bottom: 16px;
}
.form-group input,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-family: var(--font-main);
  color: var(--text);
  background: var(--white);
  transition: border-color var(--transition);
  outline: none;
}
.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #aaa;
}
.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--primary);
}
.form-group textarea {
  height: 140px;
  resize: vertical;
}

/* ===========================
   POLICY PAGES
   =========================== */
.policy-content {
  padding: 60px 0 80px;
  background: var(--bg-light);
}
.policy-content h2 {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 700;
  color: var(--dark);
  margin: 32px 0 12px;
}
.policy-content p {
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 16px;
}
.policy-content ul {
  list-style: disc;
  margin-left: 24px;
  margin-bottom: 16px;
}
.policy-content ul li {
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 6px;
}

/* ===========================
   CART PAGE
   =========================== */
.cart-section {
  padding: 60px 0 80px;
  background: var(--bg-light);
}
.cart-empty {
  text-align: center;
  padding: 80px 0;
}
.cart-empty i {
  font-size: 64px;
  color: var(--border);
  margin-bottom: 24px;
}
.cart-empty h2 {
  font-family: var(--font-display);
  font-size: 28px;
  color: var(--dark);
  margin-bottom: 12px;
}
.cart-empty p {
  color: var(--text-muted);
  margin-bottom: 24px;
}

/* ===========================
   TOAST
   =========================== */
.toast {
  position: fixed;
  bottom: 80px; right: 24px;
  background: var(--dark);
  color: var(--white);
  padding: 14px 24px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  z-index: 9999;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.3s, transform 0.3s;
  pointer-events: none;
}
.toast.show {
  opacity: 1;
  transform: translateY(0);
}

/* ===========================
   RESPONSIVE
   =========================== */
@media (max-width: 1024px) {
  .features-grid { grid-template-columns: 1fr 1fr 1fr; gap: 24px; }
  .categories-grid { grid-template-columns: repeat(2, 1fr); }
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .who-we-are-inner { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .shop-layout { grid-template-columns: 220px 1fr; }
  .shop-products-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .main-nav { display: none; }
  .main-nav.open {
    display: block;
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    background: var(--white);
    border-top: 1px solid var(--border);
    box-shadow: var(--shadow);
    padding: 16px 24px;
  }
  .main-nav.open ul { flex-direction: column; gap: 0; }
  .main-nav.open ul li a {
    display: block;
    padding: 12px 0;
    border-bottom: 1px solid var(--bg-off);
  }
  .mobile-menu-toggle { display: flex; }
  .header-inner { position: relative; }
  .hero-content { text-align: center; margin: 0 auto; padding: 0 20px; }
  .hero-title { font-size: 34px; margin-bottom: 24px; }
  .features-grid { grid-template-columns: 1fr; gap: 24px; }
  .categories-grid { grid-template-columns: repeat(2, 1fr); }
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .help-banner-content { flex-direction: column; text-align: center; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .testimonial-card.right { flex-direction: row; text-align: left; }
  .testimonial-card.left:last-child { grid-column: auto; max-width: 100%; margin: 0; }
  .testimonial-card { flex-direction: column !important; align-items: center; text-align: center !important; }
  .who-we-are-inner { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .shop-layout { grid-template-columns: 1fr; }
  .filters-sidebar { position: static; }
  .shop-products-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-info-grid { grid-template-columns: 1fr; }
  .contact-form-inner { grid-template-columns: 1fr; }
  .two-col-text-inner { grid-template-columns: 1fr; }
  .about-intro-inner { grid-template-columns: 1fr; }
  .promo-content h2 { font-size: 28px; }
}

@media (max-width: 480px) {
  .categories-grid { grid-template-columns: 1fr 1fr; }
  .products-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom-inner { flex-direction: column; gap: 12px; }
  .shop-products-grid { grid-template-columns: 1fr; }
  .section-title { font-size: 28px; }
  .hero-title { font-size: 28px; }
}
