/* ========================================
   DREAMSCAPE CSS - VIBRANT ENERGETIC STYLE
   Modern Fashion E-commerce Design
   ======================================== */

/* 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', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  line-height: 1.6;
  color: #1a252f;
  background: #ffffff;
  overflow-x: hidden;
}

/* TYPOGRAPHY */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 16px;
  color: #1a252f;
}

h1 {
  font-size: 48px;
  letter-spacing: -0.5px;
}

h2 {
  font-size: 32px;
  margin-bottom: 24px;
}

h3 {
  font-size: 24px;
  margin-bottom: 16px;
}

h4 {
  font-size: 18px;
  margin-bottom: 12px;
}

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

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

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

ul, ol {
  margin-left: 20px;
  margin-bottom: 16px;
}

li {
  margin-bottom: 8px;
}

strong {
  font-weight: 700;
  color: #1a252f;
}

table {
  width: 100%;
  border-collapse: collapse;
  margin: 24px 0;
}

th, td {
  padding: 12px;
  text-align: left;
  border-bottom: 2px solid #E8B4B8;
}

th {
  background: #E8B4B8;
  color: #1a252f;
  font-weight: 700;
}

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

/* HEADER */
header {
  background: #ffffff;
  box-shadow: 0 2px 12px rgba(232, 180, 184, 0.2);
  position: sticky;
  top: 0;
  z-index: 900;
  border-bottom: 3px solid #E8B4B8;
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 0;
  gap: 24px;
}

.logo img {
  height: 50px;
  width: auto;
  transition: transform 0.3s ease;
}

.logo:hover img {
  transform: scale(1.05);
}

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

.main-nav a {
  font-weight: 600;
  font-size: 16px;
  color: #1a252f;
  position: relative;
  padding: 8px 0;
  transition: color 0.3s ease;
}

.main-nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, #E8B4B8, #95A5A6);
  transition: width 0.3s ease;
}

.main-nav a:hover {
  color: #E8B4B8;
}

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

/* MOBILE MENU */
.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 1000;
  background: linear-gradient(135deg, #E8B4B8, #95A5A6);
  color: #ffffff;
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  font-size: 24px;
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(232, 180, 184, 0.4);
  transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
  transform: scale(1.1) rotate(90deg);
  box-shadow: 0 6px 20px rgba(232, 180, 184, 0.6);
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  right: -100%;
  width: 80%;
  max-width: 320px;
  height: 100vh;
  background: linear-gradient(180deg, #1a252f 0%, #2C3E50 100%);
  z-index: 999;
  padding: 80px 32px 32px;
  box-shadow: -4px 0 24px rgba(0, 0, 0, 0.3);
  transition: right 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  overflow-y: auto;
}

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

.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: transparent;
  color: #ffffff;
  border: 2px solid #E8B4B8;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 24px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.mobile-menu-close:hover {
  background: #E8B4B8;
  transform: rotate(90deg);
}

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

.mobile-nav a {
  color: #ffffff;
  font-size: 18px;
  font-weight: 600;
  padding: 12px 0;
  border-bottom: 2px solid rgba(232, 180, 184, 0.3);
  transition: all 0.3s ease;
}

.mobile-nav a:hover {
  color: #E8B4B8;
  padding-left: 12px;
  border-bottom-color: #E8B4B8;
}

/* HERO SECTION */
.hero {
  background: linear-gradient(135deg, #E8B4B8 0%, #95A5A6 100%);
  padding: 80px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
  animation: pulse 8s ease-in-out infinite;
}

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

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

.hero h1 {
  color: #ffffff;
  font-size: 56px;
  margin-bottom: 24px;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.2);
  animation: fadeInUp 0.8s ease;
}

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

.hero-subtitle {
  font-size: 20px;
  color: #ffffff;
  margin-bottom: 32px;
  line-height: 1.8;
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.1);
  animation: fadeInUp 0.8s ease 0.2s both;
}

.hero-cta {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-bottom: 40px;
  flex-wrap: wrap;
  animation: fadeInUp 0.8s ease 0.4s both;
}

.trust-badges {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  animation: fadeInUp 0.8s ease 0.6s both;
}

.trust-badges span {
  background: rgba(255, 255, 255, 0.95);
  color: #2C3E50;
  padding: 12px 24px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 14px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.trust-badges span:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
}

/* BUTTONS */
.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 16px;
  text-align: center;
  cursor: pointer;
  border: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  min-width: 160px;
}

.btn-primary {
  background: linear-gradient(135deg, #1a252f, #2C3E50);
  color: #ffffff;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(26, 37, 47, 0.4);
  background: linear-gradient(135deg, #2C3E50, #1a252f);
}

.btn-secondary {
  background: #ffffff;
  color: #1a252f;
  border: 3px solid #E8B4B8;
}

.btn-secondary:hover {
  background: linear-gradient(135deg, #E8B4B8, #95A5A6);
  color: #ffffff;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(232, 180, 184, 0.4);
}

.btn-link {
  display: inline-block;
  color: #1a252f;
  font-weight: 700;
  font-size: 16px;
  padding: 8px 0;
  position: relative;
  transition: color 0.3s ease;
}

.btn-link::after {
  content: ' →';
  transition: transform 0.3s ease;
  display: inline-block;
}

.btn-link:hover {
  color: #E8B4B8;
}

.btn-link:hover::after {
  transform: translateX(5px);
}

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

.categories,
.services,
.value-proposition,
.subcategories,
.styling-tips,
.essentials,
.comfort-tech,
.benefits,
.contact-options,
.faq-section,
.team {
  padding: 60px 20px;
}

.categories {
  background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 100%);
}

.services {
  background: #ffffff;
}

.value-proposition {
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

/* CATEGORY GRID */
.category-grid,
.service-grid,
.benefits-grid,
.category-item,
.trust-grid,
.tips-grid,
.essentials-grid,
.features-grid,
.guide-grid,
.trends-grid,
.highlights-grid,
.lookbook-grid,
.benefits-grid,
.options-grid,
.faq-list,
.team-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
  margin-top: 32px;
}

.category-card,
.service-item,
.benefit,
.category-item,
.trust-item,
.tip-card,
.essential-item,
.feature-item,
.guide-item,
.trend-item,
.highlight-item,
.look-item,
.benefit-item,
.option-item,
.faq-item,
.team-member {
  background: #ffffff;
  border-radius: 16px;
  padding: 32px;
  box-shadow: 0 4px 20px rgba(232, 180, 184, 0.15);
  transition: all 0.3s ease;
  flex: 1 1 calc(50% - 12px);
  min-width: 280px;
  position: relative;
  border: 2px solid transparent;
}

.category-card::before,
.service-item::before,
.benefit::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #E8B4B8, #95A5A6);
  border-radius: 16px 16px 0 0;
}

.category-card:hover,
.service-item:hover,
.benefit:hover,
.category-item:hover,
.tip-card:hover,
.essential-item:hover,
.feature-item:hover,
.guide-item:hover,
.trend-item:hover,
.highlight-item:hover,
.look-item:hover,
.benefit-item:hover,
.option-item:hover,
.team-member:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 30px rgba(232, 180, 184, 0.3);
  border-color: #E8B4B8;
}

.category-card h3,
.service-item h3,
.benefit h3 {
  color: #1a252f;
  margin-bottom: 16px;
  font-size: 24px;
}

.category-card p,
.service-item p,
.benefit p {
  color: #2C3E50;
  margin-bottom: 20px;
  line-height: 1.7;
}

.price {
  display: block;
  font-weight: 700;
  color: #E8B4B8;
  font-size: 20px;
  margin-top: 16px;
}

/* TESTIMONIALS */
.testimonials {
  background: linear-gradient(135deg, #E8B4B8 0%, #95A5A6 100%);
  padding: 60px 20px;
  text-align: center;
}

.testimonials h2 {
  color: #ffffff;
  margin-bottom: 40px;
}

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

.testimonial-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 32px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  max-width: 500px;
  flex: 1 1 calc(50% - 12px);
  min-width: 280px;
  transition: all 0.3s ease;
  text-align: left;
  border-left: 4px solid #E8B4B8;
}

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

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

.author {
  display: block;
  font-weight: 700;
  color: #1a252f;
  font-size: 14px;
  margin-top: 12px;
}

.rating {
  color: #ffffff;
  font-size: 18px;
  font-weight: 700;
}

/* LOCATION */
.location {
  background: #f8f9fa;
  padding: 60px 20px;
}

.location-content {
  display: flex;
  align-items: flex-start;
  gap: 40px;
  flex-wrap: wrap;
  margin-top: 32px;
}

.location-info {
  flex: 1 1 300px;
}

.location-info p {
  margin-bottom: 16px;
  font-size: 16px;
  line-height: 1.8;
}

/* PAGE HERO */
.page-hero {
  background: linear-gradient(135deg, #1a252f 0%, #2C3E50 100%);
  padding: 60px 20px;
  text-align: center;
  color: #ffffff;
}

.legal-hero {
  background: linear-gradient(135deg, #E8B4B8 0%, #95A5A6 100%);
}

.breadcrumbs {
  font-size: 14px;
  margin-bottom: 24px;
  opacity: 0.9;
}

.breadcrumbs a {
  color: #ffffff;
  text-decoration: underline;
}

.breadcrumbs a:hover {
  color: #E8B4B8;
}

.page-hero h1 {
  color: #ffffff;
  font-size: 48px;
  margin-bottom: 16px;
}

.subtitle {
  font-size: 20px;
  color: #ffffff;
  margin-bottom: 16px;
  line-height: 1.7;
}

.last-updated,
.season-badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.2);
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 14px;
  margin-top: 16px;
}

/* CATEGORY INTRO */
.category-intro,
.current-collection,
.styling-service,
.loyalty-cta {
  padding: 60px 20px;
  background: #ffffff;
}

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

.price-range {
  background: linear-gradient(135deg, #E8B4B8, #95A5A6);
  color: #ffffff;
  padding: 16px 24px;
  border-radius: 12px;
  margin-top: 24px;
  display: inline-block;
}

/* COLLECTION DETAILS */
.collection-details {
  background: #f8f9fa;
  padding: 24px;
  border-radius: 12px;
  margin-top: 24px;
  border-left: 4px solid #E8B4B8;
}

.collection-details p {
  margin-bottom: 12px;
}

.badge {
  display: inline-block;
  background: linear-gradient(135deg, #E8B4B8, #95A5A6);
  color: #ffffff;
  padding: 6px 12px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 700;
  margin-top: 12px;
}

/* TRUST SECTION */
.trust-section {
  background: #f8f9fa;
  padding: 60px 20px;
  text-align: center;
}

.trust-item {
  background: #ffffff;
  text-align: center;
  flex: 1 1 calc(25% - 18px);
  min-width: 200px;
}

.trust-item p {
  font-weight: 600;
  color: #1a252f;
}

/* CONTACT PAGE */
.contact-info,
.styling-service,
.team {
  padding: 60px 20px;
}

.contact-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-top: 32px;
}

.contact-detail {
  flex: 1 1 calc(50% - 16px);
  min-width: 250px;
}

.contact-detail h3 {
  color: #E8B4B8;
  margin-bottom: 12px;
  font-size: 20px;
}

/* FAQ */
.faq-item {
  background: #f8f9fa;
  flex: 1 1 100%;
  border-left: 4px solid #E8B4B8;
}

.faq-item h3 {
  color: #1a252f;
  font-size: 18px;
  margin-bottom: 12px;
}

/* THANK YOU PAGE */
.thank-you-hero {
  background: linear-gradient(135deg, #E8B4B8 0%, #95A5A6 100%);
  padding: 80px 20px;
  text-align: center;
}

.thank-you-content h1 {
  color: #ffffff;
  font-size: 56px;
  margin-bottom: 16px;
}

.confirmation {
  padding: 60px 20px;
  background: #ffffff;
}

.confirmation-box {
  max-width: 700px;
  margin: 0 auto;
  background: #f8f9fa;
  padding: 40px;
  border-radius: 16px;
  border: 3px solid #E8B4B8;
  text-align: center;
}

.confirmation-box p {
  font-size: 18px;
  margin-bottom: 20px;
}

.next-steps,
.continue-explore,
.showroom-invite {
  padding: 60px 20px;
  text-align: center;
}

.steps-grid,
.explore-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  margin-top: 32px;
}

.step-item,
.explore-item {
  background: #ffffff;
  border-radius: 16px;
  padding: 32px;
  box-shadow: 0 4px 20px rgba(232, 180, 184, 0.15);
  flex: 1 1 calc(33.333% - 16px);
  min-width: 250px;
  border-top: 4px solid #E8B4B8;
  transition: all 0.3s ease;
}

.step-item:hover,
.explore-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(232, 180, 184, 0.3);
}

.urgent-note {
  margin-top: 32px;
  font-size: 16px;
  color: #2C3E50;
}

.location-details {
  background: #f8f9fa;
  padding: 24px;
  border-radius: 12px;
  margin: 24px 0;
  border-left: 4px solid #E8B4B8;
}

.testimonials-mini {
  background: #f8f9fa;
  padding: 60px 20px;
  text-align: center;
}

/* LEGAL CONTENT */
.legal-content {
  padding: 60px 20px;
  background: #ffffff;
}

.legal-content .content-wrapper {
  max-width: 900px;
}

.legal-content h2 {
  color: #1a252f;
  margin-top: 40px;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 3px solid #E8B4B8;
}

.legal-content h3 {
  color: #2C3E50;
  margin-top: 24px;
  margin-bottom: 16px;
}

.legal-content ul,
.legal-content ol {
  margin-left: 32px;
  margin-bottom: 20px;
}

.legal-content li {
  margin-bottom: 12px;
  line-height: 1.8;
}

.legal-content a {
  color: #E8B4B8;
  text-decoration: underline;
}

.legal-content a:hover {
  color: #1a252f;
}

.version,
.confirmation {
  font-size: 14px;
  color: #7a8a8b;
  margin-top: 32px;
  font-style: italic;
}

/* FOOTER */
footer {
  background: linear-gradient(180deg, #1a252f 0%, #2C3E50 100%);
  color: #ffffff;
  padding: 60px 20px 24px;
  margin-top: 80px;
}

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

.footer-brand,
.footer-links,
.footer-contact,
.footer-legal {
  flex: 1 1 calc(25% - 30px);
  min-width: 200px;
}

.footer-brand img {
  height: 50px;
  margin-bottom: 16px;
}

.footer-brand p {
  color: #E8B4B8;
  font-style: italic;
}

footer h4 {
  color: #E8B4B8;
  margin-bottom: 20px;
  font-size: 18px;
}

footer a {
  display: block;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 12px;
  transition: all 0.3s ease;
  padding: 4px 0;
}

footer a:hover {
  color: #E8B4B8;
  padding-left: 8px;
}

.footer-contact p {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 12px;
}

.footer-bottom {
  border-top: 2px solid rgba(232, 180, 184, 0.3);
  padding-top: 24px;
  text-align: center;
}

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

/* COOKIE CONSENT BANNER */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, #1a252f 0%, #2C3E50 100%);
  color: #ffffff;
  padding: 24px;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
  z-index: 950;
  transform: translateY(100%);
  transition: transform 0.4s ease;
  border-top: 3px solid #E8B4B8;
}

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

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

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

.cookie-text p {
  color: #ffffff;
  margin-bottom: 8px;
  font-size: 14px;
}

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

.cookie-btn {
  padding: 10px 20px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  border: none;
  transition: all 0.3s ease;
}

.cookie-accept {
  background: linear-gradient(135deg, #E8B4B8, #95A5A6);
  color: #ffffff;
}

.cookie-accept:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 12px rgba(232, 180, 184, 0.4);
}

.cookie-reject {
  background: transparent;
  color: #ffffff;
  border: 2px solid #E8B4B8;
}

.cookie-reject:hover {
  background: rgba(232, 180, 184, 0.2);
}

.cookie-settings {
  background: transparent;
  color: #ffffff;
  border: 2px solid #95A5A6;
}

.cookie-settings:hover {
  background: rgba(149, 165, 166, 0.2);
}

/* COOKIE MODAL */
.cookie-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  z-index: 1000;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

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

.cookie-modal-content {
  background: #ffffff;
  border-radius: 16px;
  padding: 40px;
  max-width: 600px;
  width: 100%;
  max-height: 80vh;
  overflow-y: auto;
  position: relative;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.3);
}

.cookie-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: transparent;
  border: none;
  font-size: 24px;
  cursor: pointer;
  color: #1a252f;
  width: 32px;
  height: 32px;
  transition: all 0.3s ease;
}

.cookie-modal-close:hover {
  color: #E8B4B8;
  transform: rotate(90deg);
}

.cookie-category {
  margin-bottom: 24px;
  padding: 20px;
  background: #f8f9fa;
  border-radius: 12px;
  border-left: 4px solid #E8B4B8;
}

.cookie-category h3 {
  margin-bottom: 12px;
  color: #1a252f;
}

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

.toggle-switch {
  position: relative;
  width: 50px;
  height: 26px;
  background: #95A5A6;
  border-radius: 50px;
  cursor: pointer;
  transition: background 0.3s ease;
}

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

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

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

.cookie-actions {
  display: flex;
  gap: 12px;
  margin-top: 32px;
  justify-content: flex-end;
}

/* RESPONSIVE DESIGN */
@media (max-width: 768px) {
  /* Mobile Typography */
  h1 { font-size: 32px; }
  h2 { font-size: 24px; }
  h3 { font-size: 20px; }
  
  .hero h1 { font-size: 36px; }
  .hero-subtitle { font-size: 16px; }
  .page-hero h1 { font-size: 32px; }
  .subtitle { font-size: 16px; }
  
  /* Mobile Header */
  .main-nav { display: none; }
  .mobile-menu-toggle { display: block; }
  .mobile-menu { display: block; }
  
  .header-content {
    padding: 12px 0;
  }
  
  /* Mobile Sections */
  .section { padding: 40px 16px; }
  
  .hero,
  .page-hero {
    padding: 60px 16px;
  }
  
  /* Mobile Grids */
  .category-grid,
  .service-grid,
  .benefits-grid,
  .trust-grid,
  .tips-grid,
  .essentials-grid,
  .features-grid,
  .guide-grid,
  .trends-grid,
  .highlights-grid,
  .lookbook-grid,
  .options-grid,
  .team-grid,
  .contact-grid,
  .steps-grid,
  .explore-grid {
    flex-direction: column;
    gap: 20px;
  }
  
  .category-card,
  .service-item,
  .benefit,
  .category-item,
  .trust-item,
  .tip-card,
  .essential-item,
  .feature-item,
  .guide-item,
  .trend-item,
  .highlight-item,
  .look-item,
  .benefit-item,
  .option-item,
  .team-member,
  .contact-detail,
  .step-item,
  .explore-item {
    flex: 1 1 100%;
    min-width: auto;
  }
  
  /* Mobile Testimonials */
  .testimonial-grid {
    flex-direction: column;
  }
  
  .testimonial-card {
    flex: 1 1 100%;
  }
  
  /* Mobile Hero */
  .hero-cta {
    flex-direction: column;
    align-items: stretch;
  }
  
  .btn {
    width: 100%;
  }
  
  .trust-badges {
    flex-direction: column;
    gap: 12px;
  }
  
  /* Mobile Location */
  .location-content {
    flex-direction: column;
  }
  
  /* Mobile Footer */
  .footer-content {
    flex-direction: column;
    gap: 32px;
  }
  
  .footer-brand,
  .footer-links,
  .footer-contact,
  .footer-legal {
    flex: 1 1 100%;
  }
  
  /* Mobile Cookie Banner */
  .cookie-content {
    flex-direction: column;
    text-align: center;
  }
  
  .cookie-buttons {
    width: 100%;
    flex-direction: column;
  }
  
  .cookie-btn {
    width: 100%;
  }
  
  .cookie-modal-content {
    padding: 24px;
    max-height: 90vh;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  /* Tablet adjustments */
  .category-card,
  .service-item,
  .benefit,
  .category-item {
    flex: 1 1 calc(50% - 12px);
  }
  
  .trust-item {
    flex: 1 1 calc(50% - 12px);
  }
}

/* ANIMATIONS */
@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

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

/* PRINT STYLES */
@media print {
  .mobile-menu-toggle,
  .mobile-menu,
  .cookie-banner,
  .cookie-modal,
  header,
  footer {
    display: none;
  }
  
  body {
    background: white;
    color: black;
  }
  
  .hero,
  .page-hero {
    background: none;
    color: black;
  }
}

/* ACCESSIBILITY */
.btn:focus,
a:focus,
button:focus {
  outline: 3px solid #E8B4B8;
  outline-offset: 2px;
}

/* HIGH CONTRAST MODE */
@media (prefers-contrast: high) {
  .btn-primary {
    background: #000000;
    border: 2px solid #ffffff;
  }
  
  .btn-secondary {
    background: #ffffff;
    color: #000000;
    border: 2px solid #000000;
  }
}

/* REDUCED MOTION */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}