/* Recanto das Flores - Estilos principais */
/* Gerado automaticamente - versão 1.0 */

/* ===================== RESET & BASE ===================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Poppins', sans-serif;
  color: #222;
  background: #fff;
  overflow-x: hidden;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ===================== VARIABLES ===================== */
:root {
  --pink: #ef6faf;
  --pink-dark: #d4589a;
  --pink-light: #fce4f1;
  --pink-pale: #fff0f8;
  --black: #111111;
  --gray: #555555;
  --gray-light: #f5f5f5;
  --white: #ffffff;
  --radius: 12px;
  --shadow: 0 4px 20px rgba(0,0,0,0.10);
  --transition: 0.3s ease;
}

/* ===================== TYPOGRAPHY ===================== */
h1, h2, h3 { font-family: 'Playfair Display', serif; }

/* ===================== COOKIE BANNER ===================== */
#cookie-banner {
  position: fixed; bottom: 0; left: 0; right: 0;
  background: var(--black); color: #fff;
  padding: 14px 24px;
  display: flex; align-items: center; justify-content: center; gap: 20px;
  z-index: 9999; font-size: 13px;
  flex-wrap: wrap; text-align: center;
}
#cookie-banner a { color: var(--pink); text-decoration: underline; }
#cookie-banner button {
  background: var(--pink); color: #fff;
  padding: 8px 22px; border-radius: 30px;
  font-size: 13px; font-weight: 600; white-space: nowrap;
}
#cookie-banner button:hover { background: var(--pink-dark); }

/* ===================== TOPBAR ===================== */
.topbar {
  background: var(--pink);
  color: #fff;
  text-align: center;
  font-size: 13px;
  padding: 8px 16px;
  font-weight: 500;
}
.topbar strong { font-weight: 700; }

/* ===================== HEADER ===================== */
header {
  background: var(--black);
  position: sticky; top: 0; z-index: 1000;
  box-shadow: 0 2px 12px rgba(0,0,0,0.3);
}
.header-inner {
  max-width: 1280px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 24px; height: 70px; gap: 16px;
}

/* Logo */
.logo {
  display: flex; align-items: center; gap: 10px;
  flex-shrink: 0;
}
.logo-icon {
  width: 44px; height: 44px;
  background: var(--pink);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px;
}
.logo-text { color: #fff; }
.logo-text .name {
  font-family: 'Playfair Display', serif;
  font-size: 20px; font-weight: 700;
  line-height: 1.1;
}
.logo-text .sub {
  font-size: 10px; letter-spacing: 2px;
  color: var(--pink); text-transform: uppercase;
}

/* Search bar */
.header-search {
  flex: 1; max-width: 420px;
  position: relative;
}
.header-search input {
  width: 100%; padding: 10px 44px 10px 16px;
  border-radius: 30px; border: 2px solid transparent;
  background: #2a2a2a; color: #fff;
  font-size: 14px; font-family: inherit;
  outline: none; transition: var(--transition);
}
.header-search input::placeholder { color: #888; }
.header-search input:focus { border-color: var(--pink); background: #1a1a1a; }
.header-search .search-btn {
  position: absolute; right: 12px; top: 50%; transform: translateY(-50%);
  color: var(--pink); font-size: 18px; line-height: 1;
}

/* Header actions */
.header-actions {
  display: flex; align-items: center; gap: 8px;
}
.header-btn {
  display: flex; align-items: center; gap: 6px;
  color: #fff; padding: 8px 14px;
  border-radius: 30px; font-size: 13px;
  transition: var(--transition); white-space: nowrap;
}
.header-btn:hover { background: #2a2a2a; }
.header-btn svg { width: 20px; height: 20px; flex-shrink: 0; }
.header-btn .btn-label { display: flex; flex-direction: column; line-height: 1.2; }
.header-btn .btn-label small { font-size: 10px; color: #aaa; }
.header-btn .btn-label span { font-size: 13px; font-weight: 500; }

/* Cart btn */
.cart-btn {
  position: relative;
  background: var(--pink); color: #fff !important;
  padding: 10px 18px; border-radius: 30px;
  font-weight: 600;
}
.cart-btn:hover { background: var(--pink-dark) !important; }
.cart-count {
  position: absolute; top: -4px; right: -4px;
  background: #fff; color: var(--pink);
  border-radius: 50%; width: 20px; height: 20px;
  font-size: 11px; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
}

/* Hamburger */
.hamburger {
  display: none; flex-direction: column; gap: 5px;
  padding: 8px; cursor: pointer;
}
.hamburger span {
  display: block; width: 24px; height: 2px;
  background: #fff; border-radius: 2px;
  transition: var(--transition);
}

/* ===================== NAV ===================== */
nav {
  background: #fff;
  border-bottom: 2px solid var(--pink-light);
}
.nav-inner {
  max-width: 1280px; margin: 0 auto;
  display: flex; align-items: center; justify-content: center;
  padding: 0 24px;
  gap: 4px;
  overflow-x: auto;
}
.nav-inner::-webkit-scrollbar { height: 0; }
.nav-link {
  white-space: nowrap;
  padding: 14px 18px;
  font-size: 14px; font-weight: 500;
  color: #333;
  border-bottom: 3px solid transparent;
  transition: var(--transition);
}
.nav-link:hover, .nav-link.active {
  color: var(--pink);
  border-bottom-color: var(--pink);
}

/* ===================== MOBILE MENU ===================== */
.mobile-menu {
  display: none;
  position: fixed; top: 0; left: 0; bottom: 0;
  width: 300px; background: #fff;
  z-index: 2000; flex-direction: column;
  box-shadow: 4px 0 30px rgba(0,0,0,0.2);
  transform: translateX(-100%);
  transition: transform 0.3s ease;
}
.mobile-menu.open { transform: translateX(0); }
.mobile-menu-header {
  background: var(--black); padding: 20px 24px;
  display: flex; align-items: center; justify-content: space-between;
}
.mobile-menu-header .logo-text .name { color: #fff; font-size: 18px; }
.close-menu { color: #fff; font-size: 24px; line-height: 1; }
.mobile-nav { flex: 1; overflow-y: auto; padding: 16px 0; }
.mobile-nav a {
  display: block; padding: 14px 24px;
  font-size: 15px; border-bottom: 1px solid #f0f0f0;
  transition: var(--transition);
}
.mobile-nav a:hover { background: var(--pink-pale); color: var(--pink); }
.mobile-menu-footer {
  padding: 20px 24px; background: var(--gray-light);
}
.mobile-menu-footer .mobile-login-btn {
  width: 100%; padding: 12px;
  background: var(--pink); color: #fff;
  border-radius: 30px; font-size: 15px; font-weight: 600;
  text-align: center; margin-bottom: 12px;
}
.mobile-overlay {
  display: none;
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 1999;
}
.mobile-overlay.open { display: block; }

/* ===================== HERO CAROUSEL ===================== */
.hero {
  position: relative; overflow: hidden;
  background: var(--black);
}
.hero-slides { display: flex; transition: transform 0.6s ease; }
.hero-slide {
  min-width: 100%;
  height: 480px;
  display: flex; align-items: center;
  position: relative; overflow: hidden;
}
.hero-slide-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
}
.hero-slide-bg::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to right, rgba(0,0,0,0.7) 40%, rgba(0,0,0,0.1) 100%);
}
.hero-content {
  position: relative; z-index: 1;
  padding: 0 60px; max-width: 600px;
  color: #fff;
}
.hero-tag {
  display: inline-block;
  background: var(--pink); color: #fff;
  padding: 4px 16px; border-radius: 30px;
  font-size: 12px; font-weight: 600;
  letter-spacing: 1px; text-transform: uppercase;
  margin-bottom: 16px;
}
.hero-content h1 {
  font-size: 48px; line-height: 1.15;
  margin-bottom: 16px;
}
.hero-content p {
  font-size: 17px; color: rgba(255,255,255,0.85);
  margin-bottom: 28px; line-height: 1.6;
}
.hero-cta {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,0.15); color: #fff;
  padding: 10px 22px; border-radius: 6px;
  font-size: 14px; font-weight: 600;
  border: 1.5px solid rgba(255,255,255,0.55);
  transition: var(--transition);
  backdrop-filter: blur(4px);
}
.hero-cta:hover { background: rgba(255,255,255,0.28); }
.hero-dots {
  position: absolute; bottom: 30px; left: 50%; transform: translateX(-50%);
  display: flex; gap: 8px; z-index: 2;
}
.hero-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: rgba(255,255,255,0.4); transition: var(--transition);
  cursor: pointer;
}
.hero-dot.active { background: var(--pink); width: 24px; border-radius: 4px; }

/* ===================== DELIVERY SEARCH ===================== */
.delivery-section {
  background: linear-gradient(135deg, var(--black) 0%, #1a1a1a 100%);
  padding: 40px 24px;
}
.delivery-inner {
  max-width: 800px; margin: 0 auto; text-align: center;
}
.delivery-inner h2 {
  color: #fff; font-size: 28px; margin-bottom: 8px;
}
.delivery-inner p { color: #aaa; margin-bottom: 24px; font-size: 15px; }
.delivery-form {
  display: flex; gap: 12px; max-width: 580px; margin: 0 auto;
}
.delivery-form input {
  flex: 1; padding: 14px 20px;
  border-radius: 30px; border: 2px solid #333;
  background: #222; color: #fff;
  font-size: 15px; font-family: inherit; outline: none;
  transition: var(--transition);
}
.delivery-form input::placeholder { color: #666; }
.delivery-form input:focus { border-color: var(--pink); }
.delivery-form button {
  padding: 14px 28px;
  background: var(--pink); color: #fff;
  border-radius: 30px; font-size: 15px; font-weight: 600;
  transition: var(--transition); white-space: nowrap;
}
.delivery-form button:hover { background: var(--pink-dark); }
.delivery-cities {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 10px;
  margin-top: 20px;
}
.city-tag {
  padding: 6px 16px; border: 1px solid #333; border-radius: 20px;
  color: #aaa; font-size: 13px; cursor: pointer;
  transition: var(--transition);
}
.city-tag:hover { border-color: var(--pink); color: var(--pink); }

/* ===================== SECTION HEADER ===================== */
.section-header {
  display: flex; align-items: flex-end; justify-content: space-between;
  margin-bottom: 28px; padding: 0 8px;
}
.section-title { font-size: 28px; color: var(--black); line-height: 1.2; }
.section-title span { color: var(--pink); }
.see-all {
  font-size: 14px; color: var(--pink); font-weight: 600;
  white-space: nowrap; padding: 8px 20px;
  border: 2px solid var(--pink); border-radius: 30px;
  transition: var(--transition);
}
.see-all:hover { background: var(--pink); color: #fff; }

/* ===================== PRODUCT SECTIONS ===================== */
.products-section { padding: 60px 24px; }
.products-section:nth-child(even) { background: var(--gray-light); }
.products-inner { max-width: 1280px; margin: 0 auto; }

/* Carousel */
.carousel-wrapper { position: relative; }
.carousel-track-outer { overflow: hidden; }
.carousel-track {
  display: flex; gap: 20px;
  transition: transform 0.4s ease;
}
.carousel-arrow {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 44px; height: 44px; border-radius: 50%;
  background: #fff; box-shadow: var(--shadow);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; color: var(--black);
  z-index: 10; transition: var(--transition);
  border: 1px solid #eee;
}
.carousel-arrow:hover { background: var(--pink); color: #fff; border-color: var(--pink); }
.carousel-arrow.left { left: -22px; }
.carousel-arrow.right { right: -22px; }

/* Product card */
.product-card {
  flex: 0 0 calc(25% - 15px);
  background: #fff; border-radius: var(--radius);
  overflow: hidden; box-shadow: var(--shadow);
  transition: var(--transition);
  position: relative; cursor: pointer;
}
.product-card:hover { transform: translateY(-6px); box-shadow: 0 12px 36px rgba(0,0,0,0.15); }
.product-img-wrap { position: relative; overflow: hidden; height: 220px; }
.product-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.product-card:hover .product-img-wrap img { transform: scale(1.08); }
.product-badge {
  position: absolute; top: 12px; left: 12px;
  background: var(--pink); color: #fff;
  padding: 4px 12px; border-radius: 20px; font-size: 11px; font-weight: 700;
  text-transform: uppercase;
}
.product-badge.new { background: #2ecc71; }
.product-badge.off { background: #e74c3c; }
.product-fav {
  position: absolute; top: 12px; right: 12px;
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(255,255,255,0.9);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; color: #ccc; transition: var(--transition);
}
.product-fav:hover, .product-fav.active { color: var(--pink); }
.product-info { padding: 16px; }
.product-name { font-weight: 600; font-size: 14px; margin-bottom: 6px; color: var(--black); line-height: 1.4; }
.product-desc { font-size: 12px; color: var(--gray); margin-bottom: 12px; line-height: 1.5; }
.product-footer { display: flex; align-items: center; justify-content: space-between; }
.product-price { display: flex; flex-direction: column; }
.price-original { font-size: 11px; color: #aaa; text-decoration: line-through; }
.price-current { font-size: 18px; font-weight: 700; color: var(--pink); line-height: 1; }
.add-cart-btn {
  width: 38px; height: 38px; border-radius: 50%;
  background: var(--pink); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; transition: var(--transition);
}
.add-cart-btn:hover { background: var(--pink-dark); transform: rotate(90deg); }

/* ===================== CATEGORIES STRIP ===================== */
.categories-strip { padding: 40px 24px 20px; background: var(--pink-pale); }
.categories-inner { max-width: 1280px; margin: 0 auto; }
.categories-grid {
  display: flex; gap: 16px; overflow-x: auto; padding-bottom: 8px;
}
.categories-grid::-webkit-scrollbar { height: 4px; }
.categories-grid::-webkit-scrollbar-thumb { background: var(--pink-light); border-radius: 2px; }
.cat-item {
  flex: 0 0 auto;
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  cursor: pointer; transition: var(--transition);
}
.cat-item:hover { transform: translateY(-4px); }
.cat-circle {
  width: 80px; height: 80px; border-radius: 50%;
  overflow: hidden; border: 3px solid transparent;
  transition: var(--transition);
}
.cat-item:hover .cat-circle, .cat-item.active .cat-circle {
  border-color: var(--pink);
  box-shadow: 0 0 0 3px var(--pink-light);
}
.cat-circle img { width: 100%; height: 100%; object-fit: cover; }
.cat-name { font-size: 13px; font-weight: 500; color: #333; text-align: center; }

/* ===================== PROMO BANNER ===================== */
.promo-banner {
  padding: 60px 24px;
  background: linear-gradient(135deg, var(--black) 50%, #1f0a12 100%);
}
.promo-inner {
  max-width: 1280px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr; gap: 24px;
}
.promo-card {
  border-radius: var(--radius); overflow: hidden;
  position: relative; height: 280px;
  display: flex; align-items: flex-end;
  background-size: cover; background-position: center;
  cursor: pointer;
}
.promo-card::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.8) 40%, transparent 100%);
}
.promo-card-content {
  position: relative; z-index: 1;
  padding: 28px; color: #fff;
}
.promo-card-content .tag {
  display: inline-block; background: var(--pink);
  padding: 4px 14px; border-radius: 20px;
  font-size: 11px; font-weight: 700; text-transform: uppercase;
  margin-bottom: 10px;
}
.promo-card-content h3 { font-size: 24px; margin-bottom: 8px; }
.promo-card-content p { font-size: 13px; color: rgba(255,255,255,0.8); margin-bottom: 16px; }
.promo-card-content a {
  display: inline-block; padding: 9px 22px;
  background: #fff; color: var(--black);
  border-radius: 30px; font-size: 13px; font-weight: 700;
  transition: var(--transition);
}
.promo-card-content a:hover { background: var(--pink); color: #fff; }

/* ===================== TESTIMONIALS ===================== */
.testimonials { padding: 60px 24px; background: #fff; }
.testimonials-inner { max-width: 1000px; margin: 0 auto; text-align: center; }
.testimonials-inner .section-title { margin-bottom: 40px; }
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.testimonial-card {
  background: var(--pink-pale); border-radius: var(--radius);
  padding: 28px; text-align: left; position: relative;
}
.testimonial-card::before {
  content: '"';
  position: absolute; top: 16px; left: 20px;
  font-size: 60px; color: var(--pink); opacity: 0.3;
  font-family: 'Playfair Display', serif; line-height: 1;
}
.testimonial-stars { color: var(--pink); font-size: 16px; margin-bottom: 12px; }
.testimonial-text { font-size: 14px; color: #444; line-height: 1.7; margin-bottom: 16px; }
.testimonial-author { display: flex; align-items: center; gap: 10px; }
.testimonial-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  overflow: hidden; border: 2px solid var(--pink-light);
}
.testimonial-avatar img { width: 100%; height: 100%; object-fit: cover; }
.testimonial-name { font-size: 14px; font-weight: 600; }
.testimonial-city { font-size: 12px; color: var(--gray); }

/* ===================== WHY US ===================== */
.why-us { padding: 60px 24px; background: var(--black); }
.why-us-inner { max-width: 1280px; margin: 0 auto; text-align: center; }
.why-us .section-title { color: #fff; margin-bottom: 48px; }
.why-us .section-title span { color: var(--pink); }
.why-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; }
.why-item { text-align: center; }
.why-icon {
  width: 70px; height: 70px; border-radius: 50%;
  background: rgba(239,111,175,0.15);
  display: flex; align-items: center; justify-content: center;
  font-size: 30px; margin: 0 auto 16px;
  border: 2px solid rgba(239,111,175,0.3);
  color: #fff;
}
.why-item h4 { color: #fff; font-size: 17px; margin-bottom: 10px; font-family: 'Poppins', sans-serif; font-weight: 600; }
.why-item p { color: #888; font-size: 13px; line-height: 1.7; }

/* ===================== NEWSLETTER ===================== */
.newsletter { padding: 60px 24px; background: var(--pink); }
.newsletter-inner { max-width: 600px; margin: 0 auto; text-align: center; }
.newsletter h2 { color: #fff; font-size: 32px; margin-bottom: 10px; }
.newsletter p { color: rgba(255,255,255,0.85); margin-bottom: 28px; }
.newsletter-form { display: flex; gap: 10px; }
.newsletter-form input {
  flex: 1; padding: 14px 20px;
  border-radius: 30px; border: none;
  font-size: 15px; font-family: inherit; outline: none;
  color: #333;
}
.newsletter-form button {
  padding: 14px 28px;
  background: var(--black); color: #fff;
  border-radius: 30px; font-size: 15px; font-weight: 600;
  transition: var(--transition);
}
.newsletter-form button:hover { background: #333; }

/* ===================== FOOTER ===================== */
footer {
  background: var(--black); color: #888;
  padding: 60px 24px 30px;
}
.footer-inner {
  max-width: 1280px; margin: 0 auto;
}
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px;
  margin-bottom: 50px;
}
.footer-logo { margin-bottom: 16px; }
.footer-logo .logo-text .name { font-size: 22px; }
.footer-logo .logo-text .sub { color: var(--pink); }
.footer-about { font-size: 14px; line-height: 1.8; margin-bottom: 24px; max-width: 300px; }
.footer-social { display: flex; gap: 12px; }
.footer-social a {
  width: 40px; height: 40px; border-radius: 50%;
  background: #222; color: #888;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; transition: var(--transition);
}
.footer-social a:hover { background: var(--pink); color: #fff; }
.footer-col h4 { color: #fff; font-size: 15px; font-weight: 600; margin-bottom: 20px; font-family: 'Poppins', sans-serif; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { font-size: 14px; transition: var(--transition); }
.footer-col ul li a:hover { color: var(--pink); }
.footer-bottom {
  border-top: 1px solid #222; padding-top: 28px;
  display: flex; align-items: center; justify-content: space-between;
  font-size: 13px; flex-wrap: wrap; gap: 16px;
}
.footer-bottom a { color: var(--pink); }
.payment-methods { display: flex; gap: 8px; align-items: center; flex-wrap: wrap; }
.pay-logo { display: inline-flex; line-height: 0; opacity: 0.9; transition: opacity 0.2s; }
.pay-logo:hover { opacity: 1; }


/* ===================== MODALS ===================== */
.modal-overlay {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.6); z-index: 3000;
  display: none; align-items: center; justify-content: center;
  padding: 16px;
}
.modal-overlay.open { display: flex; }
.modal {
  background: #fff; border-radius: var(--radius);
  width: 100%; max-width: 480px;
  max-height: 90vh; overflow-y: auto;
  animation: modalIn 0.3s ease;
}
@keyframes modalIn { from { transform: scale(0.92); opacity: 0; } to { transform: scale(1); opacity: 1; } }
.modal-header {
  padding: 24px 28px; border-bottom: 1px solid #f0f0f0;
  display: flex; align-items: center; justify-content: space-between;
}
.modal-header h3 { font-size: 20px; }
.modal-close { font-size: 24px; color: #999; line-height: 1; transition: var(--transition); }
.modal-close:hover { color: #333; }
.modal-body { padding: 28px; }

/* Login Modal */
.social-login { display: flex; flex-direction: column; gap: 12px; margin-bottom: 24px; }
.social-btn {
  display: flex; align-items: center; justify-content: center; gap: 12px;
  padding: 13px; border-radius: 30px; font-size: 15px; font-weight: 500;
  border: 2px solid #e0e0e0; transition: var(--transition);
}
.social-btn:hover { background: var(--gray-light); }
.divider {
  display: flex; align-items: center; gap: 12px;
  margin-bottom: 24px; color: #aaa; font-size: 13px;
}
.divider::before, .divider::after {
  content: ''; flex: 1; height: 1px; background: #e8e8e8;
}
.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-size: 14px; font-weight: 500; margin-bottom: 6px; }
.form-group input {
  width: 100%; padding: 12px 16px;
  border: 2px solid #e8e8e8; border-radius: 10px;
  font-size: 15px; font-family: inherit; outline: none;
  transition: var(--transition);
}
.form-group input:focus { border-color: var(--pink); }
.form-submit {
  width: 100%; padding: 14px;
  background: var(--pink); color: #fff;
  border-radius: 30px; font-size: 16px; font-weight: 600;
  transition: var(--transition); margin-top: 8px;
}
.form-submit:hover { background: var(--pink-dark); }
.form-link { text-align: center; margin-top: 16px; font-size: 14px; color: #666; }
.form-link a { color: var(--pink); font-weight: 600; }

/* Cart Modal */
.cart-modal { max-width: 520px; }
.cart-empty { text-align: center; padding: 40px 20px; }
.cart-empty-icon { font-size: 64px; margin-bottom: 16px; }
.cart-empty h4 { font-size: 20px; margin-bottom: 8px; }
.cart-empty p { color: var(--gray); font-size: 14px; margin-bottom: 24px; }
.cart-empty .browse-btn {
  display: inline-block; padding: 12px 28px;
  background: var(--pink); color: #fff;
  border-radius: 30px; font-weight: 600;
}
.cart-item {
  display: flex; gap: 14px; padding: 16px 0;
  border-bottom: 1px solid #f0f0f0;
  align-items: center;
}
.cart-item-img {
  width: 80px; height: 80px; border-radius: 10px;
  overflow: hidden; flex-shrink: 0;
}
.cart-item-img img { width: 100%; height: 100%; object-fit: cover; }
.cart-item-info { flex: 1; }
.cart-item-name { font-weight: 600; font-size: 14px; margin-bottom: 4px; }
.cart-item-price { color: var(--pink); font-weight: 700; font-size: 16px; }
.cart-item-qty {
  display: flex; align-items: center; gap: 10px; margin-top: 8px;
}
.qty-btn {
  width: 28px; height: 28px; border-radius: 50%;
  background: var(--gray-light); font-size: 18px;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; color: #333; transition: var(--transition);
}
.qty-btn:hover { background: var(--pink); color: #fff; }
.qty-num { font-weight: 600; min-width: 20px; text-align: center; }
.cart-remove { color: #ccc; font-size: 20px; cursor: pointer; transition: var(--transition); }
.cart-remove:hover { color: #e74c3c; }
.cart-footer { padding: 20px 0 0; }
.cart-total { display: flex; justify-content: space-between; margin-bottom: 16px; }
.cart-total span { font-size: 16px; color: var(--gray); }
.cart-total strong { font-size: 22px; color: var(--pink); }
.checkout-btn {
  width: 100%; padding: 15px;
  background: var(--pink); color: #fff;
  border-radius: 30px; font-size: 17px; font-weight: 600;
  transition: var(--transition);
}
.checkout-btn:hover { background: var(--pink-dark); }
.continue-btn {
  width: 100%; padding: 12px;
  color: var(--gray); font-size: 14px; margin-top: 10px;
}
.continue-btn:hover { color: var(--pink); }

/* ===== WOMENS DAY BAR ===== */
.womens-day-bar {
  background: linear-gradient(135deg, #6b2fa0, #c8006b, #ef6faf);
  color: #fff;
  text-align: center;
  padding: 10px 16px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.3px;
}
.womens-day-bar a { color: #ffe066; text-decoration: underline; }

/* ===================== RESPONSIVE ===================== */
@media (max-width: 1024px) {
  .product-card { flex: 0 0 calc(33.33% - 14px); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: 1fr 1fr; }
  .hero-content h1 { font-size: 38px; }
}

@media (max-width: 768px) {
  .header-search { display: none; }
  .hamburger { display: flex; }
  .mobile-menu { display: flex; }
  .header-btn .btn-label { display: none; }
  .header-btn:not(.cart-btn) { display: none; }
  .header-inner { padding: 0 12px; gap: 10px; }
  .logo-icon { width: 36px; height: 36px; font-size: 18px !important; }
  .logo-text .name { font-size: 16px; }
  .logo-text .sub { display: none; }
  .cart-btn { padding: 8px 12px; }
  nav { display: none; }
  .hero-slide { height: 320px; }
  .hero-content { padding: 0 28px; }
  .hero-content h1 { font-size: 28px; }
  .hero-content p { font-size: 14px; }
  .delivery-form { flex-direction: column; }
  .product-card { flex: 0 0 calc(50% - 10px); }
  .promo-inner { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .newsletter-form { flex-direction: column; }
  .carousel-arrow { display: none; }
}

@media (max-width: 480px) {
  .product-card { flex: 0 0 calc(100% - 0px); }
  .section-header { flex-direction: column; align-items: flex-start; gap: 12px; }
  .header-content h1 { font-size: 24px; }
  .cep-input-row { flex-direction: column; }
  .cep-search-btn { width: 100%; }
}

/* ===================== UTILITY ===================== */
.container { max-width: 1280px; margin: 0 auto; }
.text-pink { color: var(--pink); }
.btn-pink {
  background: var(--pink); color: #fff;
  padding: 12px 28px; border-radius: 30px;
  font-size: 15px; font-weight: 600; transition: var(--transition);
  display: inline-block;
}
.btn-pink:hover { background: var(--pink-dark); }