/* ============================================
   FROSTY ODYSSEY - MINIMALIST DESIGN SYSTEM
   ============================================ */

/* 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;
  font-size: 16px;
  line-height: 1.6;
  color: #1a1a1a;
  background-color: #ffffff;
  overflow-x: hidden;
}

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

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

ul, ol {
  list-style-position: inside;
}

table {
  width: 100%;
  border-collapse: collapse;
}

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

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

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

h2 {
  font-size: 32px;
  font-weight: 600;
}

h3 {
  font-size: 24px;
}

h4 {
  font-size: 18px;
}

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

strong {
  font-weight: 600;
  color: #0d2533;
}

/* ============================================
   MINIMALIST COLOR SYSTEM
   ============================================ */

:root {
  --primary: #1a4566;
  --secondary: #0d2533;
  --accent: #c44518;
  --light-bg: #f8f9fa;
  --white: #ffffff;
  --text-dark: #1a1a1a;
  --text-gray: #666666;
  --border-color: #e0e0e0;
}

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

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

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

/* ============================================
   HEADER - MINIMALIST NAVIGATION
   ============================================ */

header {
  background-color: var(--white);
  border-bottom: 1px solid var(--border-color);
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: box-shadow 0.3s ease;
}

header.scrolled {
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

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

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

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

.main-nav a {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-dark);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  position: relative;
  padding: 8px 0;
}

.main-nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--accent);
  transition: width 0.3s ease;
}

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

/* ============================================
   MOBILE MENU - HAMBURGER
   ============================================ */

.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 2000;
  background-color: var(--secondary);
  color: var(--white);
  border: none;
  width: 48px;
  height: 48px;
  font-size: 24px;
  cursor: pointer;
  border-radius: 4px;
  transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
  background-color: var(--primary);
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  right: -100%;
  width: 280px;
  height: 100vh;
  background-color: var(--white);
  z-index: 1999;
  padding: 80px 30px 30px;
  transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: -4px 0 24px rgba(0,0,0,0.1);
}

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

.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: none;
  font-size: 32px;
  color: var(--text-dark);
  cursor: pointer;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

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

.mobile-nav a {
  font-size: 16px;
  font-weight: 500;
  color: var(--text-dark);
  padding: 12px 0;
  border-bottom: 1px solid var(--border-color);
}

/* ============================================
   BUTTONS - MINIMALIST STYLE
   ============================================ */

.btn {
  display: inline-block;
  padding: 14px 32px;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
  border-radius: 2px;
}

.btn-primary {
  background-color: var(--secondary);
  color: var(--white);
}

.btn-primary:hover {
  background-color: var(--primary);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(13, 37, 51, 0.2);
}

.btn-secondary {
  background-color: transparent;
  color: var(--secondary);
  border: 2px solid var(--secondary);
}

.btn-secondary:hover {
  background-color: var(--secondary);
  color: var(--white);
}

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

/* ============================================
   HERO SECTION - MINIMALIST
   ============================================ */

.hero {
  background-color: var(--light-bg);
  padding: 80px 20px;
  text-align: center;
}

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

.hero h1 {
  margin-bottom: 24px;
}

.hero-subtitle {
  font-size: 18px;
  color: var(--text-gray);
  margin-bottom: 32px;
  line-height: 1.7;
}

.trust-indicators {
  display: flex;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid var(--border-color);
}

.trust-indicators span {
  font-size: 14px;
  color: var(--text-gray);
  font-weight: 500;
}

/* ============================================
   BENEFITS - GRID LAYOUT
   ============================================ */

.benefits {
  padding: 80px 20px;
  background-color: var(--white);
}

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

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

.benefit-card {
  flex: 1 1 calc(25% - 24px);
  min-width: 240px;
  text-align: center;
  padding: 32px 20px;
  background-color: var(--white);
  border: 1px solid var(--border-color);
  transition: all 0.3s ease;
}

.benefit-card:hover {
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
  transform: translateY(-4px);
}

.benefit-card img {
  width: 64px;
  height: 64px;
  margin: 0 auto 24px;
}

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

.benefit-card p {
  font-size: 14px;
  color: var(--text-gray);
  line-height: 1.6;
}

/* ============================================
   PRODUCT CARDS - FLEXBOX LAYOUT
   ============================================ */

.featured-products,
.products-section {
  padding: 80px 20px;
  background-color: var(--light-bg);
}

.featured-products h2,
.products-section h2 {
  text-align: center;
  margin-bottom: 48px;
}

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

.product-card,
.product-item {
  flex: 1 1 calc(33.333% - 16px);
  min-width: 280px;
  background-color: var(--white);
  padding: 32px 24px;
  text-align: center;
  border: 1px solid var(--border-color);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.product-card:hover,
.product-item:hover {
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
  transform: translateY(-4px);
}

.product-card img,
.product-item img {
  width: 80px;
  height: 80px;
  margin: 0 auto 16px;
}

.product-card h3,
.product-item h3 {
  font-size: 18px;
  margin-bottom: 12px;
}

.product-card p,
.product-item p {
  font-size: 14px;
  color: var(--text-gray);
  flex-grow: 1;
}

.product-card .price,
.product-item .price {
  font-size: 16px;
  font-weight: 600;
  color: var(--accent);
  margin-top: 16px;
}

/* ============================================
   TESTIMONIALS - CLEAN CARDS
   ============================================ */

.testimonials {
  padding: 80px 20px;
  background-color: var(--white);
}

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

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

.testimonial-card {
  flex: 1 1 calc(50% - 16px);
  min-width: 300px;
  max-width: 500px;
  background-color: var(--light-bg);
  padding: 32px;
  border-left: 4px solid var(--accent);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.testimonial-card p {
  font-size: 16px;
  font-style: italic;
  color: var(--text-dark);
  line-height: 1.7;
}

.testimonial-card .author {
  font-size: 14px;
  color: var(--text-gray);
  font-style: normal;
  margin-top: 8px;
}

.testimonials .rating {
  text-align: center;
  font-size: 18px;
  font-weight: 600;
  color: var(--secondary);
}

/* ============================================
   CTA SECTIONS
   ============================================ */

.cta-final,
.cta-section {
  padding: 80px 20px;
  background-color: var(--light-bg);
  text-align: center;
}

.cta-final h2,
.cta-section h2 {
  margin-bottom: 24px;
}

.cta-final p,
.cta-section p {
  max-width: 700px;
  margin: 0 auto 32px;
  font-size: 16px;
  color: var(--text-gray);
}

.contact-options {
  display: flex;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
  margin: 48px 0;
}

.contact-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.contact-item img {
  width: 40px;
  height: 40px;
}

.contact-item span {
  font-size: 14px;
  color: var(--text-dark);
  font-weight: 500;
}

.contact-info {
  margin: 32px 0;
}

.contact-info p {
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 8px;
}

/* ============================================
   PAGE HERO - BREADCRUMBS
   ============================================ */

.page-hero {
  background-color: var(--light-bg);
  padding: 48px 20px;
  border-bottom: 1px solid var(--border-color);
}

.breadcrumbs {
  font-size: 14px;
  color: var(--text-gray);
  margin-bottom: 24px;
}

.breadcrumbs a {
  color: var(--primary);
}

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

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

.page-hero p {
  font-size: 16px;
  color: var(--text-gray);
  max-width: 800px;
}

/* ============================================
   CONTENT SECTIONS
   ============================================ */

.content-section {
  padding: 60px 20px;
  background-color: var(--white);
}

.content-section:nth-child(even) {
  background-color: var(--light-bg);
}

.content-section h2 {
  margin-bottom: 32px;
}

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

.content-wrapper h2 {
  margin-top: 48px;
  margin-bottom: 24px;
}

.content-wrapper p,
.content-wrapper ul,
.content-wrapper ol {
  margin-bottom: 20px;
  line-height: 1.7;
}

.content-wrapper ul,
.content-wrapper ol {
  padding-left: 20px;
}

.content-wrapper li {
  margin-bottom: 12px;
}

/* ============================================
   ARTICLES & CARDS GRID
   ============================================ */

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

.article-card {
  flex: 1 1 calc(50% - 12px);
  min-width: 280px;
  background-color: var(--white);
  padding: 32px;
  border: 1px solid var(--border-color);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.article-card:hover {
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
  transform: translateY(-2px);
}

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

.article-card p {
  font-size: 14px;
  color: var(--text-gray);
  line-height: 1.6;
}

/* ============================================
   TIMELINE & MILESTONES
   ============================================ */

.timeline {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 32px;
  padding-left: 32px;
  border-left: 2px solid var(--border-color);
}

.milestone {
  padding: 16px 24px;
  background-color: var(--light-bg);
  position: relative;
}

.milestone::before {
  content: '';
  position: absolute;
  left: -40px;
  top: 24px;
  width: 16px;
  height: 16px;
  background-color: var(--accent);
  border-radius: 50%;
}

.milestone strong {
  display: block;
  font-size: 18px;
  color: var(--secondary);
  margin-bottom: 8px;
}

/* ============================================
   MISSION & VISION
   ============================================ */

.mission-vision {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  margin-top: 32px;
}

.text-block {
  flex: 1 1 calc(50% - 16px);
  min-width: 280px;
  padding: 32px;
  background-color: var(--light-bg);
  border-left: 4px solid var(--primary);
}

.text-block h2 {
  margin-bottom: 16px;
}

/* ============================================
   VALUES & FEATURES GRID
   ============================================ */

.values-grid,
.trust-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
  margin-top: 32px;
}

.value-item,
.trust-item {
  flex: 1 1 calc(50% - 12px);
  min-width: 240px;
  padding: 24px;
  background-color: var(--white);
  border: 1px solid var(--border-color);
  text-align: center;
}

.value-item h3 {
  font-size: 18px;
  margin-bottom: 12px;
  color: var(--secondary);
}

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

.trust-item p {
  font-size: 14px;
  color: var(--text-gray);
}

/* ============================================
   STATS SECTION
   ============================================ */

.stats-section {
  padding: 80px 20px;
  background-color: var(--secondary);
  color: var(--white);
  text-align: center;
}

.stats-section h2 {
  color: var(--white);
  margin-bottom: 48px;
}

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

.stat-item {
  flex: 1 1 200px;
  max-width: 250px;
}

.stat-item strong {
  display: block;
  font-size: 48px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
}

.stat-item p {
  font-size: 14px;
  color: rgba(255,255,255,0.9);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ============================================
   SHOWROOM & LOCATION
   ============================================ */

.showroom-section,
.showroom-info {
  padding: 60px 20px;
  background-color: var(--light-bg);
  text-align: center;
}

.showroom-info {
  margin-top: 32px;
  padding: 32px;
  background-color: var(--white);
  border: 1px solid var(--border-color);
  max-width: 600px;
  margin: 32px auto;
}

.showroom-info p {
  margin-bottom: 12px;
  text-align: left;
}

.showroom-details {
  text-align: left;
  max-width: 600px;
  margin: 32px auto;
  padding: 32px;
  background-color: var(--white);
  border: 1px solid var(--border-color);
}

/* ============================================
   PROMOTIONS - SPECIAL STYLING
   ============================================ */

.urgency-banner {
  display: inline-block;
  background-color: var(--accent);
  color: var(--white);
  padding: 12px 24px;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  margin-top: 24px;
}

.promo-highlights {
  padding: 60px 20px;
  background-color: var(--white);
}

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

.highlight-card {
  flex: 1 1 300px;
  max-width: 350px;
  padding: 32px;
  background-color: var(--light-bg);
  border: 2px solid var(--accent);
  text-align: center;
}

.highlight-card h3 {
  font-size: 20px;
  color: var(--secondary);
  margin-bottom: 12px;
}

.highlight-card p {
  font-size: 16px;
  font-weight: 600;
  color: var(--accent);
}

.promo-section {
  padding: 60px 20px;
  background-color: var(--white);
}

.promo-section:nth-child(even) {
  background-color: var(--light-bg);
}

.section-desc {
  text-align: center;
  color: var(--text-gray);
  margin-bottom: 32px;
}

.promo-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
  margin-top: 32px;
}

.promo-card {
  flex: 1 1 calc(33.333% - 16px);
  min-width: 280px;
  padding: 32px;
  background-color: var(--white);
  border: 2px solid var(--border-color);
  text-align: center;
  position: relative;
  transition: all 0.3s ease;
}

.promo-card:hover {
  border-color: var(--accent);
  box-shadow: 0 4px 16px rgba(0,0,0,0.1);
}

.promo-card h3 {
  font-size: 18px;
  margin-bottom: 16px;
}

.price-before {
  font-size: 16px;
  color: var(--text-gray);
  text-decoration: line-through;
  margin-bottom: 8px;
}

.price-now {
  font-size: 28px;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 8px;
}

.discount {
  display: inline-block;
  background-color: var(--accent);
  color: var(--white);
  padding: 4px 12px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 16px;
}

.savings,
.bonus {
  font-size: 14px;
  color: var(--text-gray);
  margin-top: 12px;
}

.bonus {
  color: var(--primary);
  font-weight: 600;
}

.additional-benefit {
  text-align: center;
  font-size: 16px;
  color: var(--primary);
  font-weight: 600;
  margin-top: 24px;
}

.bundle-section {
  padding: 60px 20px;
  background-color: var(--light-bg);
}

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

.bundle-card {
  flex: 1 1 400px;
  max-width: 500px;
  padding: 40px;
  background-color: var(--white);
  border: 3px solid var(--primary);
  text-align: center;
}

.bundle-price {
  font-size: 32px;
  font-weight: 700;
  color: var(--secondary);
  margin: 16px 0;
}

.bundle-savings {
  font-size: 16px;
  color: var(--accent);
  font-weight: 600;
}

.financing-section,
.help-section {
  padding: 60px 20px;
  background-color: var(--white);
  text-align: center;
}

.financing-section ul {
  max-width: 600px;
  margin: 32px auto;
  text-align: left;
}

.financing-section li {
  padding: 12px 0;
  border-bottom: 1px solid var(--border-color);
}

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

.contact-methods {
  padding: 60px 20px;
}

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

.method-card {
  flex: 1 1 300px;
  max-width: 350px;
  padding: 40px 32px;
  background-color: var(--white);
  border: 1px solid var(--border-color);
  text-align: center;
  transition: all 0.3s ease;
}

.method-card:hover {
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
  transform: translateY(-4px);
}

.method-card img {
  width: 56px;
  height: 56px;
  margin: 0 auto 20px;
}

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

.method-value {
  font-size: 18px;
  font-weight: 600;
  color: var(--secondary);
  margin: 16px 0;
}

.method-info {
  font-size: 14px;
  color: var(--text-gray);
}

.contact-form-section {
  padding: 60px 20px;
  background-color: var(--light-bg);
}

.form-wrapper {
  max-width: 700px;
  margin: 32px auto;
  padding: 40px;
  background-color: var(--white);
  border: 1px solid var(--border-color);
}

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

.form-field label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.input-placeholder,
.textarea-placeholder {
  width: 100%;
  padding: 14px;
  border: 1px solid var(--border-color);
  background-color: var(--light-bg);
  font-size: 14px;
  color: var(--text-gray);
  font-style: italic;
}

.input-placeholder::before {
  content: 'Wprowadź tekst...';
}

.textarea-placeholder {
  min-height: 120px;
}

.textarea-placeholder::before {
  content: 'Wpisz swoją wiadomość...';
}

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

.form-note {
  font-size: 12px;
  color: var(--text-gray);
  margin-top: 16px;
}

.response-time {
  font-size: 14px;
  color: var(--primary);
  font-weight: 600;
  text-align: center;
  margin-top: 24px;
}

.faq-contact {
  padding: 60px 20px;
  background-color: var(--white);
}

.faq-list {
  max-width: 800px;
  margin: 32px auto;
}

.faq-item {
  margin-bottom: 32px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--border-color);
}

.faq-item h3 {
  font-size: 18px;
  margin-bottom: 12px;
  color: var(--secondary);
}

.faq-item p {
  font-size: 14px;
  color: var(--text-gray);
  line-height: 1.7;
}

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

.last-update,
.effective-date {
  font-size: 14px;
  color: var(--text-gray);
  font-style: italic;
  margin-top: 16px;
}

.legal-content {
  padding: 60px 20px;
  background-color: var(--white);
}

.contact-dpo {
  padding: 60px 20px;
  background-color: var(--light-bg);
  text-align: center;
}

.contact-dpo p {
  margin: 8px 0;
}

.exercise-rights {
  text-align: center;
  font-weight: 600;
  color: var(--primary);
  margin-top: 32px;
}

.rights-section {
  padding: 60px 20px;
  background-color: var(--light-bg);
}

.rights-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
  margin-top: 32px;
}

.right-item {
  flex: 1 1 calc(33.333% - 16px);
  min-width: 260px;
  padding: 24px;
  background-color: var(--white);
  border-left: 4px solid var(--primary);
}

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

.right-item p {
  font-size: 14px;
  color: var(--text-gray);
}

.cookies-table {
  padding: 60px 20px;
  background-color: var(--light-bg);
}

.cookies-table table {
  max-width: 1000px;
  margin: 32px auto;
  background-color: var(--white);
  border: 1px solid var(--border-color);
}

.cookies-table th,
.cookies-table td {
  padding: 16px;
  text-align: left;
  border-bottom: 1px solid var(--border-color);
}

.cookies-table th {
  background-color: var(--secondary);
  color: var(--white);
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
}

.cookies-table td {
  font-size: 14px;
  color: var(--text-dark);
}

.browser-settings {
  padding: 60px 20px;
  background-color: var(--white);
}

.browser-settings ul {
  max-width: 700px;
  margin: 32px auto;
}

.browser-settings li {
  padding: 12px 0;
  border-bottom: 1px solid var(--border-color);
}

.complaint-info,
.returns-info {
  padding: 60px 20px;
  background-color: var(--light-bg);
}

.complaint-info ol,
.returns-info ul {
  max-width: 700px;
  margin: 32px auto;
}

.complaint-info li,
.returns-info li {
  padding: 12px 0;
  margin-bottom: 8px;
}

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

.thank-you-hero,
.thank-you-section {
  padding: 80px 20px;
  background-color: var(--light-bg);
  text-align: center;
}

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

.success-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 32px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.success-icon img {
  width: 80px;
  height: 80px;
}

.thank-you-content h1 {
  font-size: 40px;
  margin-bottom: 24px;
  color: var(--secondary);
}

.message {
  font-size: 18px;
  color: var(--text-dark);
  margin-bottom: 16px;
}

.confirmation-info {
  font-size: 14px;
  color: var(--text-gray);
  margin-bottom: 32px;
}

.next-steps {
  padding: 60px 20px;
  background-color: var(--white);
}

.next-steps ol {
  max-width: 600px;
  margin: 32px auto;
}

.next-steps li {
  padding: 16px 0;
  border-bottom: 1px solid var(--border-color);
  font-size: 16px;
}

.urgent-note {
  text-align: center;
  font-size: 16px;
  font-weight: 600;
  color: var(--accent);
  margin-top: 24px;
}

.suggested-actions,
.quick-links {
  padding: 60px 20px;
  background-color: var(--light-bg);
}

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

.action-card,
.link-card {
  flex: 1 1 300px;
  max-width: 350px;
  padding: 32px;
  background-color: var(--white);
  border: 1px solid var(--border-color);
  text-align: center;
  transition: all 0.3s ease;
}

.action-card:hover,
.link-card:hover {
  box-shadow: 0 4px 16px rgba(0,0,0,0.1);
  transform: translateY(-4px);
}

.action-card h3,
.link-card h3 {
  font-size: 20px;
  margin-bottom: 16px;
}

.action-card p {
  font-size: 14px;
  color: var(--text-gray);
  margin-bottom: 24px;
}

.contact-alternatives {
  padding: 60px 20px;
  background-color: var(--white);
  text-align: center;
}

.contact-methods {
  display: flex;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
  margin: 32px 0;
}

.contact-method {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.contact-method img {
  width: 40px;
  height: 40px;
}

.contact-method p {
  font-size: 14px;
  font-weight: 500;
}

.hours {
  font-size: 14px;
  color: var(--text-gray);
  margin-top: 24px;
}

/* ============================================
   FOOTER - MINIMALIST
   ============================================ */

footer {
  background-color: var(--secondary);
  color: var(--white);
  padding: 60px 20px 20px;
}

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

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

.footer-section h3,
.footer-section h4 {
  color: var(--white);
  font-size: 18px;
  margin-bottom: 16px;
}

.footer-section p {
  font-size: 14px;
  color: rgba(255,255,255,0.8);
  line-height: 1.7;
}

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

.footer-section nav a {
  font-size: 14px;
  color: rgba(255,255,255,0.8);
  transition: color 0.3s ease;
}

.footer-section nav a:hover {
  color: var(--white);
}

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

.footer-legal {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}

.footer-legal a {
  font-size: 12px;
  color: rgba(255,255,255,0.7);
  text-transform: uppercase;
}

.footer-legal a:hover {
  color: var(--white);
}

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

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

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--secondary);
  color: var(--white);
  padding: 24px 20px;
  z-index: 9999;
  box-shadow: 0 -4px 24px rgba(0,0,0,0.2);
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

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

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

.cookie-text {
  flex: 1 1 400px;
  font-size: 14px;
  line-height: 1.6;
}

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

.cookie-btn {
  padding: 10px 24px;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.cookie-btn-accept {
  background-color: var(--accent);
  color: var(--white);
}

.cookie-btn-accept:hover {
  background-color: #d45a14;
}

.cookie-btn-reject,
.cookie-btn-settings {
  background-color: transparent;
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.5);
}

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

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

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

.cookie-modal-content {
  background-color: var(--white);
  padding: 40px;
  max-width: 600px;
  width: 100%;
  max-height: 80vh;
  overflow-y: auto;
  position: relative;
}

.cookie-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
  color: var(--text-dark);
}

.cookie-category {
  margin-bottom: 24px;
  padding: 20px;
  background-color: var(--light-bg);
  border: 1px solid var(--border-color);
}

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

.cookie-toggle {
  width: 48px;
  height: 24px;
  background-color: var(--border-color);
  border-radius: 12px;
  position: relative;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.cookie-toggle.active {
  background-color: var(--primary);
}

.cookie-toggle::after {
  content: '';
  position: absolute;
  width: 18px;
  height: 18px;
  background-color: var(--white);
  border-radius: 50%;
  top: 3px;
  left: 3px;
  transition: transform 0.3s ease;
}

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

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

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

@media (max-width: 768px) {
  /* Typography */
  h1 { font-size: 32px; }
  h2 { font-size: 24px; }
  h3 { font-size: 18px; }
  
  /* Navigation */
  .main-nav {
    display: none;
  }
  
  .mobile-menu-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .mobile-menu {
    display: block;
  }
  
  /* Hero */
  .hero {
    padding: 48px 20px;
  }
  
  .trust-indicators {
    flex-direction: column;
    gap: 16px;
  }
  
  /* Cards */
  .benefits-grid,
  .product-grid,
  .testimonials-grid,
  .articles-grid,
  .values-grid,
  .trust-grid,
  .rights-grid {
    flex-direction: column;
  }
  
  .benefit-card,
  .product-card,
  .product-item,
  .testimonial-card,
  .article-card,
  .value-item,
  .trust-item,
  .right-item {
    flex: 1 1 100%;
    min-width: 100%;
  }
  
  /* CTA Buttons */
  .cta-buttons {
    flex-direction: column;
  }
  
  .btn {
    width: 100%;
  }
  
  /* Contact */
  .contact-options,
  .contact-methods {
    flex-direction: column;
    gap: 24px;
  }
  
  /* Mission Vision */
  .mission-vision {
    flex-direction: column;
  }
  
  /* Stats */
  .stats-grid {
    flex-direction: column;
    gap: 32px;
  }
  
  /* Promotions */
  .highlights-grid,
  .promo-grid,
  .bundles-grid {
    flex-direction: column;
  }
  
  /* Footer */
  .footer-content {
    flex-direction: column;
    gap: 32px;
  }
  
  .footer-legal {
    flex-direction: column;
    gap: 12px;
  }
  
  /* Cookie Banner */
  .cookie-content {
    flex-direction: column;
  }
  
  .cookie-buttons {
    width: 100%;
    flex-direction: column;
  }
  
  .cookie-btn {
    width: 100%;
  }
  
  /* Tables */
  .cookies-table table {
    font-size: 12px;
  }
  
  .cookies-table th,
  .cookies-table td {
    padding: 8px;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  /* Typography */
  h1 { font-size: 40px; }
  
  /* Cards - 2 columns */
  .benefit-card {
    flex: 1 1 calc(50% - 16px);
  }
  
  .product-card,
  .product-item {
    flex: 1 1 calc(50% - 12px);
  }
  
  .article-card,
  .value-item {
    flex: 1 1 calc(50% - 12px);
  }
}

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

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

.mt-16 { margin-top: 16px; }
.mt-32 { margin-top: 32px; }
.mb-16 { margin-bottom: 16px; }
.mb-32 { margin-bottom: 32px; }

.hidden { display: none; }
.visible { display: block; }

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

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

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

/* Smooth scrolling for all links */
html {
  scroll-behavior: smooth;
}

/* Focus states for accessibility */
*:focus {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
}

button:focus,
a:focus {
  outline: 2px solid var(--accent);
}

/* Print styles */
@media print {
  header,
  footer,
  .mobile-menu-toggle,
  .mobile-menu,
  .cookie-banner {
    display: none;
  }
  
  body {
    font-size: 12pt;
    line-height: 1.5;
  }
  
  a {
    text-decoration: underline;
  }
}
.cookie-text p {
  color: white;
}