/* ===================================
   MISTY GLITTER SPORTS - MINIMALIST STYLE
   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', sans-serif;
  line-height: 1.6;
  color: #2d2d2d;
  background: #ffffff;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

ul {
  list-style: none;
}

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

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

/* ===================================
   TYPOGRAPHY
   =================================== */

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  line-height: 1.2;
  color: #1a1a1a;
  margin-bottom: 16px;
}

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

h2 {
  font-size: 32px;
  letter-spacing: -0.01em;
}

h3 {
  font-size: 24px;
}

h4 {
  font-size: 18px;
}

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

strong {
  font-weight: 600;
  color: #1a1a1a;
}

small {
  font-size: 14px;
  color: #757575;
}

/* Mobile Typography */
@media (max-width: 768px) {
  h1 { font-size: 32px; }
  h2 { font-size: 24px; }
  h3 { font-size: 20px; }
}

/* ===================================
   LAYOUT & CONTAINERS
   =================================== */

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

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

/* Mobile Layout */
@media (max-width: 768px) {
  .container {
    padding: 0 16px;
  }
  
  .section {
    margin-bottom: 40px;
    padding: 40px 0;
  }
}

/* ===================================
   BUTTONS
   =================================== */

.btn {
  display: inline-block;
  padding: 14px 32px;
  font-size: 16px;
  font-weight: 500;
  text-align: center;
  border-radius: 4px;
  transition: all 0.3s ease;
  cursor: pointer;
  border: 2px solid transparent;
}

.btn-primary {
  background: #2C5F8D;
  color: #ffffff;
  border-color: #2C5F8D;
}

.btn-primary:hover {
  background: #1e4567;
  border-color: #1e4567;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(44, 95, 141, 0.2);
}

.btn-secondary {
  background: transparent;
  color: #2C5F8D;
  border-color: #2C5F8D;
}

.btn-secondary:hover {
  background: #2C5F8D;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(44, 95, 141, 0.15);
}

/* Mobile Buttons */
@media (max-width: 768px) {
  .btn {
    padding: 12px 24px;
    font-size: 14px;
    width: 100%;
  }
}

/* ===================================
   HEADER & NAVIGATION
   =================================== */

header {
  background: #ffffff;
  border-bottom: 1px solid #f0f0f0;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.02);
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  min-height: 80px;
}

.logo img {
  height: 50px;
  width: auto;
}

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

.main-nav a {
  color: #2d2d2d;
  font-weight: 500;
  font-size: 15px;
  position: relative;
  padding: 8px 0;
}

.main-nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: #2C5F8D;
  transition: width 0.3s ease;
}

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

/* Mobile Menu Toggle Button */
.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 1001;
  background: #2C5F8D;
  color: #ffffff;
  width: 48px;
  height: 48px;
  border-radius: 4px;
  font-size: 24px;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(44, 95, 141, 0.3);
  transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
  background: #1e4567;
  transform: scale(1.05);
}

/* Mobile Menu Overlay */
.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  right: -100%;
  width: 280px;
  height: 100vh;
  background: #ffffff;
  z-index: 1000;
  box-shadow: -4px 0 20px rgba(0, 0, 0, 0.1);
  transition: right 0.4s ease;
  padding: 80px 32px 32px;
  overflow-y: auto;
}

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

.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  font-size: 28px;
  color: #2d2d2d;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

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

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

.mobile-nav a {
  color: #2d2d2d;
  font-weight: 500;
  font-size: 18px;
  padding: 12px 0;
  border-bottom: 1px solid #f0f0f0;
  transition: all 0.3s ease;
}

.mobile-nav a:hover {
  color: #2C5F8D;
  padding-left: 8px;
}

/* Mobile Navigation Display */
@media (max-width: 968px) {
  .main-nav {
    display: none;
  }
  
  .mobile-menu-toggle {
    display: flex;
  }
  
  .mobile-menu {
    display: block;
  }
}

/* ===================================
   HERO SECTION
   =================================== */

.hero {
  background: linear-gradient(135deg, #F0F4F8 0%, #ffffff 100%);
  padding: 80px 0;
  margin-bottom: 60px;
}

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

.hero h1 {
  font-size: 56px;
  margin-bottom: 24px;
  color: #1a1a1a;
}

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

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

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

.trust-badges span {
  font-size: 14px;
  color: #4a4a4a;
  display: flex;
  align-items: center;
  gap: 8px;
}

/* Mobile Hero */
@media (max-width: 768px) {
  .hero {
    padding: 60px 0;
  }
  
  .hero h1 {
    font-size: 36px;
  }
  
  .hero-subtitle {
    font-size: 16px;
  }
  
  .hero-cta {
    flex-direction: column;
  }
  
  .trust-badges {
    flex-direction: column;
    align-items: center;
    gap: 16px;
  }
}

/* ===================================
   PAGE HERO (Subpages)
   =================================== */

.page-hero {
  background: #F0F4F8;
  padding: 60px 0 40px;
  margin-bottom: 40px;
}

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

.breadcrumbs a {
  color: #2C5F8D;
  transition: color 0.3s ease;
}

.breadcrumbs a:hover {
  color: #1e4567;
}

.page-hero h1 {
  margin-bottom: 16px;
}

.page-hero p {
  font-size: 18px;
  color: #4a4a4a;
  max-width: 700px;
}

.update-date {
  font-size: 14px;
  color: #757575;
  margin-top: 8px;
}

/* ===================================
   FEATURES SECTION
   =================================== */

.features {
  padding: 60px 0;
  background: #ffffff;
}

.features h2 {
  text-align: center;
  margin-bottom: 48px;
}

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

.feature-card {
  flex: 1 1 calc(25% - 32px);
  min-width: 240px;
  max-width: 280px;
  text-align: center;
  padding: 32px 24px;
  background: #ffffff;
  border: 1px solid #f0f0f0;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.feature-card:hover {
  border-color: #2C5F8D;
  box-shadow: 0 8px 24px rgba(44, 95, 141, 0.08);
  transform: translateY(-4px);
}

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

.feature-card h3 {
  font-size: 18px;
  margin-bottom: 12px;
}

.feature-card p {
  font-size: 14px;
  color: #757575;
  margin-bottom: 0;
}

/* Mobile Features */
@media (max-width: 768px) {
  .features-grid {
    gap: 24px;
  }
  
  .feature-card {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

/* ===================================
   SERVICES SECTION
   =================================== */

.services {
  padding: 60px 0;
  background: #F0F4F8;
}

.services h2 {
  text-align: center;
  margin-bottom: 16px;
}

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

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

.service-card {
  flex: 1 1 calc(33.333% - 24px);
  min-width: 280px;
  background: #ffffff;
  padding: 32px;
  border-radius: 8px;
  border: 1px solid #e8e8e8;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.service-card:hover {
  border-color: #2C5F8D;
  box-shadow: 0 8px 24px rgba(44, 95, 141, 0.08);
  transform: translateY(-4px);
}

.service-card h3 {
  font-size: 20px;
  margin-bottom: 8px;
}

.service-card p {
  color: #757575;
  flex-grow: 1;
  margin-bottom: 0;
}

.service-card .price {
  font-size: 18px;
  font-weight: 600;
  color: #2C5F8D;
  margin-top: 8px;
}

.cta-center {
  text-align: center;
  margin-top: 40px;
}

/* Mobile Services */
@media (max-width: 768px) {
  .services-grid {
    gap: 16px;
  }
  
  .service-card {
    flex: 1 1 100%;
    min-width: auto;
  }
}

/* ===================================
   TESTIMONIALS SECTION
   =================================== */

.testimonials {
  padding: 60px 0;
  background: #ffffff;
}

.testimonials h2 {
  text-align: center;
  margin-bottom: 16px;
}

.testimonials-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-bottom: 32px;
}

.testimonial-card {
  flex: 1 1 calc(50% - 32px);
  min-width: 300px;
  background: #F0F4F8;
  padding: 32px;
  border-radius: 8px;
  border-left: 4px solid #2C5F8D;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.testimonial-card p {
  color: #2d2d2d;
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 16px;
}

.testimonial-card strong {
  color: #2C5F8D;
  font-size: 14px;
  display: block;
}

.rating {
  text-align: center;
  font-size: 18px;
  color: #2d2d2d;
  font-weight: 500;
}

/* Mobile Testimonials */
@media (max-width: 768px) {
  .testimonials-grid {
    gap: 24px;
  }
  
  .testimonial-card {
    flex: 1 1 100%;
    min-width: auto;
  }
}

/* ===================================
   CTA BANNER
   =================================== */

.cta-banner {
  padding: 60px 0;
  background: linear-gradient(135deg, #2C5F8D 0%, #1e4567 100%);
  color: #ffffff;
  text-align: center;
  margin: 60px 0;
}

.cta-banner h2 {
  color: #ffffff;
  margin-bottom: 16px;
}

.cta-banner p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 18px;
  margin-bottom: 32px;
}

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

.newsletter-form input {
  flex: 1 1 300px;
  padding: 14px 20px;
  border-radius: 4px;
  background: #ffffff;
  color: #2d2d2d;
  font-size: 16px;
}

.newsletter-form input::placeholder {
  color: #9e9e9e;
}

.newsletter-form button {
  padding: 14px 32px;
  background: #E8505B;
  color: #ffffff;
  border-radius: 4px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.newsletter-form button:hover {
  background: #d43f4a;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(232, 80, 91, 0.3);
}

.cta-banner small {
  color: rgba(255, 255, 255, 0.7);
  font-size: 13px;
}

/* Mobile CTA Banner */
@media (max-width: 768px) {
  .newsletter-form {
    flex-direction: column;
  }
  
  .newsletter-form input,
  .newsletter-form button {
    width: 100%;
  }
}

/* ===================================
   FOOTER
   =================================== */

footer {
  background: #1a1a1a;
  color: #ffffff;
  padding: 60px 0 20px;
  margin-top: 60px;
}

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

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

.footer-logo {
  height: 40px;
  width: auto;
  margin-bottom: 16px;
}

.footer-section h4 {
  color: #ffffff;
  font-size: 16px;
  margin-bottom: 16px;
  font-weight: 600;
}

.footer-section p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 8px;
}

.footer-section a {
  display: block;
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  margin-bottom: 8px;
  transition: color 0.3s ease;
}

.footer-section a:hover {
  color: #ffffff;
  padding-left: 4px;
}

.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;
}

/* Mobile Footer */
@media (max-width: 768px) {
  .footer-content {
    flex-direction: column;
    gap: 32px;
  }
  
  .footer-section {
    flex: 1 1 100%;
  }
}

/* ===================================
   SHOP PAGE SPECIFIC
   =================================== */

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

.filters-sidebar {
  flex: 0 0 260px;
  background: #F0F4F8;
  padding: 24px;
  border-radius: 8px;
  position: sticky;
  top: 100px;
}

.filters-sidebar h3 {
  font-size: 18px;
  margin-bottom: 24px;
}

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

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

.filter-group h4 {
  font-size: 14px;
  margin-bottom: 12px;
  font-weight: 600;
}

.filter-group label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: #4a4a4a;
  margin-bottom: 8px;
  cursor: pointer;
}

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

.filter-group input[type="range"] {
  width: 100%;
  margin-bottom: 8px;
}

.filter-group p {
  font-size: 13px;
  color: #757575;
}

.products-main {
  flex: 1;
}

.products-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 32px;
  gap: 16px;
  flex-wrap: wrap;
}

.products-header p {
  color: #757575;
  font-size: 14px;
  margin: 0;
}

.products-header select {
  padding: 10px 16px;
  border: 1px solid #e0e0e0;
  border-radius: 4px;
  background: #ffffff;
  color: #2d2d2d;
  font-size: 14px;
  cursor: pointer;
}

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

.product-card {
  flex: 1 1 calc(33.333% - 24px);
  min-width: 240px;
  background: #ffffff;
  border: 1px solid #f0f0f0;
  border-radius: 8px;
  padding: 24px;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.product-card:hover {
  border-color: #2C5F8D;
  box-shadow: 0 8px 24px rgba(44, 95, 141, 0.08);
  transform: translateY(-4px);
}

.product-card h3 {
  font-size: 16px;
  margin-bottom: 8px;
}

.product-card .price {
  font-size: 20px;
  font-weight: 600;
  color: #2C5F8D;
  margin: 8px 0;
}

.product-card .btn {
  margin-top: auto;
  width: 100%;
  padding: 10px;
  font-size: 14px;
}

/* Mobile Shop Layout */
@media (max-width: 968px) {
  .shop-layout {
    flex-direction: column;
  }
  
  .filters-sidebar {
    position: static;
    width: 100%;
    flex: 1 1 100%;
  }
  
  .product-card {
    flex: 1 1 calc(50% - 24px);
  }
}

@media (max-width: 568px) {
  .product-card {
    flex: 1 1 100%;
  }
}

/* ===================================
   TRUST SECTION
   =================================== */

.trust-section {
  padding: 60px 0;
  background: #F0F4F8;
}

.trust-section h2 {
  text-align: center;
  margin-bottom: 40px;
}

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

.trust-item {
  flex: 1 1 calc(33.333% - 32px);
  min-width: 240px;
  max-width: 320px;
  text-align: center;
  padding: 24px;
}

.trust-item img {
  width: 64px;
  height: 64px;
  margin: 0 auto 16px;
}

.trust-item p {
  font-size: 16px;
  color: #2d2d2d;
  font-weight: 500;
  margin: 0;
}

/* Mobile Trust Section */
@media (max-width: 768px) {
  .trust-grid {
    gap: 24px;
  }
  
  .trust-item {
    flex: 1 1 100%;
  }
}

/* ===================================
   ABOUT PAGE - TEXT SECTIONS
   =================================== */

.about-story,
.values,
.stats,
.location-info {
  padding: 60px 0;
}

.about-story {
  background: #ffffff;
}

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

.text-section p {
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 20px;
}

.text-section .mission {
  font-size: 18px;
  color: #2C5F8D;
  text-align: center;
  padding: 24px;
  background: #F0F4F8;
  border-radius: 8px;
  border-left: 4px solid #2C5F8D;
  margin-top: 32px;
}

/* Values Section */
.values {
  background: #F0F4F8;
}

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

.value-card {
  flex: 1 1 calc(50% - 32px);
  min-width: 280px;
  background: #ffffff;
  padding: 32px;
  border-radius: 8px;
  border-left: 4px solid #2C5F8D;
}

.value-card h3 {
  font-size: 20px;
  margin-bottom: 12px;
}

.value-card p {
  color: #757575;
  margin: 0;
}

/* Stats Section */
.stats {
  background: #ffffff;
}

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

.stat-card {
  flex: 1 1 calc(25% - 32px);
  min-width: 200px;
  max-width: 250px;
  text-align: center;
  padding: 32px 24px;
  background: #F0F4F8;
  border-radius: 8px;
}

.stat-card h3 {
  font-size: 48px;
  color: #2C5F8D;
  margin-bottom: 8px;
}

.stat-card p {
  font-size: 16px;
  color: #4a4a4a;
  margin: 0;
}

/* Location Info */
.location-info {
  background: #F0F4F8;
}

.location-content {
  max-width: 700px;
  margin: 0 auto;
}

.location-text h3 {
  margin-bottom: 16px;
}

.location-text p {
  margin-bottom: 16px;
}

/* Mobile About Sections */
@media (max-width: 768px) {
  .values-grid,
  .stats-grid {
    gap: 24px;
  }
  
  .value-card,
  .stat-card {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

/* ===================================
   CTA SECTION
   =================================== */

.cta-section {
  padding: 60px 0;
  background: #ffffff;
  text-align: center;
}

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

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

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

/* Mobile CTA Section */
@media (max-width: 768px) {
  .cta-buttons {
    flex-direction: column;
  }
}

/* ===================================
   BLOG/GUIDE PAGE
   =================================== */

.blog-categories,
.featured-articles,
.expert-tips,
.newsletter-signup {
  padding: 60px 0;
}

.categories-grid,
.articles-grid,
.tips-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 40px;
}

.category-card,
.article-card,
.tip-card {
  flex: 1 1 calc(33.333% - 24px);
  min-width: 280px;
  background: #ffffff;
  padding: 32px;
  border: 1px solid #f0f0f0;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.category-card:hover,
.article-card:hover,
.tip-card:hover {
  border-color: #2C5F8D;
  box-shadow: 0 8px 24px rgba(44, 95, 141, 0.08);
  transform: translateY(-4px);
}

.category-card h3,
.article-card h3,
.tip-card h3 {
  font-size: 18px;
  margin-bottom: 12px;
}

.category-card p,
.article-card p,
.tip-card p {
  color: #757575;
  font-size: 14px;
}

.read-more {
  display: inline-block;
  color: #2C5F8D;
  font-weight: 500;
  margin-top: 12px;
  transition: all 0.3s ease;
}

.read-more:hover {
  color: #1e4567;
  padding-left: 4px;
}

.expert-tips {
  background: #F0F4F8;
}

.newsletter-signup {
  background: #ffffff;
  text-align: center;
}

/* Mobile Blog Sections */
@media (max-width: 768px) {
  .categories-grid,
  .articles-grid,
  .tips-grid {
    gap: 16px;
  }
  
  .category-card,
  .article-card,
  .tip-card {
    flex: 1 1 100%;
  }
}

/* ===================================
   PROMOTIONS PAGE
   =================================== */

.promotion-banner {
  padding: 60px 0;
  background: linear-gradient(135deg, #2C5F8D 0%, #1e4567 100%);
  color: #ffffff;
  margin-bottom: 60px;
}

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

.badge {
  display: inline-block;
  background: #E8505B;
  color: #ffffff;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 16px;
}

.banner-content h2 {
  color: #ffffff;
  margin-bottom: 16px;
}

.banner-content p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 18px;
  margin-bottom: 16px;
}

.validity {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 24px;
}

.promotion-categories,
.bundle-offers,
.flash-sales,
.loyalty-program {
  padding: 60px 0;
}

.promo-grid,
.bundles-grid,
.flash-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 40px;
}

.promo-card,
.bundle-card,
.flash-card {
  flex: 1 1 calc(33.333% - 24px);
  min-width: 280px;
  background: #ffffff;
  padding: 32px;
  border: 1px solid #f0f0f0;
  border-radius: 8px;
  text-align: center;
  transition: all 0.3s ease;
}

.promo-card:hover,
.bundle-card:hover,
.flash-card:hover {
  border-color: #E8505B;
  box-shadow: 0 8px 24px rgba(232, 80, 91, 0.1);
  transform: translateY(-4px);
}

.discount {
  font-size: 20px;
  font-weight: 600;
  color: #E8505B;
  margin-top: 12px;
}

.bundle-card .price,
.flash-card .price-flash {
  font-size: 24px;
  font-weight: 600;
  color: #2C5F8D;
  margin: 16px 0;
}

.bundle-card .price del,
.flash-card .price-flash del {
  font-size: 18px;
  color: #9e9e9e;
  margin-left: 8px;
}

.savings {
  color: #E8505B;
  font-weight: 600;
  font-size: 16px;
  margin: 16px 0;
}

.stock {
  color: #E8505B;
  font-size: 14px;
  font-weight: 500;
  margin-top: 12px;
}

.bundle-offers {
  background: #F0F4F8;
}

.flash-sales {
  background: #ffffff;
}

.subtitle {
  text-align: center;
  color: #757575;
  font-size: 16px;
  margin-bottom: 32px;
}

/* Loyalty Program */
.loyalty-program {
  background: linear-gradient(135deg, #F0F4F8 0%, #ffffff 100%);
  text-align: center;
}

.loyalty-program h2 {
  margin-bottom: 8px;
}

.loyalty-program h3 {
  font-size: 24px;
  color: #2C5F8D;
  margin-bottom: 32px;
}

.benefits-list {
  max-width: 600px;
  margin: 0 auto 32px;
  text-align: left;
}

.benefits-list li {
  padding: 12px 0;
  padding-left: 32px;
  position: relative;
  font-size: 16px;
  color: #2d2d2d;
}

.benefits-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #2C5F8D;
  font-weight: 600;
  font-size: 18px;
}

.members {
  font-size: 14px;
  color: #757575;
  margin-bottom: 24px;
}

/* Mobile Promotions */
@media (max-width: 768px) {
  .promo-grid,
  .bundles-grid,
  .flash-grid {
    gap: 16px;
  }
  
  .promo-card,
  .bundle-card,
  .flash-card {
    flex: 1 1 100%;
  }
}

/* ===================================
   CONTACT PAGE
   =================================== */

.contact-methods,
.contact-form-section,
.store-location,
.faq-preview {
  padding: 60px 0;
}

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

.method-card {
  flex: 1 1 calc(33.333% - 32px);
  min-width: 280px;
  max-width: 350px;
  text-align: center;
  padding: 32px;
  background: #F0F4F8;
  border-radius: 8px;
}

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

.method-card h3 {
  font-size: 18px;
  margin-bottom: 12px;
}

.method-card p {
  font-size: 14px;
  color: #4a4a4a;
  margin-bottom: 4px;
}

.method-card strong {
  font-size: 16px;
  color: #2C5F8D;
}

/* Contact Form */
.contact-form-section {
  background: #F0F4F8;
}

.contact-form-section h2 {
  text-align: center;
  margin-bottom: 16px;
}

.contact-form-section > .container > p {
  text-align: center;
  color: #757575;
  margin-bottom: 40px;
}

.form-wrapper {
  max-width: 700px;
  margin: 0 auto;
  background: #ffffff;
  padding: 40px;
  border-radius: 8px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
}

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

.form-field label {
  display: block;
  font-weight: 500;
  margin-bottom: 8px;
  color: #2d2d2d;
  font-size: 14px;
}

.form-field input[type="text"],
.form-field input[type="email"],
.form-field input[type="tel"],
.form-field select,
.form-field textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid #e0e0e0;
  border-radius: 4px;
  background: #ffffff;
  color: #2d2d2d;
  font-size: 15px;
  transition: border-color 0.3s ease;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: #2C5F8D;
  outline: none;
}

.form-field input[type="checkbox"] {
  width: auto;
  margin-right: 8px;
}

.form-field label:has(input[type="checkbox"]) {
  display: flex;
  align-items: center;
  font-weight: 400;
  cursor: pointer;
}

.form-wrapper button {
  width: 100%;
  margin-top: 8px;
}

.form-wrapper small {
  display: block;
  margin-top: 16px;
  text-align: center;
}

/* Store Location */
.store-location {
  background: #ffffff;
}

.location-details {
  max-width: 700px;
  margin: 0 auto;
}

.location-details h3 {
  margin-bottom: 16px;
}

.location-details ul {
  list-style: none;
  margin: 16px 0;
}

.location-details li {
  padding: 8px 0;
  color: #4a4a4a;
}

/* FAQ Preview */
.faq-preview {
  background: #F0F4F8;
}

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

.faq-item {
  background: #ffffff;
  padding: 24px;
  border-radius: 8px;
  border-left: 4px solid #2C5F8D;
}

.faq-item h3 {
  font-size: 16px;
  margin-bottom: 12px;
}

.faq-item p {
  color: #4a4a4a;
  font-size: 14px;
  margin: 0;
}

/* Mobile Contact */
@media (max-width: 768px) {
  .methods-grid {
    gap: 24px;
  }
  
  .method-card {
    flex: 1 1 100%;
  }
  
  .form-wrapper {
    padding: 24px;
  }
}

/* ===================================
   LEGAL PAGES
   =================================== */

.legal-content {
  padding: 60px 0;
  background: #ffffff;
}

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

.legal-content h2 {
  font-size: 24px;
  margin-top: 32px;
  margin-bottom: 16px;
  color: #2C5F8D;
}

.legal-content p {
  margin-bottom: 16px;
  line-height: 1.8;
}

.legal-content ul {
  margin: 16px 0;
  padding-left: 24px;
  list-style: disc;
}

.legal-content li {
  margin-bottom: 8px;
  color: #4a4a4a;
}

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

.legal-content th,
.legal-content td {
  padding: 12px;
  text-align: left;
  border: 1px solid #e0e0e0;
}

.legal-content th {
  background: #F0F4F8;
  font-weight: 600;
  color: #2d2d2d;
}

.contact-dpo,
.contact-cookies,
.company-details {
  padding: 40px 0;
  background: #F0F4F8;
  text-align: center;
}

.contact-dpo h2,
.contact-cookies h2,
.company-details h2 {
  margin-bottom: 24px;
}

.contact-dpo p,
.contact-cookies p,
.company-details p {
  font-size: 16px;
  margin-bottom: 8px;
}

/* ===================================
   THANK YOU PAGE
   =================================== */

.thank-you-hero {
  padding: 80px 0;
  background: linear-gradient(135deg, #F0F4F8 0%, #ffffff 100%);
  text-align: center;
}

.thank-you-content {
  max-width: 600px;
  margin: 0 auto;
}

.success-icon {
  width: 80px;
  height: 80px;
  background: #2C5F8D;
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  margin: 0 auto 24px;
}

.thank-you-message,
.alternative-contact,
.continue-shopping,
.special-offers {
  padding: 60px 0;
}

.thank-you-message {
  background: #ffffff;
}

.thank-you-message ul {
  list-style: none;
  margin: 24px 0;
}

.thank-you-message li {
  padding: 12px 0;
  padding-left: 32px;
  position: relative;
  color: #4a4a4a;
}

.thank-you-message li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: #2C5F8D;
  font-weight: 600;
}

.alternative-contact {
  background: #F0F4F8;
  text-align: center;
}

.continue-shopping {
  background: #ffffff;
  text-align: center;
}

.special-offers {
  background: #F0F4F8;
  text-align: center;
}

.offer-box {
  max-width: 500px;
  margin: 0 auto;
  background: #ffffff;
  padding: 32px;
  border-radius: 8px;
  border: 2px solid #2C5F8D;
}

.offer-code {
  font-size: 24px;
  margin-bottom: 16px;
}

.offer-code strong {
  color: #E8505B;
  font-weight: 700;
}

/* ===================================
   COOKIE CONSENT BANNER
   =================================== */

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #1a1a1a;
  color: #ffffff;
  padding: 20px;
  z-index: 999;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

.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 1 400px;
}

.cookie-text p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 0;
}

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

.cookie-btn {
  padding: 10px 20px;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.cookie-accept {
  background: #2C5F8D;
  color: #ffffff;
}

.cookie-accept:hover {
  background: #1e4567;
}

.cookie-reject {
  background: transparent;
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.cookie-reject:hover {
  border-color: #ffffff;
}

.cookie-settings {
  background: transparent;
  color: #ffffff;
  text-decoration: underline;
}

.cookie-settings:hover {
  color: #2C5F8D;
}

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

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

.cookie-modal-content {
  background: #ffffff;
  max-width: 600px;
  width: 100%;
  border-radius: 8px;
  padding: 32px;
  max-height: 80vh;
  overflow-y: auto;
}

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

.cookie-category {
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid #f0f0f0;
}

.cookie-category:last-child {
  border-bottom: none;
}

.cookie-category h3 {
  font-size: 16px;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

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

.cookie-toggle.active {
  background: #2C5F8D;
}

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

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

.cookie-toggle.disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

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

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

/* Mobile Cookie Banner */
@media (max-width: 768px) {
  .cookie-content {
    flex-direction: column;
    text-align: center;
  }
  
  .cookie-buttons {
    width: 100%;
    flex-direction: column;
  }
  
  .cookie-btn {
    width: 100%;
  }
  
  .cookie-modal-content {
    padding: 24px;
  }
  
  .cookie-modal-buttons {
    flex-direction: column;
  }
  
  .cookie-modal-buttons .btn {
    width: 100%;
  }
}

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

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

.mt-0 { margin-top: 0; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mt-40 { margin-top: 40px; }

.mb-0 { margin-bottom: 0; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }
.mb-40 { margin-bottom: 40px; }

/* ===================================
   ANIMATIONS
   =================================== */

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

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

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

/* ===================================
   RESPONSIVE UTILITIES
   =================================== */

/* Hide on mobile */
@media (max-width: 768px) {
  .hide-mobile {
    display: none !important;
  }
}

/* Hide on desktop */
@media (min-width: 769px) {
  .hide-desktop {
    display: none !important;
  }
}

/* ===================================
   ACCESSIBILITY
   =================================== */

:focus-visible {
  outline: 2px solid #2C5F8D;
  outline-offset: 2px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

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

@media print {
  header,
  footer,
  .mobile-menu,
  .mobile-menu-toggle,
  .cookie-banner,
  .cookie-modal,
  .cta-banner {
    display: none;
  }
  
  body {
    font-size: 12pt;
    line-height: 1.5;
  }
  
  h1 { font-size: 24pt; }
  h2 { font-size: 18pt; }
  h3 { font-size: 14pt; }
  
  a {
    color: #000;
    text-decoration: underline;
  }
  
  .container {
    max-width: 100%;
  }
}