/* ============================================
   SINOMELAR - PLAYFUL DYNAMIC CSS STYLES
   Design Style: Bright, Animated, Fun, Energetic
   ============================================ */

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

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

body {
  font-family: 'Comic Sans MS', 'Open Sans', 'Arial', sans-serif;
  line-height: 1.7;
  color: #2C3E50;
  background: linear-gradient(135deg, #FFF9E6 0%, #FFE5F0 50%, #E8F5FF 100%);
  background-attachment: fixed;
  overflow-x: hidden;
}

/* ANIMATED BACKGROUND ELEMENTS */
body::before {
  content: '';
  position: fixed;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255,182,193,0.2) 0%, transparent 70%);
  animation: float 20s ease-in-out infinite;
  z-index: -1;
  pointer-events: none;
}

@keyframes float {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  33% { transform: translate(30px, -30px) rotate(120deg); }
  66% { transform: translate(-20px, 20px) rotate(240deg); }
}

/* TYPOGRAPHY */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', 'Comic Sans MS', serif;
  font-weight: 800;
  line-height: 1.3;
  color: #FF1493;
  text-shadow: 2px 2px 4px rgba(255,20,147,0.1);
}

h1 {
  font-size: 48px;
  margin-bottom: 24px;
  animation: bounceIn 0.8s ease-out;
}

h2 {
  font-size: 38px;
  margin-bottom: 20px;
  color: #FF6B9D;
}

h3 {
  font-size: 28px;
  margin-bottom: 16px;
  color: #FF1493;
}

p {
  margin-bottom: 16px;
  font-size: 18px;
  color: #2C3E50;
}

a {
  color: #FF1493;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

a:hover {
  color: #FF69B4;
  transform: scale(1.05);
}

/* BOUNCE ANIMATION */
@keyframes bounceIn {
  0% { transform: scale(0.3); opacity: 0; }
  50% { transform: scale(1.05); }
  70% { transform: scale(0.9); }
  100% { transform: scale(1); opacity: 1; }
}

/* CONTAINER */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* HEADER */
header {
  background: linear-gradient(135deg, #FF1493 0%, #FF69B4 50%, #FFB6C1 100%);
  padding: 20px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 8px 32px rgba(255,20,147,0.3);
  animation: slideDown 0.5s ease-out;
}

@keyframes slideDown {
  from { transform: translateY(-100%); }
  to { transform: translateY(0); }
}

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

header img {
  height: 60px;
  width: auto;
  transition: transform 0.3s ease;
  filter: drop-shadow(0 4px 8px rgba(255,255,255,0.5));
}

header img:hover {
  transform: rotate(360deg) scale(1.1);
}

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

.main-nav a {
  color: #FFFFFF;
  font-weight: 700;
  font-size: 16px;
  padding: 8px 16px;
  border-radius: 25px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.main-nav a::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;
}

.main-nav a:hover::before {
  width: 300px;
  height: 300px;
}

.main-nav a:hover {
  background: rgba(255,255,255,0.2);
  transform: translateY(-3px);
}

/* MOBILE MENU TOGGLE */
.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 2000;
  background: linear-gradient(135deg, #FF1493, #FF69B4);
  border: none;
  color: white;
  font-size: 32px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 8px 24px rgba(255,20,147,0.4);
  transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.mobile-menu-toggle:hover {
  transform: rotate(90deg) scale(1.1);
  box-shadow: 0 12px 32px rgba(255,20,147,0.6);
}

.mobile-menu-toggle:active {
  transform: scale(0.95);
}

/* MOBILE MENU */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  max-width: 400px;
  height: 100vh;
  background: linear-gradient(180deg, #FF1493 0%, #FF69B4 100%);
  z-index: 1999;
  padding: 80px 32px 32px;
  transition: right 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  box-shadow: -8px 0 32px rgba(0,0,0,0.3);
  overflow-y: auto;
}

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

.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: rgba(255,255,255,0.3);
  border: none;
  color: white;
  font-size: 32px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
}

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

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

.mobile-nav a {
  color: white;
  font-size: 24px;
  font-weight: 700;
  padding: 16px 24px;
  border-radius: 15px;
  background: rgba(255,255,255,0.1);
  transition: all 0.3s ease;
  text-align: center;
}

.mobile-nav a:hover {
  background: rgba(255,255,255,0.3);
  transform: translateX(10px);
}

/* CTA BUTTON */
.cta-button,
.btn-primary {
  background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
  color: #2C3E50;
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 800;
  font-size: 18px;
  border: none;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  box-shadow: 0 8px 24px rgba(255,215,0,0.4);
  text-transform: uppercase;
  letter-spacing: 1px;
  display: inline-block;
}

.cta-button:hover,
.btn-primary:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 12px 32px rgba(255,215,0,0.6);
  background: linear-gradient(135deg, #FFA500 0%, #FFD700 100%);
}

.btn-secondary {
  background: linear-gradient(135deg, #00CED1 0%, #48D1CC 100%);
  color: white;
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 800;
  font-size: 18px;
  border: 3px solid white;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 8px 24px rgba(0,206,209,0.4);
  display: inline-block;
}

.btn-secondary:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 12px 32px rgba(0,206,209,0.6);
}

.btn-link {
  color: #FF1493;
  font-weight: 700;
  text-decoration: underline;
  font-size: 18px;
  transition: all 0.3s ease;
  display: inline-block;
}

.btn-link:hover {
  color: #FF69B4;
  transform: translateX(10px);
}

/* SECTIONS */
section {
  margin-bottom: 60px;
  padding: 40px 20px;
  position: relative;
}

.hero {
  background: linear-gradient(135deg, #FFB6C1 0%, #FFC0CB 50%, #FFE5EC 100%);
  padding: 80px 20px;
  border-radius: 30px;
  margin-bottom: 60px;
  box-shadow: 0 16px 48px rgba(255,182,193,0.3);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '⭐';
  position: absolute;
  font-size: 120px;
  top: -30px;
  right: -30px;
  opacity: 0.3;
  animation: spin 10s linear infinite;
}

@keyframes spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.hero h1 {
  color: #FF1493;
  text-align: center;
  animation: bounceIn 0.8s ease-out;
}

.hero .subheadline {
  text-align: center;
  font-size: 22px;
  color: #2C3E50;
  margin-bottom: 32px;
  font-weight: 600;
}

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

.trust-indicator,
.rating,
.guarantee,
.badge {
  text-align: center;
  color: #2C3E50;
  font-weight: 700;
  margin-top: 24px;
  font-size: 18px;
  background: rgba(255,255,255,0.6);
  padding: 12px 24px;
  border-radius: 25px;
  display: inline-block;
  box-shadow: 0 4px 16px rgba(0,0,0,0.1);
}

/* CONTENT GRIDS */
.benefits-grid,
.services-grid,
.steps-grid,
.stats-grid,
.testimonials-grid,
.courses-grid,
.articles-grid,
.tiers-grid,
.methods-grid,
.resources-grid,
.links-grid,
.contact-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
  margin-top: 40px;
}

/* CARDS */
.benefit-card,
.service-card,
.step,
.stat-item,
.course-card,
.article-card,
.tier-card,
.method-card,
.resource-card,
.link-card,
.contact-item,
.principle-card,
.service-block {
  background: linear-gradient(135deg, #FFFFFF 0%, #FFF9E6 100%);
  padding: 32px;
  border-radius: 25px;
  box-shadow: 0 12px 32px rgba(255,105,180,0.2);
  transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  flex: 1 1 calc(50% - 12px);
  min-width: 280px;
  position: relative;
  overflow: hidden;
  border: 4px solid transparent;
}

.benefit-card::before,
.service-card::before,
.course-card::before {
  content: '✨';
  position: absolute;
  top: 10px;
  right: 10px;
  font-size: 32px;
  opacity: 0;
  transition: all 0.3s ease;
}

.benefit-card:hover,
.service-card:hover,
.step:hover,
.course-card:hover,
.article-card:hover,
.tier-card:hover,
.method-card:hover,
.resource-card:hover,
.link-card:hover,
.principle-card:hover {
  transform: translateY(-10px) rotate(2deg);
  box-shadow: 0 20px 48px rgba(255,105,180,0.4);
  border-color: #FF69B4;
}

.benefit-card:hover::before,
.service-card:hover::before,
.course-card:hover::before {
  opacity: 1;
  transform: rotate(180deg);
}

.tier-card.featured {
  background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
  border: 4px solid #FF1493;
  transform: scale(1.05);
}

.tier-card.featured h3 {
  color: #2C3E50;
}

/* TESTIMONIAL CARDS */
.testimonial-card {
  background: linear-gradient(135deg, #FFF9E6 0%, #FFFFFF 100%);
  padding: 32px;
  border-radius: 25px;
  box-shadow: 0 12px 32px rgba(0,0,0,0.1);
  flex: 1 1 calc(50% - 12px);
  min-width: 280px;
  position: relative;
  border-left: 6px solid #FFD700;
  margin-bottom: 20px;
}

.testimonial-card p {
  font-size: 18px;
  color: #2C3E50;
  font-style: italic;
  margin-bottom: 16px;
  line-height: 1.8;
}

.testimonial-card .author {
  color: #FF1493;
  font-weight: 700;
  font-size: 16px;
  display: block;
  margin-top: 16px;
}

/* STATS */
.stat-number {
  font-size: 56px;
  font-weight: 800;
  color: #FF1493;
  display: block;
  margin-bottom: 8px;
  text-shadow: 3px 3px 6px rgba(255,20,147,0.2);
}

.stat-label {
  font-size: 18px;
  color: #2C3E50;
  font-weight: 600;
  display: block;
}

/* LISTS */
ul {
  list-style: none;
  padding-left: 0;
}

ul li {
  padding: 12px 0;
  padding-left: 40px;
  position: relative;
  font-size: 18px;
  color: #2C3E50;
}

ul li::before {
  content: '🌟';
  position: absolute;
  left: 0;
  font-size: 24px;
  animation: pulse 2s ease-in-out infinite;
}

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

/* PRICES */
.price {
  font-size: 32px;
  font-weight: 800;
  color: #FF1493;
  display: block;
  margin: 16px 0;
  text-shadow: 2px 2px 4px rgba(255,20,147,0.2);
}

.duration,
.level,
.category,
.date,
.meta {
  display: inline-block;
  background: linear-gradient(135deg, #FF69B4, #FFB6C1);
  color: white;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 700;
  margin: 8px 8px 8px 0;
}

/* FORMS */
.form-wrapper,
.newsletter-form {
  max-width: 600px;
  margin: 40px auto;
}

.form-field {
  margin-bottom: 24px;
}

.form-field label {
  display: block;
  margin-bottom: 8px;
  font-weight: 700;
  color: #2C3E50;
  font-size: 18px;
}

input[type="text"],
input[type="email"],
input[type="tel"],
select,
textarea {
  width: 100%;
  padding: 16px;
  border: 3px solid #FFB6C1;
  border-radius: 15px;
  font-size: 16px;
  font-family: inherit;
  transition: all 0.3s ease;
  background: white;
}

input:focus,
select:focus,
textarea:focus {
  outline: none;
  border-color: #FF1493;
  box-shadow: 0 0 0 4px rgba(255,20,147,0.1);
  transform: scale(1.02);
}

textarea {
  min-height: 150px;
  resize: vertical;
}

.form-field.checkbox {
  display: flex;
  align-items: center;
  gap: 12px;
}

.form-field.checkbox input {
  width: auto;
}

/* NEWSLETTER */
.newsletter {
  background: linear-gradient(135deg, #00CED1 0%, #48D1CC 100%);
  padding: 60px 20px;
  border-radius: 30px;
  text-align: center;
  margin: 60px 0;
}

.newsletter h2 {
  color: white;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
}

.newsletter p {
  color: white;
  font-size: 20px;
}

.newsletter-form {
  display: flex;
  gap: 12px;
  max-width: 600px;
  margin: 32px auto;
  flex-wrap: wrap;
}

.newsletter-form input {
  flex: 1;
  min-width: 250px;
}

.privacy-note {
  font-size: 14px;
  color: white;
  opacity: 0.9;
}

/* FOOTER */
footer {
  background: linear-gradient(135deg, #2C3E50 0%, #34495E 100%);
  color: white;
  padding: 60px 20px 20px;
  margin-top: 80px;
  border-top: 8px solid #FFD700;
}

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

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

.footer-column h3 {
  color: #FFD700;
  margin-bottom: 20px;
  font-size: 22px;
}

.footer-column ul {
  list-style: none;
  padding: 0;
}

.footer-column ul li {
  padding: 8px 0;
  padding-left: 0;
}

.footer-column ul li::before {
  content: '';
}

.footer-column a {
  color: white;
  transition: all 0.3s ease;
}

.footer-column a:hover {
  color: #FFD700;
  padding-left: 10px;
}

.footer-column p {
  color: white;
  font-size: 16px;
}

.footer-bottom {
  border-top: 2px solid rgba(255,255,255,0.2);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.legal-links {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.legal-links a {
  color: white;
  font-size: 14px;
}

/* COOKIE CONSENT BANNER */
.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, #2C3E50 0%, #34495E 100%);
  color: white;
  padding: 24px;
  box-shadow: 0 -8px 32px rgba(0,0,0,0.3);
  z-index: 1998;
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  border-top: 4px solid #FFD700;
}

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

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

.cookie-consent p {
  flex: 1;
  margin: 0;
  font-size: 16px;
}

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

.cookie-buttons button {
  padding: 12px 24px;
  border: none;
  border-radius: 25px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 16px;
}

.cookie-accept {
  background: linear-gradient(135deg, #FFD700, #FFA500);
  color: #2C3E50;
}

.cookie-accept:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 24px rgba(255,215,0,0.4);
}

.cookie-reject {
  background: rgba(255,255,255,0.2);
  color: white;
}

.cookie-settings {
  background: transparent;
  color: white;
  border: 2px solid white;
}

.cookie-settings:hover {
  background: rgba(255,255,255,0.1);
}

/* COOKIE MODAL */
.cookie-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0,0,0,0.8);
  z-index: 2001;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.cookie-modal.active {
  opacity: 1;
  pointer-events: all;
}

.cookie-modal-content {
  background: white;
  padding: 40px;
  border-radius: 30px;
  max-width: 600px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
  animation: bounceIn 0.5s ease-out;
}

.cookie-modal h2 {
  color: #FF1493;
  margin-bottom: 24px;
}

.cookie-category {
  margin-bottom: 24px;
  padding: 20px;
  background: #FFF9E6;
  border-radius: 15px;
  border-left: 4px solid #FFD700;
}

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

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

.toggle-switch {
  position: relative;
  width: 60px;
  height: 30px;
  background: #ccc;
  border-radius: 15px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.toggle-switch.active {
  background: #FF1493;
}

.toggle-switch::after {
  content: '';
  position: absolute;
  width: 26px;
  height: 26px;
  background: white;
  border-radius: 50%;
  top: 2px;
  left: 2px;
  transition: transform 0.3s ease;
}

.toggle-switch.active::after {
  transform: translateX(30px);
}

.modal-buttons {
  display: flex;
  gap: 12px;
  margin-top: 32px;
  justify-content: center;
}

/* LEGAL CONTENT */
.legal-content {
  background: white;
  padding: 60px 40px;
  border-radius: 30px;
  box-shadow: 0 12px 32px rgba(0,0,0,0.1);
  margin: 40px 0;
}

.legal-content h1 {
  color: #FF1493;
  margin-bottom: 16px;
}

.legal-content h2 {
  color: #FF69B4;
  margin-top: 32px;
  margin-bottom: 16px;
}

.last-updated {
  color: #666;
  font-style: italic;
  margin-bottom: 32px;
}

.text-section {
  line-height: 1.8;
}

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

/* THANK YOU PAGE */
.thank-you-hero {
  text-align: center;
  padding: 80px 20px;
}

.success-icon {
  width: 100px;
  height: 100px;
  background: linear-gradient(135deg, #00CED1, #48D1CC);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 60px;
  margin: 0 auto 32px;
  animation: bounceIn 0.8s ease-out;
}

.steps-list {
  max-width: 800px;
  margin: 40px auto;
}

.step-item {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-bottom: 32px;
  background: linear-gradient(135deg, #FFF9E6, #FFFFFF);
  padding: 24px;
  border-radius: 20px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}

.step-number {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #FFD700, #FFA500);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  font-weight: 800;
  flex-shrink: 0;
}

/* TEXT-IMAGE SECTIONS */
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.text-image-section img {
  flex: 1 1 45%;
  min-width: 280px;
  border-radius: 20px;
  box-shadow: 0 12px 32px rgba(0,0,0,0.15);
}

.text-image-section .content {
  flex: 1 1 45%;
  min-width: 280px;
}

/* RESPONSIVE DESIGN */
@media (max-width: 1024px) {
  .benefit-card,
  .service-card,
  .course-card,
  .article-card {
    flex: 1 1 calc(50% - 12px);
  }
}

@media (max-width: 768px) {
  /* MOBILE MENU */
  .mobile-menu-toggle {
    display: block;
  }
  
  .main-nav {
    display: none;
  }
  
  header .cta-button {
    display: none;
  }
  
  /* TYPOGRAPHY */
  h1 {
    font-size: 36px;
  }
  
  h2 {
    font-size: 28px;
  }
  
  h3 {
    font-size: 22px;
  }
  
  /* GRIDS */
  .benefit-card,
  .service-card,
  .step,
  .stat-item,
  .course-card,
  .article-card,
  .tier-card,
  .method-card,
  .resource-card,
  .link-card,
  .principle-card {
    flex: 1 1 100%;
  }
  
  /* BUTTONS */
  .cta-buttons {
    flex-direction: column;
  }
  
  .cta-button,
  .btn-primary,
  .btn-secondary {
    width: 100%;
    text-align: center;
  }
  
  /* FOOTER */
  .footer-content {
    flex-direction: column;
  }
  
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
  
  .legal-links {
    flex-direction: column;
    align-items: center;
  }
  
  /* COOKIE CONSENT */
  .cookie-consent-content {
    flex-direction: column;
    text-align: center;
  }
  
  .cookie-buttons {
    width: 100%;
    flex-direction: column;
  }
  
  .cookie-buttons button {
    width: 100%;
  }
  
  /* TEXT-IMAGE */
  .text-image-section {
    flex-direction: column;
  }
  
  /* NEWSLETTER */
  .newsletter-form {
    flex-direction: column;
  }
  
  .newsletter-form input {
    width: 100%;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 28px;
  }
  
  h2 {
    font-size: 24px;
  }
  
  .hero {
    padding: 40px 20px;
  }
  
  .stat-number {
    font-size: 42px;
  }
  
  .price {
    font-size: 24px;
  }
}

/* ACCESSIBILITY */
:focus {
  outline: 3px solid #FFD700;
  outline-offset: 2px;
}

button:focus,
a:focus {
  outline: 3px solid #FFD700;
}

/* PRINT STYLES */
@media print {
  header,
  footer,
  .mobile-menu-toggle,
  .mobile-menu,
  .cookie-consent {
    display: none;
  }
  
  body {
    background: white;
  }
  
  a {
    color: #000;
    text-decoration: underline;
  }
}