/*! Ama Estetique - Static Clone CSS v1.0 */

/* --- Reset --- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 100%; }
body { font-family: var(--font-body); color: var(--color-text); line-height: 1.6; background: var(--color-bg); }
a { text-decoration: none; color: inherit; transition: color .2s, opacity .2s; }
img { max-width: 100%; display: block; height: auto; }
button { border: none; background: none; cursor: pointer; font-family: var(--font-body); }
ul, ol { list-style: none; }
h1, h2, h3, h4 { font-family: var(--font-primary); line-height: 1.3; }

/* --- Layout --- */
.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 var(--space-md); }
@media (min-width: 768px) { .container { padding: 0 var(--space-lg); } }

/* --- Icons (CSS-drawn) --- */
.icon-phone::before { content: "📞"; }
.icon-truck::before { content: "🚚"; }
.icon-pin::before { content: "📍"; }
.icon-search::before { content: "🔍"; }
.icon-heart::before { content: "🤍"; }
.icon-cart::before { content: "🛒"; }
.icon-close::before { content: "✕"; font-weight: bold; }
.icon-chevron-left::before { content: "‹"; font-size: 1.5em; line-height: 1; }
.icon-chevron-right::before { content: "›"; font-size: 1.5em; line-height: 1; }
.icon-support::before { content: "💬"; font-size: 2rem; display: block; margin-bottom: 0.5rem; }
.icon-shield::before { content: "🛡"; font-size: 2rem; display: block; margin-bottom: 0.5rem; }
.icon-tag::before { content: "🏷"; font-size: 2rem; display: block; margin-bottom: 0.5rem; }
.icon-whatsapp::before { content: "💬"; font-size: 2rem; }
.icon-location::before { content: "📍"; font-size: 2rem; }
.icon-clock::before { content: "🕐"; font-size: 2rem; }
.icon-facebook::before { content: "f"; font-weight: bold; }
.icon-instagram::before { content: "📷"; }

.arrow-down { display: inline-block; width: 0; height: 0; border-left: 4px solid transparent; border-right: 4px solid transparent; border-top: 4px solid currentColor; vertical-align: middle; margin-left: 4px; }

/* --- Buttons --- */
.btn { display: inline-block; padding: 12px 28px; border-radius: 4px; font-family: var(--font-primary); font-weight: 600; text-transform: uppercase; font-size: 0.85rem; letter-spacing: 0.5px; transition: transform .2s, background .2s, box-shadow .2s; }
.btn-primary { background: var(--color-brand); color: var(--color-white); }
.btn-primary:hover { background: var(--color-brand-dark); transform: translateY(-2px); box-shadow: 0 4px 15px rgba(216,27,96,0.3); }
.btn-outline { border: 2px solid var(--color-brand); color: var(--color-brand); background: transparent; }
.btn-outline:hover { background: var(--color-brand); color: var(--color-white); }
.btn-block { display: block; width: 100%; text-align: center; }

/* --- Sections --- */
.section { padding: var(--space-3xl) 0; }
.section-header { margin-bottom: var(--space-2xl); }
.section-header.center { text-align: center; }
.section-title { font-size: 1.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: var(--color-black); }
.section-title::after { content: ""; display: block; width: 50px; height: 3px; background: var(--color-brand); margin-top: 12px; }
.section-header.center .section-title::after { margin-left: auto; margin-right: auto; }
.section-footer { margin-top: var(--space-2xl); }
.section-footer.center { text-align: center; }

/* --- Top Bar --- */
.top-bar { background: #f5f5f5; font-size: 0.78rem; border-bottom: 1px solid var(--color-border); }
.top-bar .container { display: flex; justify-content: space-between; align-items: center; min-height: 38px; }
.top-bar-left { display: flex; gap: var(--space-md); align-items: center; }
.top-bar-right { display: flex; gap: var(--space-md); }
.top-item, .top-link { color: var(--color-text-light); display: flex; align-items: center; gap: var(--space-xs); }
.top-link:hover { color: var(--color-brand); }
@media (max-width: 767px) { .top-bar-left { display: none; } .top-bar-right { width: 100%; justify-content: center; } }

/* --- Stars --- */
.stars { color: #f5a623; font-size: 1.1rem; letter-spacing: 2px; margin-bottom: var(--space-md); }

/* --- Badge --- */
.badge { display: inline-flex; align-items: center; justify-content: center; min-width: 18px; height: 18px; background: var(--color-brand); color: #fff; font-size: 0.65rem; border-radius: 50%; position: absolute; top: -6px; right: -6px; }

/* --- Overlay --- */
.cart-overlay { position: fixed; inset: 0; background: rgba(0,0,0,0.4); z-index: 998; opacity: 0; visibility: hidden; transition: opacity .3s; }
.cart-overlay.active { opacity: 1; visibility: visible; }

/* --- Back to top --- */
.back-to-top { position: fixed; bottom: 30px; right: 30px; width: 44px; height: 44px; border-radius: 50%; background: var(--color-brand); color: #fff; font-size: 1.2rem; display: flex; align-items: center; justify-content: center; box-shadow: 0 4px 12px rgba(0,0,0,0.15); z-index: 200; opacity: 0; visibility: hidden; transition: opacity .3s; }
.back-to-top.visible { opacity: 1; visibility: visible; }

/* --- Responsive helpers --- */
@media (min-width: 768px) {
  .about-row { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-3xl); align-items: center; }
}
