/* ===== CSS RESET & BASE ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

body {
  font-family: 'Lato', -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
  line-height: 1.7;
  color: #1a1a1a;
  background-color: #ffffff;
  overflow-x: hidden;
}

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

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

ul, ol {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

/* ===== MODERN BOLD DESIGN SYSTEM - TYPOGRAPHY ===== */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 20px;
  color: #000000;
  letter-spacing: -0.02em;
}

h1 {
  font-size: 56px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.03em;
}

h2 {
  font-size: 42px;
  font-weight: 900;
  text-transform: uppercase;
}

h3 {
  font-size: 28px;
  font-weight: 800;
}

h4 {
  font-size: 22px;
  font-weight: 800;
}

p {
  font-size: 18px;
  line-height: 1.8;
  margin-bottom: 16px;
  font-weight: 400;
}

strong {
  font-weight: 900;
  color: #000000;
}

/* ===== MODERN BOLD COLOR SYSTEM ===== */
:root {
  --primary: #FF3366;
  --primary-dark: #CC0033;
  --secondary: #FFD700;
  --accent: #00FFFF;
  --dark: #000000;
  --text: #1a1a1a;
  --light: #ffffff;
  --gray: #f5f5f5;
  --border: #333333;
  --shadow: rgba(0, 0, 0, 0.2);
}

/* ===== CONTAINER & LAYOUT ===== */
.container {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== HEADER - BOLD MODERN STYLE ===== */
header {
  background: var(--dark);
  padding: 24px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 4px 20px var(--shadow);
  border-bottom: 4px solid var(--primary);
}

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

.logo img {
  height: 50px;
  width: auto;
  filter: brightness(0) invert(1);
  transition: transform 0.3s ease;
}

.logo:hover img {
  transform: scale(1.05) rotate(-2deg);
}

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

.main-nav a {
  color: var(--light);
  font-weight: 900;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 12px 20px;
  border: 3px solid transparent;
  transition: all 0.3s ease;
  position: relative;
}

.main-nav a::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 4px;
  background: var(--primary);
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

.main-nav a:hover {
  color: var(--primary);
  transform: translateY(-2px);
}

.main-nav a:hover::before {
  width: 100%;
}

/* ===== MOBILE MENU - BOLD GEOMETRIC ===== */
.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 2000;
  background: var(--primary);
  color: var(--light);
  font-size: 32px;
  font-weight: 900;
  padding: 16px 20px;
  border-radius: 0;
  box-shadow: 0 4px 20px rgba(255, 51, 102, 0.5);
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 3px solid var(--dark);
  transition: all 0.3s ease;
}

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

.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  height: 100vh;
  background: var(--dark);
  z-index: 1999;
  transition: right 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  display: flex;
  flex-direction: column;
  padding: 80px 30px 30px;
  box-shadow: -10px 0 40px var(--shadow);
  border-left: 8px solid var(--primary);
}

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

.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--primary);
  color: var(--light);
  font-size: 32px;
  font-weight: 900;
  padding: 16px 20px;
  border-radius: 0;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 3px solid var(--light);
  transition: all 0.3s ease;
}

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

.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 40px;
}

.mobile-nav a {
  color: var(--light);
  font-size: 28px;
  font-weight: 900;
  text-transform: uppercase;
  padding: 24px 20px;
  border-left: 8px solid transparent;
  transition: all 0.3s ease;
  letter-spacing: 0.05em;
  background: linear-gradient(90deg, transparent 0%, rgba(255, 51, 102, 0.1) 100%);
  margin-bottom: 4px;
}

.mobile-nav a:hover,
.mobile-nav a:active {
  border-left-color: var(--primary);
  background: linear-gradient(90deg, rgba(255, 51, 102, 0.2) 0%, rgba(255, 51, 102, 0.05) 100%);
  padding-left: 30px;
  color: var(--primary);
}

/* ===== BUTTONS - BOLD GEOMETRIC STYLE ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 18px 40px;
  font-size: 18px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border: 4px solid var(--dark);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  min-width: 200px;
  text-align: center;
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: var(--dark);
  transition: left 0.3s ease;
  z-index: -1;
}

.btn:hover::before {
  left: 0;
}

.btn-primary {
  background: var(--primary);
  color: var(--light);
  border-color: var(--dark);
  box-shadow: 8px 8px 0 var(--dark);
}

.btn-primary:hover {
  background: var(--primary-dark);
  transform: translate(4px, 4px);
  box-shadow: 4px 4px 0 var(--dark);
  color: var(--light);
}

.btn-secondary {
  background: var(--secondary);
  color: var(--dark);
  border-color: var(--dark);
  box-shadow: 8px 8px 0 var(--dark);
}

.btn-secondary:hover {
  background: var(--dark);
  color: var(--light);
  transform: translate(4px, 4px);
  box-shadow: 4px 4px 0 var(--primary);
}

.btn-link {
  color: var(--primary);
  font-weight: 900;
  text-transform: uppercase;
  font-size: 16px;
  letter-spacing: 0.05em;
  border-bottom: 3px solid var(--primary);
  padding: 4px 0;
  transition: all 0.3s ease;
}

.btn-link:hover {
  color: var(--dark);
  border-bottom-color: var(--dark);
  padding-left: 10px;
}

/* ===== HERO SECTION - BOLD IMPACT ===== */
.hero {
  background: linear-gradient(135deg, var(--dark) 0%, var(--primary-dark) 100%);
  padding: 120px 20px;
  position: relative;
  overflow: hidden;
  border-bottom: 8px solid var(--primary);
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 10px,
    rgba(255, 255, 255, 0.03) 10px,
    rgba(255, 255, 255, 0.03) 20px
  );
  pointer-events: none;
}

.hero-content {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}

.hero h1 {
  color: var(--light);
  font-size: 72px;
  margin-bottom: 24px;
  text-shadow: 4px 4px 0 rgba(0, 0, 0, 0.3);
  animation: slideInDown 0.8s ease;
}

.hero-subtitle {
  font-size: 24px;
  color: var(--light);
  margin-bottom: 40px;
  font-weight: 400;
  line-height: 1.6;
}

.hero-cta {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.trust-badge {
  color: var(--secondary);
  font-weight: 900;
  font-size: 18px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* ===== SECTIONS - BOLD SPACING ===== */
section {
  margin-bottom: 80px;
  padding: 60px 20px;
  position: relative;
}

.section-subtitle {
  font-size: 20px;
  color: #666;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 48px;
  font-weight: 400;
}

/* ===== GRID LAYOUTS - FLEXBOX ONLY ===== */
.three-col-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: space-between;
  margin-bottom: 32px;
}

.three-col-grid > * {
  flex: 1 1 calc(33.333% - 24px);
  min-width: 300px;
}

.four-col-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}

.four-col-grid > * {
  flex: 1 1 calc(25% - 20px);
  min-width: 250px;
}

.two-col-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: space-between;
}

.two-col-grid > * {
  flex: 1 1 calc(50% - 24px);
  min-width: 300px;
}

/* ===== CARDS - BOLD GEOMETRIC DESIGN ===== */
.value-card,
.service-card,
.collection-card,
.benefit-card {
  background: var(--light);
  padding: 40px 30px;
  border: 4px solid var(--dark);
  box-shadow: 12px 12px 0 var(--dark);
  transition: all 0.3s ease;
  position: relative;
  margin-bottom: 24px;
}

.value-card:hover,
.service-card:hover,
.collection-card:hover,
.benefit-card:hover {
  transform: translate(6px, 6px);
  box-shadow: 6px 6px 0 var(--dark);
  border-color: var(--primary);
}

.value-card img,
.service-card img,
.benefit-card img {
  width: 80px;
  height: 80px;
  margin-bottom: 24px;
  filter: brightness(0);
}

.value-card h3,
.service-card h3,
.collection-card h3,
.benefit-card h3 {
  font-size: 24px;
  margin-bottom: 16px;
  color: var(--dark);
  text-transform: uppercase;
}

.value-card p,
.service-card p,
.collection-card p,
.benefit-card p {
  font-size: 16px;
  line-height: 1.7;
  color: #333;
  margin-bottom: 20px;
}

.service-card .price {
  font-size: 28px;
  font-weight: 900;
  color: var(--primary);
  margin: 20px 0;
}

/* ===== VALUE PROPOSITION ===== */
.value-proposition {
  background: var(--gray);
  border-top: 8px solid var(--primary);
  border-bottom: 8px solid var(--secondary);
}

.value-proposition h2 {
  text-align: center;
  margin-bottom: 60px;
  color: var(--dark);
}

/* ===== SERVICES GRID ===== */
.services-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: space-between;
}

.services-grid .service-card {
  flex: 1 1 calc(33.333% - 24px);
  min-width: 300px;
}

/* ===== TESTIMONIALS - HIGH CONTRAST ===== */
.testimonials {
  background: var(--secondary);
  padding: 80px 20px;
  border-top: 8px solid var(--dark);
  border-bottom: 8px solid var(--dark);
}

.testimonials h2 {
  text-align: center;
  margin-bottom: 60px;
  color: var(--dark);
}

.testimonial-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: center;
}

.testimonial-card {
  flex: 1 1 calc(50% - 24px);
  min-width: 300px;
  max-width: 600px;
  background: var(--light);
  padding: 40px;
  border: 4px solid var(--dark);
  box-shadow: 12px 12px 0 var(--dark);
  position: relative;
  margin-bottom: 24px;
}

.testimonial-text {
  font-size: 18px;
  line-height: 1.8;
  color: #1a1a1a;
  margin-bottom: 24px;
  font-style: italic;
}

.testimonial-author {
  font-weight: 900;
  color: var(--dark);
  font-size: 16px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.rating {
  color: var(--primary);
  font-size: 24px;
  letter-spacing: 4px;
}

/* ===== CTA BANNER - BOLD IMPACT ===== */
.cta-banner {
  background: var(--dark);
  color: var(--light);
  padding: 100px 20px;
  text-align: center;
  position: relative;
  border-top: 8px solid var(--primary);
  border-bottom: 8px solid var(--secondary);
}

.cta-banner h2 {
  color: var(--light);
  margin-bottom: 24px;
}

.cta-banner p {
  font-size: 20px;
  max-width: 700px;
  margin: 0 auto 40px;
  color: var(--light);
}

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

.trust-note {
  color: var(--secondary);
  font-weight: 900;
  text-transform: uppercase;
}

/* ===== PAGE HERO ===== */
.page-hero {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  padding: 80px 20px;
  color: var(--light);
  text-align: center;
  border-bottom: 8px solid var(--dark);
}

.page-hero h1 {
  color: var(--light);
  margin-bottom: 20px;
}

.page-hero p {
  font-size: 20px;
  max-width: 800px;
  margin: 0 auto;
  color: var(--light);
}

.breadcrumb {
  font-size: 14px;
  margin-bottom: 24px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.breadcrumb a {
  color: var(--light);
  border-bottom: 2px solid transparent;
  transition: all 0.3s ease;
}

.breadcrumb a:hover {
  border-bottom-color: var(--light);
}

.last-updated {
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  margin-top: 16px;
}

/* ===== SHOP PAGE ===== */
.filter-section {
  margin-bottom: 48px;
  padding: 40px;
  background: var(--gray);
  border: 4px solid var(--dark);
}

.filter-section h3 {
  margin-bottom: 24px;
  text-transform: uppercase;
}

.filter-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.filter-btn {
  padding: 16px 32px;
  background: var(--light);
  border: 3px solid var(--dark);
  font-weight: 900;
  text-transform: uppercase;
  font-size: 14px;
  letter-spacing: 0.05em;
  transition: all 0.3s ease;
  box-shadow: 4px 4px 0 var(--dark);
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--primary);
  color: var(--light);
  transform: translate(2px, 2px);
  box-shadow: 2px 2px 0 var(--dark);
}

.product-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: space-between;
}

.product-card {
  flex: 1 1 calc(33.333% - 24px);
  min-width: 300px;
  background: var(--light);
  border: 4px solid var(--dark);
  padding: 0;
  box-shadow: 12px 12px 0 var(--dark);
  transition: all 0.3s ease;
  margin-bottom: 24px;
}

.product-card:hover {
  transform: translate(6px, 6px);
  box-shadow: 6px 6px 0 var(--dark);
}

.product-image {
  width: 100%;
  height: 300px;
  background: var(--gray);
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: 4px solid var(--dark);
}

.product-image img {
  width: 120px;
  height: 120px;
}

.product-card h3 {
  padding: 24px 24px 8px;
  margin: 0;
}

.product-card .brand {
  padding: 0 24px;
  font-size: 14px;
  text-transform: uppercase;
  font-weight: 900;
  color: #666;
  letter-spacing: 0.05em;
}

.product-card .price {
  padding: 8px 24px 16px;
  font-size: 32px;
  font-weight: 900;
  color: var(--primary);
}

.product-actions {
  padding: 0 24px 24px;
}

/* ===== CONTACT FORM ===== */
.contact-form-section {
  background: var(--gray);
  padding: 80px 20px;
}

.form-wrapper {
  max-width: 800px;
  margin: 0 auto;
  background: var(--light);
  padding: 48px;
  border: 4px solid var(--dark);
  box-shadow: 16px 16px 0 var(--dark);
}

.form-note {
  margin-bottom: 40px;
  padding: 24px;
  background: var(--secondary);
  border: 3px solid var(--dark);
}

.form-note p {
  margin: 0;
  font-weight: 700;
  color: var(--dark);
}

.field-group {
  margin-bottom: 32px;
}

.field-group label {
  display: block;
  font-weight: 900;
  text-transform: uppercase;
  font-size: 14px;
  letter-spacing: 0.05em;
  margin-bottom: 12px;
  color: var(--dark);
}

.field-placeholder {
  padding: 18px 24px;
  background: var(--gray);
  border: 3px solid var(--dark);
  font-size: 16px;
  min-height: 56px;
  display: flex;
  align-items: center;
}

.checkbox-placeholder {
  padding: 16px 24px;
  background: var(--gray);
  border: 3px solid var(--dark);
  font-size: 14px;
  font-weight: 700;
}

.submit-wrapper {
  margin-top: 40px;
}

.privacy-link {
  text-align: center;
  font-size: 14px;
  margin-top: 24px;
}

.privacy-link a {
  color: var(--primary);
  font-weight: 900;
  border-bottom: 2px solid var(--primary);
}

/* ===== CONTACT OPTIONS ===== */
.contact-card {
  text-align: center;
  padding: 40px 30px;
  background: var(--light);
  border: 4px solid var(--dark);
  box-shadow: 12px 12px 0 var(--dark);
  transition: all 0.3s ease;
}

.contact-card:hover {
  transform: translate(6px, 6px);
  box-shadow: 6px 6px 0 var(--dark);
}

.contact-card img {
  width: 80px;
  height: 80px;
  margin: 0 auto 24px;
}

/* ===== LEGAL CONTENT ===== */
.legal-content {
  max-width: 900px;
  margin: 0 auto;
}

.legal-section {
  margin-bottom: 48px;
  padding: 40px;
  background: var(--light);
  border-left: 8px solid var(--primary);
}

.legal-section h2 {
  font-size: 32px;
  margin-bottom: 24px;
  color: var(--dark);
}

.legal-section p {
  margin-bottom: 20px;
}

.legal-section ul,
.legal-section ol {
  list-style: none;
  padding-left: 0;
}

.legal-section li {
  padding: 12px 0 12px 32px;
  position: relative;
  font-size: 16px;
  line-height: 1.7;
}

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

.summary-box {
  background: var(--secondary);
  padding: 40px;
  border: 4px solid var(--dark);
  box-shadow: 12px 12px 0 var(--dark);
  margin-top: 48px;
}

.summary-box h3 {
  margin-bottom: 24px;
  text-transform: uppercase;
}

.summary-box ul {
  list-style: none;
}

.summary-box li {
  padding: 12px 0 12px 32px;
  position: relative;
  font-weight: 700;
}

.summary-box li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--dark);
  font-weight: 900;
  font-size: 20px;
}

.cookie-table {
  width: 100%;
  border: 4px solid var(--dark);
  margin: 32px 0;
}

.cookie-table th,
.cookie-table td {
  padding: 16px;
  text-align: left;
  border: 2px solid var(--dark);
}

.cookie-table th {
  background: var(--dark);
  color: var(--light);
  font-weight: 900;
  text-transform: uppercase;
  font-size: 14px;
}

.cookie-table td {
  background: var(--light);
}

/* ===== THANK YOU PAGE ===== */
.thank-you-hero {
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  padding: 100px 20px;
  text-align: center;
}

.success-icon {
  width: 120px;
  height: 120px;
  background: var(--light);
  color: var(--dark);
  border: 6px solid var(--dark);
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 72px;
  font-weight: 900;
  margin: 0 auto 32px;
  box-shadow: 12px 12px 0 var(--dark);
}

.thank-you-hero h1 {
  color: var(--dark);
}

.subtitle {
  font-size: 24px;
  color: var(--dark);
  font-weight: 700;
}

.message-box {
  max-width: 800px;
  margin: 0 auto;
  padding: 60px 40px;
  background: var(--light);
  border: 4px solid var(--dark);
  box-shadow: 16px 16px 0 var(--dark);
}

.main-message {
  font-size: 24px;
  font-weight: 900;
  margin-bottom: 24px;
  color: var(--dark);
}

.secondary-message {
  font-size: 18px;
  margin-bottom: 40px;
}

.next-steps {
  margin-top: 48px;
  padding: 32px;
  background: var(--gray);
  border: 3px solid var(--dark);
}

.next-steps h3 {
  margin-bottom: 20px;
  text-transform: uppercase;
}

.next-steps ul {
  list-style: none;
}

.next-steps li {
  padding: 12px 0 12px 32px;
  position: relative;
  font-weight: 700;
}

.next-steps li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--primary);
  font-weight: 900;
}

/* ===== FOOTER - BOLD MODERN ===== */
footer {
  background: var(--dark);
  color: var(--light);
  padding: 80px 20px 32px;
  border-top: 8px solid var(--primary);
}

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

.footer-section {
  flex: 1 1 250px;
}

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

.footer-section h4 {
  color: var(--primary);
  font-size: 20px;
  margin-bottom: 20px;
  text-transform: uppercase;
  font-weight: 900;
  border-bottom: 3px solid var(--primary);
  padding-bottom: 12px;
}

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

.footer-nav a {
  color: var(--light);
  font-weight: 700;
  font-size: 16px;
  transition: all 0.3s ease;
  padding-left: 0;
}

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

.footer-section p {
  font-size: 16px;
  line-height: 1.8;
  color: #ccc;
}

.footer-bottom {
  text-align: center;
  padding-top: 32px;
  border-top: 3px solid #333;
}

.footer-bottom p {
  color: #999;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* ===== COOKIE CONSENT BANNER - BOLD GEOMETRIC ===== */
#cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--dark);
  color: var(--light);
  padding: 32px 24px;
  z-index: 9999;
  border-top: 6px solid var(--primary);
  box-shadow: 0 -8px 40px var(--shadow);
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

#cookie-banner.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: 24px;
}

.cookie-text {
  flex: 1 1 500px;
}

.cookie-text p {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 0;
  font-weight: 700;
}

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

.cookie-btn {
  padding: 16px 32px;
  font-weight: 900;
  text-transform: uppercase;
  font-size: 14px;
  letter-spacing: 0.05em;
  border: 3px solid var(--light);
  transition: all 0.3s ease;
  cursor: pointer;
}

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

.cookie-accept:hover {
  background: var(--primary-dark);
  transform: scale(1.05);
}

.cookie-reject {
  background: transparent;
  color: var(--light);
}

.cookie-reject:hover {
  background: var(--light);
  color: var(--dark);
}

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

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

/* Cookie Modal */
#cookie-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.9);
  z-index: 10000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

#cookie-modal.show {
  display: flex;
}

.modal-content {
  background: var(--light);
  max-width: 700px;
  width: 100%;
  padding: 48px;
  border: 6px solid var(--dark);
  box-shadow: 20px 20px 0 var(--dark);
  max-height: 90vh;
  overflow-y: auto;
}

.modal-content h2 {
  margin-bottom: 32px;
  color: var(--dark);
}

.cookie-category {
  margin-bottom: 32px;
  padding: 24px;
  background: var(--gray);
  border: 3px solid var(--dark);
}

.cookie-category h3 {
  margin-bottom: 12px;
  font-size: 20px;
}

.cookie-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 16px;
}

.toggle-switch {
  width: 60px;
  height: 32px;
  background: #ccc;
  border: 3px solid var(--dark);
  position: relative;
  cursor: pointer;
  transition: all 0.3s ease;
}

.toggle-switch.active {
  background: var(--primary);
}

.toggle-switch::after {
  content: '';
  position: absolute;
  width: 20px;
  height: 20px;
  background: var(--dark);
  top: 3px;
  left: 3px;
  transition: all 0.3s ease;
}

.toggle-switch.active::after {
  left: 31px;
}

.modal-actions {
  display: flex;
  gap: 16px;
  justify-content: flex-end;
  margin-top: 32px;
  flex-wrap: wrap;
}

/* ===== ANIMATIONS ===== */
@keyframes slideInDown {
  from {
    opacity: 0;
    transform: translateY(-50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* ===== RESPONSIVE - MOBILE FIRST ===== */
@media (max-width: 768px) {
  html {
    font-size: 14px;
  }

  h1 {
    font-size: 42px;
  }

  h2 {
    font-size: 32px;
  }

  h3 {
    font-size: 24px;
  }

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

  .main-nav {
    display: none;
  }

  .mobile-menu-toggle {
    display: flex;
  }

  .three-col-grid > *,
  .four-col-grid > *,
  .two-col-grid > * {
    flex: 1 1 100%;
    min-width: 100%;
  }

  .services-grid .service-card,
  .product-card {
    flex: 1 1 100%;
    min-width: 100%;
  }

  .hero-cta,
  .cta-buttons {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .form-wrapper,
  .message-box {
    padding: 32px 24px;
  }

  .legal-section {
    padding: 24px 20px;
  }

  .footer-content {
    flex-direction: column;
    gap: 32px;
  }

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

  .cookie-buttons {
    width: 100%;
    flex-direction: column;
  }

  .cookie-btn {
    width: 100%;
  }

  .modal-content {
    padding: 32px 24px;
  }

  .modal-actions {
    flex-direction: column;
  }

  .modal-actions .btn {
    width: 100%;
  }

  section {
    padding: 40px 16px;
    margin-bottom: 40px;
  }

  .value-card,
  .service-card,
  .collection-card,
  .benefit-card {
    box-shadow: 8px 8px 0 var(--dark);
  }

  .value-card:hover,
  .service-card:hover,
  .collection-card:hover,
  .benefit-card:hover {
    transform: translate(4px, 4px);
    box-shadow: 4px 4px 0 var(--dark);
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .three-col-grid > * {
    flex: 1 1 calc(50% - 16px);
  }

  .four-col-grid > * {
    flex: 1 1 calc(50% - 12px);
  }

  .services-grid .service-card {
    flex: 1 1 calc(50% - 16px);
  }

  .product-card {
    flex: 1 1 calc(50% - 16px);
  }
}

/* ===== ACCESSIBILITY ===== */
:focus-visible {
  outline: 4px solid var(--primary);
  outline-offset: 4px;
}

a:focus-visible,
button:focus-visible {
  outline: 4px solid var(--primary);
  outline-offset: 2px;
}

/* ===== PRINT STYLES ===== */
@media print {
  header,
  footer,
  .mobile-menu-toggle,
  .mobile-menu,
  #cookie-banner,
  #cookie-modal,
  .btn {
    display: none !important;
  }

  body {
    color: #000;
    background: #fff;
  }

  a {
    text-decoration: underline;
  }
}