/* =========================
   STORMMINT FITNESS - CSS
   Monochrome Sophisticated Design
   ========================= */

/* CSS RESET & BASE */
* {
  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: #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 {
  list-style: none;
}

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

/* TYPOGRAPHY */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  line-height: 1.2;
  color: #000000;
  margin-bottom: 16px;
}

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

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

h3 {
  font-size: 24px;
}

h4 {
  font-size: 18px;
}

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

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

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

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

.btn-primary:hover {
  background-color: #333333;
  border-color: #333333;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.btn-secondary {
  background-color: #ffffff;
  color: #000000;
  border-color: #000000;
}

.btn-secondary:hover {
  background-color: #000000;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.btn-copy {
  padding: 8px 16px;
  background-color: #f5f5f5;
  color: #000000;
  border: 1px solid #cccccc;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 600;
}

.btn-copy:hover {
  background-color: #000000;
  color: #ffffff;
  border-color: #000000;
}

/* MOBILE MENU TOGGLE */
.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 1001;
  width: 50px;
  height: 50px;
  background-color: #000000;
  color: #ffffff;
  font-size: 24px;
  border-radius: 4px;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
}

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

/* MOBILE MENU */
.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  right: -100%;
  width: 280px;
  height: 100vh;
  background-color: #ffffff;
  z-index: 1002;
  padding: 80px 30px 30px;
  box-shadow: -4px 0 20px rgba(0, 0, 0, 0.2);
  transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  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: #000000;
  background-color: #f5f5f5;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

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

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

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

.mobile-nav a:hover {
  color: #666666;
  padding-left: 10px;
}

/* HEADER */
header {
  background-color: #ffffff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 100;
}

.promo-banner {
  background-color: #000000;
  color: #ffffff;
  text-align: center;
  padding: 12px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.5px;
}

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

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

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

.main-nav a {
  font-size: 15px;
  font-weight: 600;
  color: #000000;
  position: relative;
  transition: color 0.3s ease;
}

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

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

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

/* HERO SECTION */
.hero {
  background: linear-gradient(135deg, #f5f5f5 0%, #e0e0e0 100%);
  padding: 80px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: rgba(0, 0, 0, 0.03);
  border-radius: 50%;
}

.hero h1 {
  font-size: 56px;
  margin-bottom: 24px;
  color: #000000;
  position: relative;
  z-index: 1;
}

.subheadline {
  font-size: 20px;
  color: #333333;
  margin-bottom: 40px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 1;
}

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

.trust-indicators {
  display: flex;
  gap: 32px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 40px;
  position: relative;
  z-index: 1;
}

.trust-indicators span {
  font-size: 14px;
  font-weight: 600;
  color: #000000;
  display: flex;
  align-items: center;
  gap: 8px;
}

.trust-indicators span::before {
  content: '✓';
  display: inline-block;
  width: 20px;
  height: 20px;
  background-color: #000000;
  color: #ffffff;
  border-radius: 50%;
  text-align: center;
  line-height: 20px;
  font-size: 12px;
}

/* SECTIONS */
.section {
  margin-bottom: 60px;
  padding: 60px 20px;
}

.featured-categories,
.benefits,
.social-proof,
.testimonials {
  padding: 60px 20px;
}

.featured-categories {
  background-color: #ffffff;
}

.benefits {
  background-color: #f9f9f9;
}

.social-proof {
  background-color: #000000;
  color: #ffffff;
}

.social-proof h2 {
  color: #ffffff;
  text-align: center;
  margin-bottom: 40px;
}

.testimonials {
  background-color: #f5f5f5;
}

.cta-banner {
  background-color: #000000;
  color: #ffffff;
  text-align: center;
  padding: 60px 20px;
}

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

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

/* GRIDS */
.category-grid,
.benefits-grid,
.stats-grid,
.testimonial-grid,
.product-grid,
.cards-grid,
.values-grid,
.tips-grid,
.codes-grid,
.contact-cards,
.cta-cards,
.steps-grid,
.rights-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}

/* CARDS */
.category-card,
.benefit-card,
.stat-card,
.testimonial-card,
.product-card,
.card,
.value-card,
.tip-card,
.code-card,
.contact-card,
.cta-card,
.step-card,
.right-card {
  flex: 1 1 calc(33.333% - 16px);
  min-width: 280px;
  background-color: #ffffff;
  padding: 32px 24px;
  border-radius: 4px;
  border: 1px solid #e0e0e0;
  transition: all 0.3s ease;
  position: relative;
}

.category-card:hover,
.benefit-card:hover,
.product-card:hover,
.card:hover,
.value-card:hover,
.tip-card:hover,
.code-card:hover,
.contact-card:hover,
.cta-card:hover,
.right-card:hover {
  border-color: #000000;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
  transform: translateY(-4px);
}

.category-card h3,
.benefit-card h3,
.product-card h3,
.card h3,
.value-card h3,
.tip-card h3,
.code-card h3,
.contact-card h3,
.cta-card h3,
.right-card h3 {
  margin-bottom: 12px;
  color: #000000;
}

.category-card p,
.benefit-card p,
.product-card p {
  color: #666666;
  margin-bottom: 16px;
}

.category-card a {
  color: #000000;
  font-weight: 600;
  display: inline-block;
  position: relative;
}

.category-card a::after {
  content: '→';
  margin-left: 8px;
  transition: margin-left 0.3s ease;
}

.category-card:hover a::after {
  margin-left: 12px;
}

/* STAT CARDS */
.stat-card {
  text-align: center;
  background-color: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
  padding: 40px 24px;
}

.stat-card:hover {
  background-color: rgba(255, 255, 255, 0.15);
  border-color: #ffffff;
}

.stat-number {
  display: block;
  font-size: 48px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 8px;
}

.stat-label {
  display: block;
  font-size: 16px;
  color: #cccccc;
}

.number {
  display: block;
  font-size: 48px;
  font-weight: 700;
  color: #000000;
  margin-bottom: 8px;
}

.label {
  display: block;
  font-size: 16px;
  color: #666666;
}

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

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

.client-name {
  font-weight: 600;
  color: #000000;
  font-size: 14px;
}

/* PRODUCT CARDS */
.product-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.product-card .price {
  font-size: 24px;
  font-weight: 700;
  color: #000000;
  margin-bottom: 8px;
}

.product-card .old-price {
  font-size: 18px;
  color: #999999;
  text-decoration: line-through;
  margin-bottom: 4px;
}

.product-card .new-price {
  font-size: 28px;
  font-weight: 700;
  color: #000000;
  margin-bottom: 8px;
}

.product-card .rating {
  color: #000000;
  font-size: 14px;
}

.product-card .savings {
  color: #666666;
  font-size: 14px;
  font-weight: 600;
}

.product-card.promo {
  border-color: #000000;
  background: linear-gradient(135deg, #ffffff 0%, #f9f9f9 100%);
}

.badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background-color: #000000;
  color: #ffffff;
  padding: 6px 12px;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 700;
}

/* PAGE HEADER */
.page-header {
  background: linear-gradient(135deg, #f5f5f5 0%, #e0e0e0 100%);
  padding: 60px 20px 40px;
  text-align: center;
}

.breadcrumbs {
  font-size: 14px;
  color: #666666;
  margin-bottom: 20px;
  display: flex;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
}

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

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

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

.last-update,
.version {
  font-size: 14px;
  color: #999999;
  margin-top: 8px;
}

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

.filters-sidebar {
  flex: 0 0 250px;
  background-color: #f9f9f9;
  padding: 24px;
  border-radius: 4px;
  border: 1px solid #e0e0e0;
  height: fit-content;
  position: sticky;
  top: 120px;
}

.filters-sidebar h3 {
  margin-bottom: 24px;
  padding-bottom: 12px;
  border-bottom: 2px solid #000000;
}

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

.filter-group h4 {
  margin-bottom: 16px;
  color: #000000;
}

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

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

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

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

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

.results-count {
  font-weight: 600;
  color: #000000;
}

.sort-dropdown {
  padding: 10px 16px;
  border: 1px solid #cccccc;
  border-radius: 4px;
  background-color: #ffffff;
  font-size: 14px;
  cursor: pointer;
  min-width: 200px;
}

.sort-dropdown:focus {
  outline: 2px solid #000000;
}

.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  margin-top: 40px;
  flex-wrap: wrap;
}

.pagination button,
.pagination span {
  padding: 10px 16px;
  background-color: #ffffff;
  border: 1px solid #cccccc;
  border-radius: 4px;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.3s ease;
}

.pagination button:hover,
.pagination span:hover {
  background-color: #000000;
  color: #ffffff;
  border-color: #000000;
}

.usp-bar {
  display: flex;
  justify-content: space-around;
  gap: 24px;
  margin-top: 60px;
  padding: 32px 20px;
  background-color: #f9f9f9;
  border-radius: 4px;
  flex-wrap: wrap;
}

.usp-item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.usp-item img {
  width: 32px;
  height: 32px;
}

.usp-item span {
  font-size: 14px;
  font-weight: 600;
  color: #000000;
}

/* ABOUT PAGE */
.content-wrapper {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

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

.content-wrapper p {
  font-size: 18px;
  line-height: 1.8;
  color: #333333;
  margin-bottom: 20px;
}

/* ARTICLES */
.featured-article {
  padding: 60px 20px;
  background-color: #f9f9f9;
}

.article-featured {
  max-width: 800px;
  margin: 0 auto;
  padding: 40px;
  background-color: #ffffff;
  border-radius: 4px;
  border: 1px solid #e0e0e0;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.article-featured h2 {
  margin-bottom: 16px;
}

.article-featured p {
  color: #333333;
  line-height: 1.8;
  margin-bottom: 16px;
}

.meta {
  font-size: 14px;
  color: #999999;
  display: block;
  margin-bottom: 20px;
}

.advice-categories {
  padding: 40px 20px;
  background-color: #ffffff;
}

.categories-filter {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.categories-filter button {
  padding: 10px 20px;
  background-color: #f5f5f5;
  border: 1px solid #cccccc;
  border-radius: 4px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.categories-filter button.active,
.categories-filter button:hover {
  background-color: #000000;
  color: #ffffff;
  border-color: #000000;
}

.articles-grid {
  padding: 40px 20px;
  background-color: #f9f9f9;
}

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

.article-card {
  flex: 1 1 calc(33.333% - 16px);
  min-width: 280px;
  background-color: #ffffff;
  padding: 24px;
  border-radius: 4px;
  border: 1px solid #e0e0e0;
  transition: all 0.3s ease;
}

.article-card:hover {
  border-color: #000000;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
  transform: translateY(-4px);
}

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

.article-card p {
  color: #666666;
  margin-bottom: 12px;
}

.article-card a {
  color: #000000;
  font-weight: 600;
  display: inline-block;
}

.article-card a:hover {
  text-decoration: underline;
}

.quick-tips {
  padding: 60px 20px;
  background-color: #ffffff;
}

.expert-section {
  padding: 60px 20px;
  text-align: center;
  background-color: #f5f5f5;
}

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

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

/* PROMOTIONS */
.banner-promo {
  padding: 60px 20px;
  background-color: #f9f9f9;
}

.promo-banner-large {
  background: linear-gradient(135deg, #000000 0%, #333333 100%);
  color: #ffffff;
  padding: 60px 40px;
  border-radius: 4px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.promo-banner-large::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 400px;
  height: 400px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
}

.promo-banner-large h2 {
  color: #ffffff;
  font-size: 48px;
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}

.discount {
  display: inline-block;
  font-size: 72px;
  font-weight: 700;
  color: #ffffff;
  margin: 20px 0;
  position: relative;
  z-index: 1;
}

.promo-banner-large p {
  color: #cccccc;
  font-size: 20px;
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
}

.countdown {
  font-size: 18px;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 32px;
  position: relative;
  z-index: 1;
}

.promo-categories {
  padding: 40px 20px;
  background-color: #ffffff;
}

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

.tabs button {
  padding: 12px 24px;
  background-color: #f5f5f5;
  border: 1px solid #cccccc;
  border-radius: 4px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.tabs button.active,
.tabs button:hover {
  background-color: #000000;
  color: #ffffff;
  border-color: #000000;
}

.promo-products {
  padding: 40px 20px;
  background-color: #f9f9f9;
}

.promo-codes {
  padding: 60px 20px;
  background-color: #ffffff;
}

.email-alert {
  padding: 60px 20px;
  text-align: center;
  background-color: #f5f5f5;
}

.email-alert h2 {
  margin-bottom: 16px;
}

.email-alert p {
  font-size: 18px;
  color: #666666;
  margin-bottom: 32px;
}

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

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

.newsletter-form input:focus {
  outline: 2px solid #000000;
  border-color: #000000;
}

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

small a {
  color: #000000;
  text-decoration: underline;
}

/* CONTACT PAGE */
.contact-info {
  padding: 60px 20px;
  background-color: #f9f9f9;
}

.contact-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.contact-card {
  flex: 1 1 calc(25% - 18px);
  min-width: 200px;
  text-align: center;
  padding: 32px 20px;
}

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

.contact-form-section {
  padding: 60px 20px;
  background-color: #ffffff;
}

.form-wrapper {
  max-width: 700px;
  margin: 0 auto;
}

.form-note {
  background-color: #f5f5f5;
  padding: 20px;
  border-radius: 4px;
  border-left: 4px solid #000000;
  margin-bottom: 32px;
}

.form-note p {
  margin-bottom: 8px;
  color: #333333;
}

.required-note {
  font-size: 14px;
  color: #999999;
}

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

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

.field label {
  font-weight: 600;
  color: #000000;
  font-size: 15px;
}

.field input,
.field select,
.field textarea {
  padding: 12px 16px;
  border: 1px solid #cccccc;
  border-radius: 4px;
  font-size: 16px;
  font-family: inherit;
  transition: all 0.3s ease;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: #000000;
  box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.1);
}

.field textarea {
  resize: vertical;
  min-height: 120px;
}

.faq-section {
  padding: 60px 20px;
  background-color: #f9f9f9;
}

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

.faq-item {
  background-color: #ffffff;
  padding: 24px;
  border-radius: 4px;
  border: 1px solid #e0e0e0;
  transition: all 0.3s ease;
}

.faq-item:hover {
  border-color: #000000;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.faq-item h3 {
  margin-bottom: 12px;
  color: #000000;
}

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

.business-info {
  padding: 60px 20px;
  text-align: center;
  background-color: #ffffff;
}

.business-details {
  max-width: 500px;
  margin: 0 auto;
  padding: 32px;
  background-color: #f9f9f9;
  border-radius: 4px;
  border: 1px solid #e0e0e0;
}

.business-details p {
  margin-bottom: 8px;
  color: #333333;
}

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

.content-layout {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}

.toc {
  flex: 0 0 250px;
  background-color: #f9f9f9;
  padding: 24px;
  border-radius: 4px;
  border: 1px solid #e0e0e0;
  height: fit-content;
  position: sticky;
  top: 120px;
}

.toc h3 {
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 2px solid #000000;
}

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

.toc a {
  color: #000000;
  font-size: 14px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.toc a:hover {
  color: #666666;
  padding-left: 8px;
}

.legal-text {
  flex: 1;
  min-width: 0;
  max-width: 800px;
}

.legal-text section {
  margin-bottom: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid #e0e0e0;
}

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

.legal-text h2 {
  margin-bottom: 20px;
  color: #000000;
}

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

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

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

.legal-text a {
  color: #000000;
  font-weight: 600;
  text-decoration: underline;
}

/* RODO PAGE */
.rodo-intro {
  padding: 40px 20px;
  background-color: #f9f9f9;
}

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

.intro-content p {
  font-size: 18px;
  line-height: 1.8;
  color: #333333;
}

.rights-section {
  padding: 60px 20px;
  background-color: #ffffff;
}

.data-processing {
  padding: 60px 20px;
  background-color: #f9f9f9;
}

.processing-info {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-top: 32px;
}

.info-block {
  flex: 1 1 calc(33.333% - 22px);
  min-width: 250px;
  background-color: #ffffff;
  padding: 24px;
  border-radius: 4px;
  border: 1px solid #e0e0e0;
}

.info-block h3 {
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 2px solid #000000;
}

.info-block p,
.info-block ul {
  color: #333333;
  line-height: 1.7;
}

.info-block ul {
  margin-left: 20px;
}

.info-block li {
  margin-bottom: 8px;
  list-style: disc;
}

.request-form {
  padding: 60px 20px;
  text-align: center;
  background-color: #ffffff;
}

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

.option {
  padding: 20px 32px;
  background-color: #f9f9f9;
  border-radius: 4px;
  border: 1px solid #e0e0e0;
  font-size: 16px;
  color: #333333;
}

.deadline-info {
  font-size: 14px;
  color: #999999;
  margin-top: 16px;
}

/* COOKIES PAGE */
.cookies-intro,
.cookies-types,
.cookies-table,
.cookies-management,
.third-party {
  padding: 60px 20px;
}

.cookies-intro {
  background-color: #f9f9f9;
}

.cookies-intro h2,
.cookies-types h2,
.cookies-table h2,
.cookies-management h2,
.third-party h2 {
  text-align: center;
  margin-bottom: 24px;
}

.cookies-intro p,
.cookies-management p,
.third-party p {
  max-width: 800px;
  margin: 0 auto 16px;
  line-height: 1.8;
  color: #333333;
}

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

.type-card {
  flex: 1 1 calc(25% - 18px);
  min-width: 220px;
  background-color: #ffffff;
  padding: 24px;
  border-radius: 4px;
  border: 1px solid #e0e0e0;
  transition: all 0.3s ease;
}

.type-card:hover {
  border-color: #000000;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
  transform: translateY(-4px);
}

.type-card h3 {
  margin-bottom: 12px;
  color: #000000;
}

.type-card p {
  color: #666666;
  margin-bottom: 12px;
}

.duration {
  display: block;
  font-size: 14px;
  color: #999999;
  font-weight: 600;
}

table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 32px;
  background-color: #ffffff;
}

thead {
  background-color: #000000;
  color: #ffffff;
}

thead th {
  padding: 16px;
  text-align: left;
  font-weight: 600;
}

tbody tr {
  border-bottom: 1px solid #e0e0e0;
}

tbody tr:hover {
  background-color: #f9f9f9;
}

tbody td {
  padding: 16px;
  color: #333333;
}

.browser-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 400px;
  margin: 24px auto;
}

.browser-links li {
  list-style: none;
}

.browser-links a {
  display: block;
  padding: 12px 20px;
  background-color: #f5f5f5;
  border: 1px solid #cccccc;
  border-radius: 4px;
  text-align: center;
  font-weight: 600;
  color: #000000;
  transition: all 0.3s ease;
}

.browser-links a:hover {
  background-color: #000000;
  color: #ffffff;
  border-color: #000000;
}

.third-party ul {
  max-width: 600px;
  margin: 24px auto;
}

.third-party li {
  margin-bottom: 12px;
  line-height: 1.7;
  color: #333333;
  list-style: disc;
  margin-left: 20px;
}

/* REGULAMIN */
.complaints-info {
  padding: 60px 20px;
  background-color: #f9f9f9;
}

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

.step {
  flex: 1 1 calc(25% - 18px);
  min-width: 200px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 16px;
  padding: 32px 20px;
  background-color: #ffffff;
  border-radius: 4px;
  border: 1px solid #e0e0e0;
  transition: all 0.3s ease;
}

.step:hover {
  border-color: #000000;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
  transform: translateY(-4px);
}

.step .number {
  width: 60px;
  height: 60px;
  background-color: #000000;
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  font-weight: 700;
}

.step p {
  color: #333333;
  line-height: 1.6;
}

/* THANK YOU PAGE */
.thank-you-hero {
  padding: 100px 20px;
  text-align: center;
  background: linear-gradient(135deg, #f5f5f5 0%, #e0e0e0 100%);
}

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

.success-icon {
  width: 80px;
  height: 80px;
  background-color: #000000;
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  margin: 0 auto 32px;
  animation: scaleIn 0.5s ease;
}

@keyframes scaleIn {
  from {
    transform: scale(0);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

.confirmation {
  font-size: 20px;
  font-weight: 600;
  color: #000000;
  margin-bottom: 12px;
}

.info {
  font-size: 18px;
  color: #666666;
  margin-bottom: 32px;
}

.next-steps {
  padding: 60px 20px;
  background-color: #ffffff;
}

.explore-more {
  padding: 60px 20px;
  background-color: #f9f9f9;
}

.social-follow {
  padding: 60px 20px;
  text-align: center;
  background-color: #ffffff;
}

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

.social-btn {
  padding: 12px 32px;
  background-color: #000000;
  color: #ffffff;
  border-radius: 4px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.social-btn:hover {
  background-color: #333333;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.contact-alternative {
  padding: 60px 20px;
  text-align: center;
  background-color: #f5f5f5;
}

.phone-highlight {
  font-size: 24px;
  margin-bottom: 16px;
}

.phone-highlight strong {
  color: #000000;
  font-weight: 700;
}

/* FOOTER */
footer {
  background-color: #1a1a1a;
  color: #ffffff;
  padding: 60px 20px 20px;
}

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

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

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

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

.footer-column p,
.footer-column li {
  color: #cccccc;
  font-size: 14px;
  line-height: 1.8;
  margin-bottom: 8px;
}

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

.footer-column a {
  color: #cccccc;
  transition: color 0.3s ease;
}

.footer-column a:hover {
  color: #ffffff;
}

.footer-contact {
  text-align: center;
  padding: 24px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  margin-bottom: 24px;
}

.footer-contact p {
  color: #cccccc;
  font-size: 14px;
  margin-bottom: 4px;
}

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

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

/* COOKIE CONSENT BANNER */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #000000;
  color: #ffffff;
  padding: 24px 20px;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
  z-index: 1000;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

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

.cookie-banner p {
  flex: 1;
  min-width: 250px;
  margin: 0;
  color: #cccccc;
  font-size: 14px;
}

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

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

.cookie-btn-accept {
  background-color: #ffffff;
  color: #000000;
}

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

.cookie-btn-reject {
  background-color: transparent;
  color: #ffffff;
  border: 1px solid #ffffff;
}

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

.cookie-btn-settings {
  background-color: transparent;
  color: #cccccc;
  border: 1px solid #666666;
}

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

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

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

.cookie-modal-content {
  background-color: #ffffff;
  max-width: 600px;
  width: 100%;
  border-radius: 4px;
  padding: 40px;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
}

.cookie-modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 32px;
  height: 32px;
  background-color: #f5f5f5;
  color: #000000;
  border-radius: 4px;
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.cookie-modal-close:hover {
  background-color: #000000;
  color: #ffffff;
}

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

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

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

.cookie-category-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}

.cookie-category h3 {
  margin: 0;
  font-size: 18px;
}

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

.cookie-toggle.active {
  background-color: #000000;
}

.cookie-toggle::after {
  content: '';
  position: absolute;
  top: 3px;
  left: 3px;
  width: 20px;
  height: 20px;
  background-color: #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 {
  color: #666666;
  font-size: 14px;
  line-height: 1.6;
}

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

/* RESPONSIVE DESIGN */
@media (max-width: 768px) {
  /* Typography */
  h1 {
    font-size: 32px;
  }
  
  h2 {
    font-size: 24px;
  }
  
  h3 {
    font-size: 20px;
  }
  
  /* Mobile Menu */
  .mobile-menu-toggle {
    display: flex;
  }
  
  .mobile-menu {
    display: block;
  }
  
  .main-nav {
    display: none;
  }
  
  /* Header */
  .header-content {
    padding: 16px 0;
  }
  
  .logo {
    height: 40px;
  }
  
  /* Hero */
  .hero {
    padding: 60px 20px;
  }
  
  .hero h1 {
    font-size: 36px;
  }
  
  .subheadline {
    font-size: 16px;
  }
  
  .cta-buttons {
    flex-direction: column;
    align-items: stretch;
  }
  
  .trust-indicators {
    flex-direction: column;
    gap: 16px;
  }
  
  /* Cards */
  .category-card,
  .benefit-card,
  .stat-card,
  .testimonial-card,
  .product-card,
  .card,
  .value-card,
  .tip-card,
  .code-card,
  .contact-card,
  .cta-card,
  .step-card,
  .right-card,
  .article-card,
  .type-card {
    flex: 1 1 100%;
    min-width: 100%;
  }
  
  /* Products Layout */
  .products-layout {
    flex-direction: column;
  }
  
  .filters-sidebar {
    flex: 1 1 100%;
    position: static;
  }
  
  /* Legal Content */
  .content-layout {
    flex-direction: column;
  }
  
  .toc {
    flex: 1 1 100%;
    position: static;
  }
  
  /* Footer */
  .footer-content {
    flex-direction: column;
    gap: 32px;
  }
  
  .footer-column {
    flex: 1 1 100%;
    text-align: center;
  }
  
  /* Cookie Banner */
  .cookie-banner {
    flex-direction: column;
    text-align: center;
  }
  
  .cookie-buttons {
    width: 100%;
  }
  
  .cookie-btn {
    flex: 1;
  }
  
  /* Tables */
  table {
    font-size: 14px;
  }
  
  thead th,
  tbody td {
    padding: 12px 8px;
  }
  
  /* Promo Banner */
  .promo-banner-large h2 {
    font-size: 32px;
  }
  
  .discount {
    font-size: 48px;
  }
  
  /* Steps */
  .step {
    flex: 1 1 100%;
  }
  
  /* Processing Info */
  .info-block {
    flex: 1 1 100%;
  }
  
  /* Contact Options */
  .contact-options {
    flex-direction: column;
  }
  
  /* Newsletter Form */
  .newsletter-form {
    flex-direction: column;
  }
  
  .newsletter-form input {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }
  
  h1 {
    font-size: 28px;
  }
  
  h2 {
    font-size: 22px;
  }
  
  .btn {
    padding: 12px 24px;
    font-size: 15px;
  }
  
  .hero h1 {
    font-size: 28px;
  }
  
  .promo-banner-large {
    padding: 40px 20px;
  }
  
  .promo-banner-large h2 {
    font-size: 24px;
  }
  
  .discount {
    font-size: 36px;
  }
  
  .cookie-modal-content {
    padding: 24px;
  }
}

/* PRINT STYLES */
@media print {
  header,
  footer,
  .mobile-menu-toggle,
  .mobile-menu,
  .cookie-banner,
  .cookie-modal,
  .cta-buttons,
  .btn {
    display: none !important;
  }
  
  body {
    color: #000000;
    background: #ffffff;
  }
  
  a {
    text-decoration: underline;
  }
}

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

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

/* UTILITY CLASSES */
.text-center {
  text-align: center;
}

.mt-20 {
  margin-top: 20px;
}

.mb-20 {
  margin-bottom: 20px;
}

.mt-40 {
  margin-top: 40px;
}

.mb-40 {
  margin-bottom: 40px;
}

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

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

button:focus-visible,
a:focus-visible {
  outline: 2px solid #000000;
  outline-offset: 2px;
}