/* ===================================
   CSS RESET & BASE STYLES
   =================================== */

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: 'Nunito', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  line-height: 1.6;
  color: #2c3e50;
  background: #fff;
  overflow-x: hidden;
}

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

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

ul {
  list-style: none;
}

/* ===================================
   CREATIVE ARTISTIC DESIGN SYSTEM
   =================================== */

:root {
  --primary: #FF6B9D;
  --primary-dark: #E5527D;
  --secondary: #4ECDC4;
  --secondary-dark: #3AB8AF;
  --accent: #FFE66D;
  --accent-dark: #FFD93D;
  --text-dark: #2c3e50;
  --text-light: #5a6c7d;
  --bg-light: #FFF9F0;
  --bg-cream: #FFF5E6;
  --white: #ffffff;
  --shadow: 0 10px 30px rgba(255, 107, 157, 0.15);
  --shadow-lg: 0 20px 60px rgba(255, 107, 157, 0.2);
  --border-radius: 20px;
  --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ===================================
   TYPOGRAPHY - CREATIVE & PLAYFUL
   =================================== */

h1, h2, h3, h4, h5, h6 {
  font-family: 'Fredoka', 'Comic Sans MS', cursive;
  font-weight: 600;
  line-height: 1.2;
  color: var(--text-dark);
  margin-bottom: 16px;
}

h1 {
  font-size: 48px;
  font-weight: 700;
  color: var(--primary);
  text-shadow: 3px 3px 0 var(--accent);
}

h2 {
  font-size: 32px;
  color: var(--secondary);
  position: relative;
  display: inline-block;
}

h2::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 60px;
  height: 4px;
  background: var(--accent);
  border-radius: 2px;
}

h3 {
  font-size: 24px;
  color: var(--primary);
}

p {
  margin-bottom: 16px;
  color: var(--text-light);
  font-size: 16px;
}

/* ===================================
   CONTAINER & LAYOUT
   =================================== */

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

.content-wrapper {
  max-width: 900px;
  margin: 0 auto;
}

/* ===================================
   HEADER - CREATIVE & COLORFUL
   =================================== */

header {
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  padding: 20px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 4px 20px rgba(255, 107, 157, 0.3);
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.logo img {
  height: 60px;
  width: auto;
  filter: brightness(0) invert(1);
  transition: var(--transition);
}

.logo:hover img {
  transform: rotate(-5deg) scale(1.1);
}

.main-nav {
  display: flex;
  gap: 24px;
  align-items: center;
  flex-wrap: wrap;
}

.main-nav a {
  color: var(--white);
  font-weight: 600;
  padding: 8px 16px;
  border-radius: 25px;
  position: relative;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  transition: var(--transition);
}

.main-nav a::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.2);
  transition: var(--transition);
}

.main-nav a:hover::before {
  left: 0;
}

.main-nav a:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255, 255, 255, 0.3);
}

/* ===================================
   MOBILE MENU - CREATIVE SLIDE
   =================================== */

.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 2000;
  background: var(--primary);
  color: var(--white);
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  font-size: 24px;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(255, 107, 157, 0.4);
  transition: var(--transition);
}

.mobile-menu-toggle:hover {
  background: var(--primary-dark);
  transform: rotate(90deg) scale(1.1);
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  max-width: 350px;
  height: 100vh;
  background: linear-gradient(180deg, var(--primary) 0%, var(--secondary) 100%);
  z-index: 1999;
  padding: 80px 30px 30px;
  transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: -10px 0 30px rgba(0, 0, 0, 0.2);
  overflow-y: auto;
}

.mobile-menu.active {
  right: 0;
}

.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: rgba(255, 255, 255, 0.2);
  color: var(--white);
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 24px;
  cursor: pointer;
  transition: var(--transition);
}

.mobile-menu-close:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: rotate(90deg);
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.mobile-nav a {
  color: var(--white);
  font-size: 18px;
  font-weight: 600;
  padding: 16px 20px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  border-radius: 15px;
  transition: var(--transition);
  border: 2px solid transparent;
}

.mobile-nav a:hover {
  background: rgba(255, 255, 255, 0.25);
  border-color: var(--white);
  transform: translateX(10px);
}

/* ===================================
   HERO SECTION - VIBRANT & PLAYFUL
   =================================== */

.hero {
  background: linear-gradient(135deg, var(--bg-cream) 0%, var(--bg-light) 100%);
  padding: 80px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: var(--accent);
  opacity: 0.1;
  border-radius: 50%;
  animation: float 6s ease-in-out infinite;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 400px;
  height: 400px;
  background: var(--secondary);
  opacity: 0.1;
  border-radius: 50%;
  animation: float 8s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-20px) rotate(5deg); }
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
}

.hero h1 {
  font-size: 56px;
  margin-bottom: 24px;
  animation: bounceIn 1s ease;
}

@keyframes bounceIn {
  0% { opacity: 0; transform: scale(0.3); }
  50% { transform: scale(1.05); }
  100% { opacity: 1; transform: scale(1); }
}

.hero-subtitle {
  font-size: 20px;
  color: var(--text-light);
  margin-bottom: 32px;
  font-weight: 600;
}

.hero-page {
  padding: 60px 20px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  color: var(--white);
}

.hero-page h1 {
  color: var(--white);
  text-shadow: 3px 3px 0 rgba(0, 0, 0, 0.2);
}

.hero-page .hero-subtitle {
  color: var(--white);
  opacity: 0.95;
}

.breadcrumb {
  text-align: left;
  margin-bottom: 20px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
}

.breadcrumb a {
  color: var(--white);
  text-decoration: underline;
}

.collection-meta {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-top: 24px;
  flex-wrap: wrap;
}

.age-range,
.price-range {
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  padding: 8px 20px;
  border-radius: 20px;
  font-weight: 600;
  border: 2px solid rgba(255, 255, 255, 0.3);
}

/* ===================================
   BUTTONS - CREATIVE & VIBRANT
   =================================== */

.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 30px;
  font-weight: 700;
  font-size: 16px;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  text-align: center;
}

.btn::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
  width: 300px;
  height: 300px;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: var(--white);
  box-shadow: 0 8px 25px rgba(255, 107, 157, 0.4);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(255, 107, 157, 0.5);
}

.btn-secondary {
  background: linear-gradient(135deg, var(--secondary) 0%, var(--secondary-dark) 100%);
  color: var(--white);
  box-shadow: 0 8px 25px rgba(78, 205, 196, 0.4);
}

.btn-secondary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(78, 205, 196, 0.5);
}

.cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 32px;
}

/* ===================================
   SECTIONS - CREATIVE LAYOUTS
   =================================== */

.section {
  margin-bottom: 60px;
  padding: 60px 20px;
}

.features {
  padding: 80px 20px;
  background: var(--bg-light);
}

.features h2 {
  text-align: center;
  margin-bottom: 50px;
}

/* ===================================
   FEATURE CARDS - ARTISTIC STYLE
   =================================== */

.features-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
  margin-top: 40px;
}

.feature-card {
  flex: 1 1 250px;
  max-width: 280px;
  background: var(--white);
  padding: 30px;
  border-radius: var(--border-radius);
  text-align: center;
  transition: var(--transition);
  box-shadow: var(--shadow);
  border: 3px solid transparent;
  position: relative;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: -3px;
  left: -3px;
  right: -3px;
  bottom: -3px;
  background: linear-gradient(135deg, var(--primary), var(--secondary), var(--accent));
  border-radius: var(--border-radius);
  opacity: 0;
  transition: var(--transition);
  z-index: -1;
}

.feature-card:hover::before {
  opacity: 1;
}

.feature-card:hover {
  transform: translateY(-10px) rotate(2deg);
  box-shadow: var(--shadow-lg);
}

.feature-card img {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  filter: drop-shadow(0 4px 10px rgba(255, 107, 157, 0.3));
}

.feature-card h3 {
  margin-bottom: 12px;
  font-size: 20px;
}

/* ===================================
   SERVICES/COLLECTIONS GRID
   =================================== */

.services-showcase,
.services-grid-section {
  padding: 80px 20px;
  background: var(--white);
}

.services-showcase h2,
.services-grid-section h2 {
  text-align: center;
  margin-bottom: 50px;
}

.services-grid,
.collections-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
  margin-top: 40px;
}

.service-card,
.collection-card {
  flex: 1 1 320px;
  max-width: 380px;
  background: linear-gradient(135deg, var(--bg-cream) 0%, var(--white) 100%);
  padding: 35px;
  border-radius: var(--border-radius);
  transition: var(--transition);
  box-shadow: var(--shadow);
  border: 3px solid var(--accent);
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
  overflow: hidden;
}

.service-card::after,
.collection-card::after {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200px;
  height: 200px;
  background: var(--secondary);
  opacity: 0.05;
  border-radius: 50%;
  transition: var(--transition);
}

.service-card:hover::after,
.collection-card:hover::after {
  transform: scale(2);
  opacity: 0.1;
}

.service-card:hover,
.collection-card:hover {
  transform: translateY(-8px) rotate(-1deg);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary);
}

.service-card h3,
.collection-card h3 {
  color: var(--secondary);
  font-size: 22px;
  margin-bottom: 12px;
}

.service-card p,
.collection-card p {
  flex-grow: 1;
  margin-bottom: 16px;
}

.price,
.price-range {
  font-size: 24px;
  font-weight: 700;
  color: var(--primary);
  margin: 16px 0;
}

/* ===================================
   VALUE PROPOSITION SECTION
   =================================== */

.value-proposition {
  padding: 80px 20px;
  background: linear-gradient(135deg, var(--secondary) 0%, var(--primary) 100%);
  color: var(--white);
  text-align: center;
}

.value-proposition h2 {
  color: var(--white);
  margin-bottom: 16px;
}

.value-proposition h2::after {
  background: var(--accent);
  left: 50%;
  transform: translateX(-50%);
}

.subtitle {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 24px;
  opacity: 0.95;
}

.benefits-list {
  max-width: 600px;
  margin: 32px auto 0;
  text-align: left;
}

.benefits-list li {
  padding: 12px 0 12px 40px;
  position: relative;
  font-size: 18px;
}

.benefits-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 12px;
  width: 28px;
  height: 28px;
  background: var(--accent);
  color: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

/* ===================================
   SERVICE DETAILS & CONTENT
   =================================== */

.service-details,
.service-details-section {
  padding: 60px 20px;
}

.detail-block {
  margin-bottom: 50px;
  padding: 40px;
  background: var(--bg-light);
  border-radius: var(--border-radius);
  border-left: 5px solid var(--primary);
}

.features-list {
  margin-top: 24px;
}

.features-list li {
  padding: 12px 0 12px 35px;
  position: relative;
  color: var(--text-light);
}

.features-list li::before {
  content: '★';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-size: 20px;
}

/* ===================================
   PRODUCT CATEGORIES
   =================================== */

.product-categories,
.size-guide {
  padding: 60px 20px;
  background: var(--white);
}

.categories-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  margin-top: 40px;
}

.category-item {
  flex: 1 1 200px;
  max-width: 250px;
  padding: 30px;
  background: var(--bg-cream);
  border-radius: var(--border-radius);
  text-align: center;
  transition: var(--transition);
  border: 3px solid var(--secondary);
}

.category-item:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: var(--shadow);
  border-color: var(--primary);
}

.category-item h3 {
  color: var(--primary);
  font-size: 18px;
  margin-bottom: 8px;
}

/* ===================================
   TESTIMONIALS - HIGH CONTRAST
   =================================== */

.testimonials {
  padding: 80px 20px;
  background: var(--bg-light);
}

.testimonials h2 {
  text-align: center;
  margin-bottom: 50px;
}

.testimonials-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
  margin-top: 40px;
}

.testimonial-card {
  flex: 1 1 400px;
  max-width: 500px;
  background: var(--white);
  padding: 35px;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  border-left: 5px solid var(--accent);
  transition: var(--transition);
}

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

.testimonial-card p {
  color: var(--text-dark);
  font-style: italic;
  margin-bottom: 16px;
  font-size: 16px;
  line-height: 1.8;
}

.testimonial-card .author {
  color: var(--primary);
  font-weight: 700;
  font-style: normal;
  margin-bottom: 0;
}

/* ===================================
   CTA SECTIONS - VIBRANT
   =================================== */

.cta-banner,
.cta-section {
  padding: 80px 20px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  text-align: center;
  color: var(--white);
}

.banner-content,
.cta-content {
  max-width: 700px;
  margin: 0 auto;
}

.cta-banner h2,
.cta-section h2 {
  color: var(--white);
  margin-bottom: 20px;
}

.cta-banner h2::after,
.cta-section h2::after {
  background: var(--accent);
  left: 50%;
  transform: translateX(-50%);
}

.cta-banner p,
.cta-section p {
  color: var(--white);
  margin-bottom: 16px;
  font-size: 18px;
}

.contact-info {
  margin: 24px 0;
}

/* ===================================
   ABOUT & COMMITMENT SECTIONS
   =================================== */

.about-section,
.commitment-section,
.team-section,
.location-section {
  padding: 60px 20px;
}

.about-section {
  background: var(--white);
}

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

.commitment-grid,
.rights-summary {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
  margin-top: 40px;
}

.commitment-card,
.right-item {
  flex: 1 1 250px;
  max-width: 280px;
  background: var(--white);
  padding: 30px;
  border-radius: var(--border-radius);
  text-align: center;
  box-shadow: var(--shadow);
  transition: var(--transition);
  border-top: 4px solid var(--primary);
}

.commitment-card:hover,
.right-item:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.commitment-card h3,
.right-item h3 {
  color: var(--secondary);
  margin-bottom: 12px;
}

/* ===================================
   CONTACT PAGE
   =================================== */

.contact-info-section {
  padding: 60px 20px;
  background: var(--bg-light);
}

.contact-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
  margin-top: 40px;
}

.contact-card {
  flex: 1 1 280px;
  max-width: 320px;
  background: var(--white);
  padding: 35px;
  border-radius: var(--border-radius);
  text-align: center;
  box-shadow: var(--shadow);
  transition: var(--transition);
  border: 3px solid var(--accent);
}

.contact-card:hover {
  transform: translateY(-8px) rotate(2deg);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary);
}

.contact-card img {
  width: 60px;
  height: 60px;
  margin: 0 auto 20px;
}

.contact-card h3 {
  color: var(--secondary);
  margin-bottom: 12px;
}

/* ===================================
   CONTACT FORM - CREATIVE STYLE
   =================================== */

.contact-form-section {
  padding: 60px 20px;
  background: var(--white);
}

.form-wrapper {
  max-width: 600px;
  margin: 0 auto;
}

.contact-form-box {
  background: var(--bg-cream);
  padding: 40px;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  border: 3px solid var(--accent);
}

.contact-form-box label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: var(--text-dark);
}

.form-input,
.form-textarea {
  width: 100%;
  padding: 14px 18px;
  margin-bottom: 20px;
  border: 2px solid var(--secondary);
  border-radius: 12px;
  font-family: 'Nunito', sans-serif;
  font-size: 16px;
  transition: var(--transition);
  background: var(--white);
}

.form-input:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(255, 107, 157, 0.2);
  transform: translateY(-2px);
}

.checkbox-group {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 24px;
}

.checkbox-group input[type="checkbox"] {
  width: 20px;
  height: 20px;
  cursor: pointer;
}

.checkbox-group label {
  margin-bottom: 0;
  cursor: pointer;
  font-weight: 400;
}

.checkbox-group a {
  color: var(--primary);
  text-decoration: underline;
}

/* ===================================
   MAP & FAQ SECTIONS
   =================================== */

.map-section {
  padding: 60px 20px;
  background: var(--bg-light);
}

.map-wrapper {
  max-width: 800px;
  margin: 40px auto 0;
}

.map-placeholder {
  background: var(--white);
  padding: 60px 40px;
  border-radius: var(--border-radius);
  text-align: center;
  box-shadow: var(--shadow);
  border: 3px dashed var(--secondary);
}

.faq-section {
  padding: 60px 20px;
  background: var(--white);
}

.faq-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
  margin-top: 40px;
}

.faq-item {
  flex: 1 1 350px;
  max-width: 500px;
  background: var(--bg-cream);
  padding: 30px;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  transition: var(--transition);
  border-left: 4px solid var(--accent);
}

.faq-item:hover {
  transform: translateX(5px);
  border-left-color: var(--primary);
}

.faq-item h3 {
  color: var(--secondary);
  font-size: 18px;
  margin-bottom: 12px;
}

/* ===================================
   STORE FEATURES
   =================================== */

.store-features {
  padding: 60px 20px;
  background: var(--bg-light);
}

/* ===================================
   LEGAL CONTENT
   =================================== */

.legal-content {
  padding: 60px 20px;
  background: var(--white);
}

.legal-content h2 {
  margin-top: 40px;
  margin-bottom: 20px;
}

.legal-content h3 {
  margin-top: 30px;
  margin-bottom: 16px;
}

.legal-content ul {
  margin: 20px 0;
  padding-left: 20px;
}

.legal-content li {
  margin-bottom: 12px;
  padding-left: 15px;
  position: relative;
  color: var(--text-light);
}

.legal-content li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--primary);
  font-size: 20px;
}

.rights-table-section,
.cookies-table-section {
  padding: 60px 20px;
  background: var(--bg-light);
}

.cookies-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.cookie-item {
  background: var(--white);
  padding: 30px;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  border-left: 4px solid var(--secondary);
}

.cookie-item h3 {
  margin-bottom: 12px;
}

.procedure-info {
  text-align: center;
  margin-top: 30px;
  font-style: italic;
  color: var(--text-light);
}

.disclaimer-section,
.contact-legal {
  padding: 60px 20px;
}

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

.contact-legal {
  background: var(--bg-cream);
}

/* ===================================
   THANK YOU PAGE
   =================================== */

.success-icon {
  width: 80px;
  height: 80px;
  background: var(--accent);
  color: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  font-weight: 700;
  margin: 0 auto 30px;
  box-shadow: var(--shadow);
  animation: popIn 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

@keyframes popIn {
  0% { transform: scale(0); }
  50% { transform: scale(1.2); }
  100% { transform: scale(1); }
}

.confirmation-section,
.services-preview {
  padding: 60px 20px;
}

.confirmation-section {
  background: var(--white);
}

.services-preview {
  background: var(--bg-light);
}

.collections-preview {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
  margin-top: 40px;
}

.collection-link {
  flex: 1 1 280px;
  max-width: 350px;
  background: var(--white);
  padding: 30px;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  text-align: center;
  transition: var(--transition);
  border: 3px solid var(--accent);
}

.collection-link:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary);
}

/* ===================================
   FOOTER - CREATIVE & COLORFUL
   =================================== */

footer {
  background: linear-gradient(135deg, var(--text-dark) 0%, #1a252f 100%);
  color: var(--white);
  padding: 60px 20px 20px;
  position: relative;
  overflow: hidden;
}

footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--secondary), var(--accent), var(--primary));
  background-size: 200% 100%;
  animation: gradientMove 3s linear infinite;
}

@keyframes gradientMove {
  0% { background-position: 0% 50%; }
  100% { background-position: 200% 50%; }
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: space-between;
  margin-bottom: 40px;
}

.footer-section {
  flex: 1 1 220px;
  min-width: 200px;
}

.footer-logo {
  height: 50px;
  width: auto;
  margin-bottom: 16px;
  filter: brightness(0) invert(1);
}

.footer-section h3 {
  color: var(--accent);
  margin-bottom: 20px;
  font-size: 18px;
}

.footer-section p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
  line-height: 1.8;
}

.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-nav a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
  transition: var(--transition);
  padding-left: 0;
  position: relative;
}

.footer-nav a::before {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: var(--transition);
}

.footer-nav a:hover {
  color: var(--white);
  padding-left: 15px;
}

.footer-nav a:hover::before {
  width: 10px;
}

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
}

/* ===================================
   COOKIE CONSENT BANNER
   =================================== */

.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, var(--text-dark) 0%, #1a252f 100%);
  color: var(--white);
  padding: 20px;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
  z-index: 1500;
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border-top: 3px solid var(--accent);
}

.cookie-consent.show {
  transform: translateY(0);
}

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

.cookie-text {
  flex: 1 1 300px;
  font-size: 14px;
  line-height: 1.6;
}

.cookie-text a {
  color: var(--accent);
  text-decoration: underline;
}

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

.cookie-btn {
  padding: 10px 24px;
  border-radius: 25px;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--transition);
}

.cookie-accept {
  background: var(--accent);
  color: var(--text-dark);
  border-color: var(--accent);
}

.cookie-accept:hover {
  background: var(--accent-dark);
  transform: translateY(-2px);
}

.cookie-reject {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.3);
}

.cookie-reject:hover {
  border-color: var(--white);
  background: rgba(255, 255, 255, 0.1);
}

.cookie-settings {
  background: transparent;
  color: var(--secondary);
  border-color: var(--secondary);
}

.cookie-settings:hover {
  background: var(--secondary);
  color: var(--white);
}

/* Cookie Settings Modal */
.cookie-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.8);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

.cookie-modal.show {
  opacity: 1;
  visibility: visible;
}

.modal-content {
  background: var(--white);
  border-radius: var(--border-radius);
  padding: 40px;
  max-width: 600px;
  width: 100%;
  max-height: 80vh;
  overflow-y: auto;
  box-shadow: var(--shadow-lg);
  transform: scale(0.9);
  transition: var(--transition);
}

.cookie-modal.show .modal-content {
  transform: scale(1);
}

.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 2px solid var(--bg-light);
}

.modal-close {
  background: none;
  border: none;
  font-size: 28px;
  cursor: pointer;
  color: var(--text-dark);
  transition: var(--transition);
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.modal-close:hover {
  background: var(--bg-light);
  transform: rotate(90deg);
}

.cookie-category {
  margin-bottom: 24px;
  padding: 20px;
  background: var(--bg-light);
  border-radius: 12px;
  border-left: 4px solid var(--primary);
}

.category-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}

.category-header h4 {
  color: var(--primary);
  margin: 0;
}

.toggle-switch {
  position: relative;
  width: 50px;
  height: 26px;
}

.toggle-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #ccc;
  border-radius: 26px;
  transition: var(--transition);
}

.slider::before {
  position: absolute;
  content: '';
  height: 20px;
  width: 20px;
  left: 3px;
  bottom: 3px;
  background: var(--white);
  border-radius: 50%;
  transition: var(--transition);
}

input:checked + .slider {
  background: var(--secondary);
}

input:checked + .slider::before {
  transform: translateX(24px);
}

input:disabled + .slider {
  opacity: 0.5;
  cursor: not-allowed;
}

.modal-footer {
  margin-top: 32px;
  padding-top: 20px;
  border-top: 2px solid var(--bg-light);
  display: flex;
  gap: 12px;
  justify-content: flex-end;
  flex-wrap: wrap;
}

/* ===================================
   RESPONSIVE DESIGN
   =================================== */

@media (max-width: 768px) {
  /* Mobile Menu Toggle */
  .mobile-menu-toggle {
    display: block;
  }

  .main-nav {
    display: none;
  }

  /* Typography */
  h1 {
    font-size: 36px;
  }

  h2 {
    font-size: 28px;
  }

  h3 {
    font-size: 20px;
  }

  /* Hero */
  .hero {
    padding: 60px 20px;
  }

  .hero h1 {
    font-size: 40px;
  }

  .hero-subtitle {
    font-size: 18px;
  }

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

  /* Feature Cards */
  .features-grid {
    gap: 20px;
  }

  .feature-card {
    flex: 1 1 100%;
    max-width: 100%;
  }

  /* Service Cards */
  .services-grid,
  .collections-grid {
    gap: 20px;
  }

  .service-card,
  .collection-card {
    flex: 1 1 100%;
    max-width: 100%;
  }

  /* Contact Grid */
  .contact-grid {
    gap: 20px;
  }

  .contact-card {
    flex: 1 1 100%;
    max-width: 100%;
  }

  /* Footer */
  .footer-content {
    flex-direction: column;
    gap: 30px;
  }

  .footer-section {
    flex: 1 1 100%;
  }

  /* Buttons */
  .cta-buttons {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  /* Cookie Consent */
  .cookie-content {
    flex-direction: column;
  }

  .cookie-buttons {
    width: 100%;
  }

  .cookie-btn {
    flex: 1;
  }

  /* Forms */
  .contact-form-box {
    padding: 30px 20px;
  }

  /* Modal */
  .modal-content {
    padding: 30px 20px;
  }

  /* Categories */
  .categories-grid,
  .commitment-grid,
  .rights-summary {
    gap: 20px;
  }

  .category-item,
  .commitment-card,
  .right-item {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .feature-card {
    flex: 1 1 calc(50% - 15px);
  }

  .service-card,
  .collection-card {
    flex: 1 1 calc(50% - 15px);
  }

  .contact-card {
    flex: 1 1 calc(50% - 15px);
  }
}

/* ===================================
   ANIMATIONS & TRANSITIONS
   =================================== */

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

.fade-in-up {
  animation: fadeInUp 0.6s ease-out;
}

/* ===================================
   UTILITY CLASSES
   =================================== */

.text-center {
  text-align: center;
}

.mt-1 { margin-top: 8px; }
.mt-2 { margin-top: 16px; }
.mt-3 { margin-top: 24px; }
.mt-4 { margin-top: 32px; }

.mb-1 { margin-bottom: 8px; }
.mb-2 { margin-bottom: 16px; }
.mb-3 { margin-bottom: 24px; }
.mb-4 { margin-bottom: 32px; }

/* ===================================
   PRINT STYLES
   =================================== */

@media print {
  .mobile-menu-toggle,
  .mobile-menu,
  .cookie-consent,
  .cookie-modal {
    display: none;
  }

  body {
    background: white;
    color: black;
  }

  a {
    text-decoration: underline;
  }
}