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

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

:root {
  --peach:      #FDDCB5;
  --choco:      #5C2E00;
  --choco-mid:  #7A3D00;
  --caramel:    #C47A2B;
  --terra:      #E07A5F;
  --cream:      #FFF8F0;
  --cream-dark: #F5E6D0;
  --text:       #3A1A00;
  --white:      #FFFFFF;
  --shadow:     rgba(92,46,0,0.15);
  --radius:     16px;
  --transition: 0.35s cubic-bezier(.4,0,.2,1);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Lato', sans-serif;
  background-color: var(--cream);
  color: var(--text);
  overflow-x: hidden;
}

/* ===================== SCROLLBAR ===================== */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--cream-dark); }
::-webkit-scrollbar-thumb { background: var(--caramel); border-radius: 4px; }

/* ===================== NAVBAR ===================== */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 40px;
  background: rgba(253,220,181,0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(196,122,43,0.25);
  transition: var(--transition);
}
.navbar.scrolled {
  padding: 10px 40px;
  box-shadow: 0 4px 24px var(--shadow);
}
.nav-logo { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.nav-logo img { height: 52px; width: 52px; object-fit: contain; border-radius: 50%; }
.nav-logo-text { font-family: 'Dancing Script', cursive; font-size: 1.5rem; color: var(--choco); line-height: 1.1; }
.nav-logo-text span { display: block; font-family: 'Lato', sans-serif; font-size: 0.65rem; font-weight: 300; letter-spacing: 2px; text-transform: uppercase; color: var(--caramel); }
.nav-links { display: flex; gap: 32px; list-style: none; }
.nav-links a { text-decoration: none; color: var(--choco); font-weight: 700; font-size: 0.85rem; letter-spacing: 1px; text-transform: uppercase; position: relative; padding-bottom: 4px; transition: color var(--transition); }
.nav-links a::after { content:''; position:absolute; bottom:0; left:0; width:0; height:2px; background:var(--caramel); border-radius:2px; transition: width var(--transition); }
.nav-links a:hover { color: var(--caramel); }
.nav-links a:hover::after { width: 100%; }
.nav-cta { background: var(--choco); color: var(--peach) !important; padding: 10px 22px !important; border-radius: 50px; transition: all var(--transition) !important; }
.nav-cta:hover { background: var(--caramel) !important; color: var(--white) !important; transform: translateY(-2px); box-shadow: 0 6px 20px rgba(196,122,43,0.4); }
.nav-cta::after { display: none !important; }
.nav-hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; }
.nav-hamburger span { width: 26px; height: 2px; background: var(--choco); border-radius: 2px; transition: var(--transition); }

/* ===================== HERO ===================== */
.hero {
  min-height: 100vh;
  background: linear-gradient(160deg, var(--peach) 0%, var(--cream-dark) 60%, #F0D5B0 100%);
  display: flex; align-items: center;
  padding: 120px 40px 60px;
  position: relative; overflow: hidden;
}
.hero::before {
  content: ''; position: absolute; top: -80px; right: -80px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(196,122,43,0.15) 0%, transparent 70%);
  border-radius: 50%;
}
.hero::after {
  content: ''; position: absolute; bottom: -100px; left: -100px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(224,122,95,0.12) 0%, transparent 70%);
  border-radius: 50%;
}
.hero-content { max-width: 580px; position: relative; z-index: 2; animation: fadeUp 0.9s ease both; }
.hero-badge { display: inline-flex; align-items: center; gap: 8px; background: rgba(196,122,43,0.15); border: 1px solid rgba(196,122,43,0.35); border-radius: 50px; padding: 6px 18px; margin-bottom: 24px; }
.hero-badge span { font-size: 0.75rem; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--caramel); }
.hero h1 { font-family: 'Playfair Display', serif; font-size: clamp(2.8rem, 6vw, 4.5rem); color: var(--choco); line-height: 1.15; margin-bottom: 20px; }
.hero h1 em { font-style: italic; color: var(--caramel); }
.hero p { font-size: 1.1rem; line-height: 1.8; color: var(--choco-mid); margin-bottom: 36px; font-weight: 300; }
.hero-buttons { display: flex; gap: 16px; flex-wrap: wrap; }
.btn-primary { background: var(--choco); color: var(--peach); padding: 16px 36px; border-radius: 50px; text-decoration: none; font-weight: 700; font-size: 0.9rem; letter-spacing: 1px; text-transform: uppercase; transition: all var(--transition); box-shadow: 0 8px 24px rgba(92,46,0,0.3); }
.btn-primary:hover { background: var(--caramel); transform: translateY(-3px); box-shadow: 0 12px 32px rgba(196,122,43,0.4); }
.btn-secondary { background: transparent; color: var(--choco); padding: 16px 36px; border-radius: 50px; text-decoration: none; font-weight: 700; font-size: 0.9rem; letter-spacing: 1px; text-transform: uppercase; border: 2px solid var(--choco); transition: all var(--transition); }
.btn-secondary:hover { background: var(--choco); color: var(--peach); transform: translateY(-3px); }
.hero-image-wrap { flex: 1; display: flex; justify-content: center; align-items: center; position: relative; z-index: 2; }
.hero-img-circle { width: min(420px, 90vw); height: min(420px, 90vw); border-radius: 50%; overflow: hidden; border: 6px solid var(--caramel); box-shadow: 0 24px 60px rgba(92,46,0,0.25); animation: floatUp 3s ease-in-out infinite alternate; }
.hero-img-circle img { width: 100%; height: 100%; object-fit: cover; }
.hero-img-placeholder { width: 100%; height: 100%; background: linear-gradient(135deg, var(--caramel) 0%, var(--choco) 100%); display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 12px; }
.hero-img-placeholder .icon { font-size: 5rem; }
.hero-img-placeholder p { color: var(--peach); font-family: 'Dancing Script', cursive; font-size: 1.4rem; }
.hero-scroll { position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%); display: flex; flex-direction: column; align-items: center; gap: 8px; text-decoration: none; animation: bounce 1.5s ease-in-out infinite; }
.hero-scroll span { font-size: 0.7rem; letter-spacing: 3px; text-transform: uppercase; color: var(--caramel); font-weight: 700; }
.hero-scroll svg { color: var(--caramel); }

/* ===================== SECTIONS ===================== */
section { padding: 100px 40px; }
.section-label { display: inline-block; font-size: 0.72rem; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; color: var(--caramel); margin-bottom: 12px; }
.section-title { font-family: 'Playfair Display', serif; font-size: clamp(2rem, 4vw, 3rem); color: var(--choco); margin-bottom: 20px; line-height: 1.2; }
.section-subtitle { font-size: 1.05rem; color: var(--choco-mid); line-height: 1.8; max-width: 580px; font-weight: 300; }
.section-divider { width: 60px; height: 3px; background: linear-gradient(90deg, var(--caramel), var(--terra)); border-radius: 2px; margin: 20px 0; }
.container { max-width: 1200px; margin: 0 auto; }
.text-center { text-align: center; }
.text-center .section-subtitle { margin: 0 auto; }
.text-center .section-divider { margin: 20px auto; }

/* .sobre-badge removido */
.sobre-features { display: flex; flex-direction: column; gap: 20px; margin-top: 32px; }
.feature-item { display: flex; align-items: flex-start; gap: 16px; }
.feature-icon { width: 44px; height: 44px; background: linear-gradient(135deg, var(--caramel), var(--terra)); border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 1.2rem; flex-shrink: 0; }
.feature-text strong { display: block; font-weight: 700; color: var(--choco); margin-bottom: 4px; }
.feature-text p { font-size: 0.9rem; color: var(--choco-mid); line-height: 1.6; }

/* ===================== CATÁLOGO ===================== */
.catalogo { background: var(--cream-dark); }
.catalog-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(340px, 1fr)); gap: 32px; margin-top: 60px; }
.product-card { background: var(--cream); border-radius: var(--radius); overflow: hidden; box-shadow: 0 8px 32px var(--shadow); transition: all var(--transition); border: 1px solid rgba(196,122,43,0.12); }
.product-card:hover { transform: translateY(-8px); box-shadow: 0 20px 60px rgba(92,46,0,0.2); }
.product-img { aspect-ratio: 4/5; height: auto; overflow: hidden; position: relative; }
.product-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.product-card:hover .product-img img { transform: scale(1.04); }
.product-img-link { display: block; text-decoration: none; }
.product-img-placeholder { width: 100%; height: 100%; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 8px; }
.product-badge { position: absolute; top: 16px; left: 16px; padding: 6px 14px; border-radius: 50px; font-size: 0.7rem; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; }
.badge-encomenda { background: rgba(224,122,95,0.9); color: white; }
.badge-disponivel { background: rgba(92,46,0,0.85); color: var(--peach); }
.product-body { padding: 28px; }
.product-category { font-size: 0.72rem; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--caramel); margin-bottom: 8px; }
.product-name { font-family: 'Playfair Display', serif; font-size: 1.5rem; color: var(--choco); margin-bottom: 12px; line-height: 1.3; }
.product-desc { font-size: 0.92rem; line-height: 1.75; color: var(--choco-mid); margin-bottom: 20px; }
.product-flavors { margin-bottom: 20px; }
.product-flavors h4 { font-size: 0.78rem; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--choco); margin-bottom: 10px; }
.flavor-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.flavor-tag { padding: 5px 14px; background: var(--cream-dark); border: 1px solid rgba(196,122,43,0.3); border-radius: 50px; font-size: 0.8rem; color: var(--choco-mid); font-weight: 700; }
.product-variations { margin-bottom: 24px; }
.product-variations h4 { font-size: 0.78rem; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--choco); margin-bottom: 10px; }
.variation-item { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 8px; padding: 10px 14px; background: rgba(196,122,43,0.06); border-radius: 10px; border-left: 3px solid var(--caramel); }
.variation-item .vi-icon { font-size: 1.1rem; }
.variation-item .vi-text { font-size: 0.85rem; color: var(--choco-mid); line-height: 1.4; }
.variation-item .vi-text strong { display: block; color: var(--choco); font-weight: 700; font-size: 0.88rem; }
.product-notice { display: flex; align-items: flex-start; gap: 10px; background: rgba(224,122,95,0.1); border: 1px solid rgba(224,122,95,0.3); border-radius: 10px; padding: 12px 14px; margin-bottom: 20px; }
.product-notice span { font-size: 1.1rem; }
.product-notice p { font-size: 0.82rem; line-height: 1.5; color: var(--terra); font-weight: 700; }
.product-serves { display: flex; align-items: center; gap: 8px; margin-bottom: 20px; }
.product-serves span { font-size: 0.85rem; color: var(--caramel); font-weight: 700; }
.btn-order { display: flex; align-items: center; justify-content: center; gap: 10px; width: 100%; padding: 14px; background: var(--choco); color: var(--peach); border-radius: 50px; text-decoration: none; font-weight: 700; font-size: 0.88rem; letter-spacing: 1px; text-transform: uppercase; transition: all var(--transition); }
.btn-order:hover { background: var(--caramel); color: var(--white); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(196,122,43,0.4); }
.btn-order svg { flex-shrink: 0; }

/* ===================== COMO PEDIR ===================== */
.como-pedir { background: var(--choco); color: var(--peach); }
.como-pedir .section-title { color: var(--peach); }
.como-pedir .section-label { color: var(--caramel); }
.como-pedir .section-divider { background: linear-gradient(90deg, var(--caramel), var(--terra)); }
.steps-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 32px; margin-top: 60px; }
.step-card { text-align: center; padding: 36px 24px; background: rgba(255,248,240,0.06); border: 1px solid rgba(196,122,43,0.25); border-radius: var(--radius); transition: all var(--transition); position: relative; }
.step-card:hover { background: rgba(255,248,240,0.1); transform: translateY(-6px); }
.step-number { position: absolute; top: -16px; left: 50%; transform: translateX(-50%); width: 32px; height: 32px; background: var(--caramel); color: white; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 0.85rem; }
.step-icon { font-size: 2.8rem; margin-bottom: 16px; display: block; }
.step-card h3 { font-family: 'Playfair Display', serif; font-size: 1.15rem; color: var(--peach); margin-bottom: 10px; }
.step-card p { font-size: 0.88rem; line-height: 1.7; color: rgba(253,220,181,0.7); }
.step-highlight { color: var(--terra) !important; font-weight: 700; }

/* ===================== CONTATO ===================== */
.contato { background: var(--cream); }
.contato-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; margin-top: 60px; }
.contato-info { display: flex; flex-direction: column; gap: 24px; }
.contact-item { display: flex; align-items: flex-start; gap: 16px; }
.contact-icon { width: 50px; height: 50px; border-radius: 14px; display: flex; align-items: center; justify-content: center; font-size: 1.4rem; flex-shrink: 0; }
.ci-green { background: rgba(37,211,102,0.12); border: 1px solid rgba(37,211,102,0.3); }
.ci-caramel { background: rgba(196,122,43,0.12); border: 1px solid rgba(196,122,43,0.3); }
.ci-terra { background: rgba(224,122,95,0.12); border: 1px solid rgba(224,122,95,0.3); }
.contact-text strong { display: block; font-weight: 700; color: var(--choco); margin-bottom: 4px; }
.contact-text p, .contact-text a { font-size: 0.95rem; color: var(--choco-mid); text-decoration: none; line-height: 1.6; }
.contact-text a:hover { color: var(--caramel); }
.wpp-btn { display: flex; align-items: center; justify-content: center; gap: 12px; padding: 18px 40px; background: #25D366; color: white; border-radius: 50px; text-decoration: none; font-weight: 700; font-size: 1rem; letter-spacing: 0.5px; box-shadow: 0 8px 32px rgba(37,211,102,0.35); transition: all var(--transition); margin-top: 12px; }
.wpp-btn:hover { background: #128C7E; transform: translateY(-3px); box-shadow: 0 16px 40px rgba(37,211,102,0.4); }
.contato-card { background: linear-gradient(135deg, var(--choco) 0%, var(--choco-mid) 100%); border-radius: 24px; padding: 48px 40px; color: var(--peach); text-align: center; box-shadow: 0 20px 60px var(--shadow); }
.contato-card .icon { font-size: 3rem; margin-bottom: 20px; display: block; }
.contato-card h3 { font-family: 'Playfair Display', serif; font-size: 1.6rem; margin-bottom: 12px; }
.contato-card p { font-size: 0.92rem; line-height: 1.8; opacity: 0.8; margin-bottom: 28px; }
.horario-list { list-style: none; text-align: left; margin-bottom: 28px; display: flex; flex-direction: column; gap: 10px; }
.horario-list li { display: flex; justify-content: space-between; font-size: 0.88rem; padding-bottom: 10px; border-bottom: 1px solid rgba(253,220,181,0.15); }
.horario-list li span:first-child { opacity: 0.7; }
.horario-list li span:last-child { font-weight: 700; color: var(--caramel); }

/* ===================== FOOTER ===================== */
footer { background: var(--text); color: rgba(253,220,181,0.6); text-align: center; padding: 32px 40px; }
footer img.footer-logo { height: 60px; margin-bottom: 12px; }
footer p { font-size: 0.82rem; line-height: 1.7; }
footer strong { color: var(--caramel); }
footer .footer-links { display: flex; justify-content: center; gap: 24px; margin: 16px 0; flex-wrap: wrap; }
footer .footer-links a { color: rgba(253,220,181,0.6); text-decoration: none; font-size: 0.82rem; transition: color var(--transition); }
footer .footer-links a:hover { color: var(--caramel); }

/* ===================== ANIMATIONS ===================== */
@keyframes fadeUp { from { opacity:0; transform:translateY(30px); } to { opacity:1; transform:translateY(0); } }
@keyframes floatUp { from { transform: translateY(0); } to { transform: translateY(-16px); } }
@keyframes bounce { 0%,100%{ transform:translateX(-50%) translateY(0); } 50%{ transform:translateX(-50%) translateY(8px); } }
.reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ===================== RESPONSIVE ===================== */
@media (max-width: 900px) {
  .navbar { padding: 14px 24px; }
  .nav-links { display: none; flex-direction: column; position: fixed; top: 0; right: 0; bottom: 0; width: 75vw; max-width: 300px; background: var(--cream); padding: 90px 32px 32px; gap: 24px; box-shadow: -8px 0 40px var(--shadow); z-index: 999; transform: translateX(100%); transition: transform var(--transition); }
  .nav-links.open { display: flex; transform: translateX(0); }
  .nav-hamburger { display: flex; z-index: 1001; }
  .hero { flex-direction: column; padding: 110px 24px 60px; text-align: center; gap: 40px; }
  .hero-buttons { justify-content: center; }
  .hero-img-circle { width: 280px; height: 280px; }
  .sobre-grid, .contato-grid { grid-template-columns: 1fr; gap: 40px; }
  .sobre-badge { right: 16px; bottom: -16px; }
  section { padding: 70px 24px; }
  .catalog-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr 1fr; }
  footer { padding: 24px; }
}
@media (max-width: 560px) {
  .steps-grid { grid-template-columns: 1fr; }
  .hero h1 { font-size: 2.4rem; }
  .nav-cta { display: none; }
}


/* ===================== FLOATING BUTTONS ===================== */
.floating-container {
  position: fixed;
  bottom: 30px;
  right: 30px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 9999;
}
.floating-btn {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-decoration: none;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.floating-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}
.floating-wpp { background-color: #25D366; }
.floating-ig { background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%); }
.floating-loc { background-color: var(--caramel); }
.floating-btn svg { width: 28px; height: 28px; fill: currentColor; }

@media (max-width: 560px) {
  .floating-container { bottom: 20px; right: 20px; gap: 8px; }
  .floating-btn { width: 48px; height: 48px; }
  .floating-btn svg { width: 24px; height: 24px; }
}

/* ===================== PROVA SOCIAL ===================== */
.prova-social { background: var(--cream); }
.feedback-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 24px; margin-top: 50px; }
.feedback-card { background: var(--white); border-radius: var(--radius); overflow: hidden; box-shadow: 0 8px 24px var(--shadow); border: 1px solid rgba(196,122,43,0.1); cursor: pointer; transition: all var(--transition); position: relative; }
.feedback-card:hover { transform: translateY(-5px); box-shadow: 0 16px 40px rgba(92,46,0,0.18); }
.feedback-card img { width: 100%; height: auto; display: block; }
.feedback-card::after {
  content: '🔍 Clique para ampliar';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: rgba(92,46,0,0.85);
  color: var(--peach);
  text-align: center;
  padding: 10px;
  font-size: 0.82rem;
  font-weight: 700;
  opacity: 0;
  transition: opacity var(--transition);
}
.feedback-card:hover::after { opacity: 1; }

/* ===================== LIGHTBOX ===================== */
.lightbox {
  position: fixed; top: 0; left: 0; width: 100%; height: 100%;
  background: rgba(0,0,0,0.9);
  display: flex; align-items: center; justify-content: center;
  z-index: 10000;
  opacity: 0; pointer-events: none;
  transition: opacity 0.3s ease;
}
.lightbox.open { opacity: 1; pointer-events: auto; }
.lightbox-content { max-width: 90%; max-height: 90%; border-radius: 12px; box-shadow: 0 8px 32px rgba(0,0,0,0.5); transform: scale(0.95); transition: transform 0.3s ease; }
.lightbox.open .lightbox-content { transform: scale(1); }
.lightbox-close { position: absolute; top: 20px; right: 30px; color: white; font-size: 3rem; cursor: pointer; user-select: none; transition: color 0.2s; }
.lightbox-close:hover { color: var(--caramel); }

/* ===================== CARRINHO SIDEBAR ===================== */
.cart-sidebar {
  position: fixed;
  top: 0;
  right: -400px;
  width: 400px;
  height: 100%;
  background: rgba(255, 248, 240, 0.98);
  backdrop-filter: blur(15px);
  box-shadow: -8px 0 32px rgba(92, 46, 0, 0.15);
  z-index: 10001;
  transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  border-left: 1px solid rgba(196, 122, 43, 0.2);
}
.cart-sidebar.open {
  right: 0;
}
.cart-header {
  padding: 24px;
  border-bottom: 1px solid rgba(196, 122, 43, 0.15);
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--peach);
}
.cart-header h3 {
  font-family: 'Playfair Display', serif;
  color: var(--choco);
  font-size: 1.3rem;
}
.cart-close {
  font-size: 1.8rem;
  cursor: pointer;
  color: var(--choco);
  transition: color 0.2s;
}
.cart-close:hover {
  color: var(--terra);
}
.cart-items {
  flex: 1;
  overflow-y: auto;
  padding: 24px;
}
.cart-item {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(196, 122, 43, 0.1);
}
.cart-item-img {
  width: 60px;
  height: 60px;
  border-radius: 8px;
  object-fit: cover;
  border: 1px solid rgba(196, 122, 43, 0.15);
}
.cart-item-details {
  flex: 1;
}
.cart-item-name {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--choco);
  margin-bottom: 4px;
}
.cart-item-price {
  font-size: 0.88rem;
  color: var(--caramel);
  font-weight: 700;
}
.cart-item-qty {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 8px;
}
.qty-btn {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 1px solid var(--caramel);
  background: transparent;
  color: var(--caramel);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-weight: 700;
  font-size: 0.9rem;
  transition: all 0.2s;
}
.qty-btn:hover {
  background: var(--caramel);
  color: white;
}
.qty-val {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--choco);
}
.cart-item-remove {
  background: transparent;
  border: none;
  color: #c94a29;
  cursor: pointer;
  font-size: 0.8rem;
  text-decoration: underline;
  margin-top: 8px;
  display: inline-block;
}
.cart-footer {
  padding: 24px;
  border-top: 1px solid rgba(196, 122, 43, 0.15);
  background: rgba(253, 220, 181, 0.3);
}
.cart-total-row {
  display: flex;
  justify-content: space-between;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--choco);
  margin-bottom: 16px;
}
.cart-total-row span:last-child {
  color: var(--caramel);
  font-size: 1.25rem;
}
.cart-empty {
  text-align: center;
  padding: 40px 20px;
  color: var(--choco-mid);
  opacity: 0.7;
}
.cart-empty .icon {
  font-size: 3rem;
  margin-bottom: 12px;
  display: block;
}
.btn-checkout {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 16px;
  background: var(--choco);
  color: var(--peach);
  border-radius: 50px;
  border: none;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all var(--transition);
  box-shadow: 0 4px 15px rgba(92, 46, 0, 0.2);
}
.btn-checkout:hover {
  background: var(--caramel);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(196, 122, 43, 0.3);
}

.floating-cart-trigger {
  background-color: var(--caramel) !important;
  position: relative;
}
.cart-badge {
  position: absolute;
  top: -4px;
  right: -4px;
  background-color: var(--terra);
  color: white;
  font-size: 0.72rem;
  font-weight: 700;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

@keyframes cartPulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.2); }
  100% { transform: scale(1); }
}
.cart-badge.pulse {
  animation: cartPulse 0.3s ease;
}

@media (max-width: 560px) {
  .cart-sidebar {
    width: 100%;
    right: -100%;
  }
}

