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

:root {
  --primary: #e63946;
  --primary-dark: #c1121f;
  --secondary: #1d3557;
  --accent: #f4a261;
  --light: #f8f9fa;
  --dark: #1a1a2e;
  --text: #333;
  --text-muted: #666;
  --border: #e0e0e0;
  --white: #ffffff;
  --shadow: 0 4px 20px rgba(0,0,0,0.08);
  --radius: 12px;
  --transition: all 0.3s ease;
}
.hero-img-placeholder {
    width: 500px;
    height: 500px;
    border-radius: 50%;
    overflow: hidden;
    position: relative;
}

.hero-img {
    width: 145%;
    height: 145%;
    object-fit: cover;
    margin-bottom: 0.6cm;
    transform: translateX(4px);/* moves image up */
}
body { font-family: 'Poppins', sans-serif; color: var(--text); background: var(--white); overflow-x: hidden; }

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

.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

.btn-primary {
  background: var(--primary);
  color: white;
  padding: 12px 28px;
  border: 2px solid var(--primary);
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  display: inline-block;
  font-size: 0.95rem;
}
.btn-primary:hover { background: var(--primary-dark); border-color: var(--primary-dark); transform: translateY(-2px); }

.btn-outline {
  background: transparent;
  color: var(--primary);
  padding: 12px 28px;
  border: 2px solid var(--primary);
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  display: inline-block;
  font-size: 0.95rem;
}
.btn-outline:hover { background: var(--primary); color: white; transform: translateY(-2px); }

.full-width { width: 100%; text-align: center; display: block; margin-bottom: 10px; }

.section { padding: 70px 0; }
.bg-light { background: var(--light); }
.bg-dark { background: var(--secondary); color: white; }

.section-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 40px; }
.section-header h2 { font-size: 2rem; font-weight: 700; color: var(--secondary); }
.section-header.light h2 { color: white; }
.view-all { color: var(--primary); font-weight: 600; transition: var(--transition); }
.view-all:hover { letter-spacing: 1px; }

/* TOPBAR */
.topbar { background: var(--secondary); color: white; text-align: center; padding: 8px; font-size: 0.85rem; }

/* HERO */
.hero {
  min-height: 90vh;
  background: linear-gradient(135deg, var(--secondary) 0%, #16213e 60%, var(--dark) 100%);
  display: flex;
  align-items: center;
  padding: 100px 20px 60px;
  gap: 60px;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(230,57,70,0.15) 0%, transparent 70%);
  top: -100px; right: -100px;
  border-radius: 50%;
}
.hero-content { max-width: 580px; z-index: 1; }
.hero-eyebrow { background: var(--primary); color: white; padding: 4px 14px; border-radius: 20px; font-size: 0.8rem; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; }
.hero-content h1 { font-size: 3.5rem; font-weight: 800; color: white; line-height: 1.15; margin: 20px 0 16px; }
.highlight { color: var(--primary); }
.hero-content p { color: rgba(255,255,255,0.75); font-size: 1.1rem; line-height: 1.7; margin-bottom: 30px; }
.hero-btns { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 40px; }
.hero-stats { display: flex; gap: 30px; }
.hero-stats div { display: flex; flex-direction: column; }
.hero-stats strong { font-size: 1.6rem; color: white; font-weight: 800; }
.hero-stats span { font-size: 0.8rem; color: rgba(255,255,255,0.6); }

.hero-visual { position: relative; z-index: 1; }
.hero-badge {
  position: absolute; top: -20px; right: -10px;
  background: var(--accent); color: white;
  padding: 8px 18px; border-radius: 20px;
  font-weight: 700; font-size: 0.9rem;
  box-shadow: 0 4px 15px rgba(244,162,97,0.4);
}
.hero-img-placeholder {
  width: 320px; height: 320px;
  background: rgba(255,255,255,0.05);
  border: 2px solid rgba(255,255,255,0.1);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 8rem; color: rgba(255,255,255,0.15);
}

.categories-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; }

.cat-baby .cat-icon { color: #9c27b0; }
.cat-pet .cat-icon { color: #4caf50; }
.cat-card:hover { border-color: var(--primary); transform: translateY(-5px); box-shadow: var(--shadow); }
.cat-icon { font-size: 2.5rem; margin-bottom: 14px; }
.cat-all .cat-icon { color: var(--secondary); }
.cat-beauty .cat-icon { color: #e91e8c; }
.cat-kitchen .cat-icon { color: var(--accent); }
.cat-tech .cat-icon { color: #2196f3; }
.cat-card h3 { font-size: 1rem; font-weight: 700; margin-bottom: 6px; color: var(--secondary); }
.cat-card span { font-size: 0.82rem; color: var(--text-muted); }

/* PROMO BANNER */
.promo-banner { background: linear-gradient(135deg, var(--primary), var(--primary-dark)); padding: 60px 20px; text-align: center; color: white; }
.promo-content h2 { font-size: 2.2rem; font-weight: 800; margin-bottom: 12px; }
.promo-content p { font-size: 1.05rem; opacity: 0.9; margin-bottom: 24px; }
.promo-form { display: flex; gap: 12px; max-width: 480px; margin: 0 auto 16px; }
.promo-form input { flex: 1; padding: 12px 16px; border-radius: 8px; border: none; font-size: 0.95rem; outline: none; }
.promo-form .btn-primary { background: var(--secondary); border-color: var(--secondary); white-space: nowrap; }
.promo-form .btn-primary:hover { background: var(--dark); border-color: var(--dark); }

/* TESTIMONIALS */
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.testimonial-card { background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.12); border-radius: var(--radius); padding: 28px; }
.stars { color: var(--accent); font-size: 1.1rem; margin-bottom: 12px; }
.testimonial-card p { color: rgba(255,255,255,0.8); line-height: 1.7; margin-bottom: 16px; font-size: 0.95rem; }
.testimonial-card strong { color: white; font-size: 0.9rem; }

/* FEATURES */
.features-bar { padding: 50px 0; background: white; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.features-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; }
.feature { display: flex; align-items: center; gap: 16px; }
.feature i { font-size: 2rem; color: var(--primary); flex-shrink: 0; }
.feature h4 { font-size: 0.95rem; font-weight: 700; color: var(--secondary); margin-bottom: 4px; }
.feature p { font-size: 0.8rem; color: var(--text-muted); }

/* OVERLAY */
.overlay { display: none; position: fixed; inset: 0; background: rgba(0,0,0,0.5); z-index: 900; }
.overlay.active { display: block; }

/* TOAST */
.toast {
  position: fixed; bottom: 30px; right: 30px;
  background: var(--secondary); color: white;
  padding: 14px 22px; border-radius: 8px;
  font-size: 0.9rem; font-weight: 500;
  transform: translateY(100px); opacity: 0;
  transition: var(--transition); z-index: 9999;
  max-width: 300px;
}
.toast.show { transform: translateY(0); opacity: 1; }