/*
Theme Name: Telve Theme
*/

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  line-height: 1.6;
  color: #3d3425;
  background-color: #f7f5f2;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a {
  text-decoration: none;
  color: inherit;
}

ul, ol {
  list-style: none;
}

/* ========================================
   CSS VARIABLES
   ======================================== */
:root {
  /* Premium coffee palette */
  --background: #f7f5f2;
  --foreground: #3d3425;
  --card: #fdfcfb;
  --card-foreground: #3d3425;
  --primary: #5c4a35;
  --primary-foreground: #faf8f5;
  --secondary: #ebe7e1;
  --secondary-foreground: #4a3f30;
  --muted: #e5e0d9;
  --muted-foreground: #7a6f60;
  --accent: #c9a87a;
  --border: #d9d3c9;
  
  /* Custom premium colors */
  --coffee-dark: #47392a;
  --coffee-medium: #6b5642;
  --gold-muted: #c9a87a;
  --gold-soft: #dfc9a0;
  --cream: #f5f0e8;
  --cream-dark: #e5ddd0;
  
  /* Spacing */
  --container-max: 1200px;
  --section-padding: 6rem;
  --section-padding-mobile: 4rem;
  
  /* Border radius */
  --radius: 0.75rem;
  --radius-lg: 1.5rem;
  --radius-full: 9999px;
  
  /* Shadows */
  --shadow-sm: 0 1px 2px rgba(71, 57, 42, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(71, 57, 42, 0.08), 0 2px 4px -2px rgba(71, 57, 42, 0.05);
  --shadow-lg: 0 10px 15px -3px rgba(71, 57, 42, 0.1), 0 4px 6px -4px rgba(71, 57, 42, 0.08);
  --shadow-xl: 0 20px 25px -5px rgba(71, 57, 42, 0.12), 0 8px 10px -6px rgba(71, 57, 42, 0.08);
  --shadow-2xl: 0 25px 50px -12px rgba(71, 57, 42, 0.2);
}

/* ========================================
   TYPOGRAPHY
   ======================================== */
.font-serif {
  font-family: 'Playfair Display', Georgia, 'Times New Roman', serif;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 700;
  line-height: 1.2;
  color: var(--foreground);
}

.text-balance {
  text-wrap: balance;
}

/* ========================================
   LAYOUT
   ======================================== */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin-left: auto;
  margin-right: auto;
  padding-left: 1rem;
  padding-right: 1rem;
}

@media (min-width: 768px) {
  .container {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}

/* ========================================
   ANIMATIONS
   ======================================== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

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

@keyframes pulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}

@keyframes cartShake {
  0%, 100% { transform: translateX(0); }
  20%, 60% { transform: translateX(-3px); }
  40%, 80% { transform: translateX(3px); }
}

.animate-fade-in-up {
  animation: fadeInUp 0.6s ease-out forwards;
}

.animate-fade-in-left {
  animation: fadeInLeft 0.7s ease-out forwards;
}

.animate-fade-in-right {
  animation: fadeInRight 0.7s ease-out forwards;
  animation-delay: 0.2s;
  opacity: 0;
}

.animate-pulse {
  animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

.cart-btn.shake {
  animation: cartShake 0.6s ease;
}

/* Staggered animations */
.stagger-1 { animation-delay: 0.1s; }
.stagger-2 { animation-delay: 0.2s; }
.stagger-3 { animation-delay: 0.3s; }
.stagger-4 { animation-delay: 0.4s; }

/* ========================================
   BUTTONS
   ======================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 0.875rem 2rem;
  font-size: 1rem;
  font-weight: 500;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-primary {
  background-color: var(--primary);
  color: var(--primary-foreground);
  box-shadow: 0 4px 14px rgba(92, 74, 53, 0.25);
}

.btn-primary:hover {
  background-color: var(--coffee-medium);
  box-shadow: 0 6px 20px rgba(92, 74, 53, 0.35);
  transform: translateY(-2px);
}

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

.btn-outline:hover {
  background-color: var(--secondary);
  transform: translateY(-2px);
}

.btn-dark {
  background-color: var(--coffee-dark);
  color: var(--cream);
  box-shadow: 0 4px 14px rgba(71, 57, 42, 0.3);
}

.btn-dark:hover {
  background-color: var(--coffee-medium);
  box-shadow: 0 8px 25px rgba(71, 57, 42, 0.35);
  transform: translateY(-2px);
}

.btn-lg {
  padding: 1rem 2.5rem;
  font-size: 1rem;
  height: 3.5rem;
}

/* ========================================
   HEADER / NAVIGATION
   ======================================== */
.top-banner {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 60; /* header’dan üstte */

  background-color: var(--primary);
  color: var(--primary-foreground);
  padding: 0.625rem 1rem;
  text-align: center;
}

.top-banner-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  font-weight: 500;
}

.header {
  position: fixed;
  top: 40px;
  left: 0;
  width: 100%;
  z-index: 50;

  background-color: rgba(247, 245, 242, 0.98);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}


.header::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
  height: 1px;

  background: linear-gradient(
    to right,
    transparent,
    var(--gold-muted),
    transparent
  );

  box-shadow: 0 0 8px rgba(201, 168, 122, 0.5);
}

.header.scrolled {
  backdrop-filter: blur(18px);
  background-color: rgba(247, 245, 242, 0.85);
}


.header-container {
  padding: 36px clamp(20px, 5vw, 60px);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
    height: 100%;
  transition: transform 0.3s ease;
}


.logo:hover img {
  transform: scale(1.05);
}

.logo:hover {
  color: var(--primary);
}

.nav {
  display: none;
}

@media (min-width: 768px) {
  .nav {
    display: flex;
    align-items: center;
    gap: 2.5rem;
  }
}

@media (max-width: 767px) {
  .logo img {
    height: 60px;
    max-width: 160px;
  }
}

.nav-link {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--muted-foreground);
  transition: color 0.3s ease;
  position: relative;
}

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

.nav-link:hover {
  color: var(--primary);
}

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

.cart-btn {
  position: relative;
  width: 2.75rem;
  height: 2.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
  background: transparent;
  border: none;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.cart-btn:hover {
  background-color: rgba(92, 74, 53, 0.1);
}

.cart-badge {
  position: absolute;
  top: -4px;
  right: -4px;
  width: 1.25rem;
  height: 1.25rem;
  background-color: var(--primary);
  color: var(--primary-foreground);
  font-size: 0.75rem;
  font-weight: 700;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ========================================
   HERO SECTION
   ======================================== */
.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  overflow: hidden;

  padding: 0;
  margin-top: 20px;
}

@media (min-width: 768px) {
  .hero {
    padding: 0;
  }
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--cream) 0%, rgba(229, 221, 208, 0.5) 50%, rgba(223, 201, 160, 0.3) 100%);
}

.hero-glow-1 {
  position: absolute;
  top: 25%;
  right: 25%;
  width: 600px;
  height: 600px;
  background: rgba(201, 168, 122, 0.2);
  border-radius: 50%;
  filter: blur(120px);
}

.hero-glow-2 {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 400px;
  height: 400px;
  background: rgba(107, 86, 66, 0.1);
  border-radius: 50%;
  filter: blur(100px);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
  position: relative;
  z-index: 10;
}

@media (min-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  }
}

.hero-content {
  order: 2;
}

@media (min-width: 1024px) {
  .hero-content {
    order: 1;
  }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background-color: rgba(223, 201, 160, 0.4);
  border: 1px solid rgba(201, 168, 122, 0.5);
  border-radius: var(--radius-full);
  padding: 0.5rem 1rem;
  margin-bottom: 2rem;
  box-shadow: var(--shadow-sm);
}

.hero-badge-dot {
  width: 0.5rem;
  height: 0.5rem;
  background-color: var(--gold-muted);
  border-radius: 50%;
  animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

.hero-badge-text {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--coffee-dark);
}

.hero-title {
  font-size: 2.5rem;
  line-height: 1.1;
  margin-bottom: 2rem;
}

@media (min-width: 768px) {
  .hero-title {
    font-size: 3.5rem;
  }
}

@media (min-width: 1024px) {
  .hero-title {
    font-size: 4rem;
  }
}

.hero-title-accent {
  display: block;
  color: var(--primary);
}

.hero-description {
  font-size: 1.25rem;
  color: var(--muted-foreground);
  line-height: 1.7;
  max-width: 32rem;
  margin-bottom: 2.5rem;
}

.hero-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 3rem;
}

@media (min-width: 640px) {
  .hero-buttons {
    flex-direction: row;
  }
}

.hero-microcopy {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  margin-bottom: 2rem;
}

.hero-trust-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

.trust-badge svg {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--primary);
}

/* Hero Image */
.hero-image-container {
  order: 1;
  position: relative;
}

@media (min-width: 1024px) {
  .hero-image-container {
    order: 2;
  }
}

.hero-image-wrapper {
  position: relative;
  aspect-ratio: 1;
  max-width: 32rem;
  margin: 0 auto;
}

.hero-image-glow-1 {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(201, 168, 122, 0.4) 0%, rgba(107, 86, 66, 0.3) 100%);
  border-radius: 50%;
  filter: blur(48px);
  transform: scale(0.9);
}

.hero-image-glow-2 {
  position: absolute;
  inset: 2rem;
  background: rgba(223, 201, 160, 0.3);
  border-radius: 50%;
  filter: blur(32px);
}

.hero-image {
  position: relative;
  border-radius: 1.5rem;
  overflow: hidden;
  box-shadow: var(--shadow-2xl);
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ========================================
   PRODUCTS SECTION
   ======================================== */
.products-section {
  position: relative;
  padding: var(--section-padding-mobile) 0;
  background-color: var(--cream);
}

@media (min-width: 768px) {
  .products-section {
    padding: var(--section-padding) 0;
  }
}

.products-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(223, 201, 160, 0.05) 50%, transparent 100%);
  pointer-events: none;
}

.products-header {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 3.5rem;
}

@media (min-width: 768px) {
  .products-header {
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
  }
}

.section-label {
  display: inline-block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.75rem;
}

.section-title {
  font-size: 2.25rem;
}

@media (min-width: 768px) {
  .section-title {
    font-size: 3rem;
  }
}

.products-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 500;
  color: var(--primary);
  transition: color 0.3s ease;
}

.products-link:hover {
  color: var(--coffee-medium);
}

.products-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  position: relative;
  z-index: 10;
}

@media (min-width: 640px) {
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .products-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Product Card */
.product-card {
  background-color: var(--card);
  border-radius: 1.5rem;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(71, 57, 42, 0.08);
  border: 1px solid rgba(223, 201, 160, 0.3);
  transition: all 0.3s ease;
}

.product-card:hover {
  box-shadow: 0 20px 25px rgba(71, 57, 42, 0.15);
  transform: translateY(-6px);
}

.product-image-wrapper {
  position: relative;
  aspect-ratio: 1;
  background-color: var(--secondary);
  overflow: hidden;
}

.product-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.product-card:hover .product-image-wrapper img {
  transform: scale(1.05);
}

.product-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background-color: var(--coffee-dark);
  color: var(--cream);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.375rem 1rem;
  border-radius: var(--radius-full);
  box-shadow: 0 4px 12px rgba(71, 57, 42, 0.3);
}

.product-content {
  padding: 1.5rem;
}

.product-weight {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  margin-bottom: 0.25rem;
}

.product-name {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--foreground);
  margin-bottom: 0.5rem;
}

.product-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 1.25rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(223, 201, 160, 0.3);
}

.product-price {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--coffee-dark);
}

.product-add-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.25rem;
  background-color: var(--primary);
  color: var(--primary-foreground);
  font-size: 0.875rem;
  font-weight: 500;
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  transition: all 0.3s ease;
}

.product-add-btn:hover {
  background-color: var(--coffee-medium);
  transform: translateY(-2px);
}

.added_to_cart.wc-forward {
  display: none !important;
}

.products-footer {
  text-align: center;
  margin-top: 3rem;
  color: var(--muted-foreground);
}

.products-footer strong {
  color: var(--foreground);
}

/* ========================================
   BENEFITS SECTION
   ======================================== */
.benefits-section {
  position: relative;
  padding: var(--section-padding-mobile) 0;
  background-color: var(--cream-dark);
  overflow: hidden;
}

@media (min-width: 768px) {
  .benefits-section {
    padding: var(--section-padding) 0;
  }
}

.benefits-glow {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 400px;
  background: rgba(223, 201, 160, 0.2);
  border-radius: 50%;
  filter: blur(100px);
}

.benefits-header {
  text-align: center;
  margin-bottom: 4rem;
  position: relative;
  z-index: 10;
}

.benefits-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  position: relative;
  z-index: 10;
}

@media (min-width: 768px) {
  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .benefits-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.benefit-card {
  background-color: var(--card);
  border-radius: 1.5rem;
  padding: 2rem;
  text-align: center;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(223, 201, 160, 0.3);
  transition: all 0.3s ease;
}

.benefit-card:hover {
  box-shadow: var(--shadow-xl);
  transform: translateY(-6px);
}

.benefit-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 4rem;
  height: 4rem;
  border-radius: 1rem;
  background: linear-gradient(135deg, rgba(223, 201, 160, 0.5) 0%, rgba(201, 168, 122, 0.3) 100%);
  margin-bottom: 1.5rem;
  transition: transform 0.3s ease;
}

.benefit-card:hover .benefit-icon {
  transform: scale(1.1);
}

.benefit-icon svg {
  width: 2rem;
  height: 2rem;
  color: var(--coffee-dark);
}

.benefit-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--foreground);
  margin-bottom: 1rem;
}

.benefit-description {
  color: var(--muted-foreground);
  line-height: 1.6;
}

/* ========================================
   STORY SECTION
   ======================================== */
.story-section {
  position: relative;
  padding: var(--section-padding-mobile) 0;
  background-color: var(--cream);
  overflow: hidden;
}

@media (min-width: 768px) {
  .story-section {
    padding: var(--section-padding) 0;
  }
}

.story-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 0%, rgba(223, 201, 160, 0.1) 50%, rgba(107, 86, 66, 0.05) 100%);
  pointer-events: none;
}

.story-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 10;
}

@media (min-width: 1024px) {
  .story-grid {
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
  }
}

.story-image-container {
  position: relative;
}

.story-image {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: 1.5rem;
  overflow: hidden;
  box-shadow: var(--shadow-2xl);
}

.story-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.story-floating-card {
  position: absolute;
  bottom: -1.5rem;
  right: -1.5rem;
  background-color: var(--card);
  border-radius: 1rem;
  padding: 1.5rem;
  box-shadow: var(--shadow-xl);
  border: 1px solid rgba(223, 201, 160, 0.4);
  max-width: 200px;
}

@media (min-width: 768px) {
  .story-floating-card {
    bottom: 2rem;
    right: -2rem;
  }
}

.story-floating-number {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--coffee-dark);
  margin-bottom: 0.25rem;
}

.story-floating-text {
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

.story-content {
  padding-right: 0;
}

@media (min-width: 1024px) {
  .story-content {
    padding-right: 2rem;
  }
}

.story-text {
  font-size: 1.125rem;
  color: var(--muted-foreground);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

/* ========================================
   TESTIMONIALS SECTION
   ======================================== */
.testimonials-section {
  position: relative;
  padding: var(--section-padding-mobile) 0;
  background-color: var(--coffee-dark);
  overflow: hidden;
}

@media (min-width: 768px) {
  .testimonials-section {
    padding: var(--section-padding) 0;
  }
}

.testimonials-glow-1 {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 500px;
  height: 500px;
  background: rgba(201, 168, 122, 0.1);
  border-radius: 50%;
  filter: blur(120px);
}

.testimonials-glow-2 {
  position: absolute;
  top: 0;
  left: 0;
  width: 400px;
  height: 400px;
  background: rgba(107, 86, 66, 0.2);
  border-radius: 50%;
  filter: blur(100px);
}

.testimonials-header {
  text-align: center;
  margin-bottom: 4rem;
  position: relative;
  z-index: 10;
}

.testimonials-label {
  color: var(--gold-muted);
}

.testimonials-title {
  color: var(--cream);
}

.testimonials-subtitle {
  color: rgba(245, 240, 232, 0.7);
  margin-top: 1rem;
  max-width: 28rem;
  margin-left: auto;
  margin-right: auto;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  position: relative;
  z-index: 10;
}

@media (min-width: 768px) {
  .testimonials-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.testimonial-card {
  position: relative;
  background: rgba(107, 86, 66, 0.3);
  backdrop-filter: blur(8px);
  border-radius: 1.5rem;
  padding: 2rem;
  border: 1px solid rgba(223, 201, 160, 0.2);
  box-shadow: var(--shadow-lg);
  transition: all 0.3s ease;
}

.testimonial-card:hover {
  box-shadow: var(--shadow-xl);
  transform: translateY(-6px);
}

.testimonial-quote {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  width: 2rem;
  height: 2rem;
  color: rgba(201, 168, 122, 0.3);
}

.testimonial-stars {
  display: flex;
  gap: 0.25rem;
  margin-bottom: 1.5rem;
}

.testimonial-stars svg {
  width: 1.25rem;
  height: 1.25rem;
  fill: var(--gold-muted);
  color: var(--gold-muted);
}

.testimonial-text {
  color: var(--cream);
  font-size: 1.125rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(245, 240, 232, 0.1);
}

.testimonial-avatar {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(223, 201, 160, 0.3) 0%, rgba(201, 168, 122, 0.2) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.testimonial-avatar span {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 700;
  font-size: 1.125rem;
  color: var(--cream);
}

.testimonial-name {
  font-weight: 600;
  color: var(--cream);
}

.testimonial-location {
  font-size: 0.875rem;
  color: rgba(245, 240, 232, 0.6);
}

/* ========================================
   CTA SECTION
   ======================================== */
.cta-section {
  position: relative;
  padding: var(--section-padding-mobile) 0;
  background: linear-gradient(135deg, var(--gold-muted) 0%, var(--gold-soft) 50%, var(--cream) 100%);
  overflow: hidden;
}

@media (min-width: 768px) {
  .cta-section {
    padding: var(--section-padding) 0;
  }
}

.cta-glow-1 {
  position: absolute;
  top: 0;
  right: 0;
  width: 24rem;
  height: 24rem;
  background: rgba(201, 168, 122, 0.4);
  border-radius: 50%;
  filter: blur(100px);
}

.cta-glow-2 {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 20rem;
  height: 20rem;
  background: rgba(107, 86, 66, 0.2);
  border-radius: 50%;
  filter: blur(80px);
}

.cta-glow-3 {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background: rgba(245, 240, 232, 0.4);
  border-radius: 50%;
  filter: blur(120px);
}

.cta-content {
  position: relative;
  z-index: 10;
  text-align: center;
}

.cta-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(71, 57, 42, 0.1);
  border: 1px solid rgba(71, 57, 42, 0.2);
  border-radius: var(--radius-full);
  padding: 0.625rem 1.25rem;
  margin-bottom: 2rem;
}

.cta-badge-dot {
  width: 0.5rem;
  height: 0.5rem;
  background-color: var(--coffee-medium);
  border-radius: 50%;
  animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

.cta-badge-text {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--coffee-dark);
}

.cta-title {
  font-size: 2.25rem;
  color: var(--coffee-dark);
  margin-bottom: 1.5rem;
  max-width: 48rem;
  margin-left: auto;
  margin-right: auto;
}

@media (min-width: 768px) {
  .cta-title {
    font-size: 3rem;
  }
}

@media (min-width: 1024px) {
  .cta-title {
    font-size: 3.5rem;
  }
}

.cta-description {
  font-size: 1.125rem;
  color: rgba(71, 57, 42, 0.8);
  max-width: 36rem;
  margin: 0 auto 2.5rem;
}

@media (min-width: 768px) {
  .cta-description {
    font-size: 1.25rem;
  }
}

.cta-microcopy {
  font-size: 0.875rem;
  color: rgba(71, 57, 42, 0.6);
  margin-top: 1rem;
}

.cta-features {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  margin-top: 3rem;
  padding-top: 3rem;
  border-top: 1px solid rgba(71, 57, 42, 0.1);
}

.cta-feature {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: rgba(71, 57, 42, 0.8);
}

.cta-feature svg {
  width: 1.25rem;
  height: 1.25rem;
}

.cta-feature span {
  font-size: 0.875rem;
  font-weight: 500;
}

/* ========================================
   FOOTER
   ======================================== */
.footer {
  background-color: var(--foreground);
  color: var(--background);
  padding: 4rem 0 2rem;
}

@media (min-width: 768px) {
  .footer {
    padding: 5rem 0 2rem;
  }
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  margin-bottom: 4rem;
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .footer-grid {
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
  }
}

.footer-brand {
  max-width: 20rem;
}

.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.footer-logo svg {
  width: 2rem;
  height: 2rem;
  color: var(--accent);
}

.footer-logo span {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.5rem;
  font-weight: 700;
}

.footer-description {
  color: rgba(247, 245, 242, 0.7);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-contact a,
.footer-contact span {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: rgba(247, 245, 242, 0.7);
  transition: color 0.3s ease;
}

.footer-contact a:hover {
  color: var(--background);
}

.footer-contact svg {
  width: 1rem;
  height: 1rem;
}

.footer-column h3 {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--background);
  margin-bottom: 1.25rem;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-links a {
  font-size: 0.875rem;
  color: rgba(247, 245, 242, 0.7);
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: var(--background);
}

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(247, 245, 242, 0.1);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
}

@media (min-width: 768px) {
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
  }
}

.footer-copyright {
  font-size: 0.875rem;
  color: rgba(247, 245, 242, 0.6);
}

.footer-badges {
  display: flex;
  gap: 1.5rem;
}

.footer-badges span {
  font-size: 0.75rem;
  color: rgba(247, 245, 242, 0.4);
}

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

.relative {
  position: relative;
}

.z-10 {
  z-index: 10;
}

/* Icon sizing */
.icon-sm {
  width: 1rem;
  height: 1rem;
}

.icon-md {
  width: 1.25rem;
  height: 1.25rem;
}

.icon-lg {
  width: 2rem;
  height: 2rem;
}

/* ===== FINAL PRO LOGO SYSTEM ===== */

.logo {
  display: flex;
  align-items: center;
  height: 100%;
}

/* ANA LOGO */
.logo img {
  height: 70px;
  width: auto;
  max-width: none;
  object-fit: contain;

  display: block;
  margin: 0 auto;
  transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);}

/* SCROLL DURUMU */
.header.scrolled .logo img {
  height: 60px;
}

/* MOBİL */
@media (max-width: 768px) {
  .logo img {
    height: 48px;
    max-width: 160px;
  }

  .header.scrolled .logo img {
    height: 42px;
  }
}

/* HOVER */
.logo:hover img {
  transform: scale(1.05);
}

/* Overlay */
.cart-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.5);
  opacity: 0;
  pointer-events: none;
  transition: 0.3s;
  z-index: 999;
}

/* Sidebar */
.cart-sidebar {
  position: fixed;
  top: 0;
  right: -420px;
  width: 380px;
  height: 100%;
  background: var(--card);
  color: var(--foreground);
  display: flex;
  flex-direction: column;
  transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  z-index: 1000;
  box-shadow: var(--shadow-2xl);
  border-left: 1px solid var(--border);
}

/* Active */
.cart-sidebar.active {
  right: 0;
}

.cart-overlay.active {
  opacity: 1;
  pointer-events: all;
}

/* Header */
.cart-header {
  padding: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;

  border-bottom: 1px solid var(--border);
}

.cart-header h3 {
  font-family: 'Playfair Display';
  font-size: 1.45rem;
}

/* Content */
.cart-content {
  flex: 1;
  overflow-y: auto;
  padding: 24px;
}

/* Footer */
.cart-footer {
  padding: 24px;
  display: flex;
  gap: 10px;
}

.cart-item {
  display: flex;
  gap: 16px;
  margin-bottom: 18px;
  align-items: center;
  padding: 12px;
  border-radius: 12px;
  transition: 0.3s;
}

.cart-item:hover {
  background: var(--secondary);
}

.cart-item-image img {
  width: 84px;
  border-radius: 12px;
}

.cart-item-info h4 {
  font-size: 17px;
  font-weight: 600;
  line-height: 1.3;
}

.cart-item-price {
  font-size: 16px;
  color: var(--primary);
  font-weight: 600;
}

.cart-qty {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 10px;
}

.cart-qty button {
  width: 34px;
  height: 34px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--background);
  color: var(--foreground);
  cursor: pointer;
  font-weight: 700;
  line-height: 1;
}

.qty-number {
  min-width: 22px;
  text-align: center;
  font-size: 16px;
  font-weight: 600;
}

.cart-remove {
  margin-left: auto;
  cursor: pointer;
  opacity: 0.5;
  font-size: 18px;
  transition: 0.3s;
}

.cart-remove:hover {
  opacity: 1;
  color: red;
}

.cart-total {
  margin-top: 24px;
  font-weight: 700;
  font-size: 18px;
  padding-top: 18px;
  border-top: 1px solid var(--border);
}

.cart-footer .btn {
  flex: 1;
  font-size: 1.05rem;
  padding: 1rem 1.25rem;
}

.cart-content::-webkit-scrollbar {
  width: 6px;
}

.cart-content::-webkit-scrollbar-thumb {
  background: var(--border);
  border-radius: 10px;
}

.btn-full {
  width: 100%;
}

.checkout-wrapper {
  padding: 120px 0;
}

.checkout-box {
  max-width: 720px;
  margin: 0 auto;
  background: var(--card);
  padding: 35px;
  border-radius: 20px;
  box-shadow: var(--shadow-xl);
}

.checkout-title {
  font-size: 28px;
  margin-bottom: 10px;
}

.checkout-subtitle {
  margin-bottom: 20px;
  color: var(--muted-foreground);
}

.checkout-trust {
  display: flex;
  flex-direction: column;
  gap: 6px;
  background: var(--secondary);
  padding: 15px;
  border-radius: 12px;
  margin-bottom: 25px;
  font-size: 14px;
}

/* FORM GENEL */
.woocommerce-checkout {
  max-width: 720px;
  margin: 40px auto;
  background: var(--card);
  padding: 35px;
  border-radius: 20px;
  box-shadow: var(--shadow-xl);
}

/* BAŞLIKLAR */
.woocommerce-checkout h3 {
  font-family: 'Playfair Display';
  margin-bottom: 15px;
}

/* INPUT */
.woocommerce input,
.woocommerce select,
.woocommerce textarea {
  border-radius: 10px;
  padding: 14px;
  border: 1px solid var(--border);
  background: var(--background);
  transition: 0.3s;
}

.woocommerce input:focus {
  border-color: var(--primary);
  outline: none;
}

/* LABEL */
.woocommerce label {
  font-size: 14px;
  margin-bottom: 5px;
  display: block;
}

/* SATIR */
.woocommerce form .form-row {
  margin-bottom: 16px;
}

/* BUTON */
.woocommerce button {
  background: var(--primary);
  color: white;
  border-radius: 12px;
  padding: 14px;
  font-weight: 600;
  width: 100%;
  transition: 0.3s;
}

.woocommerce button:hover {
  opacity: 0.9;
}

/* ORDER BOX */
.woocommerce-checkout-review-order {
  margin-top: 25px;
  padding-top: 15px;
  border-top: 1px solid var(--border);
}

/* RADIO */
.woocommerce input[type="radio"] {
  margin-right: 8px;
}

/* HATA MESAJI */
.woocommerce-error {
  background: #ffe5e5;
  padding: 10px;
  border-radius: 8px;
}

/* TEK KOLON */
.woocommerce-checkout .col2-set {
  width: 100%;
}

.woocommerce-checkout .col-1,
.woocommerce-checkout .col-2 {
  width: 100%;
}

/* ===== FORCE CLEAN LOOK ===== */

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

/* Order review box */
#order_review {
  background: var(--secondary);
  padding: 20px;
  border-radius: 12px;
  margin-top: 20px;
}

/* Payment section */
#payment {
  background: transparent;
  border: none;
}

/* Radio button better spacing */
.woocommerce-checkout-payment ul li {
  margin-bottom: 10px;
}

/* Table cleanup */
.woocommerce table.shop_table {
  border: none;
}

.woocommerce table.shop_table th,
.woocommerce table.shop_table td {
  border: none;
  padding: 10px 0;
}

/* Total price highlight */
.order-total strong {
  color: var(--primary);
  font-size: 18px;
}

/* Remove ugly background */
.woocommerce-checkout-review-order-table {
  background: transparent;
}

/* Remove box shadows from Woo */
.woocommerce form.checkout_coupon,
.woocommerce form.login,
.woocommerce form.register {
  box-shadow: none;
  border: none;
}

/* FULL WIDTH FORCE */
.woocommerce-checkout .woocommerce-checkout-review-order {
  width: 100%;
}

.woocommerce-checkout .col2-set {
  display: flex;
  flex-direction: column;
}

/* ===== CHECKOUT GROUPING FIX ===== */

.woocommerce-billing-fields {
  background: var(--secondary);
  padding: 20px;
  border-radius: 16px;
}

#order_review {
  background: var(--card);
  padding: 20px;
  border-radius: 16px;
  box-shadow: var(--shadow-md);
}

/* spacing artır */
.woocommerce-checkout form.checkout {
  gap: 30px;
}

/* input spacing */
.woocommerce form .form-row {
  margin-bottom: 20px;
}

/* başlık küçült */
.woocommerce-checkout h3 {
  font-size: 18px;
  margin-bottom: 15px;
}

.checkout-logo {
  text-align: center;
  margin-bottom: 20px;
}

.checkout-logo img {
  height: 60px;
  width: auto;
  margin: 0 auto;
  display: block;
}
/* CHECKOUT SAYFASINDA HEADER GİZLE */
.checkout-page header,
.checkout-page .header,
.checkout-page .top-banner {
  display: none !important;
}

.woocommerce-billing-fields h3 {
  color: var(--foreground);
  text-decoration: none;
  font-size: 16px;
  margin-bottom: 10px;
}
#order_review {
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
}

.checkout-wrapper {
  padding-top: 40px !important;
}
.checkout-page .top-banner,
.checkout-page .header,
.checkout-page .header-container {
  display: none !important;
}
.woocommerce-billing-fields {
  padding: 25px;
}

.woocommerce input {
  height: 48px;
}

.checkout-page header {
  display: none !important;
  height: 0 !important;
  padding: 0 !important;
  margin: 0 !important;
}

.checkout-page .top-banner {
  display: none !important;
  height: 0 !important;
}

.checkout-page body {
  padding-top: 0 !important;
}

.woocommerce-message {
  display: none !important;
}
/* ===== END ===== */

/* ========================================
   PRO BRAND REFRESH
   ======================================== */
:root {
  --background: #f7f6f1;
  --foreground: #111613;
  --card: #ffffff;
  --card-foreground: #111613;
  --primary: #111613;
  --primary-foreground: #ffffff;
  --secondary: #efede5;
  --secondary-foreground: #262b27;
  --muted: #e4e1d7;
  --muted-foreground: #686b64;
  --accent: #a99563;
  --border: #ddd8ca;
  --coffee-dark: #111613;
  --coffee-medium: #2b302c;
  --gold-muted: #a99563;
  --gold-soft: #d8ccb0;
  --cream: #f7f6f1;
  --cream-dark: #efede5;
  --radius: 8px;
  --radius-lg: 8px;
}

body {
  background: var(--background);
  color: var(--foreground);
}

.top-banner {
  background: var(--foreground);
  letter-spacing: 0.01em;
}

.header {
  background: rgba(247, 246, 241, 0.95);
}

.header-container {
  min-height: 84px;
  padding: 12px clamp(18px, 4vw, 48px);
}

.logo img {
  height: 58px;
}

.header.scrolled .logo img {
  height: 52px;
}

.header::after,
.hero-glow-1,
.hero-glow-2,
.hero-image-glow-1,
.hero-image-glow-2,
.benefits-glow,
.testimonials-glow-1,
.testimonials-glow-2,
.cta-glow-1,
.cta-glow-2,
.cta-glow-3 {
  display: none;
}

.nav-link {
  color: #4d5d55;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 0.78rem;
}

.category-rail {
  display: none;
}

.category-rail-track {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding: 10px 0;
  scrollbar-width: none;
}

.category-rail-track::-webkit-scrollbar {
  display: none;
}

.category-pill {
  flex: 0 0 auto;
  padding: 9px 14px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: #fff;
  color: var(--foreground);
  font-size: 0.82rem;
  font-weight: 700;
}

.hero {
  min-height: calc(100vh - 48px);
  padding-top: 138px;
  margin-top: 0;
  background: #efede5;
}

.hero-bg {
  background:
    linear-gradient(90deg, rgba(247, 246, 241, 0.96) 0%, rgba(247, 246, 241, 0.84) 48%, rgba(17, 22, 19, 0.12) 100%),
    url("images/hero-coffee.jpg") center right / cover no-repeat;
}

.hero-badge {
  background: #fff;
  border-color: var(--border);
  border-radius: 8px;
}

.hero-badge-dot {
  background: var(--accent);
}

.hero-title {
  max-width: 760px;
  letter-spacing: 0;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.hero-title-accent {
  color: var(--accent);
}

.hero-description,
.story-text,
.signature-text,
.faq-intro {
  color: var(--muted-foreground);
}

.hero-content,
.hero-description,
.hero-subline,
.hero-microcopy {
  text-align: center;
}

.hero-buttons,
.hero-trust-badges {
  justify-content: center;
}

.hero-image {
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.65);
}

.hero-image img {
  min-height: 520px;
}

.btn,
.product-card,
.benefit-card,
.testimonial-card,
.checkout-box,
.woocommerce-checkout,
.story-image,
.story-floating-card,
.cart-sidebar,
.cart-item {
  border-radius: 8px;
}

.btn-primary,
.product-add-btn,
.woocommerce button {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 14px 28px rgba(17, 22, 19, 0.16);
}

.btn-primary:hover,
.product-add-btn:hover {
  background: #262b27;
}

.proof-band {
  background: var(--foreground);
  color: #fff;
  padding: 28px 0;
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.proof-item {
  border-left: 1px solid rgba(255,255,255,0.18);
  padding-left: 18px;
}

.proof-value {
  display: block;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.6rem;
  font-weight: 700;
}

.proof-label {
  color: rgba(255,255,255,0.7);
  font-size: 0.88rem;
}

.products-section,
.story-section {
  background: #fff;
}

.products-header,
.benefits-header,
.quality-header {
  align-items: center;
  justify-content: center;
  text-align: center;
}

.section-label,
.section-title,
.products-footer,
.testimonials-header,
.cta-content,
.story-content,
.signature-content,
.faq-grid > div:first-child {
  text-align: center;
}

.section-title {
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
}

.products-header {
  position: relative;
  padding-bottom: 12px;
}

.products-link {
  position: absolute;
  right: 0;
  bottom: 16px;
}

.product-card {
  border: 1px solid var(--border);
  box-shadow: 0 18px 42px rgba(24, 35, 29, 0.08);
}

.product-image-wrapper {
  background: #efede5;
}

.product-footer {
  gap: 16px;
}

.product-add-btn {
  white-space: nowrap;
}

.product-empty {
  grid-column: 1 / -1;
  background: var(--secondary);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 28px;
  text-align: center;
}

.product-empty h3 {
  font-family: 'Inter', system-ui, sans-serif;
  margin-bottom: 8px;
}

.product-empty p {
  color: var(--muted-foreground);
}

.signature-section,
.quality-section,
.faq-section {
  padding: var(--section-padding-mobile) 0;
}

@media (min-width: 768px) {
  .signature-section,
  .quality-section,
  .faq-section {
    padding: var(--section-padding) 0;
  }
}

.signature-section {
  background: var(--secondary);
}

.signature-grid,
.faq-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 42px;
  align-items: center;
}

@media (min-width: 960px) {
  .signature-grid,
  .faq-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.signature-media img {
  width: 100%;
  aspect-ratio: 1.08;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 24px 54px rgba(24, 35, 29, 0.16);
}

.signature-content .section-title,
.quality-header .section-title,
.faq-grid .section-title {
  margin-bottom: 18px;
}

.signature-list {
  display: grid;
  gap: 14px;
  margin: 28px 0;
  text-align: left;
}

.signature-list div,
.quality-step,
.faq-list details {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 18px;
}

.signature-list strong,
.signature-list span {
  display: block;
}

.signature-list span {
  margin-top: 4px;
  color: var(--muted-foreground);
}

.quality-section {
  background: #f7f6f1;
}

.quality-header {
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 34px;
}

.quality-steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}

@media (min-width: 768px) {
  .quality-steps {
    grid-template-columns: repeat(3, 1fr);
  }
}

.quality-step span {
  display: inline-flex;
  margin-bottom: 22px;
  color: var(--accent);
  font-weight: 800;
}

.quality-step h3 {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 1.1rem;
  margin-bottom: 10px;
}

.quality-step p,
.faq-list p {
  color: var(--muted-foreground);
}

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

.testimonials-section,
.footer {
  background: var(--foreground);
}

.testimonial-card {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.12);
}

.testimonial-stars svg {
  color: var(--accent);
  fill: var(--accent);
}

.testimonials-grid {
  align-items: stretch;
}

.testimonial-card {
  min-height: 100%;
}

.footer-logo-image {
  display: inline-flex;
  width: 170px;
  margin-bottom: 1.5rem;
}

.footer-logo-image img {
  width: 100%;
  height: auto;
  filter: brightness(0) invert(1);
}

.faq-section {
  background: #fff;
}

.faq-list {
  display: grid;
  gap: 12px;
  text-align: left;
}

.faq-list summary {
  cursor: pointer;
  font-weight: 800;
  color: var(--foreground);
}

.faq-list p {
  margin-top: 12px;
}

.cta-section {
  background: var(--foreground);
}

.cta-title,
.cta-description,
.cta-microcopy,
.cta-feature,
.cta-badge-text {
  color: #fff;
}

.cta-badge {
  background: rgba(255,255,255,0.16);
  border-color: rgba(255,255,255,0.24);
}

.cta-badge-dot {
  background: #fff;
}

.btn-dark {
  background: #fff;
  color: var(--foreground);
}

.btn-dark:hover {
  background: #f5f5f5;
}

@media (max-width: 1023px) {
  .hero {
    padding-top: 132px;
  }

  .hero-image img {
    min-height: auto;
  }
}

@media (max-width: 767px) {
  .hero {
    padding-top: 124px;
  }

  .proof-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .product-footer {
    align-items: stretch;
    flex-direction: column;
  }

  .products-link {
    position: static;
    justify-content: center;
    margin-top: 10px;
  }

  .product-add-btn {
    justify-content: center;
  }
}

.legal-page {
  min-height: 70vh;
  padding: 150px 0 80px;
  background: #fff;
}

.legal-site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 70;
  background: rgba(246, 247, 244, 0.96);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(12px);
}

.legal-site-header .container {
  min-height: 88px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.legal-site-logo img {
  height: 58px;
  width: auto;
}

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

.legal-body {
  margin-top: 34px;
  text-align: left;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 32px;
  box-shadow: 0 18px 42px rgba(24, 35, 29, 0.08);
}

.legal-body h2,
.legal-body h3 {
  font-family: 'Inter', system-ui, sans-serif;
  color: var(--foreground);
  margin: 24px 0 10px;
}

.legal-body h2:first-child {
  margin-top: 0;
}

.legal-body p {
  color: var(--muted-foreground);
  margin-bottom: 14px;
}

.checkout-box,
.checkout-title,
.checkout-subtitle,
.checkout-trust {
  text-align: center;
}

.checkout-trust {
  align-items: center;
}

.woocommerce-checkout h3,
.woocommerce-billing-fields h3,
#order_review_heading {
  text-align: center;
}

#payment .payment_methods,
#payment .place-order {
  text-align: left;
}

@media (max-width: 767px) {
  .legal-page {
    padding: 124px 0 56px;
  }

  .legal-body {
    padding: 22px;
  }
}

.legal-site-footer {
  background: var(--foreground);
  color: rgba(255,255,255,0.72);
  padding: 28px 0;
  text-align: center;
}
