/* ============================================================
   Millco Organic & Fresh Food Products
   Main Stylesheet — shop.millco.in
   Design: Premium Indian FMCG Brand
   ============================================================ */

/* ── CSS Custom Properties ─────────────────────────────────── */
:root {
  --green-dark:    #0f3d2e;
  --green-mid:     #1a5c44;
  --green-light:   #2d7a5f;
  --green-muted:   #e8f4f0;
  --gold:          #b8972a;
  --gold-light:    #d4af4a;
  --cream:         #faf8f2;
  --white:         #ffffff;
  --text-dark:     #1a1a1a;
  --text-body:     #3d3d3d;
  --text-muted:    #6b6b6b;
  --border:        #e2ddd4;
  --shadow-sm:     0 2px 8px rgba(15, 61, 46, 0.07);
  --shadow-md:     0 6px 24px rgba(15, 61, 46, 0.10);
  --shadow-lg:     0 12px 40px rgba(15, 61, 46, 0.14);
  --radius-sm:     4px;
  --radius-md:     8px;
  --radius-lg:     12px;
  --transition:    0.25s ease;
  --font-primary:  'Poppins', sans-serif;
  --max-width:     1200px;
  --nav-height:    70px;
}

/* ── Reset & Base ──────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-primary);
  background-color: var(--cream);
  color: var(--text-body);
  line-height: 1.65;
  min-height: 100vh;
}

img { max-width: 100%; height: auto; display: block; }

a { color: inherit; text-decoration: none; }

ul, ol { list-style: none; }

button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  outline: none;
  border: none;
}

/* ── Typography ────────────────────────────────────────────── */
h1, h2, h3, h4, h5, h6 {
  color: var(--text-dark);
  line-height: 1.25;
  font-weight: 700;
}

h1 { font-size: clamp(2rem, 4vw, 3rem); }
h2 { font-size: clamp(1.5rem, 3vw, 2.2rem); }
h3 { font-size: clamp(1.1rem, 2vw, 1.4rem); }
h4 { font-size: 1.1rem; }

p { margin-bottom: 0; }

.section-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 0.5rem;
}

.section-title {
  color: var(--green-dark);
  margin-bottom: 1rem;
}

.section-subtitle {
  color: var(--text-muted);
  max-width: 560px;
  font-size: 1rem;
  line-height: 1.7;
}

/* ── Layout Helpers ────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section {
  padding: 5rem 0;
}

.section--alt {
  background-color: var(--white);
}

.section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.section-header .section-subtitle {
  margin: 0 auto;
}

.divider {
  width: 48px;
  height: 3px;
  background: var(--gold);
  margin: 1rem auto 1.25rem;
  border-radius: 2px;
  display: block;
}

.divider--left {
  margin-left: 0;
}

/* ── Button Styles ─────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.75rem;
  border-radius: var(--radius-md);
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.03em;
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
  text-align: center;
}

.btn-primary {
  background: var(--green-dark);
  color: var(--white);
  border: 2px solid var(--green-dark);
}

.btn-primary:hover {
  background: var(--green-mid);
  border-color: var(--green-mid);
  box-shadow: var(--shadow-md);
  transform: translateY(-1px);
}

.btn-secondary {
  background: transparent;
  color: var(--green-dark);
  border: 2px solid var(--green-dark);
}

.btn-secondary:hover {
  background: var(--green-dark);
  color: var(--white);
}

.btn-gold {
  background: var(--gold);
  color: var(--white);
  border: 2px solid var(--gold);
}

.btn-gold:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(184, 151, 42, 0.3);
}

.btn-sm {
  padding: 0.5rem 1.25rem;
  font-size: 0.85rem;
}

.btn-lg {
  padding: 0.9rem 2.2rem;
  font-size: 1rem;
}

.btn-block {
  display: flex;
  width: 100%;
  justify-content: center;
}

.btn:disabled {
  opacity: 0.55;
  cursor: not-allowed;
  transform: none;
}

/* ── Top Announcement Bar ──────────────────────────────────── */
.announcement-bar {
  background: var(--green-dark);
  color: rgba(255,255,255,0.88);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-align: center;
  padding: 0.55rem 1.5rem;
}

.announcement-bar a {
  color: var(--gold-light);
  text-decoration: underline;
}

/* ── Navigation ────────────────────────────────────────────── */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--white);
  height: var(--nav-height);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition);
}

.navbar.scrolled {
  box-shadow: var(--shadow-md);
}

.navbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  gap: 2rem;
}

.navbar__brand {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
  flex-shrink: 0;
}

.navbar__brand-name {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--green-dark);
  letter-spacing: -0.01em;
}

.navbar__brand-sub {
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
}

.navbar__nav {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.navbar__nav a {
  display: block;
  padding: 0.5rem 0.85rem;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-body);
  border-radius: var(--radius-sm);
  transition: all var(--transition);
  position: relative;
}

.navbar__nav a::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 0.85rem;
  right: 0.85rem;
  height: 2px;
  background: var(--green-dark);
  transform: scaleX(0);
  transition: transform var(--transition);
  border-radius: 1px;
}

.navbar__nav a:hover,
.navbar__nav a.active {
  color: var(--green-dark);
}

.navbar__nav a:hover::after,
.navbar__nav a.active::after {
  transform: scaleX(1);
}

.navbar__actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}

.navbar__cart-btn {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--green-muted);
  color: var(--green-dark);
  border: 1.5px solid var(--green-light);
  border-radius: var(--radius-md);
  padding: 0.45rem 1rem;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition);
}

.navbar__cart-btn:hover {
  background: var(--green-dark);
  color: var(--white);
  border-color: var(--green-dark);
}

.cart-count {
  background: var(--gold);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 700;
  min-width: 18px;
  height: 18px;
  border-radius: 9px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 4px;
}

.navbar__menu-toggle {
  display: none;
  background: none;
  cursor: pointer;
  padding: 0.4rem;
  border-radius: var(--radius-sm);
  flex-direction: column;
  gap: 5px;
}

.navbar__menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--green-dark);
  border-radius: 1px;
  transition: all var(--transition);
}

/* ── Hero Section ──────────────────────────────────────────── */
.hero {
  background: linear-gradient(135deg, #0a2b1f 0%, #0f3d2e 50%, #1a5c44 100%);
  min-height: calc(100vh - var(--nav-height) - 38px);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 80% 50%, rgba(184, 151, 42, 0.06) 0%, transparent 60%),
    radial-gradient(circle at 10% 80%, rgba(45, 122, 95, 0.15) 0%, transparent 50%);
  pointer-events: none;
}

.hero__pattern {
  position: absolute;
  inset: 0;
  opacity: 0.04;
  background-image: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 40px,
    rgba(255,255,255,0.5) 40px,
    rgba(255,255,255,0.5) 41px
  );
  pointer-events: none;
}

.hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 4rem;
  padding: 5rem 0;
}

.hero__content {
  color: var(--white);
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(184, 151, 42, 0.15);
  border: 1px solid rgba(184, 151, 42, 0.4);
  color: var(--gold-light);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.35rem 0.9rem;
  border-radius: 20px;
  margin-bottom: 1.25rem;
}

.hero__badge::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--gold-light);
  border-radius: 50%;
}

.hero__title {
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  color: var(--white);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 1.25rem;
}

.hero__title span {
  color: var(--gold-light);
}

.hero__subtitle {
  font-size: 1.0625rem;
  color: rgba(255, 255, 255, 0.75);
  max-width: 480px;
  line-height: 1.75;
  margin-bottom: 2rem;
}

.hero__actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero__proof {
  margin-top: 3rem;
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}

.hero__proof-item {
  display: flex;
  flex-direction: column;
}

.hero__proof-value {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--gold-light);
  line-height: 1;
}

.hero__proof-label {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.6);
  font-weight: 400;
  margin-top: 0.2rem;
}

.hero__visual {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: flex-end;
}

.hero__product-showcase {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  width: 100%;
}

.hero__product-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-lg);
  padding: 1.25rem;
  text-align: center;
  color: var(--white);
  backdrop-filter: blur(10px);
  transition: all var(--transition);
  cursor: pointer;
}

.hero__product-card:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(184, 151, 42, 0.4);
  transform: translateY(-3px);
}

.hero__product-icon {
  font-size: 2.5rem;
  margin-bottom: 0.6rem;
}

.hero__product-name {
  font-size: 0.82rem;
  font-weight: 600;
  color: rgba(255,255,255,0.9);
  line-height: 1.3;
}

.hero__product-price {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--gold-light);
  margin-top: 0.3rem;
}

/* ── Trust Bar ─────────────────────────────────────────────── */
.trust-bar {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 1.25rem 0;
}

.trust-bar__grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.trust-bar__item {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  flex: 1;
  min-width: 160px;
}

.trust-bar__icon {
  width: 40px;
  height: 40px;
  background: var(--green-muted);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green-dark);
  flex-shrink: 0;
}

.trust-bar__icon svg {
  width: 20px;
  height: 20px;
}

.trust-bar__title {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--text-dark);
  display: block;
}

.trust-bar__desc {
  font-size: 0.72rem;
  color: var(--text-muted);
  display: block;
}

/* ── Featured Products ─────────────────────────────────────── */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.75rem;
}

.product-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
  border-color: rgba(15, 61, 46, 0.15);
}

.product-card__image {
  position: relative;
  width: 100%;
  padding-top: 72%; /* aspect ratio */
  overflow: hidden;
  background: var(--green-muted);
}

.product-card__image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.product-card:hover .product-card__image img {
  transform: scale(1.04);
}

.product-card__badge {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  background: var(--gold);
  color: var(--white);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.25rem 0.6rem;
  border-radius: var(--radius-sm);
  z-index: 2;
}

.product-card__body {
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  flex: 1;
}

.product-card__category {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
}

.product-card__name {
  font-size: 0.975rem;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.35;
}

.product-card__desc {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.55;
  flex: 1;
}

.product-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 0.75rem;
  padding-top: 0.75rem;
  border-top: 1px solid var(--border);
}

.product-card__price {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--green-dark);
}

.product-card__price span {
  font-size: 0.75rem;
  color: var(--text-muted);
  font-weight: 400;
  margin-left: 0.2rem;
}

.product-card__actions {
  display: flex;
  gap: 0.5rem;
  align-items: center;
}

/* Product image placeholder */
.product-img-placeholder {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #e8f4f0 0%, #d0eae1 100%);
  gap: 0.5rem;
}

.product-img-placeholder .prod-icon {
  font-size: 3.5rem;
  line-height: 1;
}

.product-img-placeholder .prod-name-mini {
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--green-dark);
  text-align: center;
  padding: 0 0.5rem;
}

/* ── Why Millco Section ─────────────────────────────────────  */
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 2rem;
}

.why-card {
  text-align: center;
  padding: 2rem 1.5rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: all var(--transition);
}

.why-card:hover {
  box-shadow: var(--shadow-md);
  border-color: rgba(15, 61, 46, 0.12);
  transform: translateY(-3px);
}

.why-card__icon {
  width: 60px;
  height: 60px;
  background: var(--green-muted);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  color: var(--green-dark);
}

.why-card__icon svg {
  width: 26px;
  height: 26px;
}

.why-card h3 {
  font-size: 0.95rem;
  color: var(--green-dark);
  margin-bottom: 0.5rem;
}

.why-card p {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ── Quality Assurance Section ──────────────────────────────── */
.quality-section {
  background: var(--green-dark);
  color: var(--white);
  overflow: hidden;
  position: relative;
}

.quality-section::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0.04;
  background-image: repeating-linear-gradient(
    -45deg,
    transparent,
    transparent 30px,
    rgba(255,255,255,0.5) 30px,
    rgba(255,255,255,0.5) 31px
  );
  pointer-events: none;
}

.quality-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.quality-content .section-label {
  color: var(--gold-light);
}

.quality-content .section-title {
  color: var(--white);
}

.quality-content .section-subtitle {
  color: rgba(255,255,255,0.7);
}

.quality-steps {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-top: 2rem;
}

.quality-step {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.quality-step__num {
  width: 36px;
  height: 36px;
  background: rgba(184, 151, 42, 0.2);
  border: 1.5px solid rgba(184, 151, 42, 0.4);
  color: var(--gold-light);
  font-size: 0.8rem;
  font-weight: 800;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 0.1rem;
}

.quality-step__text h4 {
  font-size: 0.9rem;
  color: var(--white);
  margin-bottom: 0.2rem;
}

.quality-step__text p {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.55;
}

.quality-certs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.cert-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  text-align: center;
  backdrop-filter: blur(8px);
  transition: all var(--transition);
}

.cert-card:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(184, 151, 42, 0.3);
}

.cert-card__icon {
  font-size: 2rem;
  margin-bottom: 0.75rem;
}

.cert-card__name {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.25rem;
}

.cert-card__desc {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.5;
}

/* ── Testimonials ───────────────────────────────────────────── */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.75rem;
}

.testimonial-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  position: relative;
  transition: all var(--transition);
}

.testimonial-card:hover {
  box-shadow: var(--shadow-md);
}

.testimonial-card::before {
  content: '\201C';
  position: absolute;
  top: 0.75rem;
  right: 1.25rem;
  font-size: 4rem;
  font-family: Georgia, serif;
  color: var(--green-muted);
  line-height: 1;
}

.testimonial-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 0.8rem;
}

.testimonial-stars span {
  color: var(--gold);
  font-size: 0.9rem;
}

.testimonial-text {
  font-size: 0.87rem;
  color: var(--text-body);
  line-height: 1.7;
  margin-bottom: 1.25rem;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.testimonial-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--green-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--green-dark);
  flex-shrink: 0;
}

.testimonial-name {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-dark);
}

.testimonial-location {
  font-size: 0.72rem;
  color: var(--text-muted);
}

/* ── Newsletter ────────────────────────────────────────────── */
.newsletter-section {
  background: var(--green-muted);
  border-top: 1px solid rgba(15, 61, 46, 0.1);
  border-bottom: 1px solid rgba(15, 61, 46, 0.1);
}

.newsletter-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.newsletter-text h2 {
  font-size: 1.5rem;
}

.newsletter-form {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  max-width: 460px;
  width: 100%;
}

.newsletter-form input {
  flex: 1;
  min-width: 220px;
  padding: 0.75rem 1.1rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-md);
  background: var(--white);
  font-size: 0.9rem;
  color: var(--text-dark);
  transition: border-color var(--transition);
}

.newsletter-form input:focus {
  border-color: var(--green-light);
}

.newsletter-form input::placeholder {
  color: var(--text-muted);
}

/* ── Footer ────────────────────────────────────────────────── */
.footer {
  background: #0a2b1f;
  color: rgba(255,255,255,0.7);
  padding: 4rem 0 1.5rem;
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.25fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer__brand-name {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.01em;
  margin-bottom: 0.2rem;
}

.footer__brand-sub {
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 1rem;
}

.footer__desc {
  font-size: 0.83rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.55);
  max-width: 280px;
  margin-bottom: 1.25rem;
}

.footer__certifications {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.footer__cert-badge {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.7);
  font-size: 0.68rem;
  font-weight: 600;
  padding: 0.25rem 0.6rem;
  border-radius: var(--radius-sm);
}

.footer__heading {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 1.25rem;
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer__links a {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
  transition: color var(--transition);
}

.footer__links a:hover {
  color: var(--white);
}

.footer__contact {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer__contact-item {
  display: flex;
  gap: 0.6rem;
  font-size: 0.83rem;
  color: rgba(255,255,255,0.6);
  align-items: flex-start;
  line-height: 1.5;
}

.footer__contact-item svg {
  width: 15px;
  height: 15px;
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--gold-light);
}

.footer__divider {
  border: none;
  border-top: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 1.5rem;
}

.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer__copyright {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
}

.footer__legal {
  display: flex;
  gap: 1.5rem;
}

.footer__legal a {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
  transition: color var(--transition);
}

.footer__legal a:hover {
  color: rgba(255,255,255,0.75);
}

/* ── Page Header (Inner Pages) ─────────────────────────────── */
.page-hero {
  background: linear-gradient(135deg, var(--green-dark) 0%, var(--green-mid) 100%);
  padding: 3.5rem 0;
  color: var(--white);
}

.page-hero__label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-light);
  display: block;
  margin-bottom: 0.5rem;
}

.page-hero__title {
  color: var(--white);
  margin-bottom: 0.5rem;
}

.page-hero__breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.55);
  margin-top: 0.5rem;
}

.page-hero__breadcrumb a {
  color: rgba(255,255,255,0.7);
  transition: color var(--transition);
}

.page-hero__breadcrumb a:hover {
  color: var(--white);
}

.page-hero__breadcrumb span {
  color: rgba(255,255,255,0.3);
}

/* ── Products Page ─────────────────────────────────────────── */
.products-page-layout {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 2.5rem;
  align-items: start;
}

.filter-sidebar {
  position: sticky;
  top: calc(var(--nav-height) + 1.5rem);
}

.filter-box {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 1.25rem;
}

.filter-box__header {
  padding: 0.9rem 1.25rem;
  background: var(--green-muted);
  border-bottom: 1px solid var(--border);
}

.filter-box__title {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--green-dark);
}

.filter-box__body {
  padding: 1rem 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.filter-option {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.4rem 0;
  cursor: pointer;
  font-size: 0.87rem;
  color: var(--text-body);
  border-radius: var(--radius-sm);
  transition: color var(--transition);
}

.filter-option:hover {
  color: var(--green-dark);
}

.filter-option input[type="radio"],
.filter-option input[type="checkbox"] {
  accent-color: var(--green-dark);
  width: 15px;
  height: 15px;
  cursor: pointer;
}

.products-main__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.products-count {
  font-size: 0.87rem;
  color: var(--text-muted);
}

.products-count strong {
  color: var(--text-dark);
}

.products-sort select {
  padding: 0.55rem 2rem 0.55rem 0.85rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-md);
  background: var(--white) url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='M6 8l4 4 4-4'/%3e%3c/svg%3e") no-repeat right 0.5rem center/1.2em;
  font-size: 0.87rem;
  color: var(--text-dark);
  cursor: pointer;
  -webkit-appearance: none;
  appearance: none;
  transition: border-color var(--transition);
}

.products-sort select:focus {
  border-color: var(--green-light);
}

/* ── Product Detail Page ──────────────────────────────────── */
.product-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.product-detail__gallery {
  position: sticky;
  top: calc(var(--nav-height) + 1.5rem);
}

.product-detail__main-image {
  background: var(--green-muted);
  border-radius: var(--radius-lg);
  overflow: hidden;
  width: 100%;
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  border: 1px solid var(--border);
}

.product-detail__main-image .big-icon {
  font-size: 8rem;
  opacity: 0.7;
}

.product-detail__thumbnails {
  display: flex;
  gap: 0.65rem;
}

.product-detail__thumb {
  width: 72px;
  height: 72px;
  background: var(--green-muted);
  border-radius: var(--radius-md);
  border: 2px solid var(--border);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  transition: all var(--transition);
}

.product-detail__thumb:hover,
.product-detail__thumb.active {
  border-color: var(--green-dark);
}

.product-detail__info { }

.product-detail__category {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
  display: block;
}

.product-detail__name {
  font-size: clamp(1.4rem, 3vw, 2rem);
  color: var(--green-dark);
  margin-bottom: 0.75rem;
  line-height: 1.2;
}

.product-detail__rating {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  margin-bottom: 1.25rem;
}

.product-detail__stars {
  display: flex;
  gap: 2px;
  color: var(--gold);
  font-size: 0.9rem;
}

.product-detail__rating-count {
  font-size: 0.82rem;
  color: var(--text-muted);
}

.product-detail__price-block {
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
  padding: 1.25rem;
  background: var(--green-muted);
  border-radius: var(--radius-md);
  border-left: 3px solid var(--green-dark);
}

.product-detail__price {
  font-size: 1.9rem;
  font-weight: 800;
  color: var(--green-dark);
}

.product-detail__price-label {
  font-size: 0.78rem;
  color: var(--text-muted);
}

.product-detail__desc {
  font-size: 0.92rem;
  color: var(--text-body);
  line-height: 1.75;
  margin-bottom: 1.5rem;
}

.variant-selector {
  margin-bottom: 1.5rem;
}

.variant-selector__label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 0.6rem;
  display: block;
}

.variant-options {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
}

.variant-btn {
  padding: 0.5rem 1rem;
  border: 2px solid var(--border);
  border-radius: var(--radius-md);
  background: var(--white);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-body);
  cursor: pointer;
  transition: all var(--transition);
}

.variant-btn:hover,
.variant-btn.active {
  border-color: var(--green-dark);
  color: var(--green-dark);
  background: var(--green-muted);
}

.quantity-selector {
  display: flex;
  align-items: center;
  gap: 0;
  margin-bottom: 1.5rem;
}

.quantity-selector__label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-right: 1rem;
  white-space: nowrap;
}

.qty-btn {
  width: 40px;
  height: 40px;
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  cursor: pointer;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
  flex-shrink: 0;
}

.qty-btn:hover {
  background: var(--green-dark);
  color: var(--white);
  border-color: var(--green-dark);
}

.qty-display {
  width: 52px;
  height: 40px;
  border: 1.5px solid var(--border);
  border-left: none;
  border-right: none;
  text-align: center;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-dark);
  background: var(--white);
}

.product-detail__actions {
  display: flex;
  gap: 0.85rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.product-detail__actions .btn {
  flex: 1;
  min-width: 160px;
  justify-content: center;
}

.product-info-tabs {
  border-top: 1px solid var(--border);
  padding-top: 1.5rem;
}

.tab-nav {
  display: flex;
  gap: 0;
  border-bottom: 1px solid var(--border);
  margin-bottom: 1.5rem;
  overflow-x: auto;
}

.tab-btn {
  padding: 0.6rem 1.25rem;
  background: none;
  border: none;
  border-bottom: 2px solid transparent;
  font-size: 0.87rem;
  font-weight: 600;
  color: var(--text-muted);
  cursor: pointer;
  white-space: nowrap;
  transition: all var(--transition);
  margin-bottom: -1px;
}

.tab-btn:hover {
  color: var(--green-dark);
}

.tab-btn.active {
  color: var(--green-dark);
  border-bottom-color: var(--green-dark);
}

.tab-panel {
  display: none;
}

.tab-panel.active {
  display: block;
}

.tab-panel h4 {
  font-size: 0.88rem;
  color: var(--green-dark);
  margin-bottom: 0.5rem;
  margin-top: 1rem;
}

.tab-panel h4:first-child {
  margin-top: 0;
}

.tab-panel p, .tab-panel li {
  font-size: 0.87rem;
  color: var(--text-body);
  line-height: 1.7;
}

.tab-panel ul {
  list-style: disc;
  padding-left: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

/* ── Cart Page ─────────────────────────────────────────────── */
.cart-layout {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 2rem;
  align-items: start;
}

.cart-table {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.cart-table__header {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr auto;
  gap: 1rem;
  padding: 0.85rem 1.5rem;
  background: var(--green-muted);
  border-bottom: 1px solid var(--border);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--green-dark);
}

.cart-item {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr auto;
  gap: 1rem;
  align-items: center;
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid var(--border);
  transition: background var(--transition);
}

.cart-item:last-child {
  border-bottom: none;
}

.cart-item:hover {
  background: var(--cream);
}

.cart-item__product {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.cart-item__image {
  width: 64px;
  height: 64px;
  background: var(--green-muted);
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  flex-shrink: 0;
}

.cart-item__name {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.3;
}

.cart-item__variant {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 0.2rem;
}

.cart-item__price,
.cart-item__total {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--text-dark);
}

.cart-item__total {
  font-weight: 800;
  color: var(--green-dark);
}

.cart-item__qty {
  display: flex;
  align-items: center;
  gap: 0;
}

.cart-item__qty .qty-btn {
  width: 32px;
  height: 32px;
  font-size: 0.9rem;
}

.cart-item__qty .qty-display {
  width: 40px;
  height: 32px;
  font-size: 0.85rem;
}

.cart-item__remove {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--text-muted);
  padding: 0.3rem;
  border-radius: var(--radius-sm);
  transition: all var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
}

.cart-item__remove:hover {
  color: #c0392b;
  background: #fef0ee;
}

.cart-item__remove svg {
  width: 17px;
  height: 17px;
}

.cart-empty {
  text-align: center;
  padding: 4rem 2rem;
}

.cart-empty__icon {
  font-size: 4rem;
  margin-bottom: 1rem;
  opacity: 0.3;
}

.cart-empty h3 {
  font-size: 1.1rem;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}

.cart-empty p {
  font-size: 0.87rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

.cart-summary {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: sticky;
  top: calc(var(--nav-height) + 1.5rem);
}

.cart-summary__header {
  padding: 1rem 1.5rem;
  background: var(--green-muted);
  border-bottom: 1px solid var(--border);
}

.cart-summary__title {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--green-dark);
}

.cart-summary__body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.cart-summary__row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.87rem;
  color: var(--text-body);
}

.cart-summary__row--total {
  font-size: 1rem;
  font-weight: 800;
  color: var(--text-dark);
  border-top: 1px solid var(--border);
  padding-top: 0.75rem;
  margin-top: 0.25rem;
}

.cart-summary__row--total .cart-summary__value {
  font-size: 1.2rem;
  color: var(--green-dark);
}

.cart-summary__row--savings {
  color: #27ae60;
  font-weight: 600;
}

.cart-summary__note {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-align: center;
  padding-top: 0.75rem;
}

.coupon-field {
  display: flex;
  gap: 0.5rem;
  margin: 0.75rem 0;
}

.coupon-field input {
  flex: 1;
  padding: 0.6rem 0.9rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-md);
  font-size: 0.85rem;
  background: var(--cream);
  transition: border-color var(--transition);
}

.coupon-field input:focus {
  border-color: var(--green-light);
}

/* ── Checkout Page ─────────────────────────────────────────── */
.checkout-layout {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 2.5rem;
  align-items: start;
}

.checkout-steps {
  display: flex;
  align-items: center;
  margin-bottom: 2.5rem;
  gap: 0;
}

.checkout-step {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  flex: 1;
  position: relative;
}

.checkout-step:not(:last-child)::after {
  content: '';
  position: absolute;
  left: calc(20px + 0.65rem);
  right: 0;
  top: 20px;
  height: 2px;
  background: var(--border);
  z-index: 0;
}

.checkout-step.completed::after {
  background: var(--green-dark);
}

.checkout-step__num {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--border);
  color: var(--text-muted);
  font-size: 0.85rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
  border: 2px solid var(--border);
  transition: all var(--transition);
}

.checkout-step.active .checkout-step__num,
.checkout-step.completed .checkout-step__num {
  background: var(--green-dark);
  color: var(--white);
  border-color: var(--green-dark);
}

.checkout-step__label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-muted);
  white-space: nowrap;
}

.checkout-step.active .checkout-step__label,
.checkout-step.completed .checkout-step__label {
  color: var(--green-dark);
}

.checkout-form-panel {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.checkout-form-panel__header {
  padding: 1.25rem 1.75rem;
  background: var(--green-muted);
  border-bottom: 1px solid var(--border);
}

.checkout-form-panel__title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--green-dark);
}

.checkout-form-panel__body {
  padding: 1.75rem;
  display: none;
}

.checkout-form-panel__body.active {
  display: block;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.form-group--full {
  grid-column: 1 / -1;
}

.form-label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-dark);
}

.form-label span {
  color: #c0392b;
  margin-left: 2px;
}

.form-input {
  padding: 0.7rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-md);
  background: var(--cream);
  font-size: 0.9rem;
  color: var(--text-dark);
  transition: all var(--transition);
  width: 100%;
}

.form-input:focus {
  border-color: var(--green-light);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(45, 122, 95, 0.1);
}

.form-input.error {
  border-color: #e74c3c;
}

.form-error {
  font-size: 0.75rem;
  color: #e74c3c;
  display: none;
}

.form-error.visible {
  display: block;
}

.checkout-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 1.75rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--border);
}

.payment-options {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.payment-option {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.25rem;
  border: 2px solid var(--border);
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all var(--transition);
}

.payment-option:hover {
  border-color: var(--green-light);
}

.payment-option.selected {
  border-color: var(--green-dark);
  background: var(--green-muted);
}

.payment-option input[type="radio"] {
  accent-color: var(--green-dark);
  width: 16px;
  height: 16px;
  cursor: pointer;
}

.payment-option__label {
  flex: 1;
}

.payment-option__name {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--text-dark);
}

.payment-option__desc {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.payment-option__logo {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--text-muted);
  background: var(--border);
  padding: 0.2rem 0.5rem;
  border-radius: var(--radius-sm);
}

.order-review-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 1.25rem;
}

.order-review-table th {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
  text-align: left;
  padding: 0.6rem 0;
  border-bottom: 1px solid var(--border);
}

.order-review-table td {
  padding: 0.85rem 0;
  font-size: 0.87rem;
  color: var(--text-body);
  border-bottom: 1px solid var(--border);
  vertical-align: middle;
}

.order-review-table td:last-child {
  text-align: right;
  font-weight: 700;
  color: var(--text-dark);
}

.order-review-table .item-name {
  font-weight: 600;
  color: var(--text-dark);
}

.order-review-table .item-variant {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.checkout-summary {
  position: sticky;
  top: calc(var(--nav-height) + 1.5rem);
}

.checkout-summary-box {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.checkout-summary-box__header {
  padding: 1rem 1.5rem;
  background: var(--green-muted);
  border-bottom: 1px solid var(--border);
}

.checkout-summary-box__title {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--green-dark);
}

.checkout-summary-box__body {
  padding: 1.25rem 1.5rem;
}

.checkout-order-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.6rem 0;
  border-bottom: 1px solid var(--border);
}

.checkout-order-item:last-of-type {
  border-bottom: none;
}

.checkout-order-item__img {
  width: 48px;
  height: 48px;
  background: var(--green-muted);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
  position: relative;
}

.checkout-order-item__img .item-qty-badge {
  position: absolute;
  top: -6px;
  right: -6px;
  background: var(--green-dark);
  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;
}

.checkout-order-item__name {
  flex: 1;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-dark);
  line-height: 1.3;
}

.checkout-order-item__variant {
  font-size: 0.72rem;
  color: var(--text-muted);
  font-weight: 400;
}

.checkout-order-item__price {
  font-size: 0.87rem;
  font-weight: 700;
  color: var(--text-dark);
  flex-shrink: 0;
}

.checkout-totals {
  padding: 1rem 0 0;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  border-top: 1px solid var(--border);
  margin-top: 0.5rem;
}

.checkout-total-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.87rem;
  color: var(--text-body);
}

.checkout-total-row--grand {
  font-size: 1rem;
  font-weight: 800;
  color: var(--text-dark);
  border-top: 1px solid var(--border);
  padding-top: 0.6rem;
  margin-top: 0.2rem;
}

.checkout-total-row--grand .total-value {
  color: var(--green-dark);
  font-size: 1.1rem;
}

.checkout-secure-note {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 1rem;
  padding: 0.6rem 0.75rem;
  background: var(--cream);
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
}

.checkout-secure-note svg {
  width: 14px;
  height: 14px;
  color: var(--green-dark);
  flex-shrink: 0;
}

/* ── Order Confirm ─────────────────────────────────────────── */
.order-success {
  text-align: center;
  padding: 4rem 2rem;
  max-width: 540px;
  margin: 0 auto;
}

.order-success__icon {
  width: 80px;
  height: 80px;
  background: var(--green-muted);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  color: var(--green-dark);
}

.order-success__icon svg {
  width: 40px;
  height: 40px;
}

.order-success h2 {
  color: var(--green-dark);
  margin-bottom: 0.75rem;
}

.order-success p {
  color: var(--text-muted);
  font-size: 0.92rem;
  margin-bottom: 2rem;
  line-height: 1.7;
}

/* ── Toast Notifications ──────────────────────────────────── */
.toast-container {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  pointer-events: none;
}

.toast {
  background: var(--text-dark);
  color: var(--white);
  padding: 0.85rem 1.25rem;
  border-radius: var(--radius-md);
  font-size: 0.87rem;
  font-weight: 500;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 0.6rem;
  min-width: 240px;
  max-width: 340px;
  pointer-events: all;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.3s ease;
}

.toast.show {
  opacity: 1;
  transform: translateY(0);
}

.toast--success {
  background: var(--green-dark);
}

.toast--error {
  background: #c0392b;
}

.toast__icon {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
}

/* ── Utility Classes ──────────────────────────────────────── */
.text-center { text-align: center; }
.text-right { text-align: right; }
.text-muted { color: var(--text-muted); }
.text-green { color: var(--green-dark); }
.text-gold { color: var(--gold); }
.fw-bold { font-weight: 700; }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.hidden { display: none !important; }
.visible { display: block !important; }

/* ── Responsive ───────────────────────────────────────────── */
@media (max-width: 1024px) {
  .footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }

  .quality-inner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .quality-certs {
    grid-template-columns: repeat(4, 1fr);
  }

  .products-page-layout {
    grid-template-columns: 190px 1fr;
  }
}

@media (max-width: 900px) {
  .hero__inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    padding: 3rem 0;
    text-align: center;
  }

  .hero__subtitle { margin: 0 auto 2rem; }

  .hero__actions { justify-content: center; }

  .hero__proof { justify-content: center; }

  .hero__visual { align-items: center; }

  .hero__product-showcase {
    max-width: 380px;
  }

  .product-detail {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .product-detail__gallery {
    position: static;
  }

  .cart-layout {
    grid-template-columns: 1fr;
  }

  .cart-summary {
    position: static;
  }

  .checkout-layout {
    grid-template-columns: 1fr;
  }

  .checkout-summary {
    position: static;
    order: -1;
  }
}

@media (max-width: 768px) {
  :root { --nav-height: 60px; }

  .navbar__nav,
  .navbar__actions .btn-primary {
    display: none;
  }

  .navbar__menu-toggle {
    display: flex;
  }

  .navbar__nav.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: var(--nav-height);
    left: 0;
    right: 0;
    background: var(--white);
    border-bottom: 1px solid var(--border);
    padding: 1rem 1.5rem;
    box-shadow: var(--shadow-md);
    z-index: 999;
    gap: 0.25rem;
  }

  .products-page-layout {
    grid-template-columns: 1fr;
  }

  .filter-sidebar {
    position: static;
  }

  .filter-boxes {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
  }

  .cart-table__header { display: none; }

  .cart-item {
    grid-template-columns: 1fr;
    gap: 0.75rem;
    padding: 1.25rem;
  }

  .cart-item__price { display: none; }

  .checkout-steps { gap: 0.5rem; }

  .checkout-step__label { display: none; }

  .form-grid {
    grid-template-columns: 1fr;
  }

  .quality-certs {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 480px) {
  .section { padding: 3.5rem 0; }

  .footer__grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .trust-bar__grid {
    justify-content: flex-start;
    gap: 1rem;
  }

  .hero__product-showcase {
    grid-template-columns: 1fr 1fr;
    max-width: 100%;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
  }
}

/* ── Print ───────────────────────────────────────────────── */
@media print {
  .navbar, .announcement-bar, .footer, .toast-container { display: none; }
  .page-hero { padding: 1.5rem 0; }
}
