/* =====================================================
   MISTY SABER - LUXURY PREMIUM CSS STYLES
   Design Style: Luxury & Premium Brand Aesthetic
   ===================================================== */

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

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

body {
  font-family: 'Cormorant Garamond', 'Georgia', serif;
  line-height: 1.7;
  color: #2a2a2a;
  background: linear-gradient(135deg, #f8f6f3 0%, #ffffff 100%);
  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: none;
}

/* =====================================================
   LUXURY TYPOGRAPHY
   ===================================================== */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', 'Georgia', serif;
  font-weight: 700;
  line-height: 1.3;
  color: #1a1a1a;
  letter-spacing: 0.02em;
}

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

h2 {
  font-size: 36px;
  margin-bottom: 20px;
  color: #1a1a1a;
}

h3 {
  font-size: 24px;
  margin-bottom: 16px;
  color: #2a2a2a;
}

p {
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 16px;
  color: #4a4a4a;
}

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

blockquote {
  font-size: 20px;
  font-style: italic;
  padding: 24px 32px;
  margin: 32px 0;
  border-left: 4px solid #d4af37;
  background: rgba(212, 175, 55, 0.05);
  color: #2a2a2a;
}

/* =====================================================
   CONTAINER & LAYOUT
   ===================================================== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* =====================================================
   HEADER & NAVIGATION - LUXURY STYLE
   ===================================================== */
header {
  background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
  padding: 20px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  border-bottom: 1px solid #d4af37;
}

.main-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.logo img {
  height: 50px;
  width: auto;
  filter: brightness(0) invert(1);
  transition: all 0.3s ease;
}

.logo:hover img {
  filter: brightness(0) invert(1) drop-shadow(0 0 10px #d4af37);
  transform: scale(1.05);
}

.nav-menu {
  display: flex;
  gap: 40px;
  align-items: center;
  flex-wrap: wrap;
}

.nav-menu li a {
  color: #f8f6f3;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 10px 0;
  position: relative;
  font-family: 'Montserrat', sans-serif;
}

.nav-menu li a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #d4af37 0%, #f4d77d 100%);
  transition: width 0.3s ease;
}

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

.nav-menu li a:hover {
  color: #d4af37;
}

/* =====================================================
   MOBILE MENU - LUXURY STYLE
   ===================================================== */
.mobile-menu-toggle {
  display: none;
  background: linear-gradient(135deg, #d4af37 0%, #f4d77d 100%);
  color: #1a1a1a;
  border: none;
  font-size: 24px;
  padding: 12px 16px;
  cursor: pointer;
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 2000;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
  transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(212, 175, 55, 0.6);
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 300px;
  height: 100vh;
  background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
  z-index: 1999;
  padding: 80px 30px 30px;
  transition: right 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  box-shadow: -4px 0 30px rgba(0, 0, 0, 0.5);
  border-left: 2px solid #d4af37;
}

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

.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: transparent;
  color: #d4af37;
  border: 2px solid #d4af37;
  font-size: 28px;
  padding: 8px 14px;
  cursor: pointer;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.mobile-menu-close:hover {
  background: #d4af37;
  color: #1a1a1a;
  transform: rotate(90deg);
}

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

.mobile-nav a {
  color: #f8f6f3;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 15px 20px;
  border-bottom: 1px solid rgba(212, 175, 55, 0.2);
  transition: all 0.3s ease;
  font-family: 'Montserrat', sans-serif;
}

.mobile-nav a:hover {
  color: #d4af37;
  padding-left: 30px;
  border-left: 3px solid #d4af37;
}

/* =====================================================
   HERO SECTION - LUXURY PREMIUM
   ===================================================== */
.hero {
  background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 50%, #1a1a1a 100%);
  color: #f8f6f3;
  padding: 120px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 50% 50%, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
  pointer-events: none;
}

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

.hero h1 {
  font-size: 56px;
  color: #f8f6f3;
  margin-bottom: 24px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  letter-spacing: 0.03em;
}

.hero-subheadline {
  font-size: 20px;
  color: #d4af37;
  margin-bottom: 40px;
  font-style: italic;
  letter-spacing: 0.5px;
}

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

/* =====================================================
   BUTTONS - LUXURY PREMIUM STYLE
   ===================================================== */
.btn, .btn-primary, .btn-secondary {
  display: inline-block;
  padding: 16px 40px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: all 0.4s ease;
  border-radius: 4px;
  font-family: 'Montserrat', sans-serif;
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: linear-gradient(135deg, #d4af37 0%, #f4d77d 100%);
  color: #1a1a1a;
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #f4d77d 0%, #d4af37 100%);
  transition: left 0.4s ease;
  z-index: -1;
}

.btn-primary:hover::before {
  left: 0;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(212, 175, 55, 0.6);
}

.btn-secondary {
  background: transparent;
  color: #f8f6f3;
  border: 2px solid #d4af37;
}

.btn-secondary:hover {
  background: #d4af37;
  color: #1a1a1a;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
}

.btn-link {
  color: #d4af37;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 10px 0;
  border-bottom: 2px solid transparent;
  transition: all 0.3s ease;
  font-family: 'Montserrat', sans-serif;
}

.btn-link:hover {
  border-bottom-color: #d4af37;
}

/* =====================================================
   SECTIONS - LUXURY SPACING
   ===================================================== */
section {
  padding: 80px 20px;
  margin-bottom: 60px;
}

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

/* =====================================================
   PAGE HERO - LUXURY STYLE
   ===================================================== */
.page-hero {
  background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
  color: #f8f6f3;
  padding: 80px 20px;
  text-align: center;
  border-bottom: 2px solid #d4af37;
}

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

.page-hero p {
  color: #d4af37;
  font-size: 18px;
  font-style: italic;
}

.breadcrumb {
  margin-bottom: 24px;
  font-size: 14px;
  color: #d4af37;
  letter-spacing: 1px;
}

.breadcrumb a {
  color: #d4af37;
  transition: all 0.3s ease;
}

.breadcrumb a:hover {
  color: #f4d77d;
}

/* =====================================================
   CARDS - LUXURY PREMIUM DESIGN
   ===================================================== */
.card-container, .product-grid, .value-cards, .testimonial-grid, .nav-cards, .feature-grid, .article-grid, .contact-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: space-between;
  margin-bottom: 40px;
}

.product-card, .value-card, .testimonial-card, .nav-card, .feature-item, .article-card, .contact-card {
  background: linear-gradient(135deg, #ffffff 0%, #f8f6f3 100%);
  padding: 32px;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.4s ease;
  position: relative;
  border: 1px solid rgba(212, 175, 55, 0.2);
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.product-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #d4af37 0%, #f4d77d 100%);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.product-card:hover::before {
  transform: scaleX(1);
}

.product-card:hover, .value-card:hover, .nav-card:hover, .article-card:hover, .contact-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 35px rgba(212, 175, 55, 0.3);
  border-color: #d4af37;
}

.product-card h3, .value-card h3, .nav-card h3, .article-card h3, .contact-card h3 {
  color: #1a1a1a;
  font-size: 22px;
  margin-bottom: 12px;
}

.product-card p, .value-card p, .nav-card p, .article-card p, .contact-card p {
  color: #4a4a4a;
  font-size: 15px;
  line-height: 1.7;
}

.price {
  font-size: 28px;
  font-weight: 700;
  color: #d4af37;
  margin-top: 16px;
  font-family: 'Playfair Display', serif;
}

.badge {
  display: inline-block;
  background: linear-gradient(135deg, #d4af37 0%, #f4d77d 100%);
  color: #1a1a1a;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 12px;
  font-family: 'Montserrat', sans-serif;
}

.category {
  display: inline-block;
  background: rgba(212, 175, 55, 0.1);
  color: #d4af37;
  padding: 6px 12px;
  border-radius: 4px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 12px;
  border: 1px solid rgba(212, 175, 55, 0.3);
  font-family: 'Montserrat', sans-serif;
}

.read-time {
  font-size: 13px;
  color: #8a8a8a;
  margin-top: 12px;
  font-style: italic;
}

/* =====================================================
   TESTIMONIALS - LUXURY STYLE WITH CONTRAST
   ===================================================== */
.testimonials {
  background: linear-gradient(135deg, #f8f6f3 0%, #ffffff 100%);
  padding: 80px 20px;
}

.testimonial-card {
  background: #ffffff;
  padding: 32px;
  border-left: 4px solid #d4af37;
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: flex-start;
}

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

.testimonial-author {
  font-weight: 600;
  color: #1a1a1a;
  font-size: 14px;
  margin-top: 8px;
  font-style: normal;
}

.rating {
  text-align: center;
  font-size: 16px;
  color: #d4af37;
  font-weight: 600;
  margin-top: 32px;
}

/* =====================================================
   FEATURES & BENEFITS - LUXURY LAYOUT
   ===================================================== */
.value-proposition, .benefits, .product-features {
  background: #ffffff;
  padding: 80px 20px;
}

.benefit-grid, .reassurance-grid, .trust-grid, .promise-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}

.benefit-item, .reassurance-item, .trust-badge, .promise-item {
  background: linear-gradient(135deg, #f8f6f3 0%, #ffffff 100%);
  padding: 24px;
  border-radius: 8px;
  text-align: center;
  border: 2px solid #d4af37;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100px;
}

.benefit-item:hover, .reassurance-item:hover, .trust-badge:hover, .promise-item:hover {
  background: linear-gradient(135deg, #d4af37 0%, #f4d77d 100%);
  color: #1a1a1a;
  transform: scale(1.05);
}

.benefit-item h3, .reassurance-item, .trust-badge, .promise-item {
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.5px;
  margin: 0;
}

/* =====================================================
   CTA SECTIONS - LUXURY PREMIUM
   ===================================================== */
.cta-banner, .cta-section {
  background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
  color: #f8f6f3;
  text-align: center;
  padding: 80px 20px;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 50% 50%, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
  pointer-events: none;
}

.cta-banner h2, .cta-section h2 {
  color: #f8f6f3;
  font-size: 42px;
  margin-bottom: 20px;
}

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

/* =====================================================
   STORY & MISSION - LUXURY TEXT
   ===================================================== */
.story, .mission-vision, .values, .commitment {
  padding: 80px 20px;
  background: #ffffff;
}

.mission-grid, .value-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: space-between;
  margin-top: 40px;
}

.mission-item, .value-item {
  background: linear-gradient(135deg, #f8f6f3 0%, #ffffff 100%);
  padding: 40px;
  border-radius: 8px;
  border: 1px solid rgba(212, 175, 55, 0.2);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.mission-item:hover, .value-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(212, 175, 55, 0.2);
  border-color: #d4af37;
}

.commitment-list, .reason-list, .hours-list, .steps-list {
  list-style: none;
  padding: 0;
  margin: 32px 0;
}

.commitment-list li, .reason-list li, .hours-list li, .steps-list li {
  padding: 16px 0;
  padding-left: 40px;
  position: relative;
  font-size: 16px;
  color: #2a2a2a;
  line-height: 1.8;
}

.commitment-list li::before, .reason-list li::before {
  content: '◆';
  position: absolute;
  left: 0;
  color: #d4af37;
  font-size: 20px;
}

.steps-list {
  counter-reset: step-counter;
}

.steps-list li {
  counter-increment: step-counter;
}

.steps-list li::before {
  content: counter(step-counter);
  position: absolute;
  left: 0;
  background: linear-gradient(135deg, #d4af37 0%, #f4d77d 100%);
  color: #1a1a1a;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 14px;
}

/* =====================================================
   LEGAL PAGES - LUXURY TYPOGRAPHY
   ===================================================== */
.legal-content {
  background: #ffffff;
  padding: 60px 20px;
}

.legal-section {
  margin-bottom: 48px;
  padding: 32px;
  background: linear-gradient(135deg, #f8f6f3 0%, #ffffff 100%);
  border-left: 4px solid #d4af37;
  border-radius: 8px;
}

.legal-section h2 {
  color: #1a1a1a;
  font-size: 26px;
  margin-bottom: 16px;
}

.legal-section p {
  color: #4a4a4a;
  font-size: 15px;
  line-height: 1.8;
}

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

.legal-links li a {
  color: #d4af37;
  font-weight: 600;
  padding: 12px 24px;
  border: 2px solid #d4af37;
  border-radius: 4px;
  transition: all 0.3s ease;
  font-size: 14px;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-family: 'Montserrat', sans-serif;
}

.legal-links li a:hover {
  background: #d4af37;
  color: #1a1a1a;
}

.last-updated {
  font-size: 14px;
  color: #8a8a8a;
  font-style: italic;
  margin-top: 8px;
}

/* =====================================================
   ERROR 404 PAGE - LUXURY STYLE
   ===================================================== */
.error-hero {
  background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
  color: #f8f6f3;
  padding: 120px 20px;
  text-align: center;
}

.error-code {
  font-size: 120px;
  font-weight: 700;
  color: #d4af37;
  line-height: 1;
  margin-bottom: 24px;
  font-family: 'Playfair Display', serif;
  text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.5);
}

.error-hero h1 {
  color: #f8f6f3;
  font-size: 36px;
}

.subheadline {
  color: #d4af37;
  font-size: 18px;
  font-style: italic;
  margin-bottom: 32px;
}

/* =====================================================
   THANK YOU PAGE - LUXURY SUCCESS
   ===================================================== */
.thank-you-hero {
  background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
  color: #f8f6f3;
  padding: 100px 20px;
  text-align: center;
}

.success-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #d4af37 0%, #f4d77d 100%);
  color: #1a1a1a;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  font-weight: 700;
  margin: 0 auto 32px;
  box-shadow: 0 8px 30px rgba(212, 175, 55, 0.5);
}

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

.confirmation {
  color: #d4af37;
  font-size: 16px;
  font-style: italic;
}

/* =====================================================
   CONTACT & FORMS - LUXURY STYLE
   ===================================================== */
.contact-form-section {
  background: #ffffff;
  padding: 80px 20px;
}

.form-notice {
  background: linear-gradient(135deg, #f8f6f3 0%, #ffffff 100%);
  padding: 32px;
  border-left: 4px solid #d4af37;
  border-radius: 8px;
  margin-top: 32px;
}

.form-notice p {
  color: #2a2a2a;
  margin-bottom: 8px;
}

.faq-preview {
  background: linear-gradient(135deg, #f8f6f3 0%, #ffffff 100%);
  padding: 80px 20px;
}

.faq-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 40px;
}

.faq-item {
  background: #ffffff;
  padding: 28px;
  border-radius: 8px;
  border: 1px solid rgba(212, 175, 55, 0.2);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.faq-item:hover {
  border-color: #d4af37;
  box-shadow: 0 6px 25px rgba(212, 175, 55, 0.2);
  transform: translateY(-3px);
}

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

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

/* =====================================================
   FOOTER - LUXURY PREMIUM STYLE
   ===================================================== */
footer {
  background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
  color: #f8f6f3;
  padding: 60px 20px 20px;
  border-top: 2px solid #d4af37;
}

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

.footer-section {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-logo {
  height: 40px;
  width: auto;
  margin-bottom: 16px;
  filter: brightness(0) invert(1);
}

.footer-section h4 {
  color: #d4af37;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 16px;
  font-family: 'Montserrat', sans-serif;
}

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

.footer-section ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-section ul li a {
  color: #c0c0c0;
  font-size: 14px;
  transition: all 0.3s ease;
}

.footer-section ul li a:hover {
  color: #d4af37;
  padding-left: 8px;
}

.footer-bottom {
  text-align: center;
  padding-top: 32px;
  border-top: 1px solid rgba(212, 175, 55, 0.2);
}

.footer-bottom p {
  color: #8a8a8a;
  font-size: 13px;
  letter-spacing: 0.5px;
}

/* =====================================================
   COOKIE CONSENT BANNER - LUXURY STYLE
   ===================================================== */
.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
  color: #f8f6f3;
  padding: 24px 20px;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
  z-index: 1500;
  border-top: 2px solid #d4af37;
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

.cookie-consent.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: #c0c0c0;
  font-size: 14px;
  margin-bottom: 0;
}

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

.cookie-btn {
  padding: 10px 24px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  border-radius: 4px;
  transition: all 0.3s ease;
  font-family: 'Montserrat', sans-serif;
}

.cookie-accept {
  background: linear-gradient(135deg, #d4af37 0%, #f4d77d 100%);
  color: #1a1a1a;
}

.cookie-accept:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.5);
}

.cookie-reject {
  background: transparent;
  color: #c0c0c0;
  border: 2px solid #6a6a6a;
}

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

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

.cookie-settings:hover {
  background: #d4af37;
  color: #1a1a1a;
}

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

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

.cookie-modal-content {
  background: linear-gradient(135deg, #ffffff 0%, #f8f6f3 100%);
  padding: 40px;
  border-radius: 8px;
  max-width: 600px;
  width: 100%;
  border: 2px solid #d4af37;
  box-shadow: 0 10px 50px rgba(0, 0, 0, 0.5);
}

.cookie-modal h3 {
  color: #1a1a1a;
  margin-bottom: 24px;
}

.cookie-category {
  margin-bottom: 20px;
  padding: 16px;
  background: #ffffff;
  border-radius: 4px;
  border: 1px solid rgba(212, 175, 55, 0.2);
}

.cookie-category label {
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  font-weight: 600;
  color: #2a2a2a;
}

.cookie-category input[type="checkbox"] {
  width: 20px;
  height: 20px;
  cursor: pointer;
}

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

/* =====================================================
   RESPONSIVE DESIGN - MOBILE FIRST
   ===================================================== */
@media (max-width: 768px) {
  /* Mobile Menu Display */
  .mobile-menu-toggle {
    display: block;
  }
  
  .nav-menu {
    display: none;
  }
  
  /* Typography */
  h1 {
    font-size: 32px;
  }
  
  h2 {
    font-size: 28px;
  }
  
  h3 {
    font-size: 20px;
  }
  
  .hero h1 {
    font-size: 36px;
  }
  
  .error-code {
    font-size: 80px;
  }
  
  /* Sections */
  section {
    padding: 60px 20px;
    margin-bottom: 40px;
  }
  
  .hero, .page-hero {
    padding: 60px 20px;
  }
  
  /* Grids - Stack on Mobile */
  .product-grid, .value-cards, .testimonial-grid, .nav-cards, .feature-grid, .article-grid, .contact-grid, .benefit-grid, .reassurance-grid, .trust-grid, .promise-grid, .mission-grid, .value-grid, .faq-grid {
    flex-direction: column;
  }
  
  .product-card, .value-card, .testimonial-card, .nav-card, .feature-item, .article-card, .contact-card, .benefit-item, .mission-item, .value-item, .faq-item {
    width: 100%;
  }
  
  /* CTA Buttons */
  .cta-buttons {
    flex-direction: column;
    align-items: stretch;
  }
  
  .btn, .btn-primary, .btn-secondary {
    width: 100%;
    text-align: center;
  }
  
  /* Footer */
  .footer-content {
    flex-direction: column;
    gap: 40px;
  }
  
  .footer-section {
    text-align: center;
    align-items: center;
  }
  
  /* Cookie Banner */
  .cookie-content {
    flex-direction: column;
    text-align: center;
  }
  
  .cookie-buttons {
    width: 100%;
    flex-direction: column;
  }
  
  .cookie-btn {
    width: 100%;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .product-grid, .value-cards, .article-grid, .contact-grid {
    gap: 24px;
  }
  
  .product-card, .value-card, .article-card, .contact-card {
    width: calc(50% - 12px);
  }
  
  .nav-menu {
    gap: 24px;
  }
}

@media (min-width: 1025px) {
  .product-grid {
    gap: 30px;
  }
  
  .product-card {
    width: calc(33.333% - 20px);
  }
  
  .value-card, .article-card, .contact-card {
    width: calc(50% - 15px);
  }
  
  .benefit-item, .reassurance-item, .trust-badge, .promise-item {
    width: calc(25% - 18px);
  }
}

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

.hero-content, .page-hero, .product-card, .value-card {
  animation: fadeIn 0.6s ease-out;
}

/* Smooth Scrolling */
html {
  scroll-behavior: smooth;
}

/* Focus States for Accessibility */
a:focus, button:focus, input:focus {
  outline: 2px solid #d4af37;
  outline-offset: 2px;
}

/* Print Styles */
@media print {
  header, footer, .mobile-menu-toggle, .cookie-consent {
    display: none;
  }
  
  body {
    background: white;
    color: black;
  }
}