/* ===================================
   SILENT SWEEP - SOFT PASTEL DESIGN
   Modern CSS with Flexbox Layouts
   =================================== */

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

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

body {
  font-family: 'Open Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  line-height: 1.7;
  color: #4A5568;
  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-position: inside;
}

/* === SOFT PASTEL COLOR PALETTE === */
:root {
  --pastel-pink: #FFD6E8;
  --pastel-lavender: #E6D7FF;
  --pastel-blue: #D6E8FF;
  --pastel-mint: #D6FFE8;
  --pastel-peach: #FFE6D6;
  --pastel-yellow: #FFF4D6;
  --text-dark: #4A5568;
  --text-medium: #718096;
  --text-light: #A0AEC0;
  --white: #FFFFFF;
  --shadow-soft: 0 8px 24px rgba(150, 130, 180, 0.12);
  --shadow-hover: 0 12px 32px rgba(150, 130, 180, 0.18);
}

/* === TYPOGRAPHY === */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  line-height: 1.3;
  color: #4A5568;
  margin-bottom: 16px;
}

h1 { font-size: 48px; }
h2 { font-size: 32px; }
h3 { font-size: 24px; }
h4 { font-size: 18px; }

p {
  margin-bottom: 16px;
  color: #4A5568;
}

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

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

/* === HEADER === */
header {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  padding: 20px 0;
  position: sticky;
  top: 0;
  z-index: 999;
  box-shadow: 0 4px 16px rgba(150, 130, 180, 0.08);
  border-bottom: 3px solid var(--pastel-lavender);
}

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

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

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

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

.main-nav a {
  font-size: 16px;
  font-weight: 500;
  color: #4A5568;
  padding: 8px 16px;
  border-radius: 20px;
  transition: all 0.3s ease;
  position: relative;
}

.main-nav a:hover {
  background: linear-gradient(135deg, var(--pastel-pink), var(--pastel-lavender));
  color: #fff;
  transform: translateY(-2px);
}

/* === MOBILE MENU === */
.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 20px;
  right: 24px;
  z-index: 1001;
  background: linear-gradient(135deg, var(--pastel-pink), var(--pastel-lavender));
  color: white;
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  font-size: 24px;
  cursor: pointer;
  box-shadow: var(--shadow-soft);
  transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
  transform: scale(1.1);
  box-shadow: var(--shadow-hover);
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 80%;
  max-width: 320px;
  height: 100vh;
  background: linear-gradient(180deg, var(--pastel-lavender), var(--pastel-pink));
  z-index: 1002;
  padding: 80px 32px 32px;
  transition: right 0.4s ease;
  box-shadow: -4px 0 24px rgba(0,0,0,0.1);
  overflow-y: auto;
}

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

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

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

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

.mobile-nav a {
  padding: 16px 20px;
  background: rgba(255,255,255,0.9);
  border-radius: 16px;
  font-weight: 600;
  color: #4A5568;
  transition: all 0.3s ease;
}

.mobile-nav a:hover {
  background: white;
  transform: translateX(8px);
  box-shadow: var(--shadow-soft);
}

/* === BUTTONS === */
.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 16px;
  text-align: center;
  cursor: pointer;
  border: none;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-soft);
  margin: 8px;
}

.btn-primary {
  background: linear-gradient(135deg, var(--pastel-pink), var(--pastel-lavender));
  color: white;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-hover);
  background: linear-gradient(135deg, #FFB3D9, #D6BFFF);
}

.btn-secondary {
  background: linear-gradient(135deg, var(--pastel-blue), var(--pastel-mint));
  color: white;
}

.btn-secondary:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-hover);
  background: linear-gradient(135deg, #B3D9FF, #B3FFD9);
}

/* === HERO SECTION === */
.hero {
  padding: 80px 20px;
  background: linear-gradient(135deg, var(--pastel-lavender) 0%, var(--pastel-pink) 50%, var(--pastel-peach) 100%);
  border-radius: 32px;
  margin: 32px 0;
  box-shadow: var(--shadow-soft);
}

.hero-content {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.hero h1 {
  font-size: 56px;
  color: white;
  text-shadow: 0 4px 12px rgba(74, 85, 104, 0.2);
  margin-bottom: 24px;
}

.hero-subtitle {
  font-size: 20px;
  color: white;
  margin-bottom: 32px;
  opacity: 0.95;
}

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

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

.trust-indicators span {
  background: rgba(255,255,255,0.95);
  padding: 12px 24px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
  color: #4A5568;
  box-shadow: 0 4px 12px rgba(150, 130, 180, 0.1);
}

/* === PAGE HEADER === */
.page-header {
  padding: 60px 20px 40px;
  background: linear-gradient(135deg, var(--pastel-mint), var(--pastel-blue));
  border-radius: 24px;
  margin: 24px 0;
  text-align: center;
}

.breadcrumbs {
  font-size: 14px;
  margin-bottom: 16px;
  color: #718096;
}

.breadcrumbs a:hover {
  color: #4A5568;
  text-decoration: underline;
}

.page-header h1 {
  color: rgb(0, 0, 0);
  text-shadow: 0 2px 8px rgba(74, 85, 104, 0.2);
  margin-bottom: 12px;
}

.page-header p {
  color: rgb(0, 0, 0);
  opacity: 0.95;
  font-size: 18px;
}

/* === FEATURES GRID === */
.features-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  margin-top: 40px;
}

.feature-item {
  background: white;
  padding: 32px 24px;
  border-radius: 20px;
  text-align: center;
  flex: 1 1 250px;
  max-width: 280px;
  box-shadow: var(--shadow-soft);
  transition: all 0.3s ease;
  border-top: 4px solid var(--pastel-lavender);
}

.feature-item:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
  border-top-color: var(--pastel-pink);
}

.feature-item h3 {
  color: #4A5568;
  margin-bottom: 12px;
  font-size: 20px;
}

.feature-item p {
  color: #718096;
  font-size: 15px;
}

/* === VALUE PROPOSITION === */
.value-proposition {
  padding: 60px 20px;
  text-align: center;
}

.value-proposition h2 {
  font-size: 40px;
  margin-bottom: 48px;
  color: #4A5568;
}

/* === PRODUCT CATEGORIES === */
.product-categories {
  padding: 60px 20px;
  background: white;
  border-radius: 32px;
  margin: 40px 0;
}

.product-categories h2 {
  text-align: center;
  font-size: 40px;
  margin-bottom: 48px;
}

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

.category-card {
  background: linear-gradient(135deg, var(--pastel-blue), var(--pastel-lavender));
  padding: 40px 32px;
  border-radius: 20px;
  text-align: center;
  flex: 1 1 300px;
  max-width: 360px;
  box-shadow: var(--shadow-soft);
  transition: all 0.3s ease;
  position: relative;
  margin-bottom: 20px;
}

.category-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: var(--shadow-hover);
}

.category-card h3 {
  color: white;
  font-size: 24px;
  margin-bottom: 12px;
}

.category-card p {
  color: white;
  font-size: 18px;
  font-weight: 600;
  opacity: 0.95;
}

.product-categories > .container > .btn {
  display: block;
  margin: 32px auto 0;
  max-width: 320px;
}

/* === BRAND STORY === */
.brand-story {
  padding: 60px 20px;
  background: linear-gradient(135deg, var(--pastel-peach), var(--pastel-yellow));
  border-radius: 32px;
  margin: 40px 0;
  text-align: center;
}

.brand-story h2 {
  font-size: 36px;
  color: rgb(0, 0, 0);
  margin-bottom: 24px;
  text-shadow: 0 2px 8px rgba(74, 85, 104, 0.2);
}

.brand-story p {
  font-size: 18px;
  color: rgb(0, 0, 0);
  max-width: 800px;
  margin: 0 auto 24px;
  opacity: 0.95;
}

/* === TESTIMONIALS === */
.testimonials {
  padding: 60px 20px;
  text-align: center;
}

.testimonials h2 {
  font-size: 40px;
  margin-bottom: 48px;
}

.testimonial-card {
  background: white;
  padding: 32px;
  border-radius: 20px;
  margin-bottom: 24px;
  box-shadow: var(--shadow-soft);
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  border-left: 5px solid var(--pastel-pink);
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.testimonial-card p {
  font-size: 18px;
  font-style: italic;
  color: #4A5568;
  line-height: 1.8;
}

.testimonial-card span {
  font-weight: 600;
  color: #718096;
  font-size: 15px;
  align-self: flex-end;
}

.testimonials .rating {
  font-size: 24px;
  font-weight: 700;
  color: #4A5568;
  margin-top: 32px;
  background: linear-gradient(135deg, var(--pastel-pink), var(--pastel-lavender));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* === PRODUCTS PAGE === */
.products-layout {
  display: flex;
  gap: 32px;
  margin-top: 40px;
  flex-wrap: wrap;
}

.filters {
  flex: 0 0 250px;
  background: white;
  padding: 24px;
  border-radius: 20px;
  box-shadow: var(--shadow-soft);
  height: fit-content;
  position: relative;
}

.filters h3 {
  margin-bottom: 24px;
  color: #4A5568;
}

.filter-group {
  margin-bottom: 24px;
}

.filter-group label {
  display: block;
  font-weight: 600;
  margin-bottom: 8px;
  color: #4A5568;
}

.filter-group select {
  width: 100%;
  padding: 10px;
  border: 2px solid var(--pastel-lavender);
  border-radius: 12px;
  font-size: 15px;
  color: #4A5568;
  background: white;
}

.products-main {
  flex: 1;
  min-width: 0;
}

.products-header {
  margin-bottom: 32px;
}

.products-header p {
  font-size: 16px;
  color: #718096;
}

.products-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
}

.product-card {
  background: white;
  padding: 32px 24px;
  border-radius: 20px;
  flex: 1 1 300px;
  max-width: 360px;
  box-shadow: var(--shadow-soft);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 20px;
  position: relative;
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
}

.product-card h3 {
  color: #4A5568;
  font-size: 22px;
  margin-bottom: 8px;
}

.product-card .price {
  font-size: 24px;
  font-weight: 700;
  color: #4A5568;
  margin-bottom: 12px;
  background: linear-gradient(135deg, var(--pastel-pink), var(--pastel-lavender));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.product-card p {
  color: #718096;
  font-size: 15px;
  line-height: 1.6;
}

.purchase-benefits {
  background: linear-gradient(135deg, var(--pastel-mint), var(--pastel-blue));
  padding: 40px 32px;
  border-radius: 20px;
  margin-top: 48px;
}

.purchase-benefits h3 {
  color: white;
  font-size: 28px;
  margin-bottom: 24px;
  text-align: center;
}

.purchase-benefits ul {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 600px;
  margin: 0 auto;
}

.purchase-benefits li {
  color: white;
  font-size: 16px;
  padding: 12px 20px;
  background: rgba(255,255,255,0.2);
  border-radius: 12px;
  font-weight: 500;
}

/* === MISSION VISION === */
.mission-vision {
  padding: 60px 20px;
}

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

.text-section {
  background: white;
  padding: 40px 32px;
  border-radius: 20px;
  flex: 1 1 400px;
  max-width: 550px;
  box-shadow: var(--shadow-soft);
  transition: all 0.3s ease;
}

.text-section:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}

.text-section h2 {
  color: #4A5568;
  margin-bottom: 16px;
}

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

/* === VALUES === */
.values {
  padding: 60px 20px;
  background: white;
  border-radius: 32px;
  margin: 40px 0;
}

.values h2 {
  text-align: center;
  font-size: 40px;
  margin-bottom: 48px;
}

.values-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
}

.value-item {
  background: linear-gradient(135deg, var(--pastel-yellow), var(--pastel-peach));
  padding: 32px 24px;
  border-radius: 20px;
  text-align: center;
  flex: 1 1 240px;
  max-width: 280px;
  box-shadow: var(--shadow-soft);
  transition: all 0.3s ease;
}

.value-item:hover {
  transform: translateY(-8px) rotate(2deg);
  box-shadow: var(--shadow-hover);
}

.value-item h3 {
  color: rgb(0, 0, 0);
  margin-bottom: 12px;
  font-size: 20px;
}

.value-item p {
  color: rgb(0, 0, 0);
  font-size: 15px;
  opacity: 0.95;
}

/* === QUALITY COMMITMENT === */
.quality-commitment {
  padding: 60px 20px;
  background: linear-gradient(135deg, var(--pastel-lavender), var(--pastel-pink));
  border-radius: 32px;
  margin: 40px 0;
}

.quality-commitment h2 {
  color: white;
  text-align: center;
  font-size: 36px;
  margin-bottom: 32px;
  text-shadow: 0 2px 8px rgba(74, 85, 104, 0.2);
}

.quality-commitment ul {
  max-width: 600px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.quality-commitment li {
  color: white;
  font-size: 18px;
  padding: 16px 24px;
  background: rgba(255,255,255,0.2);
  border-radius: 12px;
  font-weight: 500;
}

/* === CTA SECTION === */
.cta-section {
  padding: 80px 20px;
  background: linear-gradient(135deg, var(--pastel-blue), var(--pastel-mint));
  border-radius: 32px;
  margin: 40px 0;
  text-align: center;
}

.cta-section h2 {
  color: white;
  font-size: 40px;
  margin-bottom: 16px;
  text-shadow: 0 2px 8px rgba(74, 85, 104, 0.2);
}

.cta-section p {
  color: white;
  font-size: 20px;
  margin-bottom: 32px;
  opacity: 0.95;
}

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

/* === COLLECTIONS === */
.collections-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  margin-top: 40px;
}

.collection-card {
  background: white;
  padding: 40px 32px;
  border-radius: 20px;
  flex: 1 1 320px;
  max-width: 380px;
  box-shadow: var(--shadow-soft);
  transition: all 0.3s ease;
  border-top: 5px solid var(--pastel-lavender);
  margin-bottom: 20px;
  position: relative;
}

.collection-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
  border-top-color: var(--pastel-pink);
}

.collection-card h3 {
  color: #4A5568;
  font-size: 26px;
  margin-bottom: 8px;
}

.collection-card .tagline {
  font-size: 16px;
  color: #718096;
  font-style: italic;
  margin-bottom: 16px;
}

.collection-card .price-range {
  font-size: 20px;
  font-weight: 700;
  color: #4A5568;
  margin-top: 20px;
  background: linear-gradient(135deg, var(--pastel-pink), var(--pastel-lavender));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.collection-benefits {
  padding: 60px 20px;
  background: white;
  border-radius: 32px;
  margin: 40px 0;
}

.collection-benefits h2 {
  text-align: center;
  font-size: 36px;
  margin-bottom: 32px;
}

.collection-benefits ul {
  max-width: 700px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.collection-benefits li {
  color: #4A5568;
  font-size: 18px;
  padding: 16px 24px;
  background: linear-gradient(135deg, var(--pastel-blue), var(--pastel-mint));
  border-radius: 12px;
  font-weight: 500;
  color: white;
}

/* === BLOG === */
.featured-post {
  background: linear-gradient(135deg, var(--pastel-pink), var(--pastel-lavender));
  padding: 48px 40px;
  border-radius: 24px;
  margin-bottom: 40px;
  box-shadow: var(--shadow-soft);
}

.featured-post h2 {
  color: white;
  font-size: 32px;
  margin-bottom: 16px;
}

.featured-post p {
  color: white;
  font-size: 18px;
  margin-bottom: 16px;
  opacity: 0.95;
}

.post-meta {
  color: white;
  font-size: 14px;
  opacity: 0.85;
}

.blog-categories {
  background: white;
  padding: 32px;
  border-radius: 20px;
  margin-bottom: 40px;
  box-shadow: var(--shadow-soft);
}

.blog-categories h3 {
  margin-bottom: 20px;
  color: #4A5568;
}

.blog-categories ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.blog-categories li {
  color: #718096;
  padding: 10px 16px;
  background: var(--pastel-blue);
  border-radius: 10px;
  transition: all 0.3s ease;
  cursor: pointer;
}

.blog-categories li:hover {
  background: var(--pastel-lavender);
  transform: translateX(8px);
  color: white;
}

.blog-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
  margin-bottom: 40px;
}

.blog-card {
  background: white;
  padding: 32px 24px;
  border-radius: 20px;
  flex: 1 1 280px;
  max-width: 350px;
  box-shadow: var(--shadow-soft);
  transition: all 0.3s ease;
  border-left: 4px solid var(--pastel-mint);
}

.blog-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
  border-left-color: var(--pastel-pink);
}

.blog-card h3 {
  color: #4A5568;
  font-size: 20px;
  margin-bottom: 12px;
}

.blog-card p {
  color: #718096;
  font-size: 15px;
  margin-bottom: 16px;
}

.expert-tips {
  background: linear-gradient(135deg, var(--pastel-yellow), var(--pastel-peach));
  padding: 40px 32px;
  border-radius: 20px;
  box-shadow: var(--shadow-soft);
}

.expert-tips h3 {
  color: white;
  font-size: 28px;
  margin-bottom: 24px;
  text-align: center;
}

.expert-tips ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.expert-tips li {
  color: white;
  font-size: 16px;
  padding: 14px 20px;
  background: rgba(255,255,255,0.2);
  border-radius: 12px;
}

/* === CONTACT === */
.contact-layout {
  display: flex;
  gap: 40px;
  margin-top: 40px;
  flex-wrap: wrap;
}

.contact-info {
  flex: 1 1 300px;
  background: white;
  padding: 40px 32px;
  border-radius: 20px;
  box-shadow: var(--shadow-soft);
}

.contact-info h2 {
  margin-bottom: 32px;
  color: #4A5568;
}

.info-item {
  margin-bottom: 32px;
}

.info-item h3 {
  color: #4A5568;
  font-size: 18px;
  margin-bottom: 8px;
}

.info-item p {
  color: #718096;
  font-size: 16px;
  line-height: 1.8;
}

.contact-form-section {
  flex: 1 1 400px;
  background: linear-gradient(135deg, var(--pastel-lavender), var(--pastel-pink));
  padding: 40px 32px;
  border-radius: 20px;
  box-shadow: var(--shadow-soft);
}

.contact-form-section h2 {
  color: white;
  margin-bottom: 16px;
}

.contact-form-section p {
  color: white;
  margin-bottom: 24px;
  opacity: 0.95;
}

.form-note {
  background: rgba(255,255,255,0.95);
  padding: 24px;
  border-radius: 16px;
}

.form-note ul {
  margin: 16px 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-note li {
  color: #4A5568;
  font-size: 15px;
}

.form-note .note {
  font-size: 13px;
  color: #718096;
  font-style: italic;
  margin-top: 12px;
}

.cta-text {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 2px solid var(--pastel-lavender);
  font-size: 15px;
  color: #4A5568;
}

.cta-text strong {
  color: #4A5568;
  font-weight: 700;
}

.visit-salon,
.contact-channels,
.faq-preview {
  background: white;
  padding: 40px 32px;
  border-radius: 20px;
  margin-top: 40px;
  box-shadow: var(--shadow-soft);
}

.visit-salon h2,
.contact-channels h3,
.faq-preview h3 {
  margin-bottom: 20px;
  color: #4A5568;
}

.visit-salon p,
.contact-channels ul,
.faq-preview ul {
  color: #718096;
  font-size: 16px;
  line-height: 1.8;
}

.contact-channels ul,
.faq-preview ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.contact-channels li,
.faq-preview li {
  padding: 12px 20px;
  background: var(--pastel-blue);
  border-radius: 12px;
  color: #4A5568;
}

/* === LEGAL CONTENT === */
.legal-content {
  padding: 40px 20px;
}

.legal-content h2 {
  color: #4A5568;
  font-size: 28px;
  margin-top: 40px;
  margin-bottom: 16px;
}

.legal-content h3 {
  color: #4A5568;
  font-size: 20px;
  margin-top: 24px;
  margin-bottom: 12px;
}

.legal-content p {
  color: #718096;
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 16px;
}

.legal-content ul,
.legal-content ol {
  margin: 16px 0;
  padding-left: 24px;
}

.legal-content li {
  color: #718096;
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 8px;
}

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

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

.contact-section {
  background: linear-gradient(135deg, var(--pastel-mint), var(--pastel-blue));
  padding: 32px;
  border-radius: 20px;
  margin-top: 40px;
}

.contact-section h3 {
  color: white;
  margin-bottom: 16px;
}

.contact-section p {
  color: white;
  font-size: 16px;
  opacity: 0.95;
}

.cookie-types,
.key-terms {
  background: white;
  padding: 32px;
  border-radius: 20px;
  margin-top: 32px;
  box-shadow: var(--shadow-soft);
}

.cookie-types h3,
.key-terms h3 {
  color: #4A5568;
  margin-bottom: 20px;
}

.cookie-types ul,
.key-terms ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.cookie-types li,
.key-terms li {
  color: #4A5568;
  font-size: 16px;
  padding: 12px 20px;
  background: var(--pastel-lavender);
  border-radius: 12px;
}

/* === SHIPPING INFO === */
.shipping-options {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  margin: 32px 0;
}

.shipping-options .option {
  background: white;
  padding: 32px 24px;
  border-radius: 20px;
  text-align: center;
  flex: 1 1 220px;
  max-width: 260px;
  box-shadow: var(--shadow-soft);
  transition: all 0.3s ease;
  border-top: 4px solid var(--pastel-mint);
}

.shipping-options .option:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
}

.shipping-options .option h3 {
  color: #4A5568;
  font-size: 20px;
  margin-bottom: 12px;
}

.shipping-options .option p {
  color: #718096;
  font-size: 16px;
  font-weight: 600;
}

.shipping-info .highlight {
  text-align: center;
  font-size: 24px;
  font-weight: 700;
  color: white;
  background: linear-gradient(135deg, var(--pastel-pink), var(--pastel-lavender));
  padding: 20px;
  border-radius: 16px;
  margin: 32px 0;
}

.delivery-areas,
.return-policy,
.return-process,
.warranty-info,
.shipping-faq,
.contact-shipping {
  background: white;
  padding: 40px 32px;
  border-radius: 20px;
  margin-top: 40px;
  box-shadow: var(--shadow-soft);
}

.return-process ol {
  counter-reset: item;
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 24px 0;
}

.return-process li {
  color: #4A5568;
  font-size: 16px;
  padding: 16px 20px 16px 60px;
  background: var(--pastel-blue);
  border-radius: 12px;
  position: relative;
  counter-increment: item;
}

.return-process li:before {
  content: counter(item);
  position: absolute;
  left: 20px;
  width: 32px;
  height: 32px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: #4A5568;
  line-height: 32px;
  text-align: center;
}

/* === THANK YOU PAGE === */
.thank-you-hero {
  padding: 80px 20px;
  background: linear-gradient(135deg, var(--pastel-mint), var(--pastel-blue));
  border-radius: 32px;
  margin: 32px 0;
  text-align: center;
}

.thank-you-content h1 {
  color: white;
  font-size: 48px;
  margin-bottom: 16px;
  text-shadow: 0 2px 8px rgba(74, 85, 104, 0.2);
}

.subtitle {
  color: white;
  font-size: 20px;
  margin-bottom: 32px;
  opacity: 0.95;
}

.confirmation-icon {
  width: 80px;
  height: 80px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  color: #4A5568;
  margin: 0 auto;
  box-shadow: var(--shadow-soft);
}

.next-steps,
.continue-browsing,
.alternative-contact,
.social-follow {
  padding: 60px 20px;
}

.next-steps h2,
.continue-browsing h2,
.alternative-contact h2,
.social-follow h2 {
  text-align: center;
  margin-bottom: 32px;
  color: #4A5568;
}

.next-steps ol {
  max-width: 600px;
  margin: 0 auto;
  counter-reset: step;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.next-steps li {
  color: #4A5568;
  font-size: 18px;
  padding: 16px 20px 16px 60px;
  background: white;
  border-radius: 12px;
  box-shadow: var(--shadow-soft);
  position: relative;
  counter-increment: step;
}

.next-steps li:before {
  content: counter(step);
  position: absolute;
  left: 20px;
  width: 32px;
  height: 32px;
  background: linear-gradient(135deg, var(--pastel-pink), var(--pastel-lavender));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: white;
  line-height: 32px;
  text-align: center;
}

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

.alternative-contact .contact-options {
  background: white;
  padding: 32px;
  border-radius: 20px;
  max-width: 600px;
  margin: 0 auto;
  box-shadow: var(--shadow-soft);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.alternative-contact .contact-options p {
  color: #4A5568;
  font-size: 16px;
  padding: 12px 20px;
  background: var(--pastel-blue);
  border-radius: 12px;
}

.social-links {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 24px;
}

.social-links span {
  padding: 12px 24px;
  background: linear-gradient(135deg, var(--pastel-pink), var(--pastel-lavender));
  color: white;
  border-radius: 20px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.social-links span:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}

/* === FOOTER === */
footer {
  background: linear-gradient(135deg, #4A5568 0%, #2D3748 100%);
  color: white;
  padding: 60px 0 24px;
  margin-top: 80px;
}

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

.footer-brand,
.footer-menu,
.footer-legal,
.footer-contact {
  flex: 1 1 200px;
}

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

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

footer h4 {
  color: white;
  font-size: 18px;
  margin-bottom: 20px;
  font-weight: 600;
}

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

footer a:hover {
  color: white;
  transform: translateX(4px);
}

.footer-contact p {
  color: rgba(255,255,255,0.8);
  font-size: 14px;
  margin-bottom: 12px;
  line-height: 1.6;
}

.footer-bottom {
  text-align: center;
  padding-top: 32px;
  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-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, var(--pastel-lavender), var(--pastel-pink));
  padding: 24px;
  box-shadow: 0 -4px 24px rgba(0,0,0,0.1);
  z-index: 1000;
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

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

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

.cookie-banner-text {
  flex: 1 1 300px;
  color: white;
  font-size: 15px;
}

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

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

.cookie-accept {
  background: white;
  color: #4A5568;
}

.cookie-accept:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-soft);
}

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

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

/* === COOKIE MODAL === */
.cookie-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0,0,0,0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1001;
  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: 24px;
  max-width: 600px;
  width: 90%;
  max-height: 80vh;
  overflow-y: auto;
  box-shadow: var(--shadow-hover);
}

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

.cookie-category {
  padding: 20px;
  background: var(--pastel-blue);
  border-radius: 16px;
  margin-bottom: 16px;
}

.cookie-category h3 {
  color: #4A5568;
  font-size: 18px;
  margin-bottom: 8px;
}

.cookie-category p {
  color: #718096;
  font-size: 14px;
  margin-bottom: 12px;
}

.cookie-toggle {
  display: flex;
  align-items: center;
  gap: 12px;
}

.cookie-toggle input[type="checkbox"] {
  width: 48px;
  height: 24px;
  cursor: pointer;
}

.cookie-toggle label {
  color: #4A5568;
  font-weight: 600;
  font-size: 14px;
}

.cookie-modal-buttons {
  display: flex;
  gap: 12px;
  margin-top: 24px;
  flex-wrap: wrap;
}

.cookie-modal-buttons button {
  flex: 1;
  padding: 12px 24px;
  border: none;
  border-radius: 20px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.cookie-save {
  background: linear-gradient(135deg, var(--pastel-pink), var(--pastel-lavender));
  color: white;
}

.cookie-save:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-soft);
}

/* === RESPONSIVE DESIGN === */
@media (max-width: 768px) {
  /* Show mobile menu toggle */
  .mobile-menu-toggle {
    display: block;
  }
  
  /* Hide desktop navigation */
  .main-nav {
    display: none;
  }
  
  /* Typography adjustments */
  h1 { font-size: 32px; }
  h2 { font-size: 28px; }
  h3 { font-size: 20px; }
  
  .hero h1 { font-size: 36px; }
  .hero-subtitle { font-size: 16px; }
  
  /* Layout adjustments */
  .hero-cta,
  .cta-buttons {
    flex-direction: column;
    align-items: stretch;
  }
  
  .btn {
    width: 100%;
    margin: 4px 0;
  }
  
  .trust-indicators {
    flex-direction: column;
    align-items: stretch;
  }
  
  /* Grid adjustments */
  .features-grid,
  .categories-grid,
  .values-grid,
  .collections-grid,
  .blog-grid,
  .products-grid {
    flex-direction: column;
    align-items: stretch;
  }
  
  .feature-item,
  .category-card,
  .value-item,
  .collection-card,
  .blog-card,
  .product-card {
    max-width: 100%;
  }
  
  /* Products page */
  .products-layout {
    flex-direction: column;
  }
  
  .filters {
    flex: 1;
    max-width: 100%;
  }
  
  /* Contact page */
  .contact-layout {
    flex-direction: column;
  }
  
  .contact-info,
  .contact-form-section {
    flex: 1;
    max-width: 100%;
  }
  
  /* Footer */
  .footer-content {
    flex-direction: column;
    gap: 32px;
  }
  
  .footer-brand,
  .footer-menu,
  .footer-legal,
  .footer-contact {
    flex: 1;
    text-align: center;
  }
  
  /* Cookie banner */
  .cookie-banner-content {
    flex-direction: column;
    text-align: center;
  }
  
  .cookie-banner-buttons {
    width: 100%;
    flex-direction: column;
  }
  
  .cookie-banner-buttons button {
    width: 100%;
  }
  
  /* Sections padding */
  .section {
    padding: 32px 16px;
  }
  
  .hero,
  .page-header,
  .cta-section {
    padding: 48px 20px;
  }
}

@media (max-width: 480px) {
  html {
    font-size: 14px;
  }
  
  .container {
    padding: 0 16px;
  }
  
  h1 { font-size: 28px; }
  h2 { font-size: 24px; }
  h3 { font-size: 18px; }
  
  .hero h1 { font-size: 28px; }
  
  .mobile-menu {
    width: 90%;
    max-width: 100%;
  }
  
  .cookie-modal-content {
    padding: 24px;
    width: 95%;
  }
}

/* === UTILITY CLASSES === */
.text-center { text-align: center; }
.mt-20 { margin-top: 20px; }
.mb-20 { margin-bottom: 20px; }
.mt-40 { margin-top: 40px; }
.mb-40 { margin-bottom: 40px; }

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

.fade-in {
  animation: fadeIn 0.6s ease forwards;
}

/* === ACCESSIBILITY === */
*:focus {
  outline: 3px solid var(--pastel-lavender);
  outline-offset: 2px;
}

button:focus,
a:focus {
  outline: 3px solid var(--pastel-pink);
}

/* === PRINT STYLES === */
@media print {
  header,
  footer,
  .mobile-menu-toggle,
  .mobile-menu,
  .cookie-banner,
  .cookie-modal {
    display: none;
  }
  
  body {
    background: white;
  }
  
  .container {
    max-width: 100%;
  }
}

h1,h2,h3,h4,h5,p,span, li, a {
  color: black !important;
}
.footer-content p, .footer-content h4,.footer-content a, .footer-bottom p {
  color: white !important;
}