/* =============================================
   QULICITY — DTC Pet Brand (v3)
   Inspired by: Beco Pets (clean/minimal),
   Forthglade (warm/tone), Scrumbles (playful),
   Pets Purest (trust/navigation)
   ============================================= */

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

/* ---------- CUSTOM PROPERTIES ---------- */
:root {
  /* Brand Colors — Forest Green + Warm Tones */
  --green-900: #1B4332;
  --green-800: #2D6A4F;
  --green-700: #35845C;
  --green-600: #52B788;
  --green-500: #74C69D;
  --green-400: #95D5B2;
  --green-300: #B7E4C7;
  --green-200: #D8F3DC;
  --green-100: #EDF7F0;
  --green-50:  #F6FBF8;

  --warm-100: #FEF3C7;
  --warm-50:  #FFFBEB;
  --warm-25:  #FFFDF5;

  /* Neutrals */
  --gray-900: #111827;
  --gray-800: #1F2937;
  --gray-700: #374151;
  --gray-600: #4B5563;
  --gray-500: #6B7280;
  --gray-400: #9CA3AF;
  --gray-300: #D1D5DB;
  --gray-200: #E5E7EB;
  --gray-100: #F3F4F6;
  --gray-50:  #F9FAFB;

  --white: #FFFFFF;

  /* Typography */
  --font: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-display: 'Plus Jakarta Sans', var(--font);

  /* Spacing */
  --container: 1200px;
  --container-narrow: 880px;
  --gutter: clamp(16px, 4vw, 32px);

  /* Effects */
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.06);
  --shadow:    0 4px 24px rgba(0,0,0,0.07);
  --shadow-lg: 0 12px 48px rgba(0,0,0,0.12);
  --shadow-hover: 0 20px 60px rgba(45,106,79,0.12);
  --radius-sm: 8px;
  --radius:    16px;
  --radius-lg: 24px;
  --radius-xl: 32px;

  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-bounce: 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* ---------- BASE ---------- */
html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.6;
  color: var(--gray-900);
  background: var(--warm-50);
  -webkit-font-smoothing: antialiased;
}

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

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.container--narrow {
  max-width: var(--container-narrow);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.section {
  padding: clamp(56px, 10vw, 120px) 0;
}

.section--alt {
  background: var(--green-50);
}

.section--warm {
  background: var(--warm-25);
}

.section__header {
  text-align: center;
  margin-bottom: clamp(36px, 6vw, 64px);
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.section__label {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--green-600);
  background: var(--green-100);
  padding: 6px 18px;
  border-radius: 50px;
  margin-bottom: 16px;
}

.section__title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4.5vw, 2.8rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 14px;
  letter-spacing: -0.02em;
  color: var(--gray-900);
}

.section__desc {
  color: var(--gray-500);
  font-size: 1.08rem;
  line-height: 1.7;
}

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  line-height: 1;
  cursor: pointer;
  transition: var(--transition);
  border: none;
  font-family: var(--font);
  white-space: nowrap;
  text-decoration: none;
}

.btn--primary {
  background: var(--green-800);
  color: var(--white);
  box-shadow: 0 2px 12px rgba(45,106,79,0.2);
}
.btn--primary:hover {
  background: var(--green-700);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(45,106,79,0.3);
}

.btn--secondary {
  background: var(--warm-100);
  color: var(--gray-900);
}
.btn--secondary:hover {
  background: #FDE68A;
  transform: translateY(-2px);
}

.btn--ghost {
  background: transparent;
  color: var(--gray-700);
  border: 2px solid var(--gray-300);
}
.btn--ghost:hover {
  border-color: var(--green-800);
  color: var(--green-800);
  transform: translateY(-2px);
}

.btn--sm { padding: 10px 22px; font-size: 0.85rem; }
.btn--lg { padding: 16px 40px; font-size: 1.05rem; }
.btn--block { width: 100%; }

/* ---------- NAV ---------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,251,235,0.92);
  backdrop-filter: blur(16px) saturate(180%);
  border-bottom: 1px solid rgba(45,106,79,0.08);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 1.35rem;
  font-family: var(--font-display);
  color: var(--green-800);
}
.nav__logo-icon { font-size: 1.6rem; }

.nav__links {
  display: flex;
  gap: 36px;
  align-items: center;
}

.nav__link {
  font-weight: 500;
  font-size: 0.92rem;
  color: var(--gray-600);
  transition: color var(--transition);
  position: relative;
  padding: 4px 0;
}
.nav__link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--green-600);
  transition: width var(--transition);
  border-radius: 2px;
}
.nav__link:hover { color: var(--green-800); }
.nav__link:hover::after { width: 100%; }

.nav__cta {
  background: var(--green-800);
  color: white !important;
  padding: 8px 22px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.85rem;
}
.nav__cta::after { display: none !important; }
.nav__cta:hover { background: var(--green-700) !important; }

.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  z-index: 101;
}
.nav__toggle span {
  display: block;
  width: 24px;
  height: 2.5px;
  background: var(--gray-900);
  border-radius: 4px;
  transition: var(--transition);
  transform-origin: center;
}
.nav__toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav__toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav__toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* ---------- HERO ---------- */
.hero {
  position: relative;
  overflow: hidden;
  padding: clamp(40px, 6vw, 80px) 0 clamp(48px, 8vw, 100px);
  min-height: 85vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, var(--warm-50) 0%, var(--warm-25) 40%, var(--green-50) 100%);
}

.hero__pattern {
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: 0.04;
  background-image: radial-gradient(var(--green-800) 1.5px, transparent 1.5px);
  background-size: 30px 30px;
}

.hero__glow {
  position: absolute;
  z-index: 0;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}
.hero__glow--1 {
  width: 500px; height: 500px;
  background: var(--green-400);
  opacity: 0.15;
  top: -100px; right: -100px;
}
.hero__glow--2 {
  width: 400px; height: 400px;
  background: var(--warm-100);
  opacity: 0.2;
  bottom: -80px; left: -80px;
}

.hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero__content {
  order: 0;
  animation: heroFadeIn 0.8s ease-out;
}

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

.hero__badge {
  display: inline-block;
  background: var(--green-100);
  color: var(--green-800);
  padding: 6px 18px;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 600;
  margin-bottom: 24px;
  border: 1px solid var(--green-300);
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5.5vw, 3.8rem);
  font-weight: 800;
  line-height: 1.08;
  margin-bottom: 22px;
  letter-spacing: -0.03em;
}

.hero__highlight {
  background: linear-gradient(135deg, var(--green-800), var(--green-600));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero__desc {
  font-size: clamp(1rem, 1.4vw, 1.2rem);
  color: var(--gray-500);
  line-height: 1.75;
  max-width: 520px;
  margin-bottom: 36px;
}

.hero__actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 44px;
}

.hero__stats {
  display: flex;
  gap: 0;
  flex-wrap: wrap;
  align-items: center;
}

.hero__stat {
  text-align: center;
  padding: 0 28px;
}

.hero__stat:first-child { padding-left: 0; }
.hero__stat-num {
  display: block;
  font-weight: 800;
  font-size: 1.3rem;
  color: var(--green-800);
  font-family: var(--font-display);
}
.hero__stat-label {
  font-size: 0.8rem;
  color: var(--gray-500);
  margin-top: 2px;
}
.hero__stat-divider {
  width: 1px;
  height: 40px;
  background: var(--gray-200);
}

/* Hero Visual */
.hero__visual {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 16px;
  animation: heroFadeIn 0.8s ease-out 0.2s both;
}

.hero__card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow);
  transition: transform 0.5s var(--transition-bounce), box-shadow 0.4s;
  position: relative;
  cursor: pointer;
}
.hero__card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: var(--shadow-hover);
}

.hero__card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s;
}
.hero__card:hover img { transform: scale(1.08); }

.hero__card--1 {
  grid-row: span 2;
}
.hero__card--1 img { height: 100%; min-height: 440px; }
.hero__card--2 img,
.hero__card--3 img { min-height: 210px; }

.hero__card-label {
  position: absolute;
  bottom: 14px;
  left: 14px;
  background: rgba(255,255,255,0.93);
  backdrop-filter: blur(8px);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--green-800);
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

/* ---------- TRUST BAR ---------- */
.trust-bar {
  background: var(--white);
  border-top: 1px solid var(--gray-200);
  border-bottom: 1px solid var(--gray-200);
  padding: 22px 0;
}

.trust-bar__inner {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 16px 40px;
}

.trust-bar__item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 500;
  font-size: 0.88rem;
  color: var(--gray-700);
}
.trust-bar__item-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--green-100);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

/* ---------- BRAND PROMISE ---------- */
.brand-promise__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(20px, 3vw, 40px);
}

.brand-promise__card {
  text-align: center;
  padding: 40px 28px;
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-100);
  transition: transform 0.4s, box-shadow 0.4s;
}
.brand-promise__card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}

.brand-promise__icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin: 0 auto 20px;
}
.brand-promise__icon--safe { background: var(--green-100); }
.brand-promise__icon--design { background: var(--warm-100); }
.brand-promise__icon--love { background: #FCE7F3; }

.brand-promise__card h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.2rem;
  margin-bottom: 10px;
}
.brand-promise__card p {
  color: var(--gray-500);
  font-size: 0.92rem;
  line-height: 1.7;
}

/* ---------- PRODUCT GRID ---------- */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: clamp(20px, 3vw, 32px);
}

.product-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 0.4s var(--transition-bounce), box-shadow 0.4s;
  border: 1px solid var(--gray-100);
}
.product-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
}

.product-card__image {
  position: relative;
  display: block;
  overflow: hidden;
  aspect-ratio: 1 / 1;
  background: var(--gray-100);
}
.product-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s;
}
.product-card:hover .product-card__image img { transform: scale(1.06); }

.product-card__badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: linear-gradient(135deg, #EF4444, #F97316);
  color: white;
  padding: 5px 14px;
  border-radius: 50px;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  box-shadow: 0 2px 8px rgba(239,68,68,0.3);
}

.product-card__quickview {
  position: absolute;
  bottom: 14px;
  right: 14px;
  background: rgba(255,255,255,0.93);
  backdrop-filter: blur(8px);
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--green-800);
  opacity: 0;
  transform: translateY(8px);
  transition: var(--transition);
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}
.product-card:hover .product-card__quickview {
  opacity: 1;
  transform: translateY(0);
}

.product-card__body {
  padding: 22px 22px 26px;
}

.product-card__subtitle {
  display: block;
  font-size: 0.75rem;
  color: var(--green-600);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  margin-bottom: 6px;
}

.product-card__title {
  font-size: 1.08rem;
  font-weight: 600;
  line-height: 1.35;
  margin-bottom: 6px;
  color: var(--gray-900);
}
.product-card__title a { transition: color var(--transition); }
.product-card__title a:hover { color: var(--green-800); }

.product-card__rating {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 10px;
  font-size: 0.85rem;
  color: var(--gray-500);
}
.product-card__stars {
  color: #F59E0B;
  font-size: 0.9rem;
  letter-spacing: 1px;
}

.product-card__price {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
}

.price--current {
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--gray-900);
}
.price--old {
  color: var(--gray-400);
  text-decoration: line-through;
  font-size: 0.92rem;
}
.price--xl { font-size: 1.8rem; }

.product-card__actions {
  display: flex;
  gap: 10px;
}

/* ---------- TESTIMONIALS ---------- */
.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(20px, 3vw, 32px);
}

.testimonial-card {
  background: var(--white);
  padding: 36px 28px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-100);
  position: relative;
  transition: transform 0.4s, box-shadow 0.4s;
}
.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.testimonial-card__quote {
  font-size: 2.5rem;
  color: var(--green-400);
  line-height: 1;
  margin-bottom: 12px;
  font-family: var(--font-display);
}

.testimonial-card p {
  color: var(--gray-600);
  font-style: italic;
  line-height: 1.7;
  margin-bottom: 20px;
  font-size: 0.95rem;
}

.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-card__avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--green-100);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.testimonial-card__name {
  font-weight: 600;
  font-size: 0.92rem;
}
.testimonial-card__detail {
  font-size: 0.82rem;
  color: var(--gray-400);
}

/* ---------- VALUES GRID ---------- */
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(20px, 3vw, 40px);
}

.value-card {
  background: var(--white);
  padding: 36px 28px 40px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-100);
  transition: transform 0.4s, box-shadow 0.4s;
}
.value-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}

.value-card__icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius);
  background: var(--green-100);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 18px;
}

.value-card h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.15rem;
  margin-bottom: 10px;
}
.value-card p {
  color: var(--gray-500);
  font-size: 0.92rem;
  line-height: 1.7;
}

/* ---------- NEWSLETTER ---------- */
.newsletter-section {
  padding: 0 0 clamp(48px, 8vw, 96px) 0;
  margin-top: -40px;
}

.newsletter-card {
  background: linear-gradient(135deg, var(--green-800) 0%, var(--green-700) 50%, var(--green-600) 100%);
  color: white;
  border-radius: var(--radius-xl);
  padding: clamp(44px, 6vw, 72px) clamp(28px, 4vw, 56px);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.newsletter-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 20%, rgba(255,255,255,0.1) 0%, transparent 60%),
              radial-gradient(ellipse at 70% 80%, rgba(82,183,136,0.2) 0%, transparent 50%);
  pointer-events: none;
}

.newsletter-card h2 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  font-weight: 800;
  margin-bottom: 12px;
  position: relative;
}

.newsletter-card p {
  opacity: 0.9;
  margin-bottom: 28px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
  font-size: 1rem;
  position: relative;
}

.newsletter-form {
  display: flex;
  gap: 12px;
  max-width: 500px;
  margin: 0 auto;
  position: relative;
}

.newsletter-form input {
  flex: 1;
  padding: 15px 22px;
  border: none;
  border-radius: 50px;
  font-size: 1rem;
  font-family: var(--font);
  outline: none;
  background: rgba(255,255,255,0.15);
  color: white;
  transition: background var(--transition);
}
.newsletter-form input::placeholder { color: rgba(255,255,255,0.55); }
.newsletter-form input:focus { background: rgba(255,255,255,0.22); }

.newsletter-form .btn {
  background: var(--white);
  color: var(--green-800);
  flex-shrink: 0;
  font-weight: 700;
}
.newsletter-form .btn:hover {
  background: var(--warm-100);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

/* ---------- PDP (Product Detail Page) ---------- */
.pdp {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 72px);
  align-items: start;
}

/* Gallery */
.pdp__gallery {
  position: sticky;
  top: 96px;
}

.pdp__gallery-main {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 16px;
  border: 1px solid var(--gray-100);
  box-shadow: var(--shadow-sm);
}
.pdp__gallery-main img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  transition: opacity 0.3s ease;
}

.pdp__gallery-thumbs {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  padding-bottom: 4px;
  -webkit-overflow-scrolling: touch;
}

.pdp__thumb {
  width: 76px;
  height: 76px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  cursor: pointer;
  border: 3px solid transparent;
  opacity: 0.5;
  transition: all var(--transition);
  flex-shrink: 0;
  background: var(--gray-50);
  padding: 0;
}
.pdp__thumb:hover { opacity: 0.8; }
.pdp__thumb.active {
  opacity: 1;
  border-color: var(--green-600);
  box-shadow: 0 0 0 3px var(--green-200);
}
.pdp__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Info */
.pdp__header { margin-bottom: 16px; }

.pdp__breadcrumb {
  font-size: 0.82rem;
  color: var(--gray-400);
  margin-bottom: 12px;
}
.pdp__breadcrumb a { color: var(--gray-500); }
.pdp__breadcrumb a:hover { color: var(--green-800); }

.pdp__title {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.8vw, 2rem);
  font-weight: 700;
  margin-bottom: 6px;
  letter-spacing: -0.01em;
}

.pdp__subtitle {
  color: var(--gray-500);
  font-size: 1.05rem;
  font-weight: 400;
}

.pdp__price { margin-bottom: 14px; }

.pdp__save-badge {
  display: inline-block;
  background: linear-gradient(135deg, #EF4444, #F97316);
  color: white;
  padding: 4px 14px;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 700;
  margin-left: 12px;
  vertical-align: middle;
  box-shadow: 0 2px 8px rgba(239,68,68,0.25);
}

.pdp__rating {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--gray-500);
  font-size: 0.92rem;
  margin-bottom: 22px;
}
.pdp__stars { color: #F59E0B; font-size: 1.15rem; letter-spacing: 2px; }

.pdp__divider {
  border: none;
  border-top: 1px solid var(--gray-200);
  margin: 28px 0;
}

.pdp__description p {
  color: var(--gray-600);
  line-height: 1.85;
  margin-bottom: 16px;
  font-size: 0.95rem;
}
.pdp__description p:last-child { margin-bottom: 0; }
.pdp__description strong { color: var(--gray-900); }

.pdp__section-title {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 18px;
  font-family: var(--font-display);
  display: flex;
  align-items: center;
  gap: 8px;
}

.pdp__features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.pdp__feature {
  display: flex;
  gap: 14px;
  padding: 18px;
  background: var(--green-50);
  border-radius: var(--radius);
  border: 1px solid var(--green-100);
  transition: transform var(--transition), box-shadow var(--transition);
}
.pdp__feature:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}
.pdp__feature-icon {
  font-size: 1.4rem;
  flex-shrink: 0;
  margin-top: 2px;
  width: 36px;
  height: 36px;
  background: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.pdp__feature strong { display: block; font-size: 0.92rem; margin-bottom: 4px; }
.pdp__feature p { font-size: 0.85rem; color: var(--gray-500); line-height: 1.5; }

.pdp__specs-table { width: 100%; border-collapse: collapse; }
.pdp__specs-table tr:last-child td { border-bottom: none; }
.pdp__specs-table td {
  padding: 12px 0;
  border-bottom: 1px solid var(--gray-100);
  font-size: 0.92rem;
}
.pdp__specs-table td:first-child {
  font-weight: 600;
  width: 130px;
  color: var(--gray-700);
}
.pdp__specs-table td:last-child { color: var(--gray-500); }

.pdp__tags { display: flex; flex-wrap: wrap; gap: 10px; }

.tag {
  display: inline-block;
  background: var(--warm-100);
  color: var(--gray-700);
  padding: 8px 18px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 500;
  transition: background var(--transition);
  border: 1px solid transparent;
}
.tag:hover {
  background: var(--warm-50);
  border-color: var(--warm-100);
}

.pdp__actions { margin-top: 32px; }
.pdp__actions .btn {
  border-radius: var(--radius);
  padding: 18px 36px;
  font-size: 1.05rem;
}

/* ---------- PAGE HERO ---------- */
.page-hero {
  padding: clamp(48px, 7vw, 88px) 0 clamp(32px, 5vw, 56px);
  text-align: center;
  background: linear-gradient(180deg, var(--warm-50) 0%, var(--warm-25) 100%);
  position: relative;
  overflow: hidden;
}

.page-hero__label {
  display: inline-block;
  background: var(--green-100);
  color: var(--green-800);
  padding: 4px 16px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 14px;
  border: 1px solid var(--green-300);
}

.page-hero__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
  margin-bottom: 10px;
  letter-spacing: -0.02em;
}

.page-hero__desc {
  color: var(--gray-500);
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

/* ---------- ABOUT ---------- */
.about { max-width: 800px; margin: 0 auto; }

.about__intro h2 {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 20px;
}
.about__intro p {
  color: var(--gray-600);
  line-height: 1.85;
  margin-bottom: 16px;
  font-size: 1rem;
}

.about__values { margin-top: 56px; }
.about__values h2 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 28px;
}

.about__values-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.about__value {
  padding: 28px;
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-100);
  transition: transform var(--transition), box-shadow var(--transition);
}
.about__value:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.about__value-icon { font-size: 2rem; display: block; margin-bottom: 12px; }
.about__value h3 { font-size: 1.05rem; margin-bottom: 6px; }
.about__value p { color: var(--gray-500); font-size: 0.9rem; line-height: 1.6; }

.about__cta {
  text-align: center;
  margin-top: 56px;
  padding: 48px;
  background: linear-gradient(135deg, var(--green-50), var(--warm-100));
  border-radius: var(--radius-xl);
}
.about__cta p {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 20px;
}

/* ---------- CONTACT ---------- */
.contact-page { max-width: 720px; margin: 0 auto; }

.contact-page__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 44px;
}

.contact-card {
  text-align: center;
  padding: 32px 20px;
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-100);
  transition: transform var(--transition), box-shadow var(--transition);
}
.contact-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.contact-card__icon { font-size: 2rem; display: block; margin-bottom: 12px; }
.contact-card h3 { font-size: 1rem; font-weight: 600; margin-bottom: 6px; }
.contact-card p { font-size: 0.9rem; color: var(--gray-500); }
.contact-card__note { font-size: 0.8rem; color: var(--gray-400); margin-top: 6px; }

.contact-form {
  background: var(--white);
  padding: 40px;
  border-radius: var(--radius-xl);
  border: 1px solid var(--gray-100);
  box-shadow: var(--shadow-sm);
}

.contact-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 14px 18px;
  border: 2px solid var(--gray-200);
  border-radius: var(--radius);
  font-size: 0.95rem;
  font-family: var(--font);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
  margin-bottom: 16px;
  background: var(--gray-50);
}
.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--green-600);
  box-shadow: 0 0 0 4px var(--green-200);
}

/* ---------- FOOTER ---------- */
.footer {
  background: var(--green-900);
  color: rgba(255,255,255,0.7);
  padding: 64px 0 0;
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: clamp(32px, 5vw, 56px);
  padding-bottom: 44px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer__logo {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.3rem;
  color: white;
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer p { font-size: 0.88rem; line-height: 1.7; margin-top: 14px; opacity: 0.7; }
.footer__social { margin-top: 18px; display: flex; gap: 12px; }
.footer__social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.5);
  font-size: 0.9rem;
  transition: background var(--transition), color var(--transition);
}
.footer__social a:hover {
  background: var(--green-600);
  color: white;
}

.footer__col h4 {
  color: white;
  font-size: 0.92rem;
  font-weight: 600;
  margin-bottom: 18px;
  font-family: var(--font-display);
}
.footer__col a {
  display: block;
  color: rgba(255,255,255,0.45);
  font-size: 0.88rem;
  margin-bottom: 12px;
  transition: color var(--transition);
}
.footer__col a:hover { color: var(--green-400); }

.footer__bottom {
  padding: 28px 0;
  text-align: center;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.25);
}

/* ---------- 404 ---------- */
.page-404 {
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  flex-direction: column;
  gap: 20px;
}
.page-404__code {
  font-family: var(--font-display);
  font-size: clamp(5rem, 12vw, 8rem);
  font-weight: 800;
  color: var(--green-400);
  line-height: 1;
}
.page-404 h2 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
}
.page-404 p {
  color: var(--gray-500);
  max-width: 400px;
}

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

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

.reveal--left {
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal--left.revealed {
  opacity: 1;
  transform: translateX(0);
}

.reveal--right {
  opacity: 0;
  transform: translateX(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal--right.revealed {
  opacity: 1;
  transform: translateX(0);
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 1024px) {
  .pdp__features-grid { grid-template-columns: 1fr 1fr; }
  .about__values-grid { grid-template-columns: 1fr; }
}

@media (max-width: 900px) {
  .brand-promise__grid { grid-template-columns: 1fr; gap: 20px; }
  .values-grid { grid-template-columns: 1fr; gap: 20px; }
  .testimonials__grid { grid-template-columns: 1fr; gap: 20px; }
  .pdp__features-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .nav__links {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255,251,235,0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    gap: 0;
    align-items: center;
    justify-content: center;
    z-index: 100;
  }
  .nav__links.show { display: flex; }
  .nav__links li { margin: 8px 0; }
  .nav__link {
    font-size: 1.2rem;
    padding: 12px 24px;
    display: block;
  }
  .nav__cta {
    font-size: 1rem;
    padding: 12px 32px;
  }
  .nav__toggle { display: flex; }
  .nav__inner { height: 64px; }

  .hero__inner { grid-template-columns: 1fr; }
  .hero__content { order: 0; }
  .hero__visual { order: 1; }
  .hero { min-height: auto; }
  .hero__card--1 img { min-height: 300px; }
  .hero__card--2 img,
  .hero__card--3 img { min-height: 150px; }
  .hero__stats { flex-direction: column; gap: 16px; align-items: flex-start; }
  .hero__stat { padding: 0; text-align: left; }
  .hero__stat-divider { display: none; }
  .hero__stat-num { font-size: 1.1rem; }

  .pdp { grid-template-columns: 1fr; }
  .pdp__gallery { position: static; }

  .newsletter-form { flex-direction: column; }
  .newsletter-form input { width: 100%; }
  .newsletter-form .btn { width: 100%; }

  .contact-page__cards { grid-template-columns: 1fr; }
  .contact-form { padding: 24px; }
  .contact-form__row { grid-template-columns: 1fr; }

  .footer__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 600px) {
  .product-grid { grid-template-columns: 1fr; }
  .about__values-grid { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; }

  .hero__actions { flex-direction: column; }
  .hero__actions .btn { width: 100%; }

  .product-card__actions { flex-direction: column; }
  .product-card__actions .btn { width: 100%; }

  .pdp__features-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .hero__card--1 img { min-height: 240px; }
  .hero__card--2 img,
  .hero__card--3 img { min-height: 120px; }
  .hero__visual { gap: 8px; }
  .hero__card-label { font-size: 0.7rem; padding: 4px 12px; }
}
