/* ============================================================
   AnimGreet — Brand Visual System
   Colors: Orange-Red #E0553D + Soft Green #7EB8A2
   Base: Matte White #FAFAF8  |  Dark: Charcoal #3A3A3A
   ============================================================ */

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

:root {
  --brand:       #E0553D;
  --brand-dark:  #C4442D;
  --brand-light: #FDE8E3;
  --accent:      #7EB8A2;
  --accent-dark: #5E9A84;
  --accent-light:#E8F5EF;
  --bg:          #FAFAF8;
  --bg-alt:      #F3F2EE;
  --text:        #3A3A3A;
  --text-muted:  #7A7A7A;
  --text-light:  #A8A8A8;
  --border:      #E5E3DE;
  --white:       #FFFFFF;
  --shadow-sm:   0 1px 3px rgba(0,0,0,.06);
  --shadow-md:   0 4px 16px rgba(0,0,0,.08);
  --shadow-lg:   0 8px 32px rgba(0,0,0,.10);
  --radius-sm:   8px;
  --radius-md:   12px;
  --radius-lg:   20px;
  --max-w:       1200px;
  --nav-h:       72px;
  --font:        'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --transition:  .25s cubic-bezier(.4,0,.2,1);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font);
  color: var(--text);
  background: var(--bg);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
input, select, textarea { font-family: inherit; font-size: 1rem; }

/* ---------- Typography ---------- */
h1 { font-size: clamp(2rem, 5vw, 3.25rem); font-weight: 700; line-height: 1.15; letter-spacing: -.02em; }
h2 { font-size: clamp(1.5rem, 3.5vw, 2.25rem); font-weight: 600; line-height: 1.25; letter-spacing: -.01em; }
h3 { font-size: clamp(1.15rem, 2.5vw, 1.45rem); font-weight: 600; line-height: 1.3; }
h4 { font-size: 1.05rem; font-weight: 600; line-height: 1.4; }

.section-label {
  display: inline-block;
  font-size: .8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--brand);
  margin-bottom: .5rem;
}

.section-title {
  margin-bottom: .75rem;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 600px;
}

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

.section {
  padding: 5rem 0;
}

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

.section--accent {
  background: var(--accent-light);
}

/* ---------- Navigation ---------- */
.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-h);
  background: rgba(250,250,248,.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color var(--transition), box-shadow var(--transition);
}

.site-nav.scrolled {
  border-bottom-color: var(--border);
  box-shadow: var(--shadow-sm);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--nav-h);
  gap: 2rem;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--brand);
  flex-shrink: 0;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.75rem;
}

.nav-links a {
  font-size: .9rem;
  font-weight: 500;
  color: var(--text);
  position: relative;
  padding: .25rem 0;
  transition: color var(--transition);
  white-space: nowrap;
}

.nav-links a:hover,
.nav-links a.active { color: var(--brand); }

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--brand);
  transition: width var(--transition);
  border-radius: 1px;
}

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

.nav-actions {
  display: flex;
  align-items: center;
  gap: .75rem;
  flex-shrink: 0;
}

.nav-actions .icon-btn {
  width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center;
  border-radius: var(--radius-sm);
  color: var(--text);
  transition: background var(--transition), color var(--transition);
}

.nav-actions .icon-btn:hover {
  background: var(--bg-alt);
  color: var(--brand);
}

.cart-badge {
  position: absolute;
  top: 2px; right: 2px;
  min-width: 18px; height: 18px;
  background: var(--brand);
  color: #fff;
  font-size: .65rem;
  font-weight: 700;
  border-radius: 9px;
  display: flex; align-items: center; justify-content: center;
  padding: 0 5px;
}

.cart-badge.hidden { display: none; }

.menu-toggle { display: none; }

/* Mobile nav */
@media (max-width: 960px) {
  .nav-links { display: none; }
  .menu-toggle { display: flex; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: var(--nav-h);
    left: 0; right: 0;
    background: var(--white);
    padding: 1.5rem;
    gap: 1rem;
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow-md);
  }
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  min-height: 48px;
  padding: 0 1.5rem;
  font-size: .95rem;
  font-weight: 600;
  border-radius: var(--radius-sm);
  transition: all var(--transition);
  white-space: nowrap;
}

.btn--primary {
  background: var(--brand);
  color: #fff;
}

.btn--primary:hover {
  background: var(--brand-dark);
  transform: scale(1.03);
}

.btn--outline {
  background: transparent;
  color: var(--brand);
  border: 2px solid var(--brand);
}

.btn--outline:hover {
  background: var(--brand);
  color: #fff;
}

.btn--accent {
  background: var(--accent);
  color: #fff;
}

.btn--accent:hover {
  background: var(--accent-dark);
  transform: scale(1.03);
}

.btn--lg {
  min-height: 56px;
  padding: 0 2.25rem;
  font-size: 1.05rem;
  border-radius: var(--radius-md);
}

.btn--sm {
  min-height: 40px;
  padding: 0 1rem;
  font-size: .85rem;
}

/* ---------- Cards ---------- */
.card {
  background: var(--white);
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
}

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

.card__media {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/5;
  background: var(--bg-alt);
}

.card__media img,
.card__media svg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}

.card:hover .card__media img,
.card:hover .card__media svg {
  transform: scale(1.04);
}

.card__badge {
  position: absolute;
  top: .75rem; left: .75rem;
  padding: .25rem .65rem;
  font-size: .72rem;
  font-weight: 600;
  border-radius: 20px;
  color: #fff;
  z-index: 2;
}

.card__badge--embroidery { background: var(--brand); }
.card__badge--transfer { background: var(--accent); }

.card__quick-add {
  position: absolute;
  bottom: .75rem; right: .75rem;
  width: 38px; height: 38px;
  background: var(--white);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-md);
  opacity: 0;
  transform: translateY(6px);
  transition: all var(--transition);
}

.card:hover .card__quick-add { opacity: 1; transform: translateY(0); }
.card__quick-add:hover { background: var(--brand); color: #fff; }

.card__body { padding: 1rem 1.15rem 1.15rem; }

.card__title {
  font-size: .95rem; font-weight: 600;
  margin-bottom: .25rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.card__price {
  font-size: 1.1rem; font-weight: 700;
  color: var(--brand);
}

/* ---------- Trust bar ---------- */
.trust-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  padding: .65rem 1rem;
  background: var(--bg-alt);
  font-size: .78rem;
  font-weight: 500;
  color: var(--text-muted);
  border-bottom: 1px solid var(--border);
}

.trust-bar span {
  display: flex; align-items: center; gap: .35rem;
}

/* ---------- Hero ---------- */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: var(--nav-h);
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #fdf8f6 0%, #faf9f6 30%, #f5faf7 70%, #fdf8f6 100%);
}

.hero__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hero__text { 
  max-width: 520px;
  animation: fadeInUp .8s ease both;
}

.hero__text h1 {
  margin-bottom: 1rem;
}

.hero__text h1 span {
  color: var(--brand);
}

.hero__text .subtitle {
  font-size: 1.15rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
  line-height: 1.6;
}

.hero__cta {
  display: flex;
  gap: .75rem;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}

.hero__trust {
  display: flex; gap: 1.25rem;
  flex-wrap: wrap;
  font-size: .78rem; color: var(--text-light);
}

.hero__trust span {
  display: flex; align-items: center; gap: .3rem;
}

.hero__visual {
  display: flex; align-items: center; justify-content: center;
  animation: fadeInUp .8s .2s ease both;
}

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

/* ---------- Value Props Grid ---------- */
.props-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.prop-card {
  text-align: center;
  padding: 2.5rem 1.5rem;
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  transition: transform var(--transition), box-shadow var(--transition);
}

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

.prop-card__icon {
  width: 64px; height: 64px;
  margin: 0 auto 1.25rem;
  display: flex; align-items: center; justify-content: center;
  background: var(--brand-light);
  border-radius: 16px;
  font-size: 1.75rem;
}

.prop-card:nth-child(2) .prop-card__icon { background: var(--accent-light); }
.prop-card:nth-child(3) .prop-card__icon { background: #F0EBE5; }

.prop-card h3 { margin-bottom: .5rem; }
.prop-card p { font-size: .92rem; color: var(--text-muted); line-height: 1.6; }

/* ---------- Product Grid ---------- */
.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
}

/* ---------- Brand Story Block ---------- */
.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  margin-top: 3rem;
}

.story__visual {
  display: flex; align-items: center; justify-content: center;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
}

.story__text h3 {
  margin-bottom: 1rem;
}

.story__text p {
  color: var(--text-muted);
  margin-bottom: 1rem;
  line-height: 1.7;
}

.story__highlights {
  display: grid; gap: .75rem;
  margin-top: 1.5rem;
}

.story__highlights li {
  display: flex; align-items: flex-start; gap: .65rem;
  font-size: .95rem;
  color: var(--text);
}

.story__highlights li::before {
  content: '✦';
  color: var(--accent);
  font-size: .8rem;
  flex-shrink: 0;
  margin-top: .2rem;
}

/* ---------- Social Proof ---------- */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

.review-card {
  background: var(--white);
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  padding: 1.5rem;
  transition: transform var(--transition);
}

.review-card:hover { transform: translateY(-4px); }

.review-card__stars {
  color: #F0A63E;
  font-size: .9rem;
  margin-bottom: .75rem;
}

.review-card__text {
  font-size: .92rem;
  color: var(--text);
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 1rem;
}

.review-card__author {
  font-size: .82rem;
  font-weight: 600;
  color: var(--text);
}

.review-card__author span {
  font-weight: 400;
  color: var(--text-muted);
}

.rating-badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .6rem 1.2rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 40px;
  font-size: .85rem;
  font-weight: 600;
  box-shadow: var(--shadow-sm);
  margin-top: 2rem;
}

.rating-badge .stars { color: #F0A63E; }

/* ---------- Instagram Wall ---------- */
.insta-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: .75rem;
  margin-top: 2.5rem;
}

.insta-grid > div {
  aspect-ratio: 1;
  background: var(--bg-alt);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: 2rem;
  transition: transform var(--transition);
}

.insta-grid > div:hover { transform: scale(1.03); }

/* ---------- FAQ ---------- */
.faq-list {
  max-width: 720px;
  margin: 3rem auto 0;
}

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 0;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  text-align: left;
  transition: color var(--transition);
}

.faq-question:hover { color: var(--brand); }

.faq-question .arrow {
  width: 24px; height: 24px;
  transition: transform .3s ease;
  flex-shrink: 0;
}

.faq-item.open .faq-question .arrow { transform: rotate(180deg); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease, padding .35s ease;
}

.faq-item.open .faq-answer {
  max-height: 300px;
  padding-bottom: 1.25rem;
}

.faq-answer p {
  font-size: .92rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ---------- Certifications ---------- */
.cert-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  flex-wrap: wrap;
  margin-top: 1.5rem;
}

.cert-row span {
  display: flex; align-items: center; gap: .4rem;
  font-size: .85rem;
  font-weight: 500;
  color: var(--text-muted);
}

/* ---------- How It Works Steps ---------- */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.step-card {
  text-align: center;
  padding: 2rem 1.5rem;
  position: relative;
}

.step-card__num {
  width: 48px; height: 48px;
  margin: 0 auto 1rem;
  display: flex; align-items: center; justify-content: center;
  background: var(--brand);
  color: #fff;
  font-size: 1.15rem;
  font-weight: 700;
  border-radius: 50%;
}

.step-card:nth-child(2) .step-card__num { background: var(--accent); }
.step-card:nth-child(3) .step-card__num { background: var(--text); }

.step-card h3 { margin-bottom: .5rem; }
.step-card p { font-size: .92rem; color: var(--text-muted); line-height: 1.6; }

/* ---------- Sticky CTA ---------- */
.sticky-cta {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 999;
  background: var(--white);
  border-top: 1px solid var(--border);
  padding: .85rem 0;
  transform: translateY(100%);
  transition: transform .3s ease;
  box-shadow: 0 -4px 20px rgba(0,0,0,.06);
}

.sticky-cta.visible { transform: translateY(0); }

.sticky-cta .container {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem;
}

.sticky-cta__text {
  font-size: .95rem;
  font-weight: 600;
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--text);
  color: rgba(255,255,255,.7);
  padding: 4rem 0 2rem;
  font-size: .88rem;
  line-height: 1.8;
}

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

.footer-brand {
  font-size: 1.15rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: .75rem;
}

.footer-slogan {
  color: var(--text-light);
  margin-bottom: 1.5rem;
  max-width: 300px;
}

.footer-col h4 {
  color: #fff;
  font-size: .82rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-bottom: 1rem;
}

.footer-col a {
  display: block;
  color: rgba(255,255,255,.6);
  font-size: .85rem;
  transition: color var(--transition);
  margin-bottom: .4rem;
}

.footer-col a:hover { color: #fff; }

.footer-bottom {
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 1rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,.1);
  font-size: .8rem;
}

.footer-payments {
  display: flex; align-items: center; gap: .75rem;
}

.footer-payments span {
  padding: .3rem .7rem;
  background: rgba(255,255,255,.08);
  border-radius: 4px;
  font-size: .75rem;
  font-weight: 500;
  color: rgba(255,255,255,.6);
}

/* ---------- Newsletter ---------- */
.newsletter {
  text-align: center;
  padding: 4rem 0;
  background: var(--accent-light);
}

.newsletter h3 { margin-bottom: .5rem; }
.newsletter p { color: var(--text-muted); margin-bottom: 1.5rem; }

.newsletter-form {
  display: flex; gap: .5rem;
  max-width: 440px; margin: 0 auto;
}

.newsletter-form input {
  flex: 1;
  min-height: 48px;
  padding: 0 1rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--white);
  font-size: .92rem;
  outline: none;
  transition: border-color var(--transition);
}

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

/* ---------- Shop Page Layout ---------- */
.shop-layout {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 2.5rem;
  padding-top: calc(var(--nav-h) + 2rem);
  padding-bottom: 4rem;
}

.shop-filters {
  position: sticky;
  top: calc(var(--nav-h) + 1.5rem);
  align-self: start;
}

.filter-group {
  margin-bottom: 1.5rem;
}

.filter-group h4 {
  font-size: .82rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .04em;
  margin-bottom: .75rem;
  color: var(--text-muted);
}

.filter-group label {
  display: flex; align-items: center; gap: .5rem;
  font-size: .88rem;
  color: var(--text);
  padding: .3rem 0;
  cursor: pointer;
}

.filter-group input[type="radio"],
.filter-group input[type="checkbox"] {
  accent-color: var(--brand);
}

.shop-header {
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 1rem;
  margin-bottom: 1.5rem;
}

.shop-header h2 { font-size: 1.5rem; }

.shop-sort {
  display: flex; align-items: center; gap: .5rem;
  font-size: .88rem;
}

.shop-sort select {
  padding: .45rem .75rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--white);
  font-size: .85rem;
  cursor: pointer;
}

/* ---------- Product Detail ---------- */
.product-detail {
  padding-top: calc(var(--nav-h) + 2rem);
  padding-bottom: 4rem;
}

.product-detail__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}

.product-gallery {
  position: sticky;
  top: calc(var(--nav-h) + 1.5rem);
  align-self: start;
}

.product-gallery__main {
  aspect-ratio: 4/5;
  background: var(--bg-alt);
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1rem;
  overflow: hidden;
}

.product-gallery__main svg {
  width: 100%;
  height: 100%;
}

.product-gallery__thumbs {
  display: flex; gap: .75rem;
}

.product-gallery__thumb {
  width: 72px; height: 72px;
  border-radius: var(--radius-sm);
  border: 2px solid transparent;
  cursor: pointer;
  overflow: hidden;
  background: var(--bg-alt);
  transition: border-color var(--transition);
}

.product-gallery__thumb.active,
.product-gallery__thumb:hover {
  border-color: var(--brand);
}

.product-info h1 {
  font-size: 1.85rem;
  margin-bottom: .5rem;
}

.product-info__price {
  font-size: 1.6rem; font-weight: 700;
  color: var(--brand);
  margin-bottom: 1.25rem;
}

.product-info__desc {
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.product-info__options {
  display: flex; flex-direction: column; gap: 1rem;
  margin-bottom: 1.5rem;
}

.product-info__options label {
  font-size: .85rem; font-weight: 600;
  margin-bottom: .25rem;
  display: block;
}

.product-info__options select {
  width: 100%;
  padding: .7rem .9rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--white);
  font-size: .92rem;
}

.qty-picker {
  display: flex; align-items: center; gap: .5rem;
}

.qty-picker button {
  width: 40px; height: 40px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 1.1rem;
  display: flex; align-items: center; justify-content: center;
  transition: all var(--transition);
}

.qty-picker button:hover {
  background: var(--bg-alt);
}

.qty-picker input {
  width: 56px; height: 40px;
  text-align: center;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: .92rem;
}

.product-actions {
  display: flex; gap: .75rem;
  margin-bottom: 2rem;
}

/* Product Tabs */
.product-tabs {
  border-top: 1px solid var(--border);
  padding-top: 2rem;
}

.tab-nav {
  display: flex; gap: 1.5rem;
  border-bottom: 1px solid var(--border);
  margin-bottom: 1.5rem;
}

.tab-nav button {
  padding: .75rem 0;
  font-size: .9rem; font-weight: 600;
  color: var(--text-muted);
  border-bottom: 2px solid transparent;
  transition: all var(--transition);
}

.tab-nav button.active {
  color: var(--brand);
  border-bottom-color: var(--brand);
}

.tab-panel { display: none; }
.tab-panel.active { display: block; }

/* ---------- Forms ---------- */
.form-group {
  margin-bottom: 1.25rem;
}

.form-group label {
  display: block;
  font-size: .85rem;
  font-weight: 600;
  margin-bottom: .35rem;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: .75rem .9rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--white);
  font-size: .92rem;
  transition: border-color var(--transition);
  outline: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--brand);
}

.form-group textarea { resize: vertical; min-height: 120px; }

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

/* ---------- Cart Page ---------- */
.cart-page {
  padding-top: calc(var(--nav-h) + 2rem);
  padding-bottom: 4rem;
}

.cart-empty {
  text-align: center;
  padding: 4rem 0;
}

.cart-empty h3 { margin-bottom: .5rem; }
.cart-empty p { color: var(--text-muted); margin-bottom: 1.5rem; }

.cart-layout {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 2.5rem;
}

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

.cart-item__img {
  width: 100px; height: 125px;
  border-radius: var(--radius-sm);
  background: var(--bg-alt);
  flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}

.cart-item__info { flex: 1; }

.cart-item__info h4 {
  font-size: .95rem;
  margin-bottom: .25rem;
}

.cart-item__info .variant {
  font-size: .82rem;
  color: var(--text-muted);
  margin-bottom: .75rem;
}

.cart-item__bottom {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem;
}

.cart-item__price {
  font-size: 1.05rem; font-weight: 700;
  color: var(--brand);
}

.cart-item__remove {
  font-size: .82rem;
  color: var(--text-muted);
  text-decoration: underline;
  cursor: pointer;
}

.cart-item__remove:hover { color: var(--brand); }

.cart-summary {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  position: sticky;
  top: calc(var(--nav-h) + 1.5rem);
  align-self: start;
}

.cart-summary h4 { margin-bottom: 1.25rem; }

.summary-row {
  display: flex; justify-content: space-between;
  padding: .6rem 0;
  font-size: .9rem;
}

.summary-row.total {
  border-top: 1px solid var(--border);
  margin-top: .5rem;
  padding-top: 1rem;
  font-size: 1.1rem;
  font-weight: 700;
}

.summary-row.total .price { color: var(--brand); }

.free-shipping-bar {
  background: var(--bg-alt);
  border-radius: 40px;
  height: 8px;
  margin: 1rem 0;
  overflow: hidden;
}

.free-shipping-bar__fill {
  height: 100%;
  background: var(--accent);
  border-radius: 40px;
  transition: width .5s ease;
}

.free-shipping-text {
  font-size: .78rem;
  color: var(--text-muted);
  text-align: center;
  margin-bottom: 1rem;
}

/* ---------- Checkout ---------- */
.checkout-page {
  padding-top: calc(var(--nav-h) + 2rem);
  padding-bottom: 4rem;
}

.checkout-layout {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 3rem;
}

.checkout-section {
  margin-bottom: 2rem;
}

.checkout-section h3 {
  font-size: 1.15rem;
  margin-bottom: 1.25rem;
  padding-bottom: .75rem;
  border-bottom: 1px solid var(--border);
}

.checkout-order {
  background: var(--bg-alt);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  position: sticky;
  top: calc(var(--nav-h) + 1.5rem);
}

.checkout-order h4 { margin-bottom: 1rem; }

.checkout-order .order-item {
  display: flex; justify-content: space-between; align-items: center;
  padding: .6rem 0;
  font-size: .9rem;
}

.checkout-order .order-item:not(:last-child) {
  border-bottom: 1px solid var(--border);
}

/* ---------- Cookie Banner ---------- */
.cookie-banner {
  position: fixed;
  bottom: 1rem; left: 1rem; right: 1rem;
  max-width: 480px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1.25rem;
  box-shadow: var(--shadow-lg);
  z-index: 9999;
  display: none;
}

.cookie-banner.visible { display: block; }

.cookie-banner p {
  font-size: .85rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
  line-height: 1.6;
}

.cookie-banner__actions {
  display: flex; gap: .5rem;
}

/* ---------- Toast ---------- */
.toast {
  position: fixed;
  bottom: 2rem; left: 50%;
  transform: translateX(-50%) translateY(100px);
  background: var(--text);
  color: #fff;
  padding: .85rem 1.5rem;
  border-radius: 40px;
  font-size: .88rem;
  font-weight: 500;
  z-index: 9999;
  opacity: 0;
  transition: all .3s ease;
  pointer-events: none;
}

.toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* ---------- Page Header (inner pages) ---------- */
.page-header {
  padding-top: calc(var(--nav-h) + 3rem);
  padding-bottom: 2rem;
  text-align: center;
}

.page-header h1 {
  margin-bottom: .5rem;
}

.page-header p {
  color: var(--text-muted);
  max-width: 560px;
  margin: 0 auto;
}

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .product-detail__grid { grid-template-columns: 1fr; gap: 2rem; }
  .cart-layout { grid-template-columns: 1fr; }
  .checkout-layout { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .hero__grid { grid-template-columns: 1fr; gap: 2rem; }
  .hero { min-height: auto; padding: calc(var(--nav-h) + 2rem) 0 3rem; }
  .hero__text { text-align: center; max-width: 100%; }
  .hero__cta { justify-content: center; }
  .hero__trust { justify-content: center; }
  .props-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .insta-grid { grid-template-columns: repeat(2, 1fr); }
  .story-grid { grid-template-columns: 1fr; gap: 2rem; }
  .shop-layout { grid-template-columns: 1fr; }
  .shop-filters { position: static; display: flex; flex-wrap: wrap; gap: 1.5rem; }
  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .product-actions { flex-direction: column; }
}

@media (max-width: 480px) {
  .product-grid { grid-template-columns: 1fr; }
  .section { padding: 3rem 0; }
}
