/* ===================================
   BrightenGrove - Elegant Classic CSS
   Design Style: Timeless elegant design
   ================================== */

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

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

body {
  font-family: 'Georgia', 'Times New Roman', serif;
  line-height: 1.7;
  color: #2c2c2c;
  background-color: #faf8f5;
  overflow-x: hidden;
}

/* TYPOGRAPHY */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Garamond', 'Georgia', serif;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 20px;
  line-height: 1.3;
}

h1 { font-size: 48px; letter-spacing: -0.5px; }
h2 { font-size: 36px; letter-spacing: -0.3px; }
h3 { font-size: 24px; }
h4 { font-size: 20px; }

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

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

a:hover {
  color: #4A70FF;
}

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

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

/* HEADER */
header {
  background-color: #ffffff;
  border-bottom: 1px solid #e8e4df;
  padding: 24px 0;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

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

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

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

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

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

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

.header-actions {
  display: flex;
  gap: 20px;
  align-items: center;
}

.icon-link img {
  width: 24px;
  height: 24px;
  opacity: 0.8;
  transition: opacity 0.3s ease;
}

.icon-link:hover img {
  opacity: 1;
}

/* MOBILE MENU TOGGLE */
.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 1001;
  background-color: #1E40CC;
  color: #ffffff;
  border: none;
  width: 48px;
  height: 48px;
  border-radius: 8px;
  font-size: 24px;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(30, 64, 204, 0.3);
  transition: all 0.3s ease;
}

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

/* MOBILE MENU */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 85%;
  max-width: 320px;
  height: 100vh;
  background-color: #ffffff;
  z-index: 1000;
  padding: 80px 32px 32px;
  box-shadow: -4px 0 24px rgba(0, 0, 0, 0.15);
  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;
  background: none;
  border: none;
  font-size: 32px;
  color: #2c2c2c;
  cursor: pointer;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}

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

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

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

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

/* HERO SECTION */
.hero {
  background: linear-gradient(135deg, #f5f2ed 0%, #ffffff 100%);
  padding: 80px 20px;
  margin-bottom: 60px;
  text-align: center;
  border-bottom: 1px solid #e8e4df;
}

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

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

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

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

.trust-badges {
  display: flex;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 40px;
  padding-top: 40px;
  border-top: 1px solid #e8e4df;
}

.trust-badges span {
  font-size: 14px;
  color: #4a4a4a;
  font-style: italic;
}

/* BUTTONS */
.btn {
  display: inline-block;
  padding: 16px 36px;
  font-size: 15px;
  font-weight: 600;
  text-align: center;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  font-family: 'Georgia', serif;
  letter-spacing: 0.5px;
}

.btn-primary {
  background-color: #1E40CC;
  color: #ffffff !important;
  border-color: #1E40CC;
}

.btn-primary:hover {
  background-color: #4A70FF;
  border-color: #4A70FF;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(30, 64, 204, 0.3);
}

.btn-secondary {
  background-color: transparent;
  color: #1E40CC;
  border-color: #1E40CC;
}

.btn-secondary:hover {
  background-color: #1E40CC;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(30, 64, 204, 0.2);
}

.btn-large {
  padding: 20px 48px;
  font-size: 17px;
}

.btn-link {
  color: #1E40CC;
  font-weight: 600;
  font-size: 15px;
  display: inline-block;
  transition: all 0.3s ease;
}

.btn-link:hover {
  color: #4A70FF;
  transform: translateX(4px);
}

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

section {
  margin-bottom: 60px;
}

section h2 {
  text-align: center;
  margin-bottom: 48px;
  font-size: 40px;
}

/* CATEGORIES */
.categories {
  padding: 60px 20px;
  background-color: #ffffff;
}

.category-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
}

.category-card {
  flex: 1 1 calc(33.333% - 24px);
  min-width: 280px;
  max-width: 360px;
  background-color: #faf8f5;
  padding: 40px 32px;
  border-radius: 8px;
  text-align: center;
  transition: all 0.3s ease;
  border: 1px solid #e8e4df;
  margin-bottom: 20px;
}

.category-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
  border-color: #d0cbc3;
}

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

.category-card h3 {
  margin-bottom: 12px;
  font-size: 22px;
}

.category-card p {
  color: #6a6a6a;
  margin-bottom: 20px;
  font-size: 15px;
}

/* VALUES */
.values {
  padding: 60px 20px;
  background-color: #f5f2ed;
}

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

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

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

.value-item img, .value-card img {
  width: 56px;
  height: 56px;
  margin: 0 auto 20px;
  opacity: 0.7;
}

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

.value-item p, .value-card p {
  color: #6a6a6a;
  font-size: 15px;
}

/* TESTIMONIALS */
.testimonials {
  padding: 60px 20px;
  background-color: #ffffff;
}

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

.testimonial-card {
  flex: 1 1 calc(50% - 32px);
  min-width: 320px;
  max-width: 560px;
  background-color: #faf8f5;
  padding: 32px;
  border-radius: 8px;
  border-left: 4px solid #CC9400;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.testimonial-card p {
  font-style: italic;
  color: #2c2c2c;
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 0;
}

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

.testimonial-author strong {
  color: #1a1a1a;
  font-size: 16px;
}

.testimonial-author span {
  color: #6a6a6a;
  font-size: 14px;
}

.rating {
  color: #CC9400;
  font-size: 18px;
  letter-spacing: 2px;
}

.rating-summary {
  text-align: center;
  color: #4a4a4a;
  font-size: 15px;
  font-style: italic;
}

/* NEWSLETTER */
.newsletter {
  padding: 60px 20px;
  background: linear-gradient(135deg, #1E40CC 0%, #4A70FF 100%);
  color: #ffffff;
  text-align: center;
}

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

.newsletter-content p {
  color: #ffffff;
  margin-bottom: 32px;
  font-size: 17px;
}

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

.email-input {
  flex: 1 1 300px;
  padding: 16px 20px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 4px;
  font-size: 15px;
  background-color: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  font-family: 'Georgia', serif;
}

.email-input::placeholder {
  color: rgba(255, 255, 255, 0.7);
}

.email-input:focus {
  outline: none;
  border-color: #ffffff;
  background-color: rgba(255, 255, 255, 0.15);
}

.privacy-notice {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.8);
  margin-top: 16px;
}

/* FOOTER */
footer {
  background-color: #1a1a1a;
  color: #b8b8b8;
  padding: 60px 20px 24px;
  border-top: 3px solid #CC9400;
}

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

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

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

.footer-section p {
  color: #b8b8b8;
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 12px;
}

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

.footer-nav a {
  color: #b8b8b8;
  font-size: 14px;
  transition: color 0.3s ease;
}

.footer-nav a:hover {
  color: #CC9400;
}

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

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

/* BREADCRUMBS */
.breadcrumbs {
  font-size: 14px;
  color: #6a6a6a;
  margin-bottom: 24px;
}

.breadcrumbs a {
  color: #1E40CC;
  margin-right: 8px;
}

.breadcrumbs span {
  color: #4a4a4a;
}

/* PAGE HEADER */
.page-header {
  padding: 60px 20px 40px;
  background-color: #f5f2ed;
  text-align: center;
  border-bottom: 1px solid #e8e4df;
  margin-bottom: 60px;
}

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

.page-header p {
  font-size: 18px;
  color: #4a4a4a;
}

.tagline {
  font-style: italic;
  color: #6a6a6a;
}

/* PRODUCTS SECTION */
.products-section {
  padding: 40px 20px;
}

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

.filters-sidebar {
  flex: 0 0 260px;
  min-width: 260px;
}

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

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

.filter-group h4 {
  font-size: 16px;
  margin-bottom: 16px;
  color: #2c2c2c;
}

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

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

.price-slider {
  width: 100%;
  margin-bottom: 12px;
}

.products-main {
  flex: 1 1 calc(100% - 300px);
  min-width: 0;
}

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

.sort-select {
  padding: 12px 16px;
  border: 1px solid #e8e4df;
  border-radius: 4px;
  font-size: 14px;
  background-color: #ffffff;
  cursor: pointer;
  font-family: 'Georgia', serif;
}

.view-toggle {
  display: flex;
  gap: 8px;
}

.view-toggle button {
  padding: 10px 16px;
  border: 1px solid #e8e4df;
  background-color: #ffffff;
  cursor: pointer;
  font-size: 14px;
  border-radius: 4px;
  transition: all 0.3s ease;
}

.view-toggle button.active,
.view-toggle button:hover {
  background-color: #1E40CC;
  color: #ffffff;
  border-color: #1E40CC;
}

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

.product-card {
  flex: 1 1 calc(33.333% - 24px);
  min-width: 260px;
  max-width: 100%;
  background-color: #ffffff;
  border: 1px solid #e8e4df;
  border-radius: 8px;
  padding: 20px;
  transition: all 0.3s ease;
  position: relative;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
}

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

.product-image-placeholder {
  width: 100%;
  height: 220px;
  background: linear-gradient(135deg, #f5f2ed 0%, #e8e4df 100%);
  border-radius: 6px;
  margin-bottom: 16px;
}

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

.product-card .rating {
  font-size: 14px;
  margin-bottom: 12px;
}

.product-card .price {
  font-size: 24px;
  font-weight: 700;
  color: #1E40CC;
  margin-bottom: 16px;
}

.old-price {
  text-decoration: line-through;
  color: #999999;
  font-size: 18px;
  margin-right: 8px;
}

.badge {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 6px 12px;
  font-size: 12px;
  font-weight: 700;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.badge-new {
  background-color: #1E40CC;
  color: #ffffff;
}

.badge-bestseller {
  background-color: #CC9400;
  color: #ffffff;
}

.badge-promo {
  background-color: #d32f2f;
  color: #ffffff;
}

.badge-hot {
  background-color: #ff5722;
  color: #ffffff;
}

.badge-flash {
  background-color: #ff9800;
  color: #ffffff;
}

.badge-stock {
  background-color: #4caf50;
  color: #ffffff;
}

.badge-out {
  background-color: #9e9e9e;
  color: #ffffff;
}

.badge-featured {
  background-color: #9c27b0;
  color: #ffffff;
}

/* PAGINATION */
.pagination {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 48px;
  flex-wrap: wrap;
}

.pagination button {
  padding: 10px 16px;
  border: 1px solid #e8e4df;
  background-color: #ffffff;
  cursor: pointer;
  border-radius: 4px;
  font-size: 14px;
  transition: all 0.3s ease;
  font-family: 'Georgia', serif;
}

.pagination button:hover,
.pagination button.active {
  background-color: #1E40CC;
  color: #ffffff;
  border-color: #1E40CC;
}

/* CATEGORIES SHOWCASE */
.categories-showcase {
  padding: 40px 20px;
}

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

.category-showcase-card {
  flex: 1 1 calc(33.333% - 32px);
  min-width: 300px;
  max-width: 100%;
  background-color: #ffffff;
  padding: 40px;
  border-radius: 8px;
  border: 1px solid #e8e4df;
  text-align: center;
  transition: all 0.3s ease;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.category-showcase-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
}

.category-showcase-card img {
  width: 80px;
  height: 80px;
  margin-bottom: 24px;
  opacity: 0.8;
}

.category-showcase-card h2 {
  font-size: 26px;
  margin-bottom: 16px;
  text-align: center;
}

.category-showcase-card p {
  margin-bottom: 20px;
  text-align: center;
}

.category-price {
  font-size: 20px;
  font-weight: 700;
  color: #1E40CC;
  margin-bottom: 24px;
}

/* PROMO SECTIONS */
.promo-header {
  background: linear-gradient(135deg, #ff9800 0%, #f57c00 100%);
  color: #ffffff;
}

.promo-header h1,
.promo-header p {
  color: #ffffff;
}

.promo-highlight {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 20px;
}

.countdown-timer {
  font-size: 18px;
  padding: 16px 24px;
  background-color: rgba(255, 255, 255, 0.2);
  border-radius: 6px;
  display: inline-block;
}

.countdown-timer strong {
  font-size: 22px;
  font-weight: 700;
}

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

.promo-hero-card {
  max-width: 800px;
  margin: 0 auto;
  padding: 48px;
  background: linear-gradient(135deg, #faf8f5 0%, #ffffff 100%);
  border: 2px solid #CC9400;
  border-radius: 12px;
  text-align: center;
  position: relative;
}

.promo-hero-card h2 {
  font-size: 32px;
  margin-bottom: 24px;
}

.promo-prices {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}

.promo-price {
  font-size: 48px;
  font-weight: 700;
  color: #d32f2f;
}

.savings {
  background-color: #4caf50;
  color: #ffffff;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 700;
}

.flash-deals {
  padding: 60px 20px;
  background-color: #f5f2ed;
}

.countdown {
  background-color: #ff5722;
  color: #ffffff;
  padding: 8px 12px;
  border-radius: 4px;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 12px;
  display: inline-block;
}

.stock-bar {
  width: 100%;
  height: 8px;
  background-color: #e8e4df;
  border-radius: 4px;
  margin-bottom: 8px;
  overflow: hidden;
}

.stock-progress {
  height: 100%;
  background-color: #ff9800;
  transition: width 0.3s ease;
}

.stock-info {
  font-size: 13px;
  color: #d32f2f;
  font-weight: 600;
  margin-bottom: 16px;
}

.promo-newsletter {
  padding: 60px 20px;
  background: linear-gradient(135deg, #4A70FF 0%, #1E40CC 100%);
  color: #ffffff;
  text-align: center;
}

.promo-newsletter h2,
.promo-newsletter p {
  color: #ffffff;
}

/* ABOUT SECTIONS */
.about-story {
  padding: 60px 20px;
  max-width: 900px;
  margin: 0 auto;
}

.about-story p {
  font-size: 17px;
  line-height: 1.8;
  margin-bottom: 20px;
}

.statistics {
  padding: 60px 20px;
  background-color: #f5f2ed;
}

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

.stat-item {
  flex: 1 1 calc(25% - 32px);
  min-width: 200px;
  text-align: center;
  padding: 32px 24px;
  background-color: #ffffff;
  border-radius: 8px;
  border: 1px solid #e8e4df;
}

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

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

.cta-section {
  padding: 60px 20px;
  background: linear-gradient(135deg, #1E40CC 0%, #4A70FF 100%);
  text-align: center;
  color: #ffffff;
}

.cta-section h2,
.cta-section p {
  color: #ffffff;
}

/* BLOG */
.blog-featured {
  padding: 60px 20px;
  background-color: #ffffff;
}

.featured-post {
  max-width: 800px;
  margin: 0 auto;
  padding: 48px;
  background-color: #faf8f5;
  border-left: 4px solid #1E40CC;
  border-radius: 8px;
  position: relative;
}

.featured-post h2 {
  font-size: 32px;
  margin-bottom: 20px;
}

.post-meta {
  display: flex;
  gap: 24px;
  margin-bottom: 24px;
  flex-wrap: wrap;
  font-size: 14px;
  color: #6a6a6a;
}

.blog-categories {
  padding: 32px 20px;
  background-color: #f5f2ed;
}

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

.category-filters button {
  padding: 10px 20px;
  border: 1px solid #e8e4df;
  background-color: #ffffff;
  cursor: pointer;
  border-radius: 20px;
  font-size: 14px;
  transition: all 0.3s ease;
  font-family: 'Georgia', serif;
}

.category-filters button.active,
.category-filters button:hover {
  background-color: #1E40CC;
  color: #ffffff;
  border-color: #1E40CC;
}

.blog-grid-section {
  padding: 60px 20px;
}

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

.blog-card {
  flex: 1 1 calc(33.333% - 32px);
  min-width: 280px;
  background-color: #ffffff;
  border: 1px solid #e8e4df;
  border-radius: 8px;
  overflow: hidden;
  transition: all 0.3s ease;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
}

.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
}

.blog-thumbnail-placeholder {
  width: 100%;
  height: 200px;
  background: linear-gradient(135deg, #f5f2ed 0%, #e8e4df 100%);
}

.category-tag {
  display: inline-block;
  padding: 6px 12px;
  background-color: #1E40CC;
  color: #ffffff;
  font-size: 12px;
  font-weight: 700;
  border-radius: 4px;
  margin: 20px 20px 12px;
  text-transform: uppercase;
}

.blog-card h3 {
  padding: 0 20px;
  margin-bottom: 12px;
  font-size: 20px;
}

.blog-card p {
  padding: 0 20px;
  margin-bottom: 16px;
  color: #6a6a6a;
  font-size: 15px;
}

.blog-card .post-meta {
  padding: 0 20px;
  margin-bottom: 20px;
}

.blog-card .btn-link {
  padding: 0 20px 20px;
  margin-top: auto;
}

/* CONTACT */
.contact-methods {
  padding: 60px 20px;
  background-color: #f5f2ed;
}

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

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

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

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

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

.method-card p {
  font-size: 15px;
  margin-bottom: 8px;
}

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

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

.form-wrapper {
  max-width: 700px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.form-info {
  flex: 1 1 calc(50% - 24px);
  min-width: 280px;
  display: flex;
  flex-direction: column;
}

.form-info.full-width {
  flex: 1 1 100%;
}

.form-info p {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 8px;
  color: #2c2c2c;
}

.form-input,
.form-select,
.form-textarea {
  padding: 14px 16px;
  border: 1px solid #e8e4df;
  border-radius: 4px;
  font-size: 15px;
  font-family: 'Georgia', serif;
  background-color: #faf8f5;
  transition: all 0.3s ease;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: #1E40CC;
  background-color: #ffffff;
}

.form-textarea {
  resize: vertical;
}

.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: #4a4a4a;
  cursor: pointer;
}

.checkbox-label input {
  margin-top: 4px;
  cursor: pointer;
}

.response-time {
  text-align: center;
  font-size: 14px;
  color: #6a6a6a;
  font-style: italic;
  margin-top: 16px;
}

.office-info {
  padding: 60px 20px;
  background-color: #f5f2ed;
}

.office-details {
  display: flex;
  flex-wrap: wrap;
  gap: 48px;
  justify-content: center;
  max-width: 900px;
  margin: 0 auto;
}

.detail-item {
  flex: 1 1 calc(50% - 48px);
  min-width: 280px;
}

.detail-item h3 {
  margin-bottom: 16px;
  font-size: 22px;
}

.detail-item p {
  font-size: 16px;
  line-height: 1.7;
}

/* LEGAL CONTENT */
.legal-content {
  padding: 40px 20px;
}

.content-wrapper {
  max-width: 900px;
  margin: 0 auto;
  background-color: #ffffff;
  padding: 48px;
  border-radius: 8px;
  border: 1px solid #e8e4df;
}

.content-wrapper h2 {
  font-size: 28px;
  margin-top: 40px;
  margin-bottom: 20px;
  text-align: left;
}

.content-wrapper h2:first-child {
  margin-top: 0;
}

.content-wrapper h3 {
  font-size: 22px;
  margin-top: 32px;
  margin-bottom: 16px;
}

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

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

.content-wrapper li {
  margin-bottom: 12px;
  color: #4a4a4a;
  line-height: 1.7;
}

/* THANK YOU PAGE */
.thank-you-section {
  padding: 80px 20px;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

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

.thank-you-section h1 {
  margin-bottom: 24px;
}

.order-number {
  font-size: 20px;
  margin-bottom: 32px;
}

.order-summary-box {
  background-color: #faf8f5;
  padding: 32px;
  border-radius: 8px;
  border: 1px solid #e8e4df;
  margin: 32px 0;
  text-align: left;
}

.order-summary-box h2 {
  text-align: left;
  margin-bottom: 24px;
  font-size: 24px;
}

.order-summary-box p {
  margin-bottom: 12px;
  font-size: 16px;
}

.thank-you-section ol {
  text-align: left;
  margin: 32px 0;
  padding-left: 24px;
}

.thank-you-section li {
  margin-bottom: 12px;
  font-size: 16px;
  line-height: 1.7;
}

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

.support-info {
  font-size: 15px;
  color: #6a6a6a;
  font-style: italic;
}

/* CART */
.cart-section {
  padding: 40px 20px;
}

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

.cart-items {
  flex: 1 1 calc(65% - 40px);
  min-width: 320px;
}

.cart-item {
  display: flex;
  gap: 20px;
  align-items: center;
  padding: 24px;
  background-color: #ffffff;
  border: 1px solid #e8e4df;
  border-radius: 8px;
  margin-bottom: 20px;
  flex-wrap: wrap;
  position: relative;
}

.cart-item .item-image-placeholder {
  width: 100px;
  height: 100px;
  flex-shrink: 0;
  background: linear-gradient(135deg, #f5f2ed 0%, #e8e4df 100%);
  border-radius: 6px;
}

.item-details {
  flex: 1 1 200px;
  min-width: 0;
}

.item-details h3 {
  font-size: 18px;
  margin-bottom: 8px;
}

.item-details p {
  font-size: 14px;
  color: #6a6a6a;
  margin-bottom: 6px;
}

.item-quantity {
  display: flex;
  align-items: center;
  gap: 8px;
}

.item-quantity button {
  width: 32px;
  height: 32px;
  border: 1px solid #e8e4df;
  background-color: #ffffff;
  cursor: pointer;
  border-radius: 4px;
  font-size: 16px;
  transition: all 0.3s ease;
}

.item-quantity button:hover {
  background-color: #1E40CC;
  color: #ffffff;
  border-color: #1E40CC;
}

.item-quantity input {
  width: 60px;
  padding: 8px;
  border: 1px solid #e8e4df;
  border-radius: 4px;
  text-align: center;
  font-size: 15px;
}

.item-price {
  min-width: 100px;
  text-align: right;
}

.item-price .price {
  font-size: 22px;
  font-weight: 700;
  color: #1E40CC;
}

.remove-btn {
  background: none;
  border: none;
  color: #d32f2f;
  cursor: pointer;
  font-size: 14px;
  text-decoration: underline;
  transition: color 0.3s ease;
}

.remove-btn:hover {
  color: #b71c1c;
}

.cart-summary {
  flex: 0 0 320px;
  min-width: 280px;
  background-color: #faf8f5;
  padding: 32px;
  border: 1px solid #e8e4df;
  border-radius: 8px;
  height: fit-content;
  position: sticky;
  top: 120px;
}

.cart-summary h3 {
  font-size: 22px;
  margin-bottom: 24px;
}

.summary-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 16px;
  font-size: 16px;
}

.summary-row.total {
  padding-top: 16px;
  border-top: 2px solid #e8e4df;
  margin-top: 16px;
  font-size: 20px;
}

.delivery-info {
  font-size: 14px;
  color: #4caf50;
  margin-bottom: 20px;
  font-weight: 600;
}

.discount-code {
  display: flex;
  gap: 8px;
  margin-bottom: 24px;
}

.code-input {
  flex: 1;
  padding: 12px;
  border: 1px solid #e8e4df;
  border-radius: 4px;
  font-size: 14px;
}

.tax-info {
  font-size: 13px;
  color: #6a6a6a;
  margin-bottom: 24px;
}

.continue-shopping {
  display: block;
  text-align: center;
  margin-top: 16px;
  color: #1E40CC;
  font-size: 15px;
}

/* ACCOUNT */
.account-section {
  padding: 40px 20px;
}

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

.account-nav {
  flex: 0 0 240px;
  min-width: 240px;
}

.account-nav nav {
  display: flex;
  flex-direction: column;
  gap: 0;
  background-color: #ffffff;
  border: 1px solid #e8e4df;
  border-radius: 8px;
  overflow: hidden;
}

.account-nav a {
  padding: 16px 20px;
  color: #2c2c2c;
  font-size: 15px;
  border-bottom: 1px solid #e8e4df;
  transition: all 0.3s ease;
}

.account-nav a:last-child {
  border-bottom: none;
}

.account-nav a:hover,
.account-nav a.active {
  background-color: #1E40CC;
  color: #ffffff;
}

.account-main {
  flex: 1 1 calc(100% - 280px);
  min-width: 320px;
}

.dashboard {
  background-color: #ffffff;
  padding: 40px;
  border-radius: 8px;
  border: 1px solid #e8e4df;
}

.dashboard h2 {
  text-align: left;
  margin-bottom: 32px;
  font-size: 32px;
}

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

.dashboard-card {
  flex: 1 1 calc(50% - 24px);
  min-width: 280px;
  background-color: #faf8f5;
  padding: 24px;
  border-radius: 8px;
  border: 1px solid #e8e4df;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
}

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

.order-item {
  padding: 16px;
  background-color: #ffffff;
  border-radius: 6px;
  margin-bottom: 16px;
}

.order-item:last-child {
  margin-bottom: 0;
}

.order-item p {
  margin-bottom: 8px;
  font-size: 14px;
}

.status-badge {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 12px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.status-sent {
  background-color: #2196f3;
  color: #ffffff;
}

.status-delivered {
  background-color: #4caf50;
  color: #ffffff;
}

.points-balance {
  font-size: 36px;
  font-weight: 700;
  color: #CC9400;
  margin-bottom: 16px;
}

/* WISHLIST */
.wishlist-section {
  padding: 40px 20px;
}

.wishlist-actions {
  display: flex;
  gap: 16px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}

.btn-remove {
  background: none;
  border: none;
  color: #d32f2f;
  cursor: pointer;
  font-size: 14px;
  text-decoration: underline;
  margin-top: 12px;
  transition: color 0.3s ease;
}

.btn-remove:hover {
  color: #b71c1c;
}

.added-date,
.price-change {
  font-size: 13px;
  color: #6a6a6a;
  margin-top: 8px;
}

.price-change {
  color: #4caf50;
  font-weight: 600;
}

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

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

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

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

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

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

.cookie-actions button {
  padding: 12px 24px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 600;
  transition: all 0.3s ease;
  font-family: 'Georgia', serif;
}

.accept-all {
  background-color: #4caf50;
  color: #ffffff;
}

.accept-all:hover {
  background-color: #45a049;
  transform: translateY(-2px);
}

.reject-all {
  background-color: #d32f2f;
  color: #ffffff;
}

.reject-all:hover {
  background-color: #b71c1c;
}

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

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

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

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

.cookie-modal-content {
  background-color: #ffffff;
  padding: 40px;
  border-radius: 8px;
  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: 28px;
  color: #2c2c2c;
  cursor: pointer;
  width: 36px;
  height: 36px;
}

.cookie-modal h3 {
  margin-bottom: 24px;
  font-size: 26px;
}

.cookie-category {
  padding: 20px;
  background-color: #faf8f5;
  border-radius: 6px;
  margin-bottom: 16px;
  border: 1px solid #e8e4df;
}

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

.category-header h4 {
  margin: 0;
  font-size: 18px;
}

.toggle-switch {
  position: relative;
  width: 50px;
  height: 26px;
}

.toggle-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.toggle-slider {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  border-radius: 26px;
  cursor: pointer;
  transition: 0.3s;
}

.toggle-slider:before {
  position: absolute;
  content: '';
  height: 20px;
  width: 20px;
  left: 3px;
  bottom: 3px;
  background-color: white;
  border-radius: 50%;
  transition: 0.3s;
}

input:checked + .toggle-slider {
  background-color: #1E40CC;
}

input:checked + .toggle-slider:before {
  transform: translateX(24px);
}

input:disabled + .toggle-slider {
  opacity: 0.5;
  cursor: not-allowed;
}

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

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

/* RESPONSIVE DESIGN */
@media (max-width: 768px) {
  h1 { font-size: 36px; }
  h2 { font-size: 28px; }
  h3 { font-size: 20px; }
  
  .mobile-menu-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .main-nav,
  .header-actions {
    display: none;
  }
  
  .hero {
    padding: 60px 20px;
  }
  
  .hero h1 {
    font-size: 36px;
  }
  
  .hero-subtitle {
    font-size: 17px;
  }
  
  .hero-cta {
    flex-direction: column;
  }
  
  .trust-badges {
    flex-direction: column;
    gap: 16px;
  }
  
  .category-grid,
  .values-grid,
  .testimonial-slider,
  .product-grid,
  .categories-grid,
  .methods-grid,
  .stats-grid,
  .blog-grid {
    flex-direction: column;
  }
  
  .category-card,
  .value-item,
  .value-card,
  .testimonial-card,
  .product-card,
  .category-showcase-card,
  .method-card,
  .stat-item,
  .blog-card,
  .dashboard-card {
    flex: 1 1 100%;
    max-width: 100%;
  }
  
  .newsletter-form {
    flex-direction: column;
  }
  
  .email-input {
    width: 100%;
  }
  
  .footer-content {
    flex-direction: column;
    gap: 32px;
  }
  
  .products-layout {
    flex-direction: column;
  }
  
  .filters-sidebar {
    flex: 1 1 100%;
  }
  
  .products-main {
    flex: 1 1 100%;
  }
  
  .products-toolbar {
    flex-direction: column;
    align-items: stretch;
  }
  
  .sort-select,
  .view-toggle {
    width: 100%;
  }
  
  .view-toggle {
    justify-content: center;
  }
  
  .promo-hero-card {
    padding: 32px 24px;
  }
  
  .promo-prices {
    flex-direction: column;
  }
  
  .promo-price {
    font-size: 36px;
  }
  
  .form-wrapper {
    flex-direction: column;
  }
  
  .form-info {
    flex: 1 1 100%;
  }
  
  .content-wrapper {
    padding: 32px 24px;
  }
  
  .cart-layout {
    flex-direction: column;
  }
  
  .cart-items,
  .cart-summary {
    flex: 1 1 100%;
  }
  
  .cart-summary {
    position: static;
  }
  
  .cart-item {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .cart-item .item-image-placeholder {
    width: 100%;
    height: 200px;
  }
  
  .item-price {
    text-align: left;
  }
  
  .account-layout {
    flex-direction: column;
  }
  
  .account-nav,
  .account-main {
    flex: 1 1 100%;
  }
  
  .dashboard {
    padding: 24px;
  }
  
  .dashboard-grid {
    flex-direction: column;
  }
  
  .cookie-content {
    flex-direction: column;
    align-items: stretch;
  }
  
  .cookie-text {
    flex: 1 1 100%;
  }
  
  .cookie-actions {
    width: 100%;
  }
  
  .cookie-actions button {
    flex: 1;
  }
  
  .cookie-modal-content {
    padding: 24px;
  }
  
  .modal-actions {
    flex-direction: column;
  }
  
  .modal-actions button {
    width: 100%;
  }
}

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

.category-card,
.value-item,
.product-card,
.blog-card {
  animation: fadeIn 0.6s ease-out;
}

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