@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500&family=Lato:wght@300;400;700&family=Dancing+Script:wght@600;700&display=swap');

:root {
  --rose: #c97a8a;
  --rose-dark: #a85e6e;
  --rose-baby: #f2d4da;
  --rose-light: #fdf0f2;
  --lilac: #d4c5e2;
  --lilac-light: #f5f0fa;
  --white: #ffffff;
  --cream: #fdfaf8;
  --text-dark: #3d2c30;
  --text-mid: #7a5a62;
  --text-light: #b89aa0;
  --shadow: rgba(180, 120, 130, 0.10);
  --shadow-md: rgba(180, 120, 130, 0.18);
  --border: rgba(210, 160, 170, 0.18);
  --radius: 20px;
  --radius-sm: 12px;
  --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; }
body { font-family: 'Lato', sans-serif; background: var(--cream); color: var(--text-dark); overflow-x: hidden; }

::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: #fdf0f2; }
::-webkit-scrollbar-thumb { background: #d4a0aa; border-radius: 10px; }

/* ── HEADER ── */
header {
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  position: sticky; top: 0; z-index: 1000;
  box-shadow: 0 1px 24px var(--shadow);
}
.header-top {
  display: flex; align-items: center;
  justify-content: space-between;
  padding: 14px 40px; gap: 20px;
}
.logo { display: flex; flex-direction: column; align-items: flex-start; text-decoration: none; flex-shrink: 0; }
.logo-name { font-family: 'Dancing Script', cursive; font-size: 2.2rem; color: var(--rose); line-height: 1; letter-spacing: 1px; }
.logo-tagline { font-size: 0.62rem; color: var(--text-light); letter-spacing: 2.5px; text-transform: uppercase; font-weight: 300; }

.search-bar { flex: 1; max-width: 460px; position: relative; }
.search-bar input {
  width: 100%; padding: 10px 46px 10px 20px;
  border: 1.5px solid var(--border); border-radius: 50px;
  background: #fdf6f7; font-family: 'Lato', sans-serif;
  font-size: 0.88rem; color: var(--text-dark); outline: none; transition: var(--transition);
}
.search-bar input:focus { border-color: var(--rose); background: white; box-shadow: 0 0 0 3px rgba(201,122,138,0.10); }
.search-bar input::placeholder { color: var(--text-light); }
.search-bar button {
  position: absolute; right: 6px; top: 50%; transform: translateY(-50%);
  background: var(--rose); border: none; border-radius: 50%;
  width: 32px; height: 32px; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: var(--transition); color: white;
}
.search-bar button:hover { background: var(--rose-dark); transform: translateY(-50%) scale(1.08); }

.header-actions { display: flex; align-items: center; gap: 14px; }
.cart-btn {
  background: var(--rose); color: white;
  border: none; border-radius: 50px; padding: 10px 22px;
  font-family: 'Lato', sans-serif; font-size: 0.88rem; font-weight: 700;
  cursor: pointer; display: flex; align-items: center; gap: 8px;
  transition: var(--transition); text-decoration: none; letter-spacing: 0.3px;
}
.cart-btn:hover { background: var(--rose-dark); transform: translateY(-2px); box-shadow: 0 6px 20px var(--shadow-md); }
.cart-count {
  background: white; color: var(--rose); border-radius: 50%;
  width: 20px; height: 20px; display: flex; align-items: center;
  justify-content: center; font-size: 0.72rem; font-weight: 700;
}

/* ── NAV ── */
nav { background: var(--white); border-top: 1px solid var(--border); padding: 0 40px; overflow-x: auto; }
.nav-list { display: flex; list-style: none; white-space: nowrap; }
.nav-list > li { position: relative; }
.nav-list > li > a, .nav-list > li > button {
  display: block; padding: 13px 16px; color: var(--text-mid);
  text-decoration: none; font-size: 0.82rem; font-weight: 700;
  letter-spacing: 0.8px; text-transform: uppercase;
  border: none; background: none; cursor: pointer;
  font-family: 'Lato', sans-serif; transition: var(--transition);
  border-bottom: 2px solid transparent;
}
.nav-list > li > a:hover, .nav-list > li > button:hover { color: var(--rose); border-bottom-color: var(--rose); }
.dropdown {
  position: absolute; top: 100%; left: 0; background: white;
  border: 1px solid var(--border); border-radius: var(--radius-sm);
  box-shadow: 0 12px 40px var(--shadow); min-width: 180px;
  opacity: 0; pointer-events: none; transform: translateY(6px);
  transition: var(--transition); z-index: 100;
}
.nav-list > li:hover .dropdown { opacity: 1; pointer-events: all; transform: translateY(0); }
.dropdown a { display: block; padding: 11px 18px; color: var(--text-mid); text-decoration: none; font-size: 0.88rem; transition: var(--transition); }
.dropdown a:hover { background: var(--rose-light); color: var(--rose); }

/* ── HERO ── */
.hero {
  background: linear-gradient(150deg, #fdf6f7 0%, #f7f0fa 40%, #fdf6f7 100%);
  padding: 90px 40px; text-align: center; position: relative; overflow: hidden;
}
.hero::before {
  content: ''; position: absolute; top: -80px; right: -80px;
  width: 360px; height: 360px;
  background: radial-gradient(circle, rgba(201,122,138,0.12), transparent 70%);
  border-radius: 50%;
}
.hero::after {
  content: ''; position: absolute; bottom: -60px; left: -60px;
  width: 280px; height: 280px;
  background: radial-gradient(circle, rgba(212,197,226,0.18), transparent 70%);
  border-radius: 50%;
}
.hero-content { position: relative; z-index: 1; }
.hero-eyebrow { font-family: 'Dancing Script', cursive; font-size: 1.4rem; color: var(--rose); margin-bottom: 14px; display: block; }
.hero h1 { font-family: 'Playfair Display', serif; font-size: clamp(2rem, 5vw, 3.6rem); color: var(--text-dark); line-height: 1.25; margin-bottom: 20px; font-weight: 500; }
.hero h1 em { font-style: italic; color: var(--rose); }
.hero p { font-size: 1rem; color: var(--text-mid); max-width: 500px; margin: 0 auto 40px; line-height: 1.8; font-weight: 300; }
.hero-buttons { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ── BUTTONS ── */
.btn-primary {
  background: var(--rose); color: white; padding: 13px 30px;
  border: none; border-radius: 50px; font-family: 'Lato', sans-serif;
  font-size: 0.9rem; font-weight: 700; cursor: pointer;
  text-decoration: none; display: inline-flex; align-items: center;
  gap: 8px; transition: var(--transition); letter-spacing: 0.5px;
}
.btn-primary:hover { background: var(--rose-dark); transform: translateY(-3px); box-shadow: 0 10px 30px var(--shadow-md); }
.btn-secondary {
  background: transparent; color: var(--rose); padding: 12px 30px;
  border: 1.5px solid var(--rose); border-radius: 50px;
  font-family: 'Lato', sans-serif; font-size: 0.9rem; font-weight: 700;
  cursor: pointer; text-decoration: none; display: inline-flex;
  align-items: center; gap: 8px; transition: var(--transition);
}
.btn-secondary:hover { background: var(--rose); color: white; transform: translateY(-3px); box-shadow: 0 10px 30px var(--shadow-md); }

/* ── SECTIONS ── */
.section { padding: 64px 40px; }
.section-alt { background: white; }
.section-header { text-align: center; margin-bottom: 50px; }
.section-header h2 { font-family: 'Playfair Display', serif; font-size: clamp(1.7rem, 3vw, 2.3rem); color: var(--text-dark); margin-bottom: 10px; font-weight: 500; }
.section-header .subtitle { font-family: 'Dancing Script', cursive; font-size: 1.15rem; color: var(--text-light); }
.section-divider { display: flex; align-items: center; gap: 10px; justify-content: center; margin: 12px 0 0; }
.section-divider span { width: 36px; height: 1px; background: var(--rose); opacity: 0.5; border-radius: 2px; }
.section-divider .dot { width: 5px; height: 5px; background: var(--rose); border-radius: 50%; opacity: 0.7; }

/* ── CATEGORIES ── */
.categories-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); gap: 18px; max-width: 1100px; margin: 0 auto; }
.category-card {
  background: white; border-radius: var(--radius); padding: 26px 14px;
  text-align: center; cursor: pointer; border: 1px solid var(--border);
  transition: var(--transition); text-decoration: none; color: var(--text-dark); display: block;
  box-shadow: 0 2px 12px var(--shadow);
}
.category-card:hover { border-color: var(--rose); transform: translateY(-4px); box-shadow: 0 12px 32px var(--shadow-md); }
.category-icon { font-size: 2.2rem; margin-bottom: 10px; display: block; }
.category-card h3 { font-family: 'Playfair Display', serif; font-size: 0.95rem; color: var(--text-dark); margin-bottom: 4px; font-weight: 500; }
.category-card p { font-size: 0.75rem; color: var(--text-light); }

/* ── PRODUCT GRID ── */
.products-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(230px, 1fr)); gap: 22px; max-width: 1300px; margin: 0 auto; }
.product-card {
  background: white; border-radius: var(--radius); overflow: hidden;
  border: 1px solid var(--border); transition: var(--transition);
  box-shadow: 0 2px 16px var(--shadow);
}
.product-card:hover { transform: translateY(-5px); box-shadow: 0 16px 40px var(--shadow-md); border-color: #d4a0aa; }
.product-img-wrap { position: relative; overflow: hidden; aspect-ratio: 1; background: #fdf6f7; }
.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.05); }
.product-badge {
  position: absolute; top: 12px; left: 12px; background: var(--rose);
  color: white; font-size: 0.68rem; font-weight: 700; padding: 4px 10px;
  border-radius: 50px; letter-spacing: 0.5px; text-transform: uppercase;
}
.product-info { padding: 18px; }
.product-info h3 { font-family: 'Playfair Display', serif; font-size: 1rem; color: var(--text-dark); margin-bottom: 4px; font-weight: 500; }
.product-info .product-desc { font-size: 0.8rem; color: var(--text-light); margin-bottom: 12px; line-height: 1.5; }
.product-price { font-size: 1.2rem; font-weight: 700; color: var(--rose); margin-bottom: 14px; font-family: 'Playfair Display', serif; }
.product-actions { display: flex; gap: 8px; }
.btn-ver {
  flex: 1; background: transparent; color: var(--rose);
  border: 1px solid var(--rose); border-radius: 50px; padding: 8px 12px;
  font-size: 0.8rem; font-weight: 700; cursor: pointer;
  font-family: 'Lato', sans-serif; transition: var(--transition);
  text-decoration: none; text-align: center; display: block;
}
.btn-ver:hover { background: var(--rose); color: white; }
.btn-add {
  flex: 1; background: var(--rose); color: white; border: none;
  border-radius: 50px; padding: 8px 12px; font-size: 0.8rem;
  font-weight: 700; cursor: pointer; font-family: 'Lato', sans-serif;
  transition: var(--transition);
}
.btn-add:hover { background: var(--rose-dark); }
.btn-add:active { transform: scale(0.97); }

/* ── PAGE LAYOUT ── */
.page-container { max-width: 1300px; margin: 0 auto; padding: 40px; }
.page-title { font-family: 'Playfair Display', serif; font-size: 1.9rem; color: var(--text-dark); margin-bottom: 8px; font-weight: 500; }
.breadcrumb { font-size: 0.83rem; color: var(--text-light); margin-bottom: 36px; }
.breadcrumb a { color: var(--rose); text-decoration: none; }

/* ── PRODUCT DETAIL ── */
.product-detail { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: start; }
.product-gallery img {
  width: 100%;
  height: auto;
max-height: 500px;
  object-fit: contain;
  border-radius: var(--radius);
  box-shadow: 0 8px 32px var(--shadow-md);
  background: #fdf6f7;
}
.product-detail-info h1 { font-family: 'Playfair Display', serif; font-size: 1.9rem; color: var(--text-dark); margin-bottom: 8px; font-weight: 500; }
.detail-price { font-family: 'Playfair Display', serif; font-size: 1.9rem; color: var(--rose); font-weight: 600; margin-bottom: 24px; }
.customization-section { background: #fdf6f7; border-radius: var(--radius); padding: 22px; margin-bottom: 22px; border: 1px solid var(--border); }
.customization-section h3 { font-family: 'Playfair Display', serif; font-size: 1.05rem; color: var(--text-dark); margin-bottom: 16px; font-weight: 500; }
.form-group { margin-bottom: 16px; }
.form-group label { display: block; font-size: 0.85rem; font-weight: 700; color: var(--text-mid); margin-bottom: 7px; letter-spacing: 0.3px; }
.form-group select, .form-group input, .form-group textarea {
  width: 100%; padding: 10px 14px; border: 1px solid var(--border);
  border-radius: var(--radius-sm); font-family: 'Lato', sans-serif;
  font-size: 0.88rem; color: var(--text-dark); background: white;
  outline: none; transition: var(--transition);
}
.form-group select:focus, .form-group input:focus, .form-group textarea:focus { border-color: var(--rose); box-shadow: 0 0 0 3px rgba(201,122,138,0.10); }
.form-group textarea { resize: vertical; min-height: 88px; }
.qty-control { display: flex; align-items: center; width: fit-content; border: 1px solid var(--border); border-radius: 50px; overflow: hidden; }
.qty-control button { background: white; border: none; width: 38px; height: 38px; font-size: 1rem; cursor: pointer; color: var(--rose); font-weight: 700; transition: var(--transition); display: flex; align-items: center; justify-content: center; }
.qty-control button:hover { background: var(--rose-light); }
.qty-control span { width: 42px; text-align: center; font-weight: 700; font-size: 0.95rem; color: var(--text-dark); border-left: 1px solid var(--border); border-right: 1px solid var(--border); line-height: 38px; }
.qty-row { display: flex; align-items: center; gap: 18px; margin-bottom: 6px; flex-wrap: wrap; }
.add-to-cart-big {
  width: 100%; background: var(--rose); color: white; border: none;
  border-radius: 50px; padding: 15px 32px; font-family: 'Lato', sans-serif;
  font-size: 0.95rem; font-weight: 700; cursor: pointer; transition: var(--transition);
  display: flex; align-items: center; justify-content: center; gap: 10px; margin-top: 18px;
  letter-spacing: 0.3px;
}
.add-to-cart-big:hover { background: var(--rose-dark); transform: translateY(-2px); box-shadow: 0 10px 28px var(--shadow-md); }
.info-tag { display: inline-block; background: var(--lilac-light); color: var(--text-mid); border-radius: 50px; padding: 4px 14px; font-size: 0.78rem; margin-bottom: 14px; font-weight: 700; letter-spacing: 0.5px; }
.produto-notice { background: var(--lilac-light); border: 1px solid var(--lilac); border-radius: var(--radius-sm); padding: 11px 15px; font-size: 0.83rem; color: var(--text-mid); margin-bottom: 14px; }

/* ── FLOWER BUILDER ── */
.flowers-builder { display: flex; flex-direction: column; gap: 12px; }
.flower-slot { background: white; border: 1px solid var(--border); border-radius: var(--radius-sm); padding: 14px; }
.flower-slot-title { font-size: 0.78rem; font-weight: 700; color: var(--rose); text-transform: uppercase; letter-spacing: 0.8px; margin-bottom: 10px; }
.slot-row { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.slot-row select { width: 100%; padding: 9px 12px; border: 1px solid var(--border); border-radius: var(--radius-sm); font-family: 'Lato', sans-serif; font-size: 0.85rem; color: var(--text-dark); background: white; outline: none; cursor: pointer; transition: var(--transition); }
.slot-row select:focus { border-color: var(--rose); box-shadow: 0 0 0 3px rgba(201,122,138,0.10); }

/* ── CART ── */
.cart-layout { display: grid; grid-template-columns: 1fr 340px; gap: 36px; align-items: start; }
.cart-empty { text-align: center; padding: 80px 20px; }
.cart-empty .empty-icon { font-size: 3.5rem; margin-bottom: 18px; }
.cart-empty h2 { font-family: 'Playfair Display', serif; font-size: 1.5rem; color: var(--text-dark); margin-bottom: 10px; font-weight: 500; }
.cart-empty p { color: var(--text-light); margin-bottom: 28px; }
.cart-item { background: white; border-radius: var(--radius); padding: 18px; margin-bottom: 14px; border: 1px solid var(--border); display: flex; gap: 16px; align-items: center; transition: var(--transition); box-shadow: 0 2px 12px var(--shadow); }
.cart-item:hover { box-shadow: 0 8px 24px var(--shadow-md); }
.cart-item img { width: 84px; height: 84px; object-fit: cover; border-radius: var(--radius-sm); flex-shrink: 0; background: #fdf6f7; }
.cart-item-info { flex: 1; }
.cart-item-info h3 { font-family: 'Playfair Display', serif; font-size: 0.97rem; color: var(--text-dark); margin-bottom: 4px; font-weight: 500; }
.cart-item-custom { font-size: 0.78rem; color: var(--text-light); margin-bottom: 8px; line-height: 1.5; }
.cart-item-footer { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 10px; }
.cart-item-price { font-size: 1.1rem; font-weight: 700; color: var(--rose); font-family: 'Playfair Display', serif; }
.remove-btn { background: none; border: none; color: var(--text-light); cursor: pointer; font-size: 0.82rem; transition: var(--transition); padding: 4px 8px; border-radius: 6px; }
.remove-btn:hover { color: #c05050; background: #fff0f0; }

/* ── ORDER SUMMARY ── */
.order-summary { background: white; border-radius: var(--radius); padding: 26px; border: 1px solid var(--border); position: sticky; top: 90px; box-shadow: 0 2px 16px var(--shadow); }
.order-summary h2 { font-family: 'Playfair Display', serif; font-size: 1.2rem; color: var(--text-dark); margin-bottom: 22px; padding-bottom: 14px; border-bottom: 1px solid var(--border); font-weight: 500; }
.summary-row { display: flex; justify-content: space-between; font-size: 0.9rem; color: var(--text-mid); margin-bottom: 10px; }
.summary-row.total { font-size: 1.05rem; font-weight: 700; color: var(--text-dark); padding-top: 14px; border-top: 1px solid var(--border); margin-top: 6px; }
.summary-row.total span:last-child { color: var(--rose); font-family: 'Playfair Display', serif; font-size: 1.25rem; }

/* ── FRETE ── */
.frete-section { margin: 18px 0; background: #fdf6f7; border-radius: var(--radius-sm); padding: 14px; }
.frete-section h3 { font-size: 0.88rem; font-weight: 700; color: var(--text-mid); margin-bottom: 10px; }
.frete-input { display: flex; gap: 8px; }
.frete-input input { flex: 1; padding: 9px 12px; border: 1px solid var(--border); border-radius: var(--radius-sm); font-family: 'Lato', sans-serif; font-size: 0.85rem; outline: none; transition: var(--transition); }
.frete-input input:focus { border-color: var(--rose); }
.frete-input button { background: var(--rose); color: white; border: none; border-radius: var(--radius-sm); padding: 9px 14px; font-size: 0.82rem; font-weight: 700; cursor: pointer; font-family: 'Lato', sans-serif; transition: var(--transition); }
.frete-input button:hover { background: var(--rose-dark); }
.frete-options { margin-top: 10px; }
.frete-option { display: flex; justify-content: space-between; align-items: center; padding: 10px 12px; background: white; border: 1px solid var(--border); border-radius: var(--radius-sm); margin-bottom: 7px; cursor: pointer; transition: var(--transition); font-size: 0.85rem; }
.frete-option:hover, .frete-option.selected { border-color: var(--rose); background: #fdf6f7; }
.whatsapp-btn { width: 100%; background: #3fba6e; color: white; border: none; border-radius: 50px; padding: 14px; font-family: 'Lato', sans-serif; font-size: 0.95rem; font-weight: 700; cursor: pointer; display: flex; align-items: center; justify-content: center; gap: 10px; transition: var(--transition); margin-top: 18px; letter-spacing: 0.3px; }
.whatsapp-btn:hover { background: #2d9e58; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(63,186,110,0.25); }

/* ── TOAST ── */
.toast { position: fixed; bottom: 28px; right: 28px; background: #3d2c30; color: white; padding: 13px 22px; border-radius: var(--radius-sm); font-size: 0.88rem; box-shadow: 0 8px 28px rgba(0,0,0,0.15); z-index: 9999; transform: translateY(80px); opacity: 0; transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1); }
.toast.show { transform: translateY(0); opacity: 1; }
.toast.success { background: #2d6a4f; }

/* ── ANIMAÇÃO FLUTUANTE ── */
@keyframes float {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-18px) rotate(4deg); }
}
.float-deco { position: absolute; opacity: 0.15; animation: float 7s ease-in-out infinite; pointer-events: none; }

/* ── FOOTER ── */
footer { background: #2e1f24; color: rgba(255,255,255,0.75); padding: 56px 40px 28px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; max-width: 1200px; margin: 0 auto 44px; }
.footer-brand p { font-size: 0.86rem; line-height: 1.8; color: rgba(255,255,255,0.5); margin-bottom: 20px; }
.social-links { display: flex; gap: 10px; }
.social-links a { width: 38px; height: 38px; border-radius: 50%; background: rgba(255,255,255,0.08); display: flex; align-items: center; justify-content: center; color: white; text-decoration: none; font-size: 0.95rem; transition: var(--transition); }
.social-links a:hover { background: var(--rose); transform: translateY(-3px); }
.footer-col h4 { font-family: 'Playfair Display', serif; font-size: 0.95rem; color: rgba(255,255,255,0.9); margin-bottom: 14px; font-weight: 500; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 9px; }
.footer-col ul li a { color: rgba(255,255,255,0.5); text-decoration: none; font-size: 0.85rem; transition: var(--transition); }
.footer-col ul li a:hover { color: var(--rose-baby); }
.footer-contact-item { display: flex; align-items: center; gap: 9px; margin-bottom: 10px; font-size: 0.85rem; color: rgba(255,255,255,0.5); }
.footer-contact-item a { color: rgba(255,255,255,0.5); text-decoration: none; }
.footer-contact-item a:hover { color: var(--rose-baby); }
.footer-bottom { max-width: 1200px; margin: 0 auto; padding-top: 22px; border-top: 1px solid rgba(255,255,255,0.08); display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; font-size: 0.8rem; color: rgba(255,255,255,0.3); }
.footer-badge { background: rgba(255,255,255,0.06); padding: 5px 13px; border-radius: 50px; font-size: 0.78rem; display: flex; align-items: center; gap: 6px; }

/* ── RESPONSIVO ── */
@media (max-width: 1024px) {
  .product-detail { grid-template-columns: 1fr; }
  .cart-layout { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .order-summary { position: static; }
}
@media (max-width: 768px) {
  .header-top { padding: 12px 20px; flex-wrap: wrap; }
  .search-bar { order: 3; max-width: 100%; flex: 0 0 100%; }
  .section { padding: 44px 20px; }
  nav { padding: 0 20px; }
  .page-container { padding: 22px 20px; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero { padding: 60px 20px; }
  .products-grid { grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); }
  .categories-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 480px) {
  .categories-grid { grid-template-columns: repeat(2, 1fr); }
  .products-grid { grid-template-columns: 1fr 1fr; }
  .slot-row { grid-template-columns: 1fr; }
  .cart-item img { width: 70px; height: 70px; }
}
/* ── SELETOR DE CORES (Presilha de Flor) ── */
.cores-selector {
  margin-bottom: 14px;
}
.cores-label {
  display: block;
  font-size: 0.8rem;
  color: var(--text-mid);
  margin-bottom: 8px;
}
.cores-label strong {
  color: var(--text-dark);
}
.cores-bolinhas {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}
.cor-btn {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
  padding: 0;
  flex-shrink: 0;
}
.cor-btn:hover {
  transform: scale(1.18);
  box-shadow: 0 2px 8px rgba(0,0,0,0.18);
}
.cor-btn.ativa {
  border-color: var(--rose-dark);
  box-shadow: 0 0 0 2px white, 0 0 0 4px var(--rose);
  transform: scale(1.12);
}