/* ============================================
   Misos Coffee — Design System
   ============================================ */

:root {
  --color-espresso: #1a1209;
  --color-dark-roast: #2c1810;
  --color-medium-roast: #4a2c1a;
  --color-caramel: #8b5a2b;
  --color-crema: #c4a882;
  --color-latte: #e8dcc8;
  --color-foam: #f5f0e8;
  --color-white: #faf8f5;

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Outfit', system-ui, sans-serif;

  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2.5rem;
  --space-xl: 4rem;
  --space-2xl: 6rem;

  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;

  --shadow-sm: 0 2px 8px rgba(26, 18, 9, 0.08);
  --shadow-md: 0 8px 24px rgba(26, 18, 9, 0.12);
  --shadow-lg: 0 16px 48px rgba(26, 18, 9, 0.16);

  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Reset & Base */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--color-dark-roast);
  background-color: var(--color-white);
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-md);
}

/* Typography */
.section-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-caramel);
  margin-bottom: var(--space-sm);
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 600;
  line-height: 1.2;
  color: var(--color-espresso);
}

.section-desc {
  margin-top: var(--space-sm);
  color: var(--color-medium-roast);
  max-width: 540px;
}

.section-header {
  margin-bottom: var(--space-xl);
}

.section-header--center {
  text-align: center;
}

.section-header--center .section-desc {
  margin-left: auto;
  margin-right: auto;
}

.lead {
  font-family: var(--font-display);
  font-size: 1.35rem;
  line-height: 1.5;
  color: var(--color-espresso);
  margin-bottom: var(--space-md);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.875rem 1.75rem;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  border: 2px solid transparent;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all var(--transition);
}

.btn-primary {
  background: var(--color-espresso);
  color: var(--color-foam);
  border-color: var(--color-espresso);
}

.btn-primary:hover {
  background: var(--color-medium-roast);
  border-color: var(--color-medium-roast);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-outline {
  background: transparent;
  color: var(--color-foam);
  border-color: rgba(245, 240, 232, 0.5);
}

.btn-outline:hover {
  background: rgba(245, 240, 232, 0.1);
  border-color: var(--color-foam);
}

.btn-whatsapp {
  background: #25d366;
  color: #fff;
  border-color: #25d366;
}

.btn-whatsapp:hover {
  background: #1da851;
  border-color: #1da851;
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-nav {
  padding: 0.5rem 1.25rem;
  background: var(--color-espresso);
  color: var(--color-foam) !important;
  border-radius: var(--radius-sm);
}

.btn-nav:hover {
  background: var(--color-medium-roast);
}

.btn-sm {
  padding: 0.5rem 1rem;
  font-size: 0.8rem;
  background: var(--color-espresso);
  color: var(--color-foam);
}

.btn-sm:hover {
  background: var(--color-caramel);
}

.btn-full {
  width: 100%;
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: var(--space-sm) 0;
  transition: all var(--transition);
}

.header.scrolled {
  background: rgba(250, 248, 245, 0.95);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow-sm);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.logo-mark {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: var(--color-espresso);
  color: var(--color-crema);
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  border-radius: var(--radius-sm);
}

.logo-text {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--color-espresso);
}

.header:not(.scrolled) .logo-text {
  color: var(--color-foam);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
}

.nav-links a {
  font-size: 0.9rem;
  font-weight: 400;
  color: var(--color-dark-roast);
  transition: color var(--transition);
}

.header:not(.scrolled) .nav-links a:not(.btn-nav) {
  color: var(--color-latte);
}

.nav-links a:not(.btn-nav):hover {
  color: var(--color-caramel);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-espresso);
  transition: all var(--transition);
  transform-origin: center;
}

.nav-toggle.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.nav-overlay {
  position: fixed;
  inset: 0;
  z-index: 998;
  background: rgba(26, 18, 9, 0.45);
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--transition), visibility var(--transition);
}

.nav-overlay.is-visible {
  opacity: 1;
  visibility: visible;
}

body.nav-open {
  overflow: hidden;
}

.header:not(.scrolled) .nav-toggle span {
  background: var(--color-foam);
}

/* Hero */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: var(--space-2xl) 0 var(--space-xl);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(26, 18, 9, 0.85) 0%, rgba(44, 24, 16, 0.7) 50%, rgba(74, 44, 26, 0.6) 100%),
    url('https://images.unsplash.com/photo-1447933601403-0c6688de566e?w=1920&q=80') center/cover no-repeat;
  z-index: -1;
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(139, 90, 43, 0.2) 0%, transparent 60%);
}

.hero-content {
  position: relative;
  z-index: 1;
}

.hero-eyebrow {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-crema);
  margin-bottom: var(--space-md);
  opacity: 0;
  animation: fadeUp 0.8s ease forwards;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 8vw, 5.5rem);
  font-weight: 600;
  line-height: 1.05;
  color: var(--color-foam);
  margin-bottom: var(--space-md);
  opacity: 0;
  animation: fadeUp 0.8s ease 0.15s forwards;
}

.hero-title em {
  font-style: italic;
  color: var(--color-crema);
}

.hero-desc {
  font-size: 1.1rem;
  font-weight: 300;
  color: var(--color-latte);
  max-width: 520px;
  margin-bottom: var(--space-lg);
  opacity: 0;
  animation: fadeUp 0.8s ease 0.3s forwards;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
  margin-bottom: var(--space-xl);
  opacity: 0;
  animation: fadeUp 0.8s ease 0.45s forwards;
}

.hero-stats {
  display: flex;
  gap: var(--space-xl);
  padding-top: var(--space-lg);
  border-top: 1px solid rgba(245, 240, 232, 0.2);
  opacity: 0;
  animation: fadeUp 0.8s ease 0.6s forwards;
}

.stat {
  display: flex;
  flex-direction: column;
}

.stat-num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--color-crema);
  line-height: 1;
}

.stat-label {
  font-size: 0.8rem;
  color: var(--color-latte);
  margin-top: 0.25rem;
}

.hero-scroll {
  position: absolute;
  bottom: var(--space-lg);
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-xs);
  color: var(--color-latte);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0;
  animation: fadeUp 0.8s ease 0.9s forwards;
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--color-crema), transparent);
  animation: scrollPulse 2s ease infinite;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(0.6); }
  50% { opacity: 1; transform: scaleY(1); }
}

/* Sections */
.section {
  padding: var(--space-2xl) 0;
}

/* Hikaye */
.hikaye {
  background: var(--color-foam);
}

.hikaye-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: center;
}

.hikaye-image {
  max-width: 440px;
}

.hikaye-image .image-frame {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  max-height: 360px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.hikaye-text p {
  margin-bottom: var(--space-md);
  color: var(--color-medium-roast);
}

.hikaye-features {
  margin-top: var(--space-lg);
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.hikaye-features li {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-weight: 500;
  color: var(--color-espresso);
}

.feature-icon {
  color: var(--color-caramel);
  font-size: 0.6rem;
}

/* Ürünler */
.urun-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
}

.urun-card {
  position: relative;
  background: var(--color-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
}

.urun-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.urun-badge {
  position: absolute;
  top: var(--space-sm);
  left: var(--space-sm);
  z-index: 2;
  padding: 0.25rem 0.75rem;
  background: var(--color-caramel);
  color: var(--color-white);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border-radius: var(--radius-sm);
}

.urun-image,
.cart-item-image,
.checkout-item-image,
.product-gallery-image {
  background-color: var(--color-latte);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.urun-image {
  height: 220px;
  overflow: hidden;
}

.urun-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.urun-image--1 { background-image: url('https://images.unsplash.com/photo-1447933601403-0c6688de566e?w=800&q=80'); }
.urun-image--2 { background-image: url('https://images.unsplash.com/photo-1511920170033-f8396924c348?w=800&q=80'); }
.urun-image--3 { background-image: url('https://images.unsplash.com/photo-1559827260-dc66d52bef19?w=800&q=80'); }
.urun-image--4 { background-image: url('https://images.unsplash.com/photo-1442512595331-e89e73853f31?w=800&q=80'); }
.urun-image--5 { background-image: url('https://images.unsplash.com/photo-1509042239860-f550ce710b93?w=800&q=80'); }
.urun-image--6 { background-image: url('https://images.unsplash.com/photo-1461023058943-07fcbe16d735?w=800&q=80'); }

.urun-body {
  padding: var(--space-md);
}

.urun-origin {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--color-caramel);
}

.urun-name {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--color-espresso);
  margin: 0.25rem 0 var(--space-xs);
}

.urun-desc {
  font-size: 0.9rem;
  color: var(--color-medium-roast);
  margin-bottom: var(--space-sm);
}

.urun-meta {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  margin-bottom: var(--space-md);
}

.urun-roast {
  font-size: 0.7rem;
  font-weight: 500;
  padding: 0.2rem 0.6rem;
  border-radius: 20px;
}

.roast-light { background: #e8f5e0; color: #3d6b2e; }
.roast-medium { background: #f5ebe0; color: #8b5a2b; }
.roast-medium-dark { background: #ede0d4; color: #5c3d2e; }
.roast-dark { background: #d4c4b8; color: #2c1810; }

.urun-weight {
  font-size: 0.8rem;
  color: var(--color-crema);
}

.urun-card-link {
  display: block;
  color: inherit;
}

.urun-card-link:hover .urun-name {
  color: var(--color-caramel);
}

.urun-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: var(--space-sm);
  border-top: 1px solid var(--color-latte);
}

.urun-footer--card {
  padding: 0 var(--space-md) var(--space-md);
  border-top: none;
}

.urun-footer--card .btn-full {
  width: 100%;
}

.urun-price {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-espresso);
}

/* Kavurma */
.kavurma {
  background: var(--color-espresso);
  color: var(--color-latte);
}

.kavurma .section-tag {
  color: var(--color-crema);
}

.kavurma .section-title {
  color: var(--color-foam);
}

.kavurma-steps {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
}

.step {
  flex: 1;
  max-width: 220px;
  text-align: center;
  padding: 0 var(--space-sm);
}

.step-num {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 700;
  color: var(--color-caramel);
  line-height: 1;
  margin-bottom: var(--space-sm);
  opacity: 0.6;
}

.step-title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--color-foam);
  margin-bottom: var(--space-xs);
}

.step p {
  font-size: 0.85rem;
  color: var(--color-latte);
  opacity: 0.8;
}

.step-connector {
  width: 60px;
  height: 1px;
  background: linear-gradient(90deg, var(--color-caramel), var(--color-medium-roast));
  margin-top: 2rem;
  flex-shrink: 0;
}

/* Testimonial */
.testimonial {
  background: var(--color-latte);
  padding: var(--space-xl) 0;
}

.quote {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.quote p {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  font-style: italic;
  line-height: 1.5;
  color: var(--color-espresso);
  margin-bottom: var(--space-md);
}

.quote cite {
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-style: normal;
  color: var(--color-caramel);
  font-weight: 500;
}

/* İletişim */
.iletisim-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: start;
}

.iletisim-list {
  margin-top: var(--space-lg);
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.iletisim-list li {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
}

.iletisim-icon {
  font-size: 1.25rem;
  line-height: 1.4;
}

.iletisim-list strong {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--color-caramel);
  margin-bottom: 0.15rem;
}

.iletisim-list a {
  color: var(--color-espresso);
  transition: color var(--transition);
}

.iletisim-list a:hover {
  color: var(--color-caramel);
}

.social-links {
  display: flex;
  gap: var(--space-md);
  margin-top: var(--space-lg);
}

.social-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--color-medium-roast);
  transition: color var(--transition);
}

.social-links a:hover {
  color: var(--color-caramel);
}

/* Form */
.iletisim-form {
  background: var(--color-foam);
  padding: var(--space-lg);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

.form-group {
  margin-bottom: var(--space-md);
}

.form-group label {
  display: block;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--color-medium-roast);
  margin-bottom: 0.4rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--color-espresso);
  background: var(--color-white);
  border: 1px solid var(--color-latte);
  border-radius: var(--radius-sm);
  transition: border-color var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--color-caramel);
}

.form-group textarea {
  resize: vertical;
  min-height: 100px;
}

.form-note {
  margin-top: var(--space-sm);
  font-size: 0.85rem;
  text-align: center;
  min-height: 1.25rem;
}

.form-note.success {
  color: #2d6a3e;
}

.form-note.error {
  color: #8b2e2e;
}

/* Footer */
.footer {
  background: var(--color-espresso);
  padding: var(--space-xl) 0;
  text-align: center;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-sm);
}

.logo--footer .logo-mark {
  background: var(--color-caramel);
}

.logo--footer .logo-text {
  color: var(--color-foam);
}

.footer-tagline {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.1rem;
  color: var(--color-crema);
}

.footer-copy {
  font-size: 0.8rem;
  color: var(--color-latte);
  opacity: 0.6;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-xl);
  margin: var(--space-md) 0;
  text-align: left;
}

.footer-nav-col {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  min-width: 140px;
}

.footer-nav-col strong {
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-crema);
  margin-bottom: 0.25rem;
}

.footer-nav-col a {
  font-size: 0.85rem;
  color: var(--color-latte);
  opacity: 0.85;
  transition: color var(--transition);
}

.footer-nav-col a:hover {
  color: var(--color-caramel);
  opacity: 1;
}

/* SEO content block */
.seo-content {
  background: var(--color-foam);
}

.seo-content-grid {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: var(--space-xl);
  align-items: start;
}

.seo-content-main .lead {
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: var(--space-md);
}

.seo-content-main p {
  color: var(--color-medium-roast);
  line-height: 1.75;
  margin-bottom: var(--space-sm);
}

.seo-content-main a {
  color: var(--color-caramel);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.seo-content-aside {
  background: var(--color-white);
  border: 1px solid var(--color-latte);
  border-radius: var(--radius-md);
  padding: var(--space-lg);
}

.seo-aside-title {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-espresso);
  margin-bottom: var(--space-sm);
}

.seo-aside-title:not(:first-child) {
  margin-top: var(--space-md);
}

.seo-aside-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.seo-aside-links li {
  margin-bottom: 0.35rem;
}

.seo-aside-links a {
  font-size: 0.875rem;
  color: var(--color-medium-roast);
  transition: color var(--transition);
}

.seo-aside-links a:hover {
  color: var(--color-caramel);
}

.seo-content-aside .btn {
  margin-top: var(--space-md);
}

.product-seo p {
  color: var(--color-medium-roast);
  line-height: 1.75;
}

.product-seo a {
  color: var(--color-caramel);
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.hidden {
  display: none !important;
}

/* Cart button */
.cart-btn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--color-dark-roast);
  transition: color var(--transition);
}

.header:not(.scrolled) .cart-btn {
  color: var(--color-foam);
}

.cart-btn svg {
  width: 22px;
  height: 22px;
}

.cart-btn:hover {
  color: var(--color-caramel);
}

.cart-count {
  position: absolute;
  top: 4px;
  right: 4px;
  min-width: 18px;
  height: 18px;
  padding: 0 5px;
  background: var(--color-caramel);
  color: var(--color-white);
  font-size: 0.65rem;
  font-weight: 600;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Cart drawer */
.cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(26, 18, 9, 0.5);
  z-index: 1100;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition);
}

.cart-overlay.open {
  opacity: 1;
  visibility: visible;
}

.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  max-width: 420px;
  height: 100vh;
  background: var(--color-white);
  z-index: 1200;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform var(--transition);
  box-shadow: var(--shadow-lg);
}

.cart-drawer.open {
  transform: translateX(0);
}

.cart-drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-md) var(--space-md) var(--space-sm);
  border-bottom: 1px solid var(--color-latte);
}

.cart-drawer-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--color-espresso);
}

.cart-close {
  width: 36px;
  height: 36px;
  background: none;
  border: none;
  font-size: 1.75rem;
  line-height: 1;
  color: var(--color-medium-roast);
  cursor: pointer;
  transition: color var(--transition);
}

.cart-close:hover {
  color: var(--color-espresso);
}

.cart-drawer-body {
  flex: 1;
  overflow-y: auto;
  padding: var(--space-md);
}

.cart-empty {
  text-align: center;
  padding: var(--space-xl) var(--space-md);
  color: var(--color-medium-roast);
}

.cart-empty p {
  margin-bottom: var(--space-md);
}

.cart-items {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.cart-item {
  display: grid;
  grid-template-columns: 64px 1fr auto;
  gap: var(--space-sm);
  align-items: start;
  padding-bottom: var(--space-md);
  border-bottom: 1px solid var(--color-latte);
}

.cart-item-image {
  width: 64px;
  height: 64px;
  border-radius: var(--radius-sm);
  background-size: cover;
  background-position: center;
}

.cart-item-name {
  display: block;
  font-weight: 500;
  color: var(--color-espresso);
  font-size: 0.95rem;
}

.cart-item-weight {
  font-size: 0.75rem;
  color: var(--color-crema);
}

.cart-item-actions {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  margin-top: 0.5rem;
}

.qty-control {
  display: flex;
  align-items: center;
  border: 1px solid var(--color-latte);
  border-radius: var(--radius-sm);
}

.qty-btn {
  width: 28px;
  height: 28px;
  background: none;
  border: none;
  font-size: 1rem;
  color: var(--color-espresso);
  cursor: pointer;
  transition: background var(--transition);
}

.qty-btn:hover {
  background: var(--color-foam);
}

.qty-value {
  min-width: 28px;
  text-align: center;
  font-size: 0.85rem;
  font-weight: 500;
}

.cart-item-remove {
  background: none;
  border: none;
  font-size: 0.75rem;
  color: var(--color-caramel);
  cursor: pointer;
  text-decoration: underline;
}

.cart-item-price {
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--color-espresso);
  white-space: nowrap;
}

.cart-drawer-footer {
  padding: var(--space-md);
  border-top: 1px solid var(--color-latte);
  background: var(--color-foam);
}

.cart-totals {
  margin-bottom: var(--space-md);
}

.cart-total-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.9rem;
  color: var(--color-medium-roast);
  margin-bottom: 0.35rem;
}

.cart-total-row--grand {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--color-espresso);
  padding-top: var(--space-xs);
  margin-top: var(--space-xs);
  border-top: 1px solid var(--color-latte);
}

/* Toast */
.toast {
  position: fixed;
  bottom: var(--space-lg);
  left: 50%;
  transform: translateX(-50%) translateY(100px);
  background: var(--color-espresso);
  color: var(--color-foam);
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-md);
  font-size: 0.9rem;
  z-index: 1300;
  opacity: 0;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: var(--shadow-md);
}

.toast.show {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
}

/* Checkout page */
.checkout-page .header {
  background: rgba(250, 248, 245, 0.95);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow-sm);
}

.checkout-back {
  color: var(--color-espresso) !important;
  border-color: var(--color-latte) !important;
  padding: 0.5rem 1rem;
  font-size: 0.85rem;
}

.checkout-back:hover {
  border-color: var(--color-caramel) !important;
  background: var(--color-foam);
}

.checkout-main {
  padding: calc(80px + var(--space-lg)) 0 var(--space-2xl);
  min-height: 80vh;
}

.checkout-header {
  margin-bottom: var(--space-xl);
}

.checkout-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: var(--space-xl);
  align-items: start;
}

.checkout-form {
  background: var(--color-foam);
  padding: var(--space-lg);
  border-radius: var(--radius-lg);
}

.form-section {
  border: none;
  margin: 0 0 var(--space-lg);
  padding: 0;
}

.form-section legend {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--color-espresso);
  margin-bottom: var(--space-md);
  padding: 0;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: var(--space-md);
}

.payment-options {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.payment-option {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
  padding: var(--space-md);
  background: var(--color-white);
  border: 2px solid var(--color-latte);
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: border-color var(--transition);
}

.payment-option:has(input:checked) {
  border-color: var(--color-caramel);
  background: rgba(139, 90, 43, 0.04);
}

.payment-option input {
  margin-top: 3px;
  accent-color: var(--color-caramel);
}

.payment-option-content {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.payment-option-content strong {
  color: var(--color-espresso);
}

.payment-option-content small {
  color: var(--color-medium-roast);
  font-size: 0.8rem;
}

.btn-lg {
  padding: 1rem 2rem;
  font-size: 1rem;
}

.checkout-summary {
  position: sticky;
  top: 100px;
  background: var(--color-white);
  border: 1px solid var(--color-latte);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
}

.checkout-summary-title {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--color-espresso);
  margin-bottom: var(--space-md);
  padding-bottom: var(--space-sm);
  border-bottom: 1px solid var(--color-latte);
}

.checkout-item {
  display: grid;
  grid-template-columns: 56px 1fr auto;
  gap: var(--space-sm);
  align-items: center;
  padding: var(--space-sm) 0;
  border-bottom: 1px solid var(--color-latte);
}

.checkout-item-image {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-sm);
  background-size: cover;
  background-position: center;
}

.checkout-item-name {
  display: block;
  font-weight: 500;
  font-size: 0.9rem;
  color: var(--color-espresso);
}

.checkout-item-meta {
  font-size: 0.75rem;
  color: var(--color-crema);
}

.checkout-item-price {
  font-weight: 600;
  color: var(--color-espresso);
  white-space: nowrap;
}

.checkout-totals {
  margin-top: var(--space-md);
}

.checkout-total-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.9rem;
  color: var(--color-medium-roast);
  margin-bottom: 0.35rem;
}

.checkout-total-row--grand {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--color-espresso);
  padding-top: var(--space-sm);
  margin-top: var(--space-sm);
  border-top: 2px solid var(--color-latte);
}

.checkout-shipping-note {
  margin-top: var(--space-sm);
  font-size: 0.8rem;
  color: var(--color-caramel);
  text-align: center;
}

.checkout-empty,
.checkout-success {
  text-align: center;
  padding: var(--space-2xl) var(--space-md);
  max-width: 480px;
  margin: 0 auto;
}

.checkout-empty-icon {
  font-size: 3rem;
  margin-bottom: var(--space-md);
}

.checkout-empty h2,
.checkout-success h2 {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--color-espresso);
  margin-bottom: var(--space-sm);
}

.checkout-empty p,
.checkout-success p {
  color: var(--color-medium-roast);
  margin-bottom: var(--space-lg);
}

.success-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto var(--space-md);
  background: #2d6a3e;
  color: white;
  font-size: 2rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.success-order-id {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--color-caramel);
  font-weight: 600;
}

.footer--minimal {
  padding: var(--space-md) 0;
}

/* Product detail page */
.product-page .header {
  background: rgba(250, 248, 245, 0.95);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow-sm);
}

.product-main {
  padding: calc(80px + var(--space-md)) 0 var(--space-2xl);
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: var(--color-crema);
  margin-bottom: var(--space-lg);
}

.breadcrumb a {
  color: var(--color-medium-roast);
  transition: color var(--transition);
}

.breadcrumb a:hover {
  color: var(--color-caramel);
}

.breadcrumb span:last-child {
  color: var(--color-espresso);
  font-weight: 500;
}

.product-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  margin-bottom: var(--space-2xl);
}

.product-gallery {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.product-gallery-image {
  display: block;
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}

.product-badge {
  position: absolute;
  top: var(--space-sm);
  left: var(--space-sm);
  padding: 0.35rem 0.85rem;
  background: var(--color-caramel);
  color: var(--color-white);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border-radius: var(--radius-sm);
}

.product-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 600;
  color: var(--color-espresso);
  line-height: 1.15;
  margin: 0.35rem 0 var(--space-sm);
}

.product-short-desc {
  font-size: 1.05rem;
  color: var(--color-medium-roast);
  margin-bottom: var(--space-md);
}

.product-tags {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  margin-bottom: var(--space-md);
}

.product-price-row {
  margin-bottom: var(--space-lg);
  padding-bottom: var(--space-md);
  border-bottom: 1px solid var(--color-latte);
}

.product-price {
  font-family: var(--font-display);
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--color-espresso);
  display: block;
}

.product-price-note {
  font-size: 0.8rem;
  color: var(--color-crema);
}

.product-qty-row {
  margin-bottom: var(--space-md);
}

.product-qty-row label {
  display: block;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--color-medium-roast);
  margin-bottom: 0.5rem;
}

.qty-control--lg {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--color-latte);
  border-radius: var(--radius-sm);
}

.qty-control--lg .qty-btn {
  width: 40px;
  height: 40px;
  font-size: 1.1rem;
}

.qty-control--lg input {
  width: 48px;
  height: 40px;
  border: none;
  text-align: center;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 500;
  color: var(--color-espresso);
  background: transparent;
}

.product-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
  margin-bottom: var(--space-lg);
}

.btn-outline-dark {
  background: transparent;
  color: var(--color-espresso);
  border: 2px solid var(--color-latte);
}

.btn-outline-dark:hover {
  border-color: var(--color-espresso);
  background: var(--color-foam);
}

.product-highlights {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.product-highlights li {
  font-size: 0.9rem;
  color: var(--color-medium-roast);
  padding-left: 1.25rem;
  position: relative;
}

.product-highlights li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--color-caramel);
  font-weight: 600;
}

.product-extra {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-lg);
}

.product-panel {
  background: var(--color-foam);
  padding: var(--space-lg);
  border-radius: var(--radius-lg);
}

.product-panel h2 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--color-espresso);
  margin-bottom: var(--space-md);
}

.product-panel p {
  color: var(--color-medium-roast);
  line-height: 1.7;
}

.flavor-notes,
.brew-methods {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.flavor-note,
.brew-method {
  padding: 0.4rem 0.85rem;
  background: var(--color-white);
  border: 1px solid var(--color-latte);
  border-radius: 20px;
  font-size: 0.85rem;
  color: var(--color-espresso);
}

.product-specs {
  display: grid;
  gap: 0.75rem;
}

.product-specs div {
  display: flex;
  justify-content: space-between;
  gap: var(--space-sm);
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--color-latte);
}

.product-specs div:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.product-specs dt {
  font-size: 0.85rem;
  color: var(--color-crema);
}

.product-specs dd {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--color-espresso);
  text-align: right;
}

.product-related {
  padding-top: var(--space-xl);
  border-top: 1px solid var(--color-latte);
}

.product-related-title {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 600;
  color: var(--color-espresso);
  margin-bottom: var(--space-lg);
  text-align: center;
}

.urun-grid--related {
  grid-template-columns: repeat(3, 1fr);
}

.product-not-found {
  text-align: center;
  padding: var(--space-2xl) 0;
}

.product-not-found h1 {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--color-espresso);
  margin-bottom: var(--space-sm);
}

.product-not-found p {
  color: var(--color-medium-roast);
  margin-bottom: var(--space-lg);
}

/* Blog */
.blog-page .header,
.article-page .header {
  background: rgba(250, 248, 245, 0.95);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow-sm);
}

.blog-main,
.article-main {
  padding: calc(80px + var(--space-lg)) 0 var(--space-2xl);
}

.blog-header {
  text-align: center;
  margin-bottom: var(--space-xl);
}

.blog-header .section-desc {
  margin-left: auto;
  margin-right: auto;
}

.blog-grid {
  display: grid;
  gap: var(--space-lg);
}

.blog-grid--home {
  grid-template-columns: repeat(3, 1fr);
}

.blog-grid-rest {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-lg);
}

.blog-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
}

.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.blog-card-link {
  display: block;
  color: inherit;
}

.blog-card-image {
  aspect-ratio: 16/10;
  overflow: hidden;
}

.blog-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform var(--transition);
}

.blog-card:hover .blog-card-image img {
  transform: scale(1.04);
}

.blog-card-body {
  padding: var(--space-md);
}

.blog-card-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem 1rem;
  font-size: 0.75rem;
  color: var(--color-crema);
  margin-bottom: var(--space-sm);
}

.blog-card-category {
  padding: 0.2rem 0.6rem;
  background: var(--color-foam);
  color: var(--color-caramel);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-radius: var(--radius-sm);
}

.blog-card-title {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  line-height: 1.3;
  color: var(--color-espresso);
  margin-bottom: var(--space-xs);
}

.blog-card--featured .blog-card-title {
  font-size: 1.75rem;
}

.blog-card-excerpt {
  font-size: 0.9rem;
  color: var(--color-medium-roast);
  margin-bottom: var(--space-sm);
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.blog-card-cta {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--color-caramel);
}

.blog-card--featured {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
}

.blog-card--featured .blog-card-image {
  aspect-ratio: auto;
  min-height: 280px;
}

.blog-preview {
  background: var(--color-foam);
}

.blog-preview-action {
  text-align: center;
  margin-top: var(--space-xl);
}

/* Article */
.article-content {
  max-width: 760px;
}

.article-header {
  margin-bottom: var(--space-lg);
}

.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.25rem;
  font-size: 0.85rem;
  color: var(--color-crema);
  margin-bottom: var(--space-md);
}

.article-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 2.75rem);
  font-weight: 600;
  line-height: 1.15;
  color: var(--color-espresso);
  margin-bottom: var(--space-sm);
}

.article-excerpt {
  font-size: 1.15rem;
  color: var(--color-medium-roast);
  line-height: 1.6;
}

.article-hero {
  margin-bottom: var(--space-xl);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.article-hero img {
  width: 100%;
  display: block;
  aspect-ratio: 16/9;
  object-fit: cover;
}

.article-body {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--color-medium-roast);
}

.article-body h2 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--color-espresso);
  margin: var(--space-lg) 0 var(--space-sm);
}

.article-body p {
  margin-bottom: var(--space-md);
}

.article-body ul {
  margin: 0 0 var(--space-md) 1.25rem;
  list-style: disc;
}

.article-body li {
  margin-bottom: 0.4rem;
}

.article-body a {
  color: var(--color-caramel);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.article-body a:hover {
  color: var(--color-espresso);
}

.article-body strong {
  color: var(--color-espresso);
  font-weight: 600;
}

.article-footer {
  margin-top: var(--space-xl);
  padding-top: var(--space-lg);
  border-top: 1px solid var(--color-latte);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
}

.article-footer p {
  color: var(--color-medium-roast);
}

.article-related {
  padding: var(--space-xl) 0 var(--space-2xl);
  background: var(--color-foam);
}

.article-related-title {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 600;
  color: var(--color-espresso);
  margin-bottom: var(--space-lg);
  text-align: center;
}

.blog-grid--compact {
  grid-template-columns: repeat(3, 1fr);
}

.blog-card--compact .blog-card-body {
  padding: var(--space-sm) var(--space-md) var(--space-md);
}

.blog-card--compact .blog-card-title {
  font-size: 1.1rem;
}

.article-not-found {
  text-align: center;
  padding: var(--space-2xl) 0;
}

.article-not-found h1 {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--color-espresso);
  margin-bottom: var(--space-sm);
}

.article-not-found p {
  color: var(--color-medium-roast);
  margin-bottom: var(--space-lg);
}

/* FAQ */
.faq {
  background: var(--color-white);
}

.faq-list {
  max-width: 760px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--color-latte);
  padding: var(--space-md) 0;
}

.faq-item summary {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--color-espresso);
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-sm);
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: '+';
  font-family: var(--font-body);
  font-size: 1.25rem;
  color: var(--color-caramel);
  flex-shrink: 0;
}

.faq-item[open] summary::after {
  content: '−';
}

.faq-item p {
  margin-top: var(--space-sm);
  color: var(--color-medium-roast);
  line-height: 1.7;
  padding-right: var(--space-lg);
}

.faq-item a {
  color: var(--color-caramel);
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* WhatsApp float */
.whatsapp-float {
  position: fixed;
  right: var(--space-md);
  bottom: var(--space-md);
  z-index: 1050;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.85rem 1.1rem;
  background: #25d366;
  color: #fff;
  border-radius: 999px;
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.45);
  transition: transform var(--transition), box-shadow var(--transition);
}

.whatsapp-float:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 10px 32px rgba(37, 211, 102, 0.55);
  color: #fff;
}

.whatsapp-float svg {
  width: 26px;
  height: 26px;
  flex-shrink: 0;
}

.whatsapp-float-label {
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

/* Responsive */
@media (max-width: 1024px) {
  .urun-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .kavurma-steps {
    flex-wrap: wrap;
    gap: var(--space-lg);
  }

  .step-connector {
    display: none;
  }

  .step {
    max-width: none;
    flex: 0 0 calc(50% - var(--space-md));
  }
}

@media (max-width: 768px) {
  .nav-toggle {
    display: flex;
    position: relative;
    z-index: 1001;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    flex-direction: column;
    align-items: flex-start;
    padding: 5rem var(--space-lg) var(--space-lg);
    background: var(--color-white);
    box-shadow: var(--shadow-lg);
    transition: right var(--transition);
    gap: var(--space-md);
    z-index: 999;
  }

  .nav-links.open {
    right: 0;
  }

  .nav-links a {
    color: var(--color-dark-roast) !important;
    font-size: 1.1rem;
  }

  .hikaye-grid,
  .iletisim-grid {
    grid-template-columns: 1fr;
  }

  .hikaye-image {
    order: -1;
    max-width: 100%;
    margin: 0 auto;
  }

  .urun-grid {
    grid-template-columns: 1fr;
  }

  .hero-stats {
    gap: var(--space-lg);
  }

  .hero-scroll {
    display: none;
  }

  .step {
    flex: 0 0 100%;
  }

  .checkout-grid {
    grid-template-columns: 1fr;
  }

  .checkout-summary {
    position: static;
    order: -1;
  }

  .product-detail {
    grid-template-columns: 1fr;
  }

  .product-extra {
    grid-template-columns: 1fr;
  }

  .urun-grid--related {
    grid-template-columns: 1fr;
  }

  .blog-grid--home,
  .blog-grid-rest,
  .blog-grid--compact {
    grid-template-columns: 1fr;
  }

  .blog-card--featured {
    grid-template-columns: 1fr;
  }

  .seo-content-grid {
    grid-template-columns: 1fr;
  }

  .footer-nav {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .hero-actions {
    flex-direction: column;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .hero-stats {
    flex-direction: column;
    gap: var(--space-md);
  }

  .whatsapp-float {
    right: var(--space-sm);
    bottom: var(--space-sm);
    padding: 0.85rem;
    border-radius: 50%;
  }

  .whatsapp-float-label {
    display: none;
  }
}
