/* ============================================
   DAWN COVE SPORTS - WARM & FRIENDLY DESIGN
   Complete CSS Stylesheet
   ============================================ */

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

* {
  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, Arial, sans-serif;
  line-height: 1.6;
  color: #333333;
  background-color: #FFF5E6;
  overflow-x: hidden;
}

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

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

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

ul, ol {
  list-style: none;
}

input, textarea, select {
  font-family: inherit;
  font-size: inherit;
}

/* ============================================
   TYPOGRAPHY - WARM & FRIENDLY
   ============================================ */

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, sans-serif;
  font-weight: 700;
  line-height: 1.3;
  color: #C41E2A;
  margin-bottom: 16px;
}

h1 {
  font-size: 48px;
  margin-bottom: 24px;
}

h2 {
  font-size: 36px;
  margin-bottom: 20px;
}

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

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

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

strong {
  font-weight: 600;
  color: #333333;
}

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

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

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

/* ============================================
   BUTTONS - WARM & FRIENDLY STYLE
   ============================================ */

.btn {
  display: inline-block;
  padding: 14px 32px;
  background: linear-gradient(135deg, #E63946 0%, #C41E2A 100%);
  color: #FFFFFF;
  border-radius: 25px;
  font-weight: 600;
  font-size: 16px;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(230, 57, 70, 0.3);
  border: none;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(230, 57, 70, 0.4);
  background: linear-gradient(135deg, #C41E2A 0%, #A01821 100%);
}

.btn:active {
  transform: translateY(0);
}

.btn-primary {
  background: linear-gradient(135deg, #E63946 0%, #C41E2A 100%);
}

.btn-secondary {
  background: linear-gradient(135deg, #FF9F66 0%, #FF7F3E 100%);
  box-shadow: 0 4px 12px rgba(255, 127, 62, 0.3);
}

.btn-secondary:hover {
  box-shadow: 0 6px 20px rgba(255, 127, 62, 0.4);
}

.btn-large {
  padding: 18px 42px;
  font-size: 18px;
  border-radius: 30px;
}

/* ============================================
   HEADER - WARM & FRIENDLY
   ============================================ */

header {
  background: linear-gradient(135deg, #FFFFFF 0%, #FFF5E6 100%);
  padding: 20px 0;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 3px solid #FFE4B5;
}

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

.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 {
  color: #1D3557;
  font-weight: 600;
  font-size: 16px;
  position: relative;
  padding: 8px 4px;
  transition: color 0.3s ease;
}

.main-nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, #E63946 0%, #FF7F3E 100%);
  transition: width 0.3s ease;
  border-radius: 3px;
}

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

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

/* ============================================
   MOBILE MENU - WARM & FRIENDLY
   ============================================ */

.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 2000;
  background: linear-gradient(135deg, #E63946 0%, #C41E2A 100%);
  color: #FFFFFF;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  font-size: 24px;
  box-shadow: 0 4px 15px rgba(230, 57, 70, 0.4);
  transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(230, 57, 70, 0.5);
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 280px;
  height: 100vh;
  background: linear-gradient(135deg, #FFFFFF 0%, #FFF5E6 100%);
  z-index: 1999;
  transition: right 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  box-shadow: -5px 0 25px rgba(0, 0, 0, 0.15);
  display: flex;
  flex-direction: column;
  padding: 80px 30px 30px;
  border-left: 4px solid #FFE4B5;
}

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

.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: linear-gradient(135deg, #E63946 0%, #C41E2A 100%);
  color: #FFFFFF;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 10px rgba(230, 57, 70, 0.3);
  transition: all 0.3s ease;
}

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

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

.mobile-nav a {
  color: #1D3557;
  font-weight: 600;
  font-size: 18px;
  padding: 12px 20px;
  border-radius: 15px;
  transition: all 0.3s ease;
  background: rgba(255, 255, 255, 0.5);
}

.mobile-nav a:hover {
  background: linear-gradient(135deg, #FFE4B5 0%, #FFD699 100%);
  color: #E63946;
  transform: translateX(5px);
}

/* ============================================
   HERO SECTION - WARM & FRIENDLY
   ============================================ */

.hero {
  background: linear-gradient(135deg, #FFE4B5 0%, #FFDAB9 50%, #FFB380 100%);
  padding: 80px 20px;
  margin-bottom: 60px;
  border-radius: 30px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, transparent 70%);
  border-radius: 50%;
}

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

.hero h1 {
  font-size: 56px;
  color: #1D3557;
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(255, 255, 255, 0.5);
}

.hero-subtitle {
  font-size: 20px;
  color: #555555;
  margin-bottom: 32px;
  line-height: 1.6;
}

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

.trust-badges {
  display: flex;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
}

.trust-badges span {
  background: rgba(255, 255, 255, 0.9);
  padding: 12px 24px;
  border-radius: 20px;
  font-weight: 600;
  color: #1D3557;
  font-size: 14px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

/* ============================================
   PAGE HERO - WARM & FRIENDLY
   ============================================ */

.page-hero {
  background: linear-gradient(135deg, #FFE4B5 0%, #FFDAB9 100%);
  padding: 60px 20px;
  margin-bottom: 60px;
  border-radius: 25px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.page-hero h1 {
  color: #1D3557;
  margin-bottom: 16px;
}

.page-hero p {
  font-size: 18px;
  color: #555555;
}

.breadcrumbs {
  margin-bottom: 20px;
  font-size: 14px;
  color: #777777;
}

.breadcrumbs a {
  color: #E63946;
  font-weight: 600;
}

.breadcrumbs a:hover {
  text-decoration: underline;
}

/* ============================================
   CATEGORIES - WARM & FRIENDLY
   ============================================ */

.categories {
  background: #FFFFFF;
  border-radius: 25px;
  padding: 60px 40px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.categories h2 {
  text-align: center;
  color: #1D3557;
  margin-bottom: 40px;
}

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

.category-card {
  background: linear-gradient(135deg, #FFF5E6 0%, #FFE4B5 100%);
  padding: 32px 24px;
  border-radius: 20px;
  text-align: center;
  flex: 1 1 calc(33.333% - 24px);
  min-width: 250px;
  max-width: 350px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  border: 2px solid transparent;
  margin-bottom: 20px;
}

.category-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 25px rgba(230, 57, 70, 0.2);
  border-color: #E63946;
}

.category-card h3 {
  color: #1D3557;
  margin-bottom: 12px;
  font-size: 20px;
}

.category-card p {
  color: #E63946;
  font-weight: 700;
  font-size: 18px;
  margin-bottom: 20px;
}

/* ============================================
   VALUE PROPOSITION - WARM & FRIENDLY
   ============================================ */

.value-proposition {
  background: linear-gradient(135deg, #FFFFFF 0%, #FFF5E6 100%);
  border-radius: 25px;
  padding: 60px 40px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.value-proposition h2 {
  text-align: center;
  color: #1D3557;
  margin-bottom: 12px;
}

.section-subtitle {
  text-align: center;
  font-size: 18px;
  color: #777777;
  margin-bottom: 40px;
}

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

.benefit-card {
  background: #FFFFFF;
  padding: 32px 24px;
  border-radius: 20px;
  flex: 1 1 calc(50% - 32px);
  min-width: 280px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  text-align: center;
  border: 2px solid #FFE4B5;
  margin-bottom: 20px;
}

.benefit-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(230, 57, 70, 0.15);
  border-color: #E63946;
}

.benefit-card img {
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
  filter: drop-shadow(0 2px 4px rgba(230, 57, 70, 0.3));
}

.benefit-card h3 {
  color: #1D3557;
  margin-bottom: 12px;
}

.benefit-card p {
  color: #666666;
  line-height: 1.7;
}

/* ============================================
   TESTIMONIALS - WARM & FRIENDLY
   ============================================ */

.testimonials {
  background: linear-gradient(135deg, #FFE4B5 0%, #FFDAB9 100%);
  border-radius: 25px;
  padding: 60px 40px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.testimonials h2 {
  text-align: center;
  color: #1D3557;
  margin-bottom: 40px;
}

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

.testimonial-card {
  background: #FFFFFF;
  padding: 32px;
  border-radius: 20px;
  flex: 1 1 calc(50% - 24px);
  min-width: 300px;
  max-width: 500px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  border-left: 5px solid #E63946;
  margin-bottom: 20px;
  position: relative;
}

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

.testimonial-author {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 12px;
}

.testimonial-author strong {
  color: #1D3557;
  font-size: 16px;
}

.testimonial-author span {
  color: #777777;
  font-size: 14px;
}

.rating {
  color: #FFD700;
  font-size: 18px;
  letter-spacing: 2px;
}

.trust-score {
  text-align: center;
  font-size: 18px;
  font-weight: 700;
  color: #1D3557;
}

/* ============================================
   TRUST BAR - WARM & FRIENDLY
   ============================================ */

.trust-bar {
  background: linear-gradient(135deg, #1D3557 0%, #2A4A6F 100%);
  border-radius: 25px;
  padding: 40px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.trust-metrics {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: space-around;
  align-items: center;
}

.trust-metric {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.trust-metric strong {
  color: #FFE4B5;
  font-size: 36px;
  font-weight: 700;
}

.trust-metric span {
  color: #F1FAEE;
  font-size: 14px;
  font-weight: 600;
}

/* ============================================
   PRODUCTS PAGE - WARM & FRIENDLY
   ============================================ */

.products-section {
  background: #FFFFFF;
  border-radius: 25px;
  padding: 40px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.products-layout {
  display: flex;
  gap: 32px;
  align-items: flex-start;
}

.filters-sidebar {
  flex: 0 0 250px;
  background: linear-gradient(135deg, #FFF5E6 0%, #FFE4B5 100%);
  padding: 24px;
  border-radius: 20px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  position: sticky;
  top: 100px;
}

.filters-sidebar h3 {
  color: #1D3557;
  margin-bottom: 20px;
  font-size: 22px;
}

.filter-group {
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 2px solid #FFDAB9;
}

.filter-group:last-child {
  border-bottom: none;
}

.filter-group h4 {
  color: #1D3557;
  margin-bottom: 12px;
  font-size: 16px;
}

.filter-group label {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 0;
  color: #555555;
  cursor: pointer;
  transition: color 0.3s ease;
}

.filter-group label:hover {
  color: #E63946;
}

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

.products-main {
  flex: 1;
}

.products-toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 32px;
  padding-bottom: 20px;
  border-bottom: 2px solid #FFE4B5;
  flex-wrap: wrap;
  gap: 16px;
}

.results-info p {
  color: #555555;
  font-weight: 600;
}

.sort-options select {
  padding: 10px 16px;
  border: 2px solid #FFE4B5;
  border-radius: 15px;
  background: #FFFFFF;
  color: #1D3557;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.sort-options select:hover {
  border-color: #E63946;
}

.product-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.product-card {
  background: linear-gradient(135deg, #FFFFFF 0%, #FFF5E6 100%);
  border-radius: 20px;
  padding: 20px;
  flex: 1 1 calc(33.333% - 24px);
  min-width: 250px;
  max-width: 350px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  position: relative;
  margin-bottom: 20px;
  border: 2px solid transparent;
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 25px rgba(230, 57, 70, 0.2);
  border-color: #E63946;
}

.badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background: linear-gradient(135deg, #E63946 0%, #C41E2A 100%);
  color: #FFFFFF;
  padding: 6px 14px;
  border-radius: 12px;
  font-size: 12px;
  font-weight: 700;
  box-shadow: 0 2px 6px rgba(230, 57, 70, 0.3);
}

.badge.promo {
  background: linear-gradient(135deg, #FF7F3E 0%, #FF6B1A 100%);
}

.product-image {
  width: 100%;
  height: 200px;
  background: #FFFFFF;
  border-radius: 15px;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.product-image img {
  max-width: 80%;
  max-height: 80%;
  object-fit: contain;
}

.product-card h3 {
  color: #1D3557;
  font-size: 18px;
  margin-bottom: 12px;
}

.price {
  color: #E63946;
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 12px;
}

.old-price {
  text-decoration: line-through;
  color: #999999;
  font-size: 18px;
  margin-right: 8px;
}

.rating {
  margin-bottom: 16px;
}

.product-card .btn {
  margin-top: auto;
  width: 100%;
}

.reassurance {
  background: linear-gradient(135deg, #FFF5E6 0%, #FFE4B5 100%);
  border-radius: 25px;
  padding: 40px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.reassurance-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-around;
}

.reassurance-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 12px;
  flex: 1 1 200px;
}

.reassurance-item img {
  width: 48px;
  height: 48px;
}

.reassurance-item p {
  color: #1D3557;
  font-weight: 600;
  font-size: 14px;
}

/* ============================================
   ABOUT PAGE - WARM & FRIENDLY
   ============================================ */

.brand-story {
  background: #FFFFFF;
  border-radius: 25px;
  padding: 60px 40px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.brand-story h2 {
  text-align: center;
  color: #1D3557;
  margin-bottom: 32px;
}

.text-section {
  max-width: 800px;
  margin: 0 auto 40px;
}

.text-section p {
  font-size: 18px;
  line-height: 1.8;
  color: #555555;
  margin-bottom: 20px;
}

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

.timeline-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 24px;
  background: linear-gradient(135deg, #FFE4B5 0%, #FFDAB9 100%);
  border-radius: 15px;
  min-width: 150px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.timeline-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 15px rgba(230, 57, 70, 0.2);
}

.timeline-item strong {
  font-size: 32px;
  color: #E63946;
}

.timeline-item span {
  color: #1D3557;
  font-weight: 600;
}

.mission-values {
  background: linear-gradient(135deg, #FFF5E6 0%, #FFE4B5 100%);
  border-radius: 25px;
  padding: 60px 40px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.mission-values h2 {
  text-align: center;
  color: #1D3557;
  margin-bottom: 20px;
}

.mission-statement {
  text-align: center;
  font-size: 24px;
  color: #E63946;
  font-weight: 700;
  margin-bottom: 40px;
  font-style: italic;
}

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

.value-card {
  background: #FFFFFF;
  padding: 32px 24px;
  border-radius: 20px;
  flex: 1 1 calc(50% - 24px);
  min-width: 280px;
  max-width: 450px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  text-align: center;
  transition: all 0.3s ease;
  margin-bottom: 20px;
  border: 2px solid transparent;
}

.value-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(230, 57, 70, 0.15);
  border-color: #E63946;
}

.value-card img {
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
}

.value-card h3 {
  color: #1D3557;
  margin-bottom: 12px;
}

.value-card p {
  color: #666666;
}

.achievements {
  background: #FFFFFF;
  border-radius: 25px;
  padding: 60px 40px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.achievements h2 {
  text-align: center;
  color: #1D3557;
  margin-bottom: 40px;
}

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

.stat-card {
  background: linear-gradient(135deg, #FFE4B5 0%, #FFDAB9 100%);
  padding: 32px 24px;
  border-radius: 20px;
  text-align: center;
  flex: 1 1 calc(33.333% - 24px);
  min-width: 180px;
  max-width: 250px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
}

.stat-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(230, 57, 70, 0.2);
}

.stat-card strong {
  font-size: 42px;
  color: #E63946;
}

.stat-card span {
  color: #1D3557;
  font-weight: 600;
  font-size: 14px;
}

.cta-section {
  background: linear-gradient(135deg, #E63946 0%, #C41E2A 100%);
  border-radius: 25px;
  padding: 60px 40px;
  text-align: center;
  box-shadow: 0 8px 30px rgba(230, 57, 70, 0.3);
}

.cta-section h2 {
  color: #FFFFFF;
  margin-bottom: 16px;
}

.cta-section p {
  color: #FFFFFF;
  font-size: 18px;
  margin-bottom: 32px;
}

.cta-section .btn-primary {
  background: #FFFFFF;
  color: #E63946;
}

.cta-section .btn-primary:hover {
  background: #FFE4B5;
}

.cta-section .btn-secondary {
  background: transparent;
  border: 2px solid #FFFFFF;
  color: #FFFFFF;
}

.cta-section .btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
}

/* ============================================
   PROMOTIONS PAGE - WARM & FRIENDLY
   ============================================ */

.promo-hero {
  background: linear-gradient(135deg, #E63946 0%, #C41E2A 50%, #FF7F3E 100%);
  color: #FFFFFF;
}

.promo-hero h1,
.promo-hero p {
  color: #FFFFFF;
}

.promo-highlight {
  display: inline-block;
  background: #FFFFFF;
  color: #E63946;
  padding: 12px 32px;
  border-radius: 20px;
  font-size: 20px;
  font-weight: 700;
  margin-top: 20px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.featured-deals {
  background: #FFFFFF;
  border-radius: 25px;
  padding: 60px 40px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.featured-deals h2 {
  text-align: center;
  color: #1D3557;
  margin-bottom: 12px;
}

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

.deal-card {
  background: linear-gradient(135deg, #FFF5E6 0%, #FFE4B5 100%);
  padding: 32px;
  border-radius: 20px;
  flex: 1 1 calc(33.333% - 24px);
  min-width: 280px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  position: relative;
  margin-bottom: 20px;
  border: 2px solid transparent;
}

.deal-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 25px rgba(230, 57, 70, 0.2);
  border-color: #E63946;
}

.deal-card.large {
  flex: 1 1 100%;
  background: linear-gradient(135deg, #FFE4B5 0%, #FFDAB9 100%);
}

.discount-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: linear-gradient(135deg, #E63946 0%, #C41E2A 100%);
  color: #FFFFFF;
  padding: 10px 20px;
  border-radius: 15px;
  font-size: 24px;
  font-weight: 700;
  box-shadow: 0 4px 12px rgba(230, 57, 70, 0.4);
}

.deal-card h3 {
  color: #1D3557;
  margin-bottom: 16px;
  font-size: 24px;
}

.original-price {
  text-decoration: line-through;
  color: #999999;
  font-size: 18px;
  margin-bottom: 8px;
}

.promo-price {
  color: #E63946;
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 12px;
}

.savings {
  color: #28A745;
  font-weight: 600;
  margin-bottom: 16px;
}

.countdown {
  background: rgba(230, 57, 70, 0.1);
  padding: 12px;
  border-radius: 12px;
  color: #E63946;
  font-weight: 600;
  margin-bottom: 20px;
  text-align: center;
}

.promo-categories {
  background: linear-gradient(135deg, #FFF5E6 0%, #FFE4B5 100%);
  border-radius: 25px;
  padding: 60px 40px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.category-tabs {
  display: flex;
  gap: 12px;
  margin-bottom: 32px;
  flex-wrap: wrap;
  justify-content: center;
}

.tab {
  padding: 12px 24px;
  background: #FFFFFF;
  border: 2px solid #FFE4B5;
  border-radius: 20px;
  color: #1D3557;
  font-weight: 600;
  transition: all 0.3s ease;
  cursor: pointer;
}

.tab:hover,
.tab.active {
  background: linear-gradient(135deg, #E63946 0%, #C41E2A 100%);
  color: #FFFFFF;
  border-color: #E63946;
}

.promo-product-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.promo-codes {
  background: #FFFFFF;
  border-radius: 25px;
  padding: 60px 40px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.promo-codes h2 {
  text-align: center;
  color: #1D3557;
  margin-bottom: 40px;
}

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

.code-card {
  background: linear-gradient(135deg, #FFE4B5 0%, #FFDAB9 100%);
  padding: 32px 24px;
  border-radius: 20px;
  text-align: center;
  flex: 1 1 calc(33.333% - 24px);
  min-width: 250px;
  max-width: 350px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  margin-bottom: 20px;
}

.code-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(230, 57, 70, 0.2);
}

.code-display {
  background: #FFFFFF;
  color: #E63946;
  padding: 16px 24px;
  border-radius: 12px;
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 16px;
  border: 2px dashed #E63946;
  letter-spacing: 2px;
}

.code-card p {
  color: #1D3557;
  font-weight: 600;
  margin-bottom: 8px;
}

.code-expiry {
  color: #777777;
  font-size: 14px;
}

.newsletter-promo {
  background: linear-gradient(135deg, #1D3557 0%, #2A4A6F 100%);
  border-radius: 25px;
  padding: 60px 40px;
  text-align: center;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.newsletter-promo h2 {
  color: #FFFFFF;
  margin-bottom: 16px;
}

.newsletter-promo p {
  color: #F1FAEE;
  font-size: 18px;
  margin-bottom: 32px;
}

.newsletter-form {
  display: flex;
  gap: 12px;
  max-width: 500px;
  margin: 0 auto 16px;
  flex-wrap: wrap;
  justify-content: center;
}

.newsletter-form input {
  flex: 1;
  min-width: 250px;
  padding: 14px 20px;
  border: 2px solid #FFE4B5;
  border-radius: 20px;
  font-size: 16px;
}

.privacy-note {
  color: #F1FAEE;
  font-size: 14px;
}

/* ============================================
   BLOG PAGE - WARM & FRIENDLY
   ============================================ */

.search-bar {
  display: flex;
  gap: 12px;
  max-width: 600px;
  margin: 24px auto 0;
  flex-wrap: wrap;
}

.search-bar input {
  flex: 1;
  min-width: 250px;
  padding: 14px 20px;
  border: 2px solid #FFE4B5;
  border-radius: 20px;
  font-size: 16px;
}

.featured-post {
  background: linear-gradient(135deg, #FFE4B5 0%, #FFDAB9 100%);
  border-radius: 25px;
  padding: 60px 40px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.post-featured {
  max-width: 800px;
  margin: 0 auto;
}

.post-featured h2 {
  color: #1D3557;
  font-size: 36px;
  margin-bottom: 16px;
}

.post-meta {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 16px;
  color: #777777;
  font-size: 14px;
}

.post-meta span {
  display: flex;
  align-items: center;
  gap: 6px;
}

.excerpt {
  font-size: 18px;
  line-height: 1.7;
  color: #555555;
  margin-bottom: 24px;
}

.blog-content {
  background: #FFFFFF;
  border-radius: 25px;
  padding: 60px 40px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

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

.blog-card {
  background: linear-gradient(135deg, #FFF5E6 0%, #FFE4B5 100%);
  border-radius: 20px;
  padding: 0;
  flex: 1 1 calc(50% - 24px);
  min-width: 300px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  overflow: hidden;
  margin-bottom: 20px;
  border: 2px solid transparent;
  display: flex;
  flex-direction: column;
}

.blog-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 25px rgba(230, 57, 70, 0.2);
  border-color: #E63946;
}

.post-thumbnail {
  width: 100%;
  height: 200px;
  background: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.post-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog-card .category-tag {
  display: inline-block;
  background: linear-gradient(135deg, #E63946 0%, #C41E2A 100%);
  color: #FFFFFF;
  padding: 6px 14px;
  border-radius: 12px;
  font-size: 12px;
  font-weight: 700;
  margin: 16px 0 12px 20px;
}

.blog-card h3 {
  color: #1D3557;
  font-size: 20px;
  margin: 0 20px 12px;
}

.blog-card .excerpt {
  color: #666666;
  font-size: 15px;
  margin: 0 20px 12px;
}

.blog-card .post-meta {
  margin: 0 20px 16px;
  padding-top: 12px;
  border-top: 1px solid #FFDAB9;
}

.read-more {
  display: inline-block;
  color: #E63946;
  font-weight: 600;
  margin: 0 20px 20px;
  transition: color 0.3s ease;
}

.read-more:hover {
  color: #C41E2A;
  text-decoration: underline;
}

.blog-sidebar-section {
  background: linear-gradient(135deg, #FFF5E6 0%, #FFE4B5 100%);
  border-radius: 25px;
  padding: 60px 40px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.blog-sidebar {
  max-width: 600px;
  margin: 0 auto;
}

.sidebar-widget {
  background: #FFFFFF;
  padding: 32px;
  border-radius: 20px;
  margin-bottom: 24px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.sidebar-widget h3 {
  color: #1D3557;
  margin-bottom: 20px;
}

.tags-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.tag {
  display: inline-block;
  padding: 8px 16px;
  background: linear-gradient(135deg, #FFE4B5 0%, #FFDAB9 100%);
  color: #1D3557;
  border-radius: 15px;
  font-size: 14px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.tag:hover {
  background: linear-gradient(135deg, #E63946 0%, #C41E2A 100%);
  color: #FFFFFF;
  transform: translateY(-2px);
}

.sidebar-widget input {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid #FFE4B5;
  border-radius: 15px;
  margin-bottom: 12px;
  font-size: 16px;
}

.sidebar-widget .btn {
  width: 100%;
}

.sidebar-widget .note {
  font-size: 12px;
  color: #777777;
  text-align: center;
  margin-top: 12px;
}

/* ============================================
   CONTACT PAGE - WARM & FRIENDLY
   ============================================ */

.contact-methods {
  background: #FFFFFF;
  border-radius: 25px;
  padding: 60px 40px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.contact-methods h2 {
  text-align: center;
  color: #1D3557;
  margin-bottom: 40px;
}

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

.contact-card {
  background: linear-gradient(135deg, #FFF5E6 0%, #FFE4B5 100%);
  padding: 32px 24px;
  border-radius: 20px;
  text-align: center;
  flex: 1 1 calc(50% - 24px);
  min-width: 250px;
  max-width: 350px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  margin-bottom: 20px;
  border: 2px solid transparent;
}

.contact-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(230, 57, 70, 0.2);
  border-color: #E63946;
}

.contact-card img {
  width: 64px;
  height: 64px;
  margin: 0 auto 16px;
}

.contact-card h3 {
  color: #1D3557;
  margin-bottom: 12px;
}

.contact-value {
  color: #E63946;
  font-weight: 700;
  font-size: 18px;
  margin-bottom: 12px;
}

.contact-hours,
.contact-info {
  color: #666666;
  font-size: 14px;
}

.contact-form-section {
  background: linear-gradient(135deg, #FFF5E6 0%, #FFE4B5 100%);
  border-radius: 25px;
  padding: 60px 40px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.contact-form-section h2 {
  text-align: center;
  color: #1D3557;
  margin-bottom: 12px;
}

.form-wrapper {
  max-width: 700px;
  margin: 0 auto;
  background: #FFFFFF;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.form-note {
  background: linear-gradient(135deg, #FFE4B5 0%, #FFDAB9 100%);
  padding: 16px;
  border-radius: 12px;
  color: #1D3557;
  font-weight: 600;
  margin-bottom: 24px;
  text-align: center;
  border-left: 4px solid #E63946;
}

.form-fields {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group.full-width {
  width: 100%;
}

.form-group label {
  color: #1D3557;
  font-weight: 600;
  font-size: 15px;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 14px 16px;
  border: 2px solid #FFE4B5;
  border-radius: 15px;
  font-size: 16px;
  transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #E63946;
}

.form-group.checkbox {
  flex-direction: row;
  align-items: center;
}

.form-group.checkbox input {
  width: 18px;
  height: 18px;
  margin-right: 8px;
}

.form-group.checkbox label {
  margin: 0;
  cursor: pointer;
}

.map-section {
  background: #FFFFFF;
  border-radius: 25px;
  padding: 60px 40px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.map-section h2 {
  text-align: center;
  color: #1D3557;
  margin-bottom: 32px;
}

.map-placeholder {
  background: linear-gradient(135deg, #FFE4B5 0%, #FFDAB9 100%);
  padding: 80px 40px;
  border-radius: 20px;
  text-align: center;
  margin-bottom: 24px;
}

.map-placeholder p {
  color: #1D3557;
  font-weight: 600;
  font-size: 18px;
  margin-bottom: 20px;
}

.location-info {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 600px;
  margin: 0 auto;
}

.location-info p {
  color: #555555;
  font-size: 16px;
}

.faq-quick {
  background: linear-gradient(135deg, #FFF5E6 0%, #FFE4B5 100%);
  border-radius: 25px;
  padding: 60px 40px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.faq-quick h2 {
  text-align: center;
  color: #1D3557;
  margin-bottom: 40px;
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.faq-item {
  background: #FFFFFF;
  padding: 24px;
  border-radius: 15px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  border-left: 4px solid #E63946;
}

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

.faq-item p {
  color: #666666;
}

.business-hours {
  background: #FFFFFF;
  border-radius: 25px;
  padding: 60px 40px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.business-hours h2 {
  text-align: center;
  color: #1D3557;
  margin-bottom: 32px;
}

.hours-table {
  max-width: 500px;
  margin: 0 auto 24px;
}

.hours-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 24px;
  background: linear-gradient(135deg, #FFF5E6 0%, #FFE4B5 100%);
  border-radius: 12px;
  margin-bottom: 12px;
}

.hours-row span {
  color: #1D3557;
  font-size: 16px;
}

.hours-row strong {
  color: #E63946;
  font-size: 18px;
}

.hours-note {
  text-align: center;
  color: #777777;
  font-size: 14px;
  font-style: italic;
}

/* ============================================
   LEGAL PAGES - WARM & FRIENDLY
   ============================================ */

.page-hero.legal {
  background: linear-gradient(135deg, #1D3557 0%, #2A4A6F 100%);
}

.page-hero.legal h1,
.page-hero.legal p {
  color: #FFFFFF;
}

.page-hero.legal .breadcrumbs a {
  color: #FFE4B5;
}

.legal-content {
  background: #FFFFFF;
  border-radius: 25px;
  padding: 60px 40px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.toc {
  background: linear-gradient(135deg, #FFF5E6 0%, #FFE4B5 100%);
  padding: 24px;
  border-radius: 15px;
  margin-bottom: 40px;
}

.toc h2 {
  color: #1D3557;
  margin-bottom: 16px;
  font-size: 20px;
}

.toc ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.toc li {
  list-style: none;
}

.toc a {
  color: #E63946;
  font-weight: 600;
  transition: color 0.3s ease;
}

.toc a:hover {
  color: #C41E2A;
  text-decoration: underline;
}

.legal-text {
  max-width: 900px;
  margin: 0 auto;
}

.legal-text section {
  margin-bottom: 40px;
  padding: 20px 0;
  border-bottom: 2px solid #FFE4B5;
}

.legal-text section:last-child {
  border-bottom: none;
}

.legal-text h2 {
  color: #1D3557;
  margin-bottom: 16px;
}

.legal-text p {
  color: #555555;
  line-height: 1.8;
  margin-bottom: 16px;
}

.legal-text ul,
.legal-text ol {
  margin-left: 24px;
  margin-bottom: 16px;
}

.legal-text li {
  list-style: disc;
  color: #555555;
  line-height: 1.8;
  margin-bottom: 8px;
}

.legal-text ol li {
  list-style: decimal;
}

.legal-footer {
  margin-top: 40px;
  padding-top: 24px;
  border-top: 2px solid #FFE4B5;
  text-align: center;
}

.legal-footer p {
  color: #777777;
  font-size: 14px;
}

.rodo-summary {
  background: linear-gradient(135deg, #FFE4B5 0%, #FFDAB9 100%);
  padding: 32px;
  border-radius: 20px;
  margin-bottom: 40px;
}

.rodo-summary h2 {
  color: #1D3557;
  margin-bottom: 20px;
}

.rights-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.rights-list li {
  list-style: none;
  color: #1D3557;
  font-weight: 600;
  padding-left: 28px;
  position: relative;
}

.rights-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #E63946;
  font-weight: 700;
  font-size: 18px;
}

.cookie-type {
  background: linear-gradient(135deg, #FFF5E6 0%, #FFE4B5 100%);
  padding: 20px;
  border-radius: 15px;
  margin-bottom: 20px;
  border-left: 4px solid #E63946;
}

.cookie-type h3 {
  color: #1D3557;
  margin-bottom: 8px;
}

.warning {
  background: rgba(230, 57, 70, 0.1);
  padding: 12px 16px;
  border-radius: 12px;
  color: #C41E2A;
  font-weight: 600;
  border-left: 4px solid #E63946;
}

.form-template {
  background: linear-gradient(135deg, #FFF5E6 0%, #FFE4B5 100%);
  padding: 24px;
  border-radius: 15px;
  margin-top: 24px;
}

.form-template p {
  color: #1D3557;
  line-height: 1.8;
  margin-bottom: 12px;
}

/* ============================================
   THANK YOU PAGE - WARM & FRIENDLY
   ============================================ */

.thank-you-hero {
  background: linear-gradient(135deg, #FFE4B5 0%, #FFDAB9 100%);
  padding: 80px 20px;
  text-align: center;
  border-radius: 25px;
  margin-bottom: 60px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.success-icon {
  width: 100px;
  height: 100px;
  background: linear-gradient(135deg, #28A745 0%, #1E7E34 100%);
  color: #FFFFFF;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 60px;
  margin: 0 auto 24px;
  box-shadow: 0 6px 20px rgba(40, 167, 69, 0.3);
}

.thank-you-hero h1 {
  color: #1D3557;
  margin-bottom: 16px;
}

.subtitle {
  font-size: 20px;
  color: #E63946;
  font-weight: 700;
  margin-bottom: 16px;
}

.confirmation {
  font-size: 18px;
  color: #555555;
  max-width: 600px;
  margin: 0 auto;
}

.next-steps {
  background: #FFFFFF;
  border-radius: 25px;
  padding: 60px 40px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.next-steps h2 {
  text-align: center;
  color: #1D3557;
  margin-bottom: 40px;
}

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

.step-card {
  background: linear-gradient(135deg, #FFF5E6 0%, #FFE4B5 100%);
  padding: 32px 24px;
  border-radius: 20px;
  text-align: center;
  flex: 1 1 calc(33.333% - 24px);
  min-width: 250px;
  max-width: 350px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  margin-bottom: 20px;
}

.step-card img {
  width: 64px;
  height: 64px;
  margin: 0 auto 16px;
}

.step-card h3 {
  color: #1D3557;
  margin-bottom: 12px;
}

.step-card p {
  color: #666666;
}

.while-you-wait,
.contact-alternatives {
  background: linear-gradient(135deg, #FFF5E6 0%, #FFE4B5 100%);
  border-radius: 25px;
  padding: 60px 40px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.while-you-wait h2,
.contact-alternatives h2 {
  text-align: center;
  color: #1D3557;
  margin-bottom: 40px;
}

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

.suggestion-card {
  background: #FFFFFF;
  padding: 32px 24px;
  border-radius: 20px;
  text-align: center;
  flex: 1 1 calc(33.333% - 24px);
  min-width: 250px;
  max-width: 350px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  margin-bottom: 20px;
}

.suggestion-card h3 {
  color: #1D3557;
  margin-bottom: 12px;
}

.suggestion-card p {
  color: #666666;
  margin-bottom: 20px;
}

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

.method {
  background: #FFFFFF;
  padding: 20px 24px;
  border-radius: 15px;
  text-align: center;
  min-width: 250px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.method strong {
  color: #E63946;
  font-size: 16px;
}

.method span {
  color: #777777;
  font-size: 14px;
}

.home-link-section,
.return-home {
  text-align: center;
  padding: 40px 20px;
}

.return-home {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ============================================
   FOOTER - WARM & FRIENDLY
   ============================================ */

footer {
  background: linear-gradient(135deg, #1D3557 0%, #2A4A6F 100%);
  color: #F1FAEE;
  padding: 60px 20px 20px;
  margin-top: 80px;
  border-top: 5px solid #FFE4B5;
}

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

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

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

.footer-section h4 {
  color: #FFE4B5;
  margin-bottom: 16px;
  font-size: 18px;
}

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

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

.footer-nav a {
  color: #F1FAEE;
  font-size: 14px;
  transition: color 0.3s ease;
}

.footer-nav a:hover {
  color: #FFE4B5;
}

.footer-bottom {
  text-align: center;
  padding-top: 24px;
  border-top: 1px solid rgba(241, 250, 238, 0.2);
}

.footer-bottom p {
  color: #F1FAEE;
  font-size: 14px;
}

/* ============================================
   COOKIE CONSENT BANNER - WARM & FRIENDLY
   ============================================ */

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, #1D3557 0%, #2A4A6F 100%);
  padding: 24px;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
  z-index: 10000;
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  border-top: 4px solid #FFE4B5;
}

.cookie-banner.active {
  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;
  min-width: 250px;
}

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

.cookie-text a {
  color: #FFE4B5;
  font-weight: 600;
  text-decoration: underline;
}

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

.cookie-buttons .btn {
  padding: 12px 24px;
  font-size: 14px;
}

.btn-accept-all {
  background: linear-gradient(135deg, #28A745 0%, #1E7E34 100%);
}

.btn-reject-all {
  background: linear-gradient(135deg, #DC3545 0%, #A71D2A 100%);
}

.btn-settings {
  background: transparent;
  border: 2px solid #FFE4B5;
  color: #FFE4B5;
}

.btn-settings:hover {
  background: rgba(255, 228, 181, 0.1);
}

.cookie-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.7);
  z-index: 10001;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

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

.cookie-modal-content {
  background: linear-gradient(135deg, #FFFFFF 0%, #FFF5E6 100%);
  padding: 40px;
  border-radius: 25px;
  max-width: 600px;
  width: 100%;
  max-height: 80vh;
  overflow-y: auto;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
  border: 4px solid #FFE4B5;
}

.cookie-modal-content h2 {
  color: #1D3557;
  margin-bottom: 24px;
}

.cookie-category {
  background: #FFFFFF;
  padding: 20px;
  border-radius: 15px;
  margin-bottom: 16px;
  border: 2px solid #FFE4B5;
}

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

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

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

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

.cookie-toggle label {
  color: #555555;
  font-weight: 600;
  cursor: pointer;
}

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

.cookie-modal-buttons .btn {
  flex: 1;
  min-width: 150px;
}

/* ============================================
   RESPONSIVE DESIGN - MOBILE FIRST
   ============================================ */

@media (max-width: 1024px) {
  .products-layout {
    flex-direction: column;
  }
  
  .filters-sidebar {
    position: static;
    width: 100%;
    flex: none;
  }
}

@media (max-width: 768px) {
  /* Typography */
  h1 {
    font-size: 36px;
  }
  
  h2 {
    font-size: 28px;
  }
  
  h3 {
    font-size: 20px;
  }
  
  /* Navigation */
  .main-nav {
    display: none;
  }
  
  .mobile-menu-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  /* Hero */
  .hero h1 {
    font-size: 32px;
  }
  
  .hero-subtitle {
    font-size: 16px;
  }
  
  .cta-buttons {
    flex-direction: column;
  }
  
  .cta-buttons .btn {
    width: 100%;
  }
  
  .trust-badges {
    flex-direction: column;
  }
  
  /* Cards */
  .category-card,
  .benefit-card,
  .testimonial-card,
  .product-card,
  .deal-card,
  .value-card,
  .stat-card,
  .blog-card,
  .contact-card,
  .step-card,
  .suggestion-card {
    flex: 1 1 100%;
    max-width: 100%;
  }
  
  /* Trust Metrics */
  .trust-metrics {
    flex-direction: column;
    gap: 24px;
  }
  
  /* Footer */
  .footer-content {
    flex-direction: column;
    gap: 32px;
  }
  
  /* Cookie Banner */
  .cookie-content {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .cookie-buttons {
    width: 100%;
    flex-direction: column;
  }
  
  .cookie-buttons .btn {
    width: 100%;
  }
  
  /* Forms */
  .newsletter-form {
    flex-direction: column;
  }
  
  .newsletter-form input {
    width: 100%;
  }
  
  .newsletter-form .btn {
    width: 100%;
  }
  
  /* Products Toolbar */
  .products-toolbar {
    flex-direction: column;
    align-items: flex-start;
  }
  
  /* Sections */
  section {
    padding: 30px 16px;
    margin-bottom: 40px;
  }
  
  .categories,
  .value-proposition,
  .testimonials,
  .trust-bar,
  .products-section,
  .featured-deals,
  .promo-categories,
  .promo-codes,
  .newsletter-promo,
  .blog-content,
  .brand-story,
  .mission-values,
  .achievements,
  .contact-methods,
  .contact-form-section,
  .map-section,
  .faq-quick,
  .business-hours,
  .legal-content,
  .next-steps,
  .while-you-wait,
  .contact-alternatives {
    padding: 40px 24px;
  }
}

@media (max-width: 480px) {
  /* Further mobile optimization */
  .container {
    padding: 0 16px;
  }
  
  h1 {
    font-size: 28px;
  }
  
  h2 {
    font-size: 24px;
  }
  
  .btn {
    padding: 12px 24px;
    font-size: 15px;
  }
  
  .hero {
    padding: 60px 16px;
  }
  
  .hero h1 {
    font-size: 28px;
  }
  
  .page-hero {
    padding: 40px 16px;
  }
  
  .mobile-menu {
    width: 90%;
  }
  
  .cookie-modal-content {
    padding: 24px;
  }
}

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

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

@keyframes slideIn {
  from {
    transform: translateX(100%);
  }
  to {
    transform: translateX(0);
  }
}

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

/* Apply animations */
.hero-content,
.category-card,
.benefit-card,
.testimonial-card {
  animation: fadeIn 0.6s ease-out;
}

.mobile-menu.active {
  animation: slideIn 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.success-icon {
  animation: pulse 2s infinite;
}

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

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

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

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

.p-1 { padding: 8px; }
.p-2 { padding: 16px; }
.p-3 { padding: 24px; }
.p-4 { padding: 32px; }

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

@media print {
  header,
  footer,
  .mobile-menu,
  .mobile-menu-toggle,
  .cookie-banner,
  .cookie-modal,
  .cta-buttons,
  .btn {
    display: none !important;
  }
  
  body {
    background: #FFFFFF;
    color: #000000;
  }
  
  * {
    box-shadow: none !important;
  }
}

/* ============================================
   END OF STYLESHEET
   ============================================ */