@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&family=Inter:wght@300;400;500;600&display=swap');

:root {
  --brown-dark: #3B2314;
  --brown: #5C3A21;
  --brown-medium: #8B6344;
  --brown-light: #C4A882;
  --cream: #F5EDE0;
  --cream-light: #FAF6F0;
  --white: #FFFDF9;
  --terracotta: #C4553A;
  --terracotta-dark: #A8412B;
  --green-dark: #2D5A3D;
  --text-dark: #2C1810;
  --text-body: #5A4636;
  --text-light: #8B7A6B;
  --shadow-sm: 0 2px 8px rgba(59,35,20,0.08);
  --shadow-md: 0 4px 20px rgba(59,35,20,0.12);
  --shadow-lg: 0 8px 40px rgba(59,35,20,0.16);
  --radius: 12px;
  --radius-lg: 20px;
  --transition: 0.3s cubic-bezier(0.4,0,0.2,1);
}

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

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

body {
  font-family: 'Inter', sans-serif;
  color: var(--text-body);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
}

h1,h2,h3,h4,h5 {
  font-family: 'Playfair Display', serif;
  color: var(--text-dark);
  line-height: 1.3;
}

a { text-decoration: none; color: inherit; transition: var(--transition); }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

/* ===== HEADER ===== */
.header {
  position: fixed; top: 0; left: 0; width: 100%; z-index: 1000;
  background: rgba(255,253,249,0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(196,168,130,0.15);
  transition: var(--transition);
}
.header.scrolled {
  background: rgba(255,253,249,0.95);
  box-shadow: var(--shadow-sm);
}
.header .container {
  display: flex; align-items: center; justify-content: space-between;
  height: 72px;
}
.logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem; font-weight: 700;
  color: var(--brown-dark);
  display: flex; align-items: center; gap: 8px;
}
.logo span { color: var(--terracotta); }
.logo svg { width: 32px; height: 32px; }

.nav-list {
  display: flex; gap: 32px; align-items: center;
}
.nav-list a {
  font-size: 0.9rem; font-weight: 500; color: var(--text-body);
  position: relative; padding: 4px 0;
}
.nav-list a::after {
  content: ''; position: absolute; bottom: -2px; left: 0;
  width: 0; height: 2px; background: var(--terracotta);
  transition: var(--transition);
}
.nav-list a:hover, .nav-list a.active { color: var(--terracotta); }
.nav-list a:hover::after, .nav-list a.active::after { width: 100%; }

.nav-order {
  background: var(--terracotta); color: var(--white) !important;
  padding: 10px 24px !important; border-radius: 50px;
  font-weight: 600 !important;
}
.nav-order::after { display: none !important; }
.nav-order:hover { background: var(--terracotta-dark); transform: translateY(-2px); }

.burger {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; padding: 4px; background: none; border: none;
}
.burger span {
  width: 24px; height: 2px; background: var(--brown-dark);
  transition: var(--transition);
}
.burger.active span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.burger.active span:nth-child(2) { opacity: 0; }
.burger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

/* ===== HERO ===== */
.hero {
  min-height: 100vh; display: flex; align-items: center;
  position: relative; overflow: hidden;
  background: linear-gradient(135deg, var(--cream) 0%, var(--cream-light) 100%);
  padding-top: 72px;
}
.hero .container {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 60px; align-items: center; position: relative; z-index: 2;
}
.hero-content { padding: 40px 0; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(196,85,58,0.1); color: var(--terracotta);
  padding: 8px 16px; border-radius: 50px;
  font-size: 0.85rem; font-weight: 600; margin-bottom: 24px;
}
.hero h1 { font-size: 3.5rem; margin-bottom: 20px; }
.hero h1 .accent { color: var(--terracotta); font-style: italic; }
.hero-text {
  font-size: 1.1rem; color: var(--text-light);
  margin-bottom: 36px; max-width: 480px;
}
.hero-buttons { display: flex; gap: 16px; flex-wrap: wrap; }
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 32px; border-radius: 50px;
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem; font-weight: 600;
  cursor: pointer; transition: var(--transition); border: none;
}
.btn-primary {
  background: var(--terracotta); color: white;
  box-shadow: 0 4px 16px rgba(196,85,58,0.3);
}
.btn-primary:hover { background: var(--terracotta-dark); transform: translateY(-3px); box-shadow: 0 6px 24px rgba(196,85,58,0.4); }
.btn-outline {
  background: transparent; color: var(--brown-dark);
  border: 2px solid var(--brown-light);
}
.btn-outline:hover { border-color: var(--brown-dark); background: var(--brown-dark); color: white; }

.hero-image {
  position: relative; display: flex; justify-content: center; align-items: center;
}
.hero-image img {
  width: 100%; max-width: 520px; border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  animation: float 6s ease-in-out infinite;
}
@keyframes float {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-16px); }
}
.hero-decor {
  position: absolute; width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(196,85,58,0.08) 0%, transparent 70%);
  border-radius: 50%; z-index: -1;
}
.hero-decor-1 { top: -50px; right: -50px; }
.hero-decor-2 { bottom: -30px; left: -60px; width: 200px; height: 200px; }

/* ===== HERO VIDEO MODIFIERS ===== */
.hero.hero-video {
  background: none;
  padding-top: 0;
  justify-content: center;
}
.hero.hero-video .container {
  grid-template-columns: 1fr;
  text-align: center;
  max-width: 800px;
  padding-top: 100px;
}
.hero.hero-video .hero-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 0 auto;
}
.hero-bg-video {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  object-fit: cover; z-index: 0;
}
.hero-overlay {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background: rgba(44, 24, 16, 0.6); /* Темне накладення для читабельності */
  z-index: 1;
}
.hero.hero-video h1 {
  color: var(--white);
}
.hero.hero-video .hero-text {
  color: var(--cream-light);
}
.hero.hero-video .hero-badge {
  background: rgba(255, 255, 255, 0.15);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.3);
}
.btn-outline-light {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
}
.btn-outline-light:hover {
  background: var(--white);
  color: var(--brown-dark);
}

/* ===== SECTIONS ===== */
.section { padding: 100px 0; }
.section-header {
  text-align: center; margin-bottom: 60px;
}
.section-header h2 { font-size: 2.5rem; margin-bottom: 16px; }
.section-header p { color: var(--text-light); max-width: 560px; margin: 0 auto; font-size: 1.05rem; }
.section-label {
  display: inline-block; color: var(--terracotta); font-weight: 600;
  font-size: 0.85rem; text-transform: uppercase; letter-spacing: 2px;
  margin-bottom: 12px;
}
.section-alt { background: var(--cream-light); }

/* ===== POPULAR DRINKS ===== */
.drinks-grid {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 30px;
}
.drink-card {
  background: var(--white); border-radius: var(--radius-lg);
  overflow: hidden; box-shadow: var(--shadow-sm);
  transition: var(--transition); cursor: pointer;
}
.drink-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.drink-card-image {
  height: 240px; overflow: hidden; position: relative;
}
.drink-card-image img { width: 100%; height: 100%; object-fit: cover; transition: var(--transition); }
.drink-card:hover .drink-card-image img { transform: scale(1.08); }
.drink-card-body { padding: 24px; }
.drink-card-body h3 { font-size: 1.3rem; margin-bottom: 8px; }
.drink-card-body p { color: var(--text-light); font-size: 0.9rem; margin-bottom: 16px; }
.drink-price {
  font-size: 1.2rem; font-weight: 700; color: var(--terracotta);
  font-family: 'Playfair Display', serif;
}

/* ===== ABOUT PREVIEW ===== */
.about-preview {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 60px; align-items: center;
}
.about-preview-image { position: relative; }
.about-preview-image img { border-radius: var(--radius-lg); box-shadow: var(--shadow-md); }
.about-preview-image::before {
  content: ''; position: absolute; top: -20px; left: -20px;
  width: 100%; height: 100%; border: 3px solid var(--brown-light);
  border-radius: var(--radius-lg); z-index: -1;
}
.about-preview-content h2 { font-size: 2.2rem; margin-bottom: 20px; }
.about-preview-content p { margin-bottom: 16px; }
.about-stats {
  display: flex; gap: 40px; margin: 30px 0;
}
.stat { text-align: center; }
.stat-number {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem; font-weight: 700; color: var(--terracotta);
}
.stat-label { font-size: 0.85rem; color: var(--text-light); }

/* ===== REVIEWS ===== */
.reviews-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 30px; }
.review-card {
  background: var(--white); padding: 32px; border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm); transition: var(--transition); position: relative;
}
.review-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.review-stars { color: #F0A500; margin-bottom: 16px; font-size: 1.1rem; }
.review-text { font-style: italic; margin-bottom: 20px; line-height: 1.8; }
.review-author { display: flex; align-items: center; gap: 12px; }
.review-avatar {
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--brown-light); display: flex;
  align-items: center; justify-content: center;
  color: white; font-weight: 700; font-size: 1.1rem;
}
.review-name { font-weight: 600; color: var(--text-dark); }
.review-date { font-size: 0.8rem; color: var(--text-light); }
.review-quote {
  position: absolute; top: 16px; right: 24px;
  font-size: 4rem; color: var(--cream); font-family: serif; line-height: 1;
}

/* ===== CTA ===== */
.cta-section {
  background: linear-gradient(135deg, var(--brown-dark) 0%, var(--brown) 100%);
  padding: 80px 0; text-align: center; position: relative; overflow: hidden;
}
.cta-section h2 { color: var(--cream); font-size: 2.5rem; margin-bottom: 16px; }
.cta-section p { color: var(--brown-light); font-size: 1.1rem; margin-bottom: 32px; max-width: 500px; margin-left: auto; margin-right: auto; }
.cta-section .btn-primary { font-size: 1.05rem; padding: 16px 40px; }

/* ===== MENU PAGE ===== */
.page-hero {
  padding: 140px 0 80px; text-align: center;
  background: linear-gradient(135deg, var(--cream) 0%, var(--cream-light) 100%);
}
.page-hero h1 { font-size: 3rem; margin-bottom: 12px; }
.page-hero p { color: var(--text-light); font-size: 1.1rem; }

.menu-tabs {
  display: flex; justify-content: center; gap: 12px;
  margin-bottom: 50px; flex-wrap: wrap;
}
.menu-tab {
  padding: 12px 28px; border-radius: 50px; border: 2px solid var(--brown-light);
  background: transparent; cursor: pointer; font-family: 'Inter', sans-serif;
  font-size: 0.95rem; font-weight: 500; color: var(--text-body);
  transition: var(--transition);
}
.menu-tab:hover, .menu-tab.active {
  background: var(--brown-dark); color: white; border-color: var(--brown-dark);
}

.menu-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 28px;
}
.menu-card {
  background: var(--white); border-radius: var(--radius-lg);
  overflow: hidden; box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.menu-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.menu-card-image { height: 200px; overflow: hidden; }
.menu-card-image img { width: 100%; height: 100%; object-fit: cover; transition: var(--transition); }
.menu-card:hover .menu-card-image img { transform: scale(1.05); }
.menu-card-body { padding: 20px; }
.menu-card-body h3 { font-size: 1.15rem; margin-bottom: 6px; }
.menu-card-body p { font-size: 0.85rem; color: var(--text-light); margin-bottom: 12px; }
.menu-card-footer { display: flex; justify-content: space-between; align-items: center; }
.menu-card-price { font-weight: 700; color: var(--terracotta); font-size: 1.1rem; }
.menu-card-btn {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--terracotta); color: white; border: none;
  cursor: pointer; display: flex; align-items: center; justify-content: center;
  transition: var(--transition); font-size: 1.2rem;
}
.menu-card-btn:hover { background: var(--terracotta-dark); transform: scale(1.1); }

/* ===== ABOUT PAGE ===== */
.about-story {
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center;
}
.about-story img { border-radius: var(--radius-lg); box-shadow: var(--shadow-md); }
.about-story h2 { font-size: 2rem; margin-bottom: 20px; }
.about-story p { margin-bottom: 16px; }

.values-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 30px; }
.value-card {
  text-align: center; padding: 40px 24px;
  background: var(--white); border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm); transition: var(--transition);
}
.value-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.value-icon {
  width: 64px; height: 64px; margin: 0 auto 20px;
  background: rgba(196,85,58,0.1); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.8rem;
}
.value-card h3 { margin-bottom: 12px; font-size: 1.2rem; }
.value-card p { font-size: 0.9rem; color: var(--text-light); }

/* ===== CONTACT PAGE ===== */
.contact-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 50px;
}
.contact-form { background: var(--white); padding: 40px; border-radius: var(--radius-lg); box-shadow: var(--shadow-sm); }
.contact-form h3 { font-size: 1.5rem; margin-bottom: 24px; }
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block; font-size: 0.9rem; font-weight: 500;
  margin-bottom: 8px; color: var(--text-dark);
}
.form-group input, .form-group textarea, .form-group select {
  width: 100%; padding: 14px 18px; border: 2px solid rgba(196,168,130,0.3);
  border-radius: var(--radius); font-family: 'Inter', sans-serif;
  font-size: 0.95rem; color: var(--text-body);
  background: var(--cream-light); transition: var(--transition);
}
.form-group input:focus, .form-group textarea:focus {
  outline: none; border-color: var(--terracotta);
  background: var(--white);
}
.form-group textarea { resize: vertical; min-height: 120px; }

.contact-info-card {
  background: var(--white); padding: 32px; border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm); margin-bottom: 24px;
}
.contact-info-card h3 { font-size: 1.3rem; margin-bottom: 20px; }
.info-item {
  display: flex; align-items: flex-start; gap: 16px; margin-bottom: 20px;
}
.info-icon {
  width: 44px; height: 44px; border-radius: 50%;
  background: rgba(196,85,58,0.1);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; flex-shrink: 0;
}
.info-item h4 { font-size: 0.95rem; margin-bottom: 4px; font-family: 'Inter', sans-serif; font-weight: 600; }
.info-item p { font-size: 0.9rem; color: var(--text-light); }

.map-container {
  border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-sm); height: 300px;
}
.map-container iframe { width: 100%; height: 100%; border: none; }

/* ===== BLOG ===== */
.blog-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 30px; }
.blog-card {
  background: var(--white); border-radius: var(--radius-lg);
  overflow: hidden; box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.blog-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.blog-card-image { height: 200px; overflow: hidden; }
.blog-card-image img { width: 100%; height: 100%; object-fit: cover; transition: var(--transition); }
.blog-card:hover .blog-card-image img { transform: scale(1.05); }
.blog-card-body { padding: 24px; }
.blog-tag {
  display: inline-block; background: rgba(196,85,58,0.1); color: var(--terracotta);
  padding: 4px 12px; border-radius: 50px; font-size: 0.75rem;
  font-weight: 600; margin-bottom: 12px;
}
.blog-card-body h3 { font-size: 1.15rem; margin-bottom: 10px; }
.blog-card-body p { font-size: 0.88rem; color: var(--text-light); margin-bottom: 16px; }
.blog-meta { display: flex; justify-content: space-between; font-size: 0.8rem; color: var(--text-light); }

/* ===== FOOTER ===== */
.footer {
  background: var(--brown-dark); color: var(--brown-light); padding: 60px 0 0;
}
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px; padding-bottom: 40px;
  border-bottom: 1px solid rgba(196,168,130,0.15);
}
.footer-brand p { margin: 16px 0 20px; font-size: 0.9rem; line-height: 1.8; }
.footer-social { display: flex; gap: 12px; }
.footer-social a {
  width: 40px; height: 40px; border-radius: 50%;
  background: rgba(196,168,130,0.1); display: flex;
  align-items: center; justify-content: center;
  color: var(--brown-light); font-size: 1rem;
  transition: var(--transition);
}
.footer-social a:hover { background: var(--terracotta); color: white; }
.footer h4 { color: var(--cream); font-size: 1rem; margin-bottom: 20px; font-family: 'Inter', sans-serif; }
.footer ul li { margin-bottom: 10px; }
.footer ul a { font-size: 0.9rem; }
.footer ul a:hover { color: var(--terracotta); }
.footer-bottom {
  padding: 24px 0; text-align: center;
  font-size: 0.85rem; color: var(--text-light);
}

/* ===== SCROLL TO TOP ===== */
.scroll-top {
  position: fixed; bottom: 30px; right: 30px;
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--terracotta); color: white;
  border: none; cursor: pointer; font-size: 1.2rem;
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-md); transition: var(--transition);
  opacity: 0; visibility: hidden; transform: translateY(20px);
  z-index: 999;
}
.scroll-top.visible { opacity: 1; visibility: visible; transform: translateY(0); }
.scroll-top:hover { background: var(--terracotta-dark); transform: translateY(-3px); }

/* ===== ANIMATIONS ===== */
.fade-in {
  opacity: 0; transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-in.visible { opacity: 1; transform: translateY(0); }
.fade-in-left { opacity: 0; transform: translateX(-40px); transition: opacity 0.7s ease, transform 0.7s ease; }
.fade-in-left.visible { opacity: 1; transform: translateX(0); }
.fade-in-right { opacity: 0; transform: translateX(40px); transition: opacity 0.7s ease, transform 0.7s ease; }
.fade-in-right.visible { opacity: 1; transform: translateX(0); }

/* ===== ORDER MODAL ===== */
.modal-overlay {
  position: fixed; inset: 0; background: rgba(44,24,16,0.6);
  backdrop-filter: blur(8px); z-index: 2000;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; visibility: hidden; transition: var(--transition);
}
.modal-overlay.active { opacity: 1; visibility: visible; }
.modal {
  background: var(--white); border-radius: var(--radius-lg);
  padding: 40px; max-width: 500px; width: 90%;
  max-height: 90vh; overflow-y: auto;
  transform: scale(0.9); transition: var(--transition);
}
.modal-overlay.active .modal { transform: scale(1); }
.modal-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 24px; }
.modal-header h3 { font-size: 1.4rem; }
.modal-close { background: none; border: none; font-size: 1.5rem; cursor: pointer; color: var(--text-light); }
.modal-close:hover { color: var(--terracotta); }

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
  .hero .container { grid-template-columns: 1fr; text-align: center; }
  .hero-content { order: 2; }
  .hero-image { order: 1; }
  .hero h1 { font-size: 2.8rem; }
  .hero-text { margin: 0 auto 36px; }
  .hero-buttons { justify-content: center; }
  .drinks-grid, .reviews-grid, .blog-grid { grid-template-columns: repeat(2,1fr); }
  .about-preview, .about-story { grid-template-columns: 1fr; }
  .about-preview-content { order: 2; }
  .about-preview-image { order: 1; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .values-grid { grid-template-columns: repeat(2,1fr); }
  .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .nav-list {
    position: fixed; top: 72px; left: 0; width: 100%;
    background: var(--white); flex-direction: column;
    padding: 30px; gap: 20px; box-shadow: var(--shadow-lg);
    transform: translateY(-100%); opacity: 0;
    transition: var(--transition); pointer-events: none;
  }
  .nav-list.active { transform: translateY(0); opacity: 1; pointer-events: all; }
  .burger { display: flex; }
  .hero h1 { font-size: 2.2rem; }
  .section { padding: 70px 0; }
  .section-header h2 { font-size: 2rem; }
  .drinks-grid, .reviews-grid, .blog-grid, .values-grid { grid-template-columns: 1fr; }
  .about-stats { gap: 24px; }
  .footer-grid { grid-template-columns: 1fr; }
  .cta-section h2 { font-size: 1.8rem; }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 1.8rem; }
  .hero-buttons { flex-direction: column; }
  .btn { width: 100%; justify-content: center; }
  .page-hero h1 { font-size: 2rem; }
}

/* ===== CART STYLES ===== */
.cart-btn {
  background: none; border: none; cursor: pointer;
  font-size: 1.4rem; color: var(--brown-dark); position: relative;
  display: flex; align-items: center; justify-content: center;
  transition: var(--transition);
}
.cart-btn:hover { color: var(--terracotta); }
.cart-badge {
  position: absolute; top: -8px; right: -10px;
  background: var(--terracotta); color: white;
  font-size: 0.7rem; font-weight: 700; width: 20px; height: 20px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%; font-family: 'Inter', sans-serif;
}

.cart-overlay {
  position: fixed; inset: 0; background: rgba(44,24,16,0.6);
  backdrop-filter: blur(5px); z-index: 2500;
  display: flex; justify-content: flex-end;
  opacity: 0; visibility: hidden; transition: var(--transition);
}
.cart-overlay.active { opacity: 1; visibility: visible; }

.cart-sidebar {
  width: 100%; max-width: 400px; height: 100vh;
  background: var(--white); box-shadow: -5px 0 30px rgba(0,0,0,0.1);
  display: flex; flex-direction: column;
  transform: translateX(100%); transition: transform 0.4s cubic-bezier(0.4,0,0.2,1);
}
.cart-overlay.active .cart-sidebar { transform: translateX(0); }

.cart-header {
  padding: 24px; border-bottom: 1px solid rgba(196,168,130,0.2);
  display: flex; justify-content: space-between; align-items: center;
}
.cart-header h3 { font-size: 1.4rem; margin: 0; }
.cart-close { background: none; border: none; font-size: 1.8rem; cursor: pointer; color: var(--text-light); transition: var(--transition); }
.cart-close:hover { color: var(--terracotta); }

.cart-items {
  flex: 1; overflow-y: auto; padding: 24px; display: flex; flex-direction: column; gap: 20px;
}
.cart-empty { text-align: center; color: var(--text-light); font-size: 1rem; margin-top: 40px; }

.cart-item {
  display: flex; justify-content: space-between; align-items: center;
  padding-bottom: 16px; border-bottom: 1px dashed rgba(196,168,130,0.3);
}
.cart-item-info h4 { font-size: 1rem; margin-bottom: 4px; font-family: 'Inter', sans-serif; font-weight: 600; }
.cart-item-price { color: var(--terracotta); font-weight: 700; font-size: 0.95rem; }
.cart-item-quantity { font-size: 0.85rem; color: var(--text-light); margin-left: 8px; }
.cart-item-remove {
  background: rgba(196,85,58,0.1); color: var(--terracotta);
  border: none; width: 32px; height: 32px; border-radius: 50%;
  cursor: pointer; display: flex; align-items: center; justify-content: center;
  transition: var(--transition); font-size: 0.9rem;
}
.cart-item-remove:hover { background: var(--terracotta); color: white; }

.cart-footer {
  padding: 24px; border-top: 1px solid rgba(196,168,130,0.2); background: var(--cream-light);
}
.cart-total {
  display: flex; justify-content: space-between; align-items: center;
  font-size: 1.2rem; font-weight: 700; color: var(--text-dark); margin-bottom: 20px;
}
.cart-total span:last-child { color: var(--terracotta); font-family: 'Playfair Display', serif; font-size: 1.5rem; }

