/* ============================================
   VIOLET SAGA - MONOCHROME SOPHISTICATED DESIGN
   CSS Reset & Base Styles
   ============================================ */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

body {
  font-family: 'Open Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  line-height: 1.7;
  color: #1a1a1a;
  background: #ffffff;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

h1 { font-size: 48px; letter-spacing: -1px; }
h2 { font-size: 36px; letter-spacing: -0.5px; }
h3 { font-size: 24px; }
h4 { font-size: 20px; }
h5 { font-size: 18px; }
h6 { font-size: 16px; }

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

a {
  color: #1a1a1a;
  text-decoration: none;
  transition: all 0.3s ease;
}

a:hover {
  color: #666666;
}

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

ul {
  list-style: none;
}

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

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

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

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

header {
  background: #ffffff;
  border-bottom: 1px solid #e0e0e0;
  padding: 20px 0;
  position: sticky;
  top: 0;
  z-index: 999;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

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

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

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

.nav-menu li a {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #1a1a1a;
  padding: 8px 0;
  border-bottom: 2px solid transparent;
  transition: all 0.3s ease;
}

.nav-menu li a:hover {
  color: #666666;
  border-bottom-color: #000000;
}

/* ============================================
   MOBILE MENU
   ============================================ */

.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 1001;
  background: #000000;
  color: #ffffff;
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  font-size: 24px;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
}

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

.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  right: -100%;
  width: 300px;
  height: 100vh;
  background: #ffffff;
  z-index: 1002;
  padding: 80px 30px 30px;
  box-shadow: -4px 0 20px rgba(0, 0, 0, 0.2);
  transition: right 0.4s ease;
  overflow-y: auto;
}

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

.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: #000000;
  color: #ffffff;
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 24px;
  cursor: pointer;
  transition: all 0.3s ease;
}

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

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

.mobile-nav a {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 18px;
  color: #1a1a1a;
  padding: 15px 0;
  border-bottom: 1px solid #e0e0e0;
  transition: all 0.3s ease;
}

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

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

.btn {
  display: inline-block;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 16px 32px;
  border: 2px solid #000000;
  background: #000000;
  color: #ffffff;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
}

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

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

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

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

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

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

.hero {
  background: linear-gradient(135deg, #f5f5f5 0%, #e0e0e0 100%);
  padding: 100px 20px;
  text-align: center;
  border-bottom: 3px solid #000000;
}

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

.hero h1 {
  font-size: 56px;
  color: #000000;
  margin-bottom: 24px;
  text-transform: uppercase;
  letter-spacing: -1px;
}

.subheadline {
  font-size: 20px;
  color: #333333;
  margin-bottom: 40px;
  line-height: 1.6;
}

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

/* ============================================
   PAGE HERO
   ============================================ */

.page-hero {
  background: #f5f5f5;
  padding: 80px 20px 60px;
  border-bottom: 2px solid #000000;
}

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

.breadcrumbs a {
  color: #666666;
}

.breadcrumbs a:hover {
  color: #000000;
}

.page-hero h1 {
  font-size: 48px;
  color: #000000;
  margin-bottom: 20px;
  text-transform: uppercase;
}

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

/* ============================================
   FEATURES & VALUE PROPOSITION
   ============================================ */

.value-proposition {
  padding: 80px 20px;
  background: #ffffff;
}

.value-proposition h2 {
  text-align: center;
  font-size: 42px;
  color: #000000;
  margin-bottom: 60px;
  text-transform: uppercase;
}

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

.feature {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  flex: 1 1 calc(25% - 30px);
  min-width: 250px;
  padding: 30px;
  background: #f9f9f9;
  border: 2px solid #e0e0e0;
  transition: all 0.3s ease;
}

.feature:hover {
  background: #ffffff;
  border-color: #000000;
  transform: translateY(-5px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.feature img {
  width: 60px;
  height: 60px;
  filter: grayscale(100%);
  transition: all 0.3s ease;
}

.feature:hover img {
  filter: grayscale(0%);
}

.feature h3 {
  font-size: 20px;
  color: #000000;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.feature p {
  font-size: 15px;
  color: #4a4a4a;
  line-height: 1.6;
}

/* ============================================
   PRODUCTS GRID
   ============================================ */

.featured-products,
.products {
  padding: 80px 20px;
  background: #f5f5f5;
}

.featured-products h2,
.products h2 {
  text-align: center;
  font-size: 42px;
  color: #000000;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.section-subtitle {
  text-align: center;
  font-size: 18px;
  color: #666666;
  margin-bottom: 60px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

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

.product-card {
  display: flex;
  flex-direction: column;
  flex: 1 1 calc(33.333% - 20px);
  min-width: 280px;
  background: #ffffff;
  border: 2px solid #e0e0e0;
  padding: 30px;
  transition: all 0.3s ease;
  position: relative;
  margin-bottom: 20px;
}

.product-card:hover {
  border-color: #000000;
  transform: translateY(-5px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
}

.badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: #000000;
  color: #ffffff;
  padding: 6px 12px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.product-card h3 {
  font-size: 22px;
  color: #000000;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.product-card p {
  font-size: 15px;
  color: #4a4a4a;
  margin-bottom: 20px;
  flex-grow: 1;
}

.price {
  font-family: 'Montserrat', sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: #000000;
  margin-bottom: 20px;
}

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

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

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

.results-count {
  font-size: 16px;
  color: #666666;
}

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

.testimonials {
  padding: 80px 20px;
  background: #ffffff;
}

.testimonials h2 {
  text-align: center;
  font-size: 42px;
  color: #000000;
  margin-bottom: 60px;
  text-transform: uppercase;
}

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

.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  flex: 1 1 calc(50% - 15px);
  min-width: 300px;
  padding: 40px;
  background: #f9f9f9;
  border-left: 4px solid #000000;
  margin-bottom: 20px;
  position: relative;
}

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

.testimonial-card .author {
  font-style: normal;
  margin-top: 20px;
}

.testimonial-card .author strong {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  color: #000000;
  font-size: 16px;
}

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

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

.cta-banner h2,
.cta-section h2 {
  font-size: 36px;
  color: #ffffff;
  margin-bottom: 20px;
  text-transform: uppercase;
}

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

.cta-banner .btn,
.cta-section .btn {
  background: #ffffff;
  color: #000000;
  border-color: #ffffff;
}

.cta-banner .btn:hover,
.cta-section .btn:hover {
  background: transparent;
  color: #ffffff;
  border-color: #ffffff;
}

.contact-info {
  margin-top: 20px;
  font-size: 18px;
  color: #e0e0e0;
}

/* ============================================
   TRUST INDICATORS
   ============================================ */

.trust-indicators {
  padding: 60px 20px;
  background: #f9f9f9;
}

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

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

.trust-item img {
  width: 48px;
  height: 48px;
  filter: grayscale(100%);
}

.trust-item p {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 14px;
  color: #1a1a1a;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* ============================================
   STORY & CONTENT SECTIONS
   ============================================ */

.story,
.mission-vision,
.values {
  padding: 80px 20px;
}

.story {
  background: #ffffff;
}

.mission-vision {
  background: #f5f5f5;
}

.values {
  background: #ffffff;
}

.story h2,
.mission-vision h2,
.values h2 {
  font-size: 36px;
  color: #000000;
  margin-bottom: 40px;
  text-align: center;
  text-transform: uppercase;
}

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

.text-section p {
  font-size: 17px;
  color: #333333;
  line-height: 1.8;
  margin-bottom: 24px;
}

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

.content-block {
  flex: 1 1 calc(50% - 20px);
  min-width: 300px;
  padding: 40px;
  background: #ffffff;
  border: 2px solid #e0e0e0;
}

.content-block h2 {
  font-size: 28px;
  color: #000000;
  margin-bottom: 24px;
  text-align: left;
}

.content-block p {
  font-size: 16px;
  color: #4a4a4a;
  line-height: 1.7;
}

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

.value-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  flex: 1 1 calc(25% - 22px);
  min-width: 220px;
  padding: 40px 20px;
  background: #f9f9f9;
  border: 2px solid #e0e0e0;
  text-align: center;
  transition: all 0.3s ease;
}

.value-card:hover {
  background: #ffffff;
  border-color: #000000;
  transform: translateY(-5px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.value-card img {
  width: 60px;
  height: 60px;
  filter: grayscale(100%);
}

.value-card:hover img {
  filter: grayscale(0%);
}

.value-card h3 {
  font-size: 18px;
  color: #000000;
  text-transform: uppercase;
}

.value-card p {
  font-size: 15px;
  color: #4a4a4a;
  line-height: 1.6;
}

/* ============================================
   PRACTICE & LEVELS
   ============================================ */

.practice-levels,
.yoga-styles,
.meditation {
  padding: 80px 20px;
}

.practice-levels {
  background: #ffffff;
}

.yoga-styles {
  background: #f5f5f5;
}

.meditation {
  background: #ffffff;
}

.practice-levels h2,
.yoga-styles h2,
.meditation h2 {
  font-size: 36px;
  color: #000000;
  margin-bottom: 20px;
  text-align: center;
  text-transform: uppercase;
}

.practice-levels > .container > p,
.yoga-styles > .container > p {
  text-align: center;
  font-size: 18px;
  color: #666666;
  margin-bottom: 60px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.levels-grid,
.styles-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: space-between;
}

.level-card,
.style-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  flex: 1 1 calc(33.333% - 20px);
  min-width: 280px;
  padding: 40px;
  background: #ffffff;
  border: 2px solid #e0e0e0;
  text-align: center;
  transition: all 0.3s ease;
}

.level-card:hover,
.style-card:hover {
  border-color: #000000;
  transform: translateY(-5px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.level-card img {
  width: 70px;
  height: 70px;
  filter: grayscale(100%);
}

.level-card:hover img {
  filter: grayscale(0%);
}

.level-card h3,
.style-card h3 {
  font-size: 22px;
  color: #000000;
  text-transform: uppercase;
}

.level-card p,
.style-card p {
  font-size: 15px;
  color: #4a4a4a;
  line-height: 1.6;
}

.level-card .btn {
  margin-top: 10px;
}

.meditation-tips {
  max-width: 700px;
  margin: 40px auto 0;
  padding: 40px;
  background: #f9f9f9;
  border-left: 4px solid #000000;
}

.meditation-tips h3 {
  font-size: 24px;
  color: #000000;
  margin-bottom: 24px;
  text-transform: uppercase;
}

.meditation-tips ul {
  list-style: disc;
  margin-left: 24px;
  margin-bottom: 30px;
}

.meditation-tips li {
  font-size: 16px;
  color: #333333;
  margin-bottom: 12px;
  line-height: 1.6;
}

/* ============================================
   BLOG
   ============================================ */

.featured-article {
  padding: 60px 20px;
  background: #f5f5f5;
}

.article-featured {
  max-width: 900px;
  margin: 0 auto;
  padding: 60px;
  background: #ffffff;
  border: 2px solid #e0e0e0;
  position: relative;
}

.article-featured h2 {
  font-size: 32px;
  color: #000000;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.article-featured p {
  font-size: 17px;
  color: #333333;
  line-height: 1.8;
  margin-bottom: 20px;
}

.meta {
  font-size: 14px;
  color: #999999;
  font-style: italic;
}

.blog-categories {
  padding: 80px 20px;
  background: #ffffff;
}

.blog-categories h2 {
  text-align: center;
  font-size: 36px;
  color: #000000;
  margin-bottom: 60px;
  text-transform: uppercase;
}

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

.category-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  flex: 1 1 calc(33.333% - 20px);
  min-width: 250px;
  padding: 40px;
  background: #f9f9f9;
  border: 2px solid #e0e0e0;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.category-card:hover {
  background: #ffffff;
  border-color: #000000;
  transform: translateY(-5px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.category-card img {
  width: 60px;
  height: 60px;
  filter: grayscale(100%);
}

.category-card:hover img {
  filter: grayscale(0%);
}

.category-card h3 {
  font-size: 20px;
  color: #000000;
  text-transform: uppercase;
}

.category-card p {
  font-size: 14px;
  color: #666666;
}

.articles-grid {
  padding: 80px 20px;
  background: #f5f5f5;
}

.articles-grid h2 {
  text-align: center;
  font-size: 36px;
  color: #000000;
  margin-bottom: 60px;
  text-transform: uppercase;
}

.articles-list {
  display: flex;
  flex-direction: column;
  gap: 30px;
  max-width: 900px;
  margin: 0 auto;
}

.article-card {
  padding: 40px;
  background: #ffffff;
  border: 2px solid #e0e0e0;
  transition: all 0.3s ease;
}

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

.article-card h3 {
  font-size: 24px;
  color: #000000;
  margin-bottom: 16px;
  text-transform: uppercase;
}

.article-card p {
  font-size: 16px;
  color: #4a4a4a;
  line-height: 1.6;
  margin-bottom: 16px;
}

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

.contact-methods {
  padding: 80px 20px;
  background: #ffffff;
}

.contact-methods h2 {
  text-align: center;
  font-size: 36px;
  color: #000000;
  margin-bottom: 60px;
  text-transform: uppercase;
}

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

.contact-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  flex: 1 1 calc(33.333% - 20px);
  min-width: 280px;
  padding: 40px;
  background: #f9f9f9;
  border: 2px solid #e0e0e0;
  text-align: center;
  transition: all 0.3s ease;
}

.contact-card:hover {
  background: #ffffff;
  border-color: #000000;
  transform: translateY(-5px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.contact-card img {
  width: 60px;
  height: 60px;
  filter: grayscale(100%);
}

.contact-card:hover img {
  filter: grayscale(0%);
}

.contact-card h3 {
  font-size: 20px;
  color: #000000;
  text-transform: uppercase;
}

.contact-value {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 18px;
  color: #000000;
}

.contact-card p {
  font-size: 14px;
  color: #666666;
}

.showroom-info {
  padding: 80px 20px;
  background: #f5f5f5;
}

.showroom-info h2 {
  text-align: center;
  font-size: 36px;
  color: #000000;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.showroom-info > .container > p {
  text-align: center;
  font-size: 17px;
  color: #666666;
  margin-bottom: 60px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.showroom-details {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: center;
}

.detail-block {
  flex: 1 1 350px;
  padding: 30px;
  background: #ffffff;
  border: 2px solid #e0e0e0;
}

.detail-block h3 {
  font-size: 20px;
  color: #000000;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.detail-block p {
  font-size: 15px;
  color: #4a4a4a;
  margin-bottom: 12px;
  line-height: 1.6;
}

.faq-contact {
  padding: 80px 20px;
  background: #ffffff;
}

.faq-contact h2 {
  text-align: center;
  font-size: 36px;
  color: #000000;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.faq-contact > .container > p {
  text-align: center;
  font-size: 17px;
  color: #666666;
  margin-bottom: 60px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

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

.faq-item {
  padding: 30px;
  background: #f9f9f9;
  border-left: 4px solid #000000;
}

.faq-item h3 {
  font-size: 20px;
  color: #000000;
  margin-bottom: 16px;
  text-transform: uppercase;
}

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

.faq-item a {
  color: #000000;
  text-decoration: underline;
}

.faq-item a:hover {
  color: #666666;
}

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

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

.content-section {
  max-width: 900px;
  margin: 0 auto 40px;
  padding: 40px;
  background: #f9f9f9;
  border: 2px solid #e0e0e0;
}

.content-section h2 {
  font-size: 24px;
  color: #000000;
  margin-bottom: 24px;
  text-transform: uppercase;
}

.content-section h3 {
  font-size: 18px;
  color: #1a1a1a;
  margin-top: 24px;
  margin-bottom: 16px;
  text-transform: uppercase;
}

.content-section p {
  font-size: 15px;
  color: #333333;
  line-height: 1.8;
  margin-bottom: 16px;
}

.content-section ul {
  list-style: disc;
  margin-left: 24px;
  margin-bottom: 20px;
}

.content-section li {
  font-size: 15px;
  color: #333333;
  margin-bottom: 8px;
  line-height: 1.6;
}

.content-section a {
  color: #000000;
  text-decoration: underline;
}

.content-section a:hover {
  color: #666666;
}

.content-section strong {
  font-weight: 700;
  color: #000000;
}

.related-links {
  padding: 60px 20px;
  background: #f5f5f5;
}

.related-links h2 {
  text-align: center;
  font-size: 28px;
  color: #000000;
  margin-bottom: 40px;
  text-transform: uppercase;
}

.related-links ul {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  max-width: 800px;
  margin: 0 auto;
}

.related-links li {
  flex: 1 1 200px;
}

.related-links a {
  display: block;
  padding: 16px 24px;
  background: #ffffff;
  border: 2px solid #e0e0e0;
  text-align: center;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 14px;
  color: #1a1a1a;
  text-transform: uppercase;
  transition: all 0.3s ease;
}

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

/* ============================================
   SHIPPING & RETURNS
   ============================================ */

.shipping-options,
.delivery-process,
.returns-policy,
.complaints {
  padding: 80px 20px;
}

.shipping-options {
  background: #ffffff;
}

.delivery-process {
  background: #f5f5f5;
}

.returns-policy {
  background: #ffffff;
}

.complaints {
  background: #f5f5f5;
}

.shipping-options h2,
.delivery-process h2,
.returns-policy h2,
.complaints h2 {
  text-align: center;
  font-size: 36px;
  color: #000000;
  margin-bottom: 60px;
  text-transform: uppercase;
}

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

.shipping-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  flex: 1 1 calc(33.333% - 20px);
  min-width: 280px;
  padding: 40px;
  background: #f9f9f9;
  border: 2px solid #e0e0e0;
  text-align: center;
  transition: all 0.3s ease;
}

.shipping-card:hover {
  background: #ffffff;
  border-color: #000000;
  transform: translateY(-5px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.shipping-card img {
  width: 60px;
  height: 60px;
  filter: grayscale(100%);
}

.shipping-card:hover img {
  filter: grayscale(0%);
}

.shipping-card h3 {
  font-size: 20px;
  color: #000000;
  text-transform: uppercase;
}

.shipping-card .price {
  font-size: 24px;
  margin-bottom: 0;
}

.shipping-card p {
  font-size: 15px;
  color: #4a4a4a;
  line-height: 1.6;
}

.process-steps {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
  max-width: 1000px;
  margin: 0 auto;
}

.step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  flex: 1 1 200px;
  text-align: center;
}

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

.step h3 {
  font-size: 18px;
  color: #000000;
  text-transform: uppercase;
}

.step p {
  font-size: 14px;
  color: #666666;
}

.highlight {
  text-align: center;
  font-size: 18px;
  color: #000000;
  font-weight: 700;
  margin-top: 40px;
  padding: 20px;
  background: #f9f9f9;
  border: 2px solid #000000;
}

.returns-policy ol,
.complaints ol {
  max-width: 800px;
  margin: 30px auto;
  padding-left: 24px;
}

.returns-policy li,
.complaints li {
  font-size: 16px;
  color: #333333;
  line-height: 1.8;
  margin-bottom: 16px;
}

.faq-shipping {
  padding: 80px 20px;
  background: #f5f5f5;
}

.faq-shipping h2 {
  text-align: center;
  font-size: 36px;
  color: #000000;
  margin-bottom: 60px;
  text-transform: uppercase;
}

.contact-shipping {
  padding: 80px 20px;
  background: #000000;
  color: #ffffff;
  text-align: center;
}

.contact-shipping h2 {
  font-size: 36px;
  color: #ffffff;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.contact-shipping p {
  font-size: 18px;
  color: #e0e0e0;
  margin-bottom: 12px;
}

.contact-shipping .btn {
  margin-top: 30px;
}

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

.thank-you-hero {
  padding: 100px 20px;
  background: #f5f5f5;
  text-align: center;
}

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

.success-icon {
  width: 100px;
  height: 100px;
  margin: 0 auto 30px;
  filter: grayscale(100%);
}

.thank-you-hero h1 {
  font-size: 48px;
  color: #000000;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.message {
  font-size: 24px;
  color: #1a1a1a;
  margin-bottom: 16px;
}

.submessage,
.confirmation-note {
  font-size: 16px;
  color: #666666;
  margin-bottom: 16px;
}

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

.next-steps h2 {
  text-align: center;
  font-size: 36px;
  color: #000000;
  margin-bottom: 60px;
  text-transform: uppercase;
}

.steps-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
  max-width: 800px;
  margin: 0 auto;
}

.step-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  flex: 1 1 300px;
  padding: 40px;
  background: #f9f9f9;
  border: 2px solid #e0e0e0;
  text-align: center;
  transition: all 0.3s ease;
}

.step-card:hover {
  background: #ffffff;
  border-color: #000000;
  transform: translateY(-5px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.step-card img {
  width: 70px;
  height: 70px;
  filter: grayscale(100%);
}

.step-card:hover img {
  filter: grayscale(0%);
}

.step-card h3 {
  font-size: 20px;
  color: #000000;
  text-transform: uppercase;
}

.step-card p {
  font-size: 15px;
  color: #4a4a4a;
}

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

.contact-info-reminder h2 {
  font-size: 28px;
  color: #000000;
  margin-bottom: 24px;
  text-transform: uppercase;
}

.contact-info-reminder p {
  font-size: 18px;
  color: #333333;
  margin-bottom: 8px;
}

.back-home {
  padding: 80px 20px;
  background: #000000;
  text-align: center;
}

.back-home .btn {
  margin-bottom: 30px;
}

.quote {
  font-family: 'Montserrat', sans-serif;
  font-style: italic;
  font-size: 18px;
  color: #e0e0e0;
}

/* ============================================
   PRODUCT FEATURES
   ============================================ */

.product-features {
  padding: 80px 20px;
  background: #ffffff;
}

.product-features .features-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: space-between;
}

.product-features .feature {
  flex: 1 1 calc(25% - 22px);
  min-width: 220px;
}

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

footer {
  background: #1a1a1a;
  color: #e0e0e0;
  padding: 60px 20px 20px;
}

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

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

.footer-section h3 {
  font-size: 20px;
  color: #ffffff;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.footer-section h4 {
  font-size: 16px;
  color: #ffffff;
  margin-bottom: 16px;
  text-transform: uppercase;
}

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

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

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

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

.footer-bottom {
  padding-top: 30px;
  border-top: 1px solid #333333;
  text-align: center;
}

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

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

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

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

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

.cookie-text {
  flex: 1 1 400px;
}

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

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

.cookie-btn {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 12px 24px;
  border: 2px solid #ffffff;
  background: transparent;
  color: #ffffff;
  cursor: pointer;
  transition: all 0.3s ease;
}

.cookie-btn:hover {
  background: #ffffff;
  color: #1a1a1a;
}

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

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

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

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

.cookie-modal-content {
  background: #ffffff;
  padding: 40px;
  max-width: 600px;
  width: 100%;
  max-height: 80vh;
  overflow-y: auto;
  border: 3px solid #000000;
}

.cookie-modal-content h2 {
  font-size: 28px;
  color: #000000;
  margin-bottom: 24px;
  text-transform: uppercase;
}

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

.cookie-category h3 {
  font-size: 18px;
  color: #000000;
  margin-bottom: 12px;
  text-transform: uppercase;
}

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

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

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

.cookie-toggle label {
  font-size: 14px;
  color: #1a1a1a;
  cursor: pointer;
}

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

.cookie-modal-buttons .btn {
  flex: 1 1 200px;
}

/* ============================================
   RESPONSIVE MEDIA QUERIES
   ============================================ */

@media (max-width: 768px) {
  /* Typography */
  h1 { font-size: 36px; }
  h2 { font-size: 28px; }
  h3 { font-size: 20px; }
  
  /* Navigation */
  .nav-menu {
    display: none;
  }
  
  .mobile-menu-toggle {
    display: block;
  }
  
  .mobile-menu {
    display: block;
  }
  
  /* Hero */
  .hero {
    padding: 60px 20px;
  }
  
  .hero h1 {
    font-size: 36px;
  }
  
  .subheadline {
    font-size: 16px;
  }
  
  .cta-buttons {
    flex-direction: column;
  }
  
  /* Sections */
  .section {
    margin-bottom: 40px;
    padding: 30px 20px;
  }
  
  /* Grids */
  .features-grid,
  .products-grid,
  .testimonials-grid,
  .content-grid,
  .values-grid,
  .levels-grid,
  .styles-grid,
  .categories-grid,
  .contact-grid,
  .shipping-grid,
  .trust-grid {
    flex-direction: column;
  }
  
  .feature,
  .product-card,
  .testimonial-card,
  .content-block,
  .value-card,
  .level-card,
  .style-card,
  .category-card,
  .contact-card,
  .shipping-card {
    flex: 1 1 100%;
    min-width: 100%;
  }
  
  /* Process Steps */
  .process-steps {
    flex-direction: column;
  }
  
  /* Footer */
  .footer-content {
    flex-direction: column;
  }
  
  .footer-section {
    flex: 1 1 100%;
  }
  
  /* Cookie Consent */
  .cookie-content {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .cookie-buttons {
    width: 100%;
  }
  
  .cookie-btn {
    flex: 1 1 100%;
  }
  
  .cookie-modal-content {
    padding: 30px 20px;
  }
  
  /* Cards */
  .article-featured {
    padding: 30px 20px;
  }
  
  .content-section {
    padding: 30px 20px;
  }
}

@media (max-width: 480px) {
  h1 { font-size: 28px; }
  h2 { font-size: 24px; }
  
  .hero h1 {
    font-size: 28px;
  }
  
  .page-hero h1 {
    font-size: 32px;
  }
  
  .btn {
    padding: 14px 24px;
    font-size: 13px;
  }
  
  .mobile-menu {
    width: 100%;
  }
  
  .product-card,
  .feature,
  .value-card {
    padding: 24px;
  }
}

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

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

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.hero-content {
  animation: fadeIn 0.8s ease;
}

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

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

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

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

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

@media print {
  .mobile-menu-toggle,
  .mobile-menu,
  .cookie-consent,
  .cookie-modal,
  header,
  footer {
    display: none;
  }
  
  body {
    color: #000000;
    background: #ffffff;
  }
}

/* End of CSS */