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

:root {
  --primary: #E91E8C;
  --primary-dark: #C4176F;
  --secondary: #F5A623;
  --cream: #FFF8E7;
  --dark: #2D1B0E;
  --gray: #666;
  --light-gray: #f5f5f5;
  --white: #ffffff;
  --shadow: 0 2px 10px rgba(0,0,0,0.1);
  --radius: 8px;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
  line-height: 1.6;
  color: var(--dark);
  background: var(--white);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

a {
  color: var(--primary);
  text-decoration: none;
  transition: color 0.3s;
}

a:hover {
  color: var(--primary-dark);
}

img {
  max-width: 100%;
  height: auto;
}

/* Header */
.site-header {
  background: var(--white);
  box-shadow: var(--shadow);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 15px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.site-logo a {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
  display: flex;
  align-items: center;
  gap: 8px;
}

.site-logo a:hover {
  color: var(--primary-dark);
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--dark);
  padding: 5px;
}

.main-nav ul {
  list-style: none;
  display: flex;
  gap: 25px;
  align-items: center;
}

.main-nav a {
  color: var(--dark);
  font-weight: 500;
  padding: 5px 0;
  position: relative;
}

.main-nav a:hover,
.main-nav a.active {
  color: var(--primary);
}

.main-nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: width 0.3s;
}

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

/* Promo Banner */
.promo-banner {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: var(--white);
  text-align: center;
  padding: 12px 20px;
  font-weight: 600;
  font-size: 0.95rem;
}

.promo-banner span {
  font-size: 1.1rem;
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, var(--cream) 0%, #ffe0f0 100%);
  padding: 80px 20px;
  text-align: center;
}

.hero h1 {
  font-size: 2.8rem;
  color: var(--dark);
  margin-bottom: 20px;
  line-height: 1.2;
}

.hero p {
  font-size: 1.2rem;
  color: var(--gray);
  max-width: 600px;
  margin: 0 auto 30px;
}

.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s;
  border: none;
  text-align: center;
}

.btn-primary {
  background: var(--primary);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--primary-dark);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(233, 30, 140, 0.3);
}

.btn-secondary {
  background: var(--secondary);
  color: var(--white);
}

.btn-secondary:hover {
  background: #e09520;
  color: var(--white);
  transform: translateY(-2px);
}

/* Sections */
.section {
  padding: 60px 20px;
}

.section-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.section-title {
  font-size: 2rem;
  text-align: center;
  margin-bottom: 40px;
  color: var(--dark);
}

/* Product Grid */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.product-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.product-card-img {
  width: 100%;
  height: 200px;
  background: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
}

.product-card-body {
  padding: 20px;
}

.product-card-body h3 {
  margin-bottom: 8px;
  color: var(--dark);
}

.product-card-body p {
  color: var(--gray);
  font-size: 0.9rem;
  margin-bottom: 15px;
}

.product-price {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--primary);
}

/* Features */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.feature-card {
  text-align: center;
  padding: 30px 20px;
  border-radius: var(--radius);
  background: var(--light-gray);
}

.feature-icon {
  font-size: 2.5rem;
  margin-bottom: 15px;
}

.feature-card h3 {
  margin-bottom: 10px;
  color: var(--dark);
}

.feature-card p {
  color: var(--gray);
  font-size: 0.9rem;
}

/* Bonus Section */
.bonus-section {
  background: linear-gradient(135deg, var(--primary), #ff6b9d);
  color: var(--white);
  text-align: center;
  padding: 60px 20px;
}

.bonus-section h2 {
  font-size: 2.2rem;
  margin-bottom: 15px;
}

.bonus-section p {
  font-size: 1.1rem;
  margin-bottom: 25px;
  opacity: 0.9;
}

.bonus-points {
  font-size: 3rem;
  font-weight: 800;
  display: block;
  margin-bottom: 10px;
}

/* Form */
.form-container {
  max-width: 600px;
  margin: 0 auto;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 6px;
  font-weight: 500;
  color: var(--dark);
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid #ddd;
  border-radius: var(--radius);
  font-size: 1rem;
  font-family: inherit;
  transition: border-color 0.3s;
}

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

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

/* Page Content */
.page-header {
  background: var(--cream);
  padding: 50px 20px;
  text-align: center;
}

.page-header h1 {
  font-size: 2.2rem;
  color: var(--dark);
  margin-bottom: 10px;
}

.page-header p {
  color: var(--gray);
  font-size: 1.1rem;
}

.page-content {
  max-width: 900px;
  margin: 0 auto;
  padding: 40px 20px;
}

.page-content h2 {
  font-size: 1.5rem;
  margin: 30px 0 15px;
  color: var(--dark);
}

.page-content p,
.page-content li {
  color: var(--gray);
  margin-bottom: 12px;
  line-height: 1.7;
}

.page-content ul {
  padding-left: 20px;
  margin-bottom: 20px;
}

/* Thank You */
.thank-you-section {
  text-align: center;
  padding: 100px 20px;
}

.thank-you-section .icon {
  font-size: 4rem;
  margin-bottom: 20px;
}

.thank-you-section h1 {
  font-size: 2.5rem;
  color: var(--dark);
  margin-bottom: 15px;
}

.thank-you-section p {
  font-size: 1.1rem;
  color: var(--gray);
  margin-bottom: 30px;
}

/* Footer */
.site-footer {
  background: var(--dark);
  color: var(--white);
  padding: 50px 20px 20px;
  margin-top: auto;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
}

.footer-col h4 {
  margin-bottom: 15px;
  font-size: 1.1rem;
}

.footer-col p,
.footer-col a {
  color: rgba(255,255,255,0.7);
  font-size: 0.9rem;
  line-height: 2;
}

.footer-col a:hover {
  color: var(--white);
}

.footer-col ul {
  list-style: none;
}

.footer-bottom {
  max-width: 1200px;
  margin: 30px auto 0;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.1);
  text-align: center;
  color: rgba(255,255,255,0.5);
  font-size: 0.85rem;
}

/* Cookie Banner */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--dark);
  color: var(--white);
  padding: 20px;
  z-index: 9999;
  box-shadow: 0 -2px 10px rgba(0,0,0,0.2);
  display: none;
}

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

.cookie-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.cookie-inner p {
  flex: 1;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.9);
}

.cookie-inner a {
  color: var(--secondary);
}

.cookie-buttons {
  display: flex;
  gap: 10px;
}

.cookie-btn {
  padding: 10px 20px;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.9rem;
  transition: opacity 0.3s;
}

.cookie-btn:hover {
  opacity: 0.9;
}

.cookie-accept {
  background: var(--primary);
  color: var(--white);
}

.cookie-decline {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.3);
}

/* Contact Info */
.contact-info {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-bottom: 40px;
}

.contact-item {
  text-align: center;
  padding: 30px 20px;
  background: var(--light-gray);
  border-radius: var(--radius);
}

.contact-item .icon {
  font-size: 2rem;
  margin-bottom: 10px;
}

.contact-item h3 {
  margin-bottom: 8px;
}

.contact-item p {
  color: var(--gray);
  font-size: 0.9rem;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .nav-toggle {
    display: block;
  }

  .main-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--white);
    box-shadow: -2px 0 10px rgba(0,0,0,0.1);
    transition: right 0.3s;
    z-index: 2000;
    padding: 60px 30px 30px;
  }

  .main-nav.open {
    right: 0;
  }

  .main-nav ul {
    flex-direction: column;
    gap: 15px;
  }

  .main-nav a {
    font-size: 1.1rem;
    display: block;
    padding: 10px 0;
  }

  .nav-close {
    position: absolute;
    top: 15px;
    right: 20px;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--dark);
  }

  .nav-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.5);
    z-index: 1500;
  }

  .nav-overlay.show {
    display: block;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .hero p {
    font-size: 1rem;
  }

  .section-title {
    font-size: 1.6rem;
  }

  .bonus-section h2 {
    font-size: 1.6rem;
  }

  .bonus-points {
    font-size: 2.2rem;
  }

  .cookie-inner {
    flex-direction: column;
    text-align: center;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .header-inner {
    padding: 12px 15px;
  }
}

@media (max-width: 480px) {
  .hero {
    padding: 50px 15px;
  }

  .hero h1 {
    font-size: 1.7rem;
  }

  .section {
    padding: 40px 15px;
  }

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

  .btn {
    padding: 12px 24px;
    font-size: 0.9rem;
  }
}