/* ============================================
   N e G Presentes - Ovos de Páscoa 2026
   Style Sheet - Mobile-First Elegant Easter
   ============================================ */

/* ---------- CSS CUSTOM PROPERTIES ---------- */
:root {
  --red:        #c0392b;
  --red-light:  #e74c3c;
  --red-dark:   #922b21;
  --gold:       #c9973a;
  --gold-light: #f0c060;
  --gold-dark:  #9a6f1e;
  --green:      #4a9e6b;
  --green-light:#7ec59a;
  --white:      #ffffff;
  --bg-soft:    #fdf8f2;
  --bg-cream:   #fef4e8;
  --text-dark:  #1a1209;
  --text-body:  #3d3020;
  --text-muted: #7a6650;
  --border:     rgba(201,151,58,.18);

  --shadow-sm:  0 2px 8px rgba(26,18,9,.07);
  --shadow-md:  0 6px 24px rgba(26,18,9,.11);
  --shadow-lg:  0 16px 48px rgba(26,18,9,.15);
  --shadow-red: 0 8px 28px rgba(192,57,43,.30);
  --shadow-gold:0 8px 28px rgba(201,151,58,.30);

  --radius-sm:  8px;
  --radius-md:  16px;
  --radius-lg:  24px;
  --radius-xl:  36px;

  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body:    'Inter', system-ui, sans-serif;

  --header-h: 70px;
  --transition: .3s cubic-bezier(.4,0,.2,1);
}

/* ---------- RESET ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  background: var(--bg-soft);
  color: var(--text-body);
  line-height: 1.6;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; }

/* ---------- UTILITIES ---------- */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ---------- WHATSAPP FLOAT ---------- */
#whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 1000;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 14px 20px;
  background: #25d366;
  color: #fff;
  border-radius: 50px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: .9rem;
  box-shadow: 0 4px 20px rgba(37,211,102,.45);
  transition: transform var(--transition), box-shadow var(--transition);
}
#whatsapp-float svg { width: 22px; height: 22px; flex-shrink: 0; }
#whatsapp-float:hover {
  transform: translateY(-3px) scale(1.04);
  box-shadow: 0 8px 30px rgba(37,211,102,.55);
}
#whatsapp-float span { display: none; }
@media (min-width: 480px) {
  #whatsapp-float span { display: inline; }
}

/* ---------- HEADER ---------- */
#site-header {
  position: sticky;
  top: 0;
  z-index: 900;
  height: var(--header-h);
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition);
}
#site-header.scrolled { box-shadow: var(--shadow-md); }

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  gap: 16px;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.logo-icon {
  font-size: 1.8rem;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,.15));
  transition: transform var(--transition);
}
.logo:hover .logo-icon { transform: rotate(-8deg) scale(1.1); }
.logo-text { display: flex; flex-direction: column; line-height: 1.1; }
.logo-name {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-dark);
  letter-spacing: .02em;
}
.logo-sub {
  font-size: .72rem;
  color: var(--gold);
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
}

/* Nav */
#main-nav {
  display: none;
}
#main-nav.open {
  display: flex;
  position: absolute;
  top: var(--header-h);
  left: 0; right: 0;
  background: rgba(255,255,255,.98);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  padding: 8px 0 20px;
  box-shadow: var(--shadow-md);
  animation: slideDown .25s ease;
}
@keyframes slideDown {
  from { opacity: 0; transform: translateY(-8px); }
  to   { opacity: 1; transform: translateY(0); }
}
#main-nav ul {
  display: flex;
  flex-direction: column;
  width: 100%;
  gap: 2px;
}
#main-nav a {
  display: block;
  padding: 14px 24px;
  font-weight: 500;
  font-size: 1rem;
  color: var(--text-body);
  transition: background var(--transition), color var(--transition);
  border-radius: var(--radius-sm);
  margin: 0 12px;
}
#main-nav a:hover { background: var(--bg-cream); color: var(--red); }

.menu-toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  border-radius: var(--radius-sm);
  transition: background var(--transition);
}
.menu-toggle:hover { background: var(--bg-cream); }
.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text-dark);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}
.menu-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle.active span:nth-child(2) { opacity: 0; }
.menu-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* WhatsApp header button */
.btn-whatsapp-header {
  display: none;
  align-items: center;
  gap: 7px;
  padding: 9px 18px;
  background: #25d366;
  color: #fff;
  border-radius: 50px;
  font-size: .85rem;
  font-weight: 600;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
  box-shadow: 0 2px 10px rgba(37,211,102,.3);
  flex-shrink: 0;
}
.btn-whatsapp-header:hover {
  background: #1ebe5a;
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(37,211,102,.4);
}

@media (min-width: 768px) {
  .menu-toggle { display: none; }
  .btn-whatsapp-header { display: flex; }
  #main-nav {
    display: flex !important;
    position: static;
    background: none;
    backdrop-filter: none;
    border: none;
    padding: 0;
    box-shadow: none;
    animation: none;
    flex: 1;
    justify-content: center;
  }
  #main-nav ul {
    flex-direction: row;
    gap: 4px;
    width: auto;
    align-items: center;
  }
  #main-nav a {
    padding: 8px 14px;
    font-size: .9rem;
    margin: 0;
  }
}

/* ---------- HERO ---------- */
.hero {
  position: relative;
  min-height: calc(100svh - var(--header-h));
  min-height: calc(100vh - var(--header-h));
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: brightness(.45) saturate(1.1);
  transition: transform 12s ease;
}
.hero:hover .hero-bg-img { transform: scale(1.04); }
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg,
      rgba(26,18,9,.7) 0%,
      rgba(192,57,43,.25) 40%,
      rgba(201,151,58,.12) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: 60px 20px;
  max-width: 720px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,.12);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.2);
  color: var(--gold-light);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  margin-bottom: 20px;
  animation: fadeInUp .6s ease both;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 7vw, 4.2rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.12;
  margin-bottom: 28px;
  animation: fadeInUp .7s .1s ease both;
}
.hero-title-highlight {
  color: var(--gold-light);
  display: inline-block;
  position: relative;
}

.hero-subtitle {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 36px;
  animation: fadeInUp .7s .2s ease both;
}
.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: rgba(255,255,255,.15);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255,255,255,.18);
  color: #fff;
  padding: 7px 14px;
  border-radius: 50px;
  font-size: .88rem;
  font-weight: 500;
}
.hero-pill-gold {
  background: rgba(201,151,58,.25);
  border-color: rgba(201,151,58,.4);
  color: var(--gold-light);
  font-weight: 700;
}
.hero-pill-green {
  background: rgba(74,158,107,.2);
  border-color: rgba(74,158,107,.3);
  color: #90e6b0;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 40px;
  animation: fadeInUp .7s .3s ease both;
}

.btn-hero {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  background: linear-gradient(135deg, var(--red) 0%, var(--red-dark) 100%);
  color: #fff;
  border-radius: 50px;
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: .02em;
  box-shadow: var(--shadow-red);
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
  position: relative;
  overflow: hidden;
}
.btn-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,.2) 0%, transparent 60%);
  opacity: 0;
  transition: opacity var(--transition);
}
.btn-hero:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 12px 36px rgba(192,57,43,.45);
}
.btn-hero:hover::before { opacity: 1; }

.btn-hero-outline {
  display: inline-flex;
  align-items: center;
  padding: 15px 28px;
  border: 2px solid rgba(255,255,255,.5);
  color: #fff;
  border-radius: 50px;
  font-size: .95rem;
  font-weight: 600;
  backdrop-filter: blur(4px);
  background: rgba(255,255,255,.08);
  transition: background var(--transition), border-color var(--transition), transform var(--transition);
}
.btn-hero-outline:hover {
  background: rgba(255,255,255,.18);
  border-color: rgba(255,255,255,.8);
  transform: translateY(-2px);
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  animation: fadeInUp .7s .4s ease both;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 6px;
  color: rgba(255,255,255,.8);
  font-size: .85rem;
  font-weight: 500;
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
}
.scroll-dot {
  width: 6px;
  height: 6px;
  background: rgba(255,255,255,.7);
  border-radius: 50%;
  animation: bounceScroll 2s infinite;
}
@keyframes bounceScroll {
  0%, 100% { transform: translateY(0); opacity: .5; }
  50% { transform: translateY(-8px); opacity: 1; }
}

/* ---------- DIVIDER ---------- */
.section-divider svg { display: block; width: 100%; height: 50px; }

/* ---------- BENEFITS BAR ---------- */
.benefits-bar {
  background: var(--white);
  padding: 28px 0;
  border-bottom: 1px solid var(--border);
}
.benefits-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px 40px;
}
.benefit-item {
  display: flex;
  align-items: center;
  gap: 12px;
}
.benefit-icon {
  font-size: 1.6rem;
  flex-shrink: 0;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,.1));
}
.benefit-item div {
  display: flex;
  flex-direction: column;
  line-height: 1.3;
}
.benefit-item strong {
  font-size: .9rem;
  font-weight: 700;
  color: var(--text-dark);
}
.benefit-item span {
  font-size: .78rem;
  color: var(--text-muted);
}

/* ---------- SECTION SHARED ---------- */
.section-header {
  text-align: center;
  margin-bottom: 48px;
}
.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--bg-cream);
  border: 1px solid var(--border);
  color: var(--gold-dark);
  padding: 6px 18px;
  border-radius: 50px;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.section-title {
  font-family: var(--font-heading);
  font-size: clamp(1.7rem, 4.5vw, 2.8rem);
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.2;
  margin-bottom: 14px;
}
.section-desc {
  color: var(--text-muted);
  font-size: .97rem;
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ---------- PRODUCTS ---------- */
.products-section {
  padding: 72px 0;
  background: var(--bg-soft);
}

.products-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

@media (min-width: 900px) {
  .products-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
  }
}

/* Card */
.product-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: transform var(--transition), box-shadow var(--transition);
  display: flex;
  flex-direction: column;
}
.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.card-limited {
  border-color: rgba(192,57,43,.25);
  background: linear-gradient(160deg, #fff 0%, #fff9f8 100%);
}

/* Card image */
.card-img-wrap {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: var(--bg-cream);
}
.card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.product-card:hover .card-img { transform: scale(1.06); }

/* Placeholder images */
.card-img-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.placeholder-infantil {
  background: linear-gradient(135deg, #ff9a9e 0%, #fad0c4 40%, #ffecd2 100%);
}
.placeholder-premium {
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
}
.placeholder-especial {
  background: linear-gradient(135deg, var(--gold-dark) 0%, var(--gold) 50%, var(--gold-light) 100%);
}
.placeholder-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 20px;
  text-align: center;
}
.placeholder-emoji { font-size: 3rem; filter: drop-shadow(0 4px 8px rgba(0,0,0,.2)); }
.placeholder-text {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: .9rem;
  color: rgba(255,255,255,.9);
  text-shadow: 0 2px 8px rgba(0,0,0,.3);
}

/* Badges */
.card-badges {
  position: absolute;
  bottom: 10px;
  left: 10px;
  right: 10px;
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}
.badge {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  padding: 4px 10px;
  border-radius: 50px;
  font-size: .7rem;
  font-weight: 700;
  backdrop-filter: blur(6px);
}
.badge-frete {
  background: rgba(74,158,107,.88);
  color: #fff;
}
.badge-sold {
  background: rgba(192,57,43,.88);
  color: #fff;
}

/* Card tag (top right) */
.card-tag {
  position: absolute;
  top: 12px;
  right: 12px;
  background: linear-gradient(135deg, var(--red) 0%, var(--red-dark) 100%);
  color: #fff;
  padding: 4px 10px;
  border-radius: 50px;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .04em;
  box-shadow: 0 2px 8px rgba(192,57,43,.4);
}
.card-tag-gold {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  box-shadow: 0 2px 8px rgba(201,151,58,.4);
}
.card-tag-green {
  background: linear-gradient(135deg, var(--green) 0%, #2d7a50 100%);
  box-shadow: 0 2px 8px rgba(74,158,107,.4);
}
.card-tag-red { /* inherits default */ }

/* Card body */
.card-body {
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}
.card-name {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.3;
}
.card-desc {
  font-size: .82rem;
  color: var(--text-muted);
  line-height: 1.55;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  flex: 1;
}
.card-price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.card-label {
  font-size: .75rem;
  color: var(--text-muted);
  margin-right: 4px;
}
.card-price {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--red);
  font-family: var(--font-heading);
  letter-spacing: -.01em;
}

.btn-buy {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 13px 16px;
  background: linear-gradient(135deg, var(--red) 0%, var(--red-dark) 100%);
  color: #fff;
  border-radius: var(--radius-md);
  font-size: .88rem;
  font-weight: 700;
  letter-spacing: .02em;
  box-shadow: 0 4px 12px rgba(192,57,43,.25);
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
  position: relative;
  overflow: hidden;
}
.btn-buy::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(255,255,255,.15) 0%, transparent 60%);
  transform: translateX(-100%);
  transition: transform .4s ease;
}
.btn-buy:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(192,57,43,.38);
  background: linear-gradient(135deg, var(--red-light) 0%, var(--red) 100%);
}
.btn-buy:hover::before { transform: translateX(100%); }

/* ---------- ABOUT SECTION ---------- */
.about-section {
  padding: 80px 0;
  background: var(--white);
}
.about-inner {
  display: flex;
  flex-direction: column;
  gap: 48px;
  align-items: center;
}

.about-image-col {
  position: relative;
  flex-shrink: 0;
}
.about-img-card {
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--bg-cream) 0%, #fde8d0 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 3px solid var(--border);
  box-shadow: var(--shadow-md);
  overflow: hidden;
  position: relative;
}
.about-img-egg {
  font-size: 6rem;
  animation: float 4s ease-in-out infinite;
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}
.about-img-shimmer {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,.5) 0%, transparent 60%);
  border-radius: 50%;
}

.about-stat {
  position: absolute;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 10px 16px;
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
  line-height: 1.2;
  bottom: 10px;
  right: -20px;
}
.about-stat-2 { bottom: auto; top: 10px; left: -20px; right: auto; }
.about-stat strong {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--text-dark);
}
.about-stat span {
  font-size: .72rem;
  color: var(--text-muted);
}

.about-text-col {
  max-width: 560px;
}
.about-text-col .section-tag { margin-bottom: 12px; }
.about-text-col .section-title { text-align: left; margin-bottom: 20px; }
.about-text-col p {
  color: var(--text-muted);
  font-size: .95rem;
  line-height: 1.75;
  margin-bottom: 14px;
}
.about-text-col strong { color: var(--text-dark); }

.about-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 20px 0 28px;
}
.about-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .9rem;
  color: var(--text-body);
}
.about-list li span {
  font-size: 1rem;
  flex-shrink: 0;
}

.btn-about {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  background: linear-gradient(135deg, #25d366 0%, #1abe5a 100%);
  color: #fff;
  border-radius: 50px;
  font-weight: 700;
  font-size: .95rem;
  box-shadow: 0 4px 16px rgba(37,211,102,.3);
  transition: transform var(--transition), box-shadow var(--transition);
}
.btn-about:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(37,211,102,.45);
}

@media (min-width: 860px) {
  .about-inner {
    flex-direction: row;
    align-items: center;
    gap: 80px;
  }
  .about-text-col .section-title { font-size: 2.4rem; }
}

/* ---------- TESTIMONIALS ---------- */
.testimonials-section {
  padding: 80px 0;
  background: var(--bg-cream);
}
.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
@media (min-width: 640px) {
  .testimonials-grid { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 960px) {
  .testimonials-grid { grid-template-columns: repeat(3, 1fr); }
}

.testimonial-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.testimonial-stars {
  color: var(--gold);
  font-size: 1.1rem;
  letter-spacing: 2px;
}
.testimonial-card p {
  font-size: .92rem;
  color: var(--text-body);
  line-height: 1.7;
  flex: 1;
  font-style: italic;
}
.testimonial-card footer {
  display: flex;
  flex-direction: column;
  gap: 2px;
  border-top: 1px solid var(--border);
  padding-top: 14px;
}
.testimonial-card footer strong {
  font-size: .9rem;
  color: var(--text-dark);
  font-style: normal;
}
.testimonial-card footer span {
  font-size: .78rem;
  color: var(--text-muted);
}

/* ---------- CONTACT ---------- */
.contact-section {
  padding: 80px 0;
  background: var(--white);
}
.contact-inner { display: flex; flex-direction: column; align-items: center; gap: 48px; }
.contact-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  width: 100%;
  max-width: 800px;
}
.contact-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 22px 28px;
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
  flex: 1;
  min-width: 220px;
}
a.contact-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.contact-card-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-card-icon-green { background: rgba(37,211,102,.12); color: #25d366; }
.contact-card-icon-gold  { background: rgba(201,151,58,.12);  color: var(--gold); }
.contact-card-icon-red   { background: rgba(192,57,43,.1);    color: var(--red); }

.contact-card div {
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.contact-card strong {
  font-size: .95rem;
  font-weight: 700;
  color: var(--text-dark);
}
.contact-card span {
  font-size: .82rem;
  color: var(--text-muted);
}

/* ---------- FOOTER ---------- */
.site-footer {
  background: var(--text-dark);
  color: rgba(255,255,255,.7);
  padding: 40px 0 28px;
}
.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  text-align: center;
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
.footer-logo-icon { font-size: 2rem; }
.footer-logo div { display: flex; flex-direction: column; line-height: 1.2; text-align: left; }
.footer-brand {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--white);
}
.footer-tagline { font-size: .72rem; color: var(--gold-light); letter-spacing: .05em; }

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 6px 20px;
}
.footer-nav a {
  font-size: .84rem;
  color: rgba(255,255,255,.6);
  transition: color var(--transition);
}
.footer-nav a:hover { color: var(--gold-light); }

.footer-copy {
  font-size: .78rem;
  color: rgba(255,255,255,.35);
  border-top: 1px solid rgba(255,255,255,.08);
  width: 100%;
  padding-top: 20px;
  margin-top: 4px;
}

/* ---------- ANIMATIONS ---------- */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Reveal on scroll */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .6s ease, transform .6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: none;
}
.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }
.reveal-delay-4 { transition-delay: .4s; }

/* ---------- RESPONSIVE FINE-TUNING ---------- */
@media (max-width: 480px) {
  .products-grid { grid-template-columns: 1fr 1fr; gap: 14px; }
  .card-body { padding: 14px; gap: 8px; }
  .card-name { font-size: .92rem; }
  .card-price { font-size: 1.15rem; }
  .btn-buy { font-size: .78rem; padding: 11px 10px; }
  .hero-content { padding: 40px 20px; }
  .about-stat { display: none; }
  .badge { font-size: .6rem; padding: 3px 7px; }
  .hero-trust { gap: 12px; }
  .trust-item { font-size: .78rem; }
}

@media (max-width: 360px) {
  .products-grid { grid-template-columns: 1fr; }
  .card-img-wrap { aspect-ratio: 4/3; }
}

/* ---------- SELECTION COLOR ---------- */
::selection {
  background: rgba(192,57,43,.2);
  color: var(--red-dark);
}

/* ---------- FOCUS STYLES (ACCESSIBILITY) ---------- */
:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: 4px;
}
