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

:root {
    --primary: #1a1a1a;
    --accent: #c8a97e;
    --accent-dark: #b8956a;
    --accent-light: rgba(200,169,126,0.12);
    --text: #1a1a1a;
    --text-mid: #555;
    --text-light: #888;
    --bg: #fff;
    --bg-warm: #faf8f5;
    --bg-dark: #111;
    --border: #e8e5e0;
    --shadow: 0 2px 12px rgba(0,0,0,0.06);
    --shadow-lg: 0 8px 30px rgba(0,0,0,0.1);
    --radius: 8px;
    --radius-lg: 16px;
    --transition: .3s ease;
}

html { scroll-behavior: smooth; scroll-padding-top: 110px; }

body {
    font-family: 'Inter', -apple-system, sans-serif;
    color: var(--text);
    background: var(--bg);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }

/* BUTTONS */
.btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 8px;
    padding: 14px 32px; border: 1px solid transparent; border-radius: var(--radius);
    font-family: inherit; font-size: .85rem; font-weight: 600; letter-spacing: .8px;
    text-transform: uppercase; cursor: pointer; transition: var(--transition);
}
.btn--primary { background: var(--primary); color: #fff; border-color: var(--primary); }
.btn--primary:hover { background: #333; }
.btn--ghost { background: transparent; color: var(--primary); border-color: var(--primary); }
.btn--ghost:hover { background: var(--primary); color: #fff; }
.btn--full { width: 100%; }
.btn--sm { padding: 10px 20px; font-size: .8rem; }
.icon-btn {
    display: flex; align-items: center; justify-content: center;
    width: 40px; height: 40px; background: none; border: none;
    color: var(--text); cursor: pointer; border-radius: 50%; transition: var(--transition);
}
.icon-btn:hover { background: var(--bg-warm); }

/* TOPBAR */
.topbar {
    background: var(--primary); color: rgba(255,255,255,.8);
    font-size: .75rem; letter-spacing: .5px; text-transform: uppercase;
}
.topbar__inner {
    display: flex; align-items: center; justify-content: space-between;
    height: 36px;
}
.topbar__links { display: flex; gap: 20px; }
.topbar__links a { color: rgba(255,255,255,.6); transition: var(--transition); }
.topbar__links a:hover { color: #fff; }

/* HEADER */
.header {
    position: sticky; top: 0; z-index: 100;
    background: rgba(255,255,255,.97); backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border); transition: var(--transition);
}
.header__inner { display: flex; align-items: center; justify-content: space-between; height: 64px; }

.logo {
    font-size: 1.6rem; font-weight: 900; letter-spacing: 3px;
    text-transform: uppercase; color: var(--primary);
}
.logo--light { color: #fff; }

.nav { display: flex; gap: 4px; }
.nav__link {
    padding: 8px 16px; font-size: .82rem; font-weight: 500;
    text-transform: uppercase; letter-spacing: .8px;
    color: var(--text-mid); border-radius: var(--radius); transition: var(--transition);
}
.nav__link:hover { color: var(--text); background: var(--bg-warm); }

.header__actions { display: flex; align-items: center; gap: 4px; }
.cart-btn { position: relative; }
.cart-btn__count {
    position: absolute; top: 2px; right: 2px;
    min-width: 18px; height: 18px; padding: 0 5px;
    background: var(--accent); color: #fff;
    font-size: .65rem; font-weight: 700; border-radius: 9px;
    display: flex; align-items: center; justify-content: center;
}

.menu-toggle {
    display: none; flex-direction: column; gap: 5px;
    background: none; border: none; cursor: pointer; padding: 8px;
}
.menu-toggle span {
    display: block; width: 20px; height: 1.5px;
    background: var(--text); transition: var(--transition);
}

/* HERO */
.hero {
    min-height: 85vh; display: flex; align-items: center;
    background: linear-gradient(135deg, #f5f0eb 0%, #ede5db 50%, #e8ddd0 100%);
    position: relative; overflow: hidden;
}
.hero::before {
    content: ''; position: absolute; right: -5%; top: -10%;
    width: 60%; height: 120%;
    background: linear-gradient(135deg, rgba(200,169,126,.08), rgba(200,169,126,.15));
    border-radius: 50%; filter: blur(60px);
}
.hero__content {
    position: relative; z-index: 1; max-width: 600px; padding: 80px 20px;
    margin-left: max(20px, calc((100vw - 1200px) / 2));
}
.hero__tag {
    display: inline-block; padding: 6px 18px;
    background: var(--accent-light); border: 1px solid rgba(200,169,126,.25);
    color: var(--accent-dark); font-size: .7rem; font-weight: 700;
    text-transform: uppercase; letter-spacing: 2px; border-radius: 50px;
    margin-bottom: 24px;
}
.hero__title {
    font-size: clamp(2.4rem, 5vw, 4rem); font-weight: 800;
    line-height: 1.1; letter-spacing: -1px; margin-bottom: 20px;
}
.hero__title em {
    font-family: 'Playfair Display', serif; font-style: italic; color: var(--accent-dark);
}
.hero__subtitle {
    font-size: 1.05rem; color: var(--text-mid); line-height: 1.7;
    margin-bottom: 36px; max-width: 460px;
}
.hero__actions { display: flex; gap: 12px; flex-wrap: wrap; }

/* CATEGORY STRIP */
.cat-strip { padding: 60px 0; border-bottom: 1px solid var(--border); }
.cat-strip__grid {
    display: grid; grid-template-columns: repeat(6, 1fr); gap: 16px;
}
.cat-strip__item {
    display: flex; flex-direction: column; align-items: center; gap: 10px;
    padding: 24px 12px; border-radius: var(--radius-lg);
    border: 1px solid transparent; transition: var(--transition); cursor: pointer;
}
.cat-strip__item:hover {
    background: var(--bg-warm); border-color: var(--border);
}
.cat-strip__icon { color: var(--accent-dark); }
.cat-strip__item span {
    font-size: .8rem; font-weight: 600; text-transform: uppercase;
    letter-spacing: 1px; color: var(--text-mid);
}

/* SECTION HEADER */
.section-header { text-align: center; margin-bottom: 40px; }
.section-title {
    font-size: clamp(1.6rem, 3vw, 2.2rem); font-weight: 800;
    letter-spacing: -0.5px; margin-bottom: 8px;
}
.section-sub { font-size: .95rem; color: var(--text-light); }
.section-tag {
    display: inline-block; padding: 4px 14px;
    background: var(--accent-light); color: var(--accent-dark);
    font-size: .7rem; font-weight: 700; text-transform: uppercase;
    letter-spacing: 1.5px; border-radius: 50px; margin-bottom: 12px;
}

/* LAUNCHES */
.launches { padding: 80px 0; }
.launches__grid {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px;
}

/* PRODUCTS */
.products { padding: 80px 0; background: var(--bg-warm); }
.products__filters {
    display: flex; justify-content: center; gap: 6px;
    margin-bottom: 36px; flex-wrap: wrap;
}
.filter-btn {
    padding: 8px 20px; background: var(--bg); border: 1px solid var(--border);
    border-radius: 50px; font-family: inherit; font-size: .8rem;
    font-weight: 500; color: var(--text-mid); cursor: pointer; transition: var(--transition);
}
.filter-btn:hover { border-color: var(--accent); color: var(--accent-dark); }
.filter-btn.active { background: var(--primary); border-color: var(--primary); color: #fff; }
.products__grid {
    display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 20px;
}

/* PRODUCT CARD */
.product-card {
    background: var(--bg); border-radius: var(--radius-lg); overflow: hidden;
    border: 1px solid var(--border); transition: var(--transition);
}
.product-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }

.product-card__img {
    position: relative; aspect-ratio: 3/4;
    background: linear-gradient(145deg, #f2ede8, #e8e0d6);
    display: flex; align-items: center; justify-content: center;
    overflow: hidden;
}
.product-card__photo {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform .3s ease;
}
.product-card:hover .product-card__photo { transform: scale(1.05); }
.product-card__img-text {
    font-size: .7rem; font-weight: 700; letter-spacing: 2px;
    color: rgba(0,0,0,.07); text-transform: uppercase; text-align: center;
    line-height: 1.6; padding: 20px;
}
.product-card__badge {
    position: absolute; top: 10px; left: 10px;
    padding: 4px 10px; background: var(--primary); color: #fff;
    font-size: .65rem; font-weight: 700; text-transform: uppercase;
    letter-spacing: .5px; border-radius: 4px;
}
.product-card__badge--sale { background: #c0392b; }

.product-card__body { padding: 16px; }
.product-card__cat {
    font-size: .65rem; font-weight: 600; text-transform: uppercase;
    letter-spacing: 1px; color: var(--accent-dark); margin-bottom: 4px;
}
.product-card__name {
    font-size: .9rem; font-weight: 600; margin-bottom: 4px;
    line-height: 1.3; min-height: 2.4em;
}
.product-card__colors {
    display: flex; gap: 4px; margin-bottom: 10px; flex-wrap: wrap;
}
.product-card__color {
    width: 14px; height: 14px; border-radius: 50%;
    border: 1px solid rgba(0,0,0,.12);
}
.product-card__sizes {
    display: flex; gap: 4px; margin-bottom: 12px;
}
.product-card__size {
    padding: 2px 8px; font-size: .65rem; font-weight: 600;
    border: 1px solid var(--border); border-radius: 4px; color: var(--text-mid);
}
.product-card__size--out { opacity: .3; text-decoration: line-through; }
.product-card__footer {
    display: flex; align-items: center; justify-content: space-between;
    padding-top: 10px; border-top: 1px solid var(--border);
}
.product-card__price { display: flex; flex-direction: column; }
.product-card__price-old {
    font-size: .75rem; color: var(--text-light); text-decoration: line-through;
}
.product-card__price-now {
    font-size: 1.1rem; font-weight: 800; color: var(--primary);
}
.product-card__add {
    display: flex; align-items: center; justify-content: center;
    width: 38px; height: 38px; background: var(--primary); color: #fff;
    border: none; border-radius: var(--radius); cursor: pointer;
    font-size: 1.2rem; transition: var(--transition);
}
.product-card__add:hover { background: var(--accent-dark); }

/* BANNER */
.banner {
    padding: 80px 0; background: var(--primary); color: #fff; overflow: hidden;
}
.banner__inner {
    display: flex; align-items: center; justify-content: space-between; gap: 40px;
}
.banner__tag {
    display: inline-block; padding: 4px 14px; margin-bottom: 12px;
    background: rgba(200,169,126,.2); color: var(--accent);
    font-size: .7rem; font-weight: 700; text-transform: uppercase;
    letter-spacing: 1.5px; border-radius: 50px;
}
.banner h2 { font-size: 2rem; font-weight: 800; margin-bottom: 12px; letter-spacing: -0.5px; }
.banner p { color: rgba(255,255,255,.6); margin-bottom: 28px; }
.banner .btn--primary { background: var(--accent); color: var(--primary); border-color: var(--accent); }
.banner .btn--primary:hover { background: var(--accent-dark); }
.banner__circle {
    width: 180px; height: 180px; flex-shrink: 0; border-radius: 50%;
    background: linear-gradient(135deg, var(--accent), var(--accent-dark));
    display: flex; align-items: center; justify-content: center;
    text-align: center; color: var(--primary); font-weight: 500;
    animation: pulse 3s ease-in-out infinite;
}
.banner__circle strong { font-size: 2.5rem; font-weight: 900; display: block; }

@keyframes pulse {
    0%,100% { box-shadow: 0 0 0 0 rgba(200,169,126,.3); }
    50% { box-shadow: 0 0 0 20px rgba(200,169,126,0); }
}

/* ABOUT */
.about { padding: 100px 0; }
.about__inner { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.about__placeholder {
    aspect-ratio: 4/5; background: linear-gradient(145deg, #f2ede8, #e0d8cd);
    border-radius: var(--radius-lg); display: flex; align-items: center; justify-content: center;
}
.about__placeholder span {
    font-size: 2rem; font-weight: 900; letter-spacing: 6px;
    color: rgba(0,0,0,.06); text-transform: uppercase;
}
.about__content p { color: var(--text-mid); line-height: 1.8; margin-bottom: 16px; }
.about__values { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 20px; margin-top: 28px; }
.about__value {
    padding: 20px; background: var(--bg-warm); border-radius: var(--radius); text-align: center;
}
.about__value strong {
    display: block; font-size: .85rem; margin-bottom: 4px; color: var(--primary);
}
.about__value span { font-size: .78rem; color: var(--text-light); }

/* CONTACT */
.contact { padding: 100px 0; background: var(--bg-warm); }
.contact__inner { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; }
.contact__info p { color: var(--text-mid); margin-bottom: 28px; }
.contact__channels { display: flex; flex-direction: column; gap: 16px; }
.contact__whatsapp {
    display: inline-flex; align-items: center; gap: 10px;
    padding: 14px 24px; background: #25d366; color: #fff;
    border-radius: var(--radius); font-weight: 600; font-size: .9rem;
    transition: var(--transition); width: fit-content;
}
.contact__whatsapp:hover { background: #1fb855; }
.contact__item {
    display: flex; align-items: center; gap: 10px;
    font-size: .9rem; color: var(--text-mid);
}
.contact__form {
    background: var(--bg); padding: 36px; border-radius: var(--radius-lg);
    border: 1px solid var(--border);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.form-group { margin-bottom: 14px; }
.form-group input, .form-group select, .form-group textarea {
    width: 100%; padding: 12px 16px;
    background: var(--bg-warm); border: 1px solid var(--border);
    border-radius: var(--radius); font-family: inherit; font-size: .9rem;
    color: var(--text); outline: none; transition: var(--transition);
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
    border-color: var(--accent); box-shadow: 0 0 0 3px var(--accent-light);
}
.form-group textarea { resize: vertical; min-height: 80px; }

/* FOOTER */
.footer { background: var(--bg-dark); color: rgba(255,255,255,.6); padding: 60px 0 0; }
.footer__grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 40px; }
.footer__brand p { margin-top: 12px; font-size: .85rem; line-height: 1.7; max-width: 280px; }
.footer__social { display: flex; gap: 10px; margin-top: 20px; }
.footer__social a {
    display: flex; align-items: center; justify-content: center;
    width: 36px; height: 36px; background: rgba(255,255,255,.08);
    border-radius: var(--radius); color: rgba(255,255,255,.5); transition: var(--transition);
}
.footer__social a:hover { background: var(--accent); color: var(--primary); }
.footer__col h4 { color: #fff; font-size: .85rem; margin-bottom: 16px; text-transform: uppercase; letter-spacing: 1px; }
.footer__col a {
    display: block; font-size: .85rem; padding: 4px 0;
    color: rgba(255,255,255,.4); transition: var(--transition);
}
.footer__col a:hover { color: var(--accent); }
.footer__bottom {
    display: flex; align-items: center; justify-content: space-between;
    padding: 20px 0; border-top: 1px solid rgba(255,255,255,.06); font-size: .8rem;
}
.footer__payments { display: flex; gap: 8px; }
.footer__payments span {
    padding: 3px 10px; background: rgba(255,255,255,.06);
    border-radius: 4px; font-size: .7rem; font-weight: 600;
}

/* TESTIMONIALS */
.testimonials { padding: 80px 0; background: var(--bg-warm); }
.testimonials__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 40px; }
.testimonial-card {
    background: var(--bg); padding: 32px; border-radius: var(--radius-lg);
    box-shadow: var(--shadow); transition: var(--transition);
}
.testimonial-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-2px); }
.testimonial-card__stars { color: var(--accent); font-size: 1.1rem; margin-bottom: 16px; letter-spacing: 2px; }
.testimonial-card__text {
    font-size: .9rem; line-height: 1.7; color: var(--text-mid);
    margin-bottom: 20px; font-style: italic;
}
.testimonial-card__author { display: flex; align-items: center; gap: 12px; }
.testimonial-card__avatar {
    width: 42px; height: 42px; border-radius: 50%;
    background: var(--accent); color: #fff;
    display: flex; align-items: center; justify-content: center;
    font-size: .75rem; font-weight: 700;
}
.testimonial-card__author strong { display: block; font-size: .85rem; }
.testimonial-card__author span { font-size: .75rem; color: var(--text-light); }

/* WHATSAPP FLOAT */
.whatsapp-float {
    position: fixed; bottom: 24px; right: 24px; z-index: 150;
    width: 56px; height: 56px; background: #25D366; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 4px 16px rgba(37,211,102,.4);
    transition: var(--transition); animation: wapulse 2s infinite;
}
.whatsapp-float:hover { transform: scale(1.1); box-shadow: 0 6px 24px rgba(37,211,102,.5); }
@keyframes wapulse {
    0%, 100% { box-shadow: 0 4px 16px rgba(37,211,102,.4); }
    50% { box-shadow: 0 4px 24px rgba(37,211,102,.6); }
}

/* CART SIDEBAR */
.cart-overlay {
    position: fixed; inset: 0; background: rgba(0,0,0,.4);
    z-index: 200; opacity: 0; visibility: hidden; transition: var(--transition);
}
.cart-overlay.active { opacity: 1; visibility: visible; }
.cart-sidebar {
    position: fixed; top: 0; right: -420px; width: 400px; max-width: 90vw;
    height: 100vh; background: var(--bg); z-index: 201;
    display: flex; flex-direction: column; transition: .4s ease; box-shadow: var(--shadow-lg);
}
.cart-sidebar.active { right: 0; }
.cart-sidebar__header {
    display: flex; align-items: center; justify-content: space-between;
    padding: 20px 24px; border-bottom: 1px solid var(--border);
}
.cart-sidebar__header h3 { font-size: 1rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; }
.cart-sidebar__close {
    width: 32px; height: 32px; background: var(--bg-warm); border: none;
    border-radius: 50%; font-size: 1.2rem; cursor: pointer;
    display: flex; align-items: center; justify-content: center; transition: var(--transition);
}
.cart-sidebar__close:hover { background: var(--accent-light); color: var(--accent-dark); }
.cart-sidebar__items { flex: 1; overflow-y: auto; padding: 20px 24px; }
.cart-empty {
    display: flex; flex-direction: column; align-items: center;
    justify-content: center; height: 100%; color: var(--text-light); gap: 12px;
}
.cart-item { display: flex; gap: 14px; padding: 14px 0; border-bottom: 1px solid var(--border); }
.cart-item__img {
    width: 64px; height: 80px; background: var(--bg-warm); border-radius: var(--radius);
    display: flex; align-items: center; justify-content: center;
    font-size: .55rem; color: var(--text-light); font-weight: 600; flex-shrink: 0;
}
.cart-item__info { flex: 1; min-width: 0; }
.cart-item__name { font-size: .85rem; font-weight: 600; margin-bottom: 2px; }
.cart-item__detail { font-size: .75rem; color: var(--text-light); margin-bottom: 6px; }
.cart-item__price { font-weight: 700; color: var(--accent-dark); font-size: .9rem; margin-bottom: 6px; }
.cart-item__qty { display: flex; align-items: center; gap: 8px; }
.cart-item__qty button {
    width: 26px; height: 26px; background: var(--bg-warm); border: 1px solid var(--border);
    border-radius: 4px; font-size: .9rem; cursor: pointer;
    display: flex; align-items: center; justify-content: center; transition: var(--transition);
}
.cart-item__qty button:hover { border-color: var(--accent); color: var(--accent-dark); }
.cart-item__qty span { font-weight: 600; font-size: .85rem; min-width: 16px; text-align: center; }
.cart-item__remove {
    background: none; border: none; color: var(--text-light);
    cursor: pointer; font-size: .75rem; align-self: flex-start;
    padding: 2px; transition: var(--transition);
}
.cart-item__remove:hover { color: #c0392b; }
.cart-sidebar__footer {
    padding: 20px 24px; border-top: 1px solid var(--border); background: var(--bg-warm);
}
.cart-sidebar__total {
    display: flex; justify-content: space-between; align-items: center; margin-bottom: 14px;
}
.cart-sidebar__total strong { font-size: 1.3rem; }
.cart-sidebar__note { text-align: center; font-size: .75rem; color: var(--text-light); margin-top: 10px; }

/* TOAST */
.toast {
    position: fixed; bottom: 24px; left: 50%; transform: translateX(-50%) translateY(80px);
    padding: 12px 24px; background: var(--primary); color: #fff;
    border-radius: var(--radius); font-size: .85rem; font-weight: 500;
    box-shadow: var(--shadow-lg); z-index: 300; opacity: 0; transition: .4s ease;
}
.toast.active { opacity: 1; transform: translateX(-50%) translateY(0); }

/* RESPONSIVE */
@media (max-width: 1024px) {
    .cat-strip__grid { grid-template-columns: repeat(3, 1fr); }
    .launches__grid { grid-template-columns: repeat(2, 1fr); }
    .about__inner, .contact__inner { gap: 40px; }
    .footer__grid { grid-template-columns: 1fr 1fr; gap: 30px; }
    .testimonials__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    .topbar__links { display: none; }
    .menu-toggle { display: flex; }
    .nav {
        position: fixed; top: 100px; left: 0; right: 0;
        background: var(--bg); flex-direction: column; padding: 16px;
        border-bottom: 1px solid var(--border);
        transform: translateY(-120%); transition: var(--transition);
        box-shadow: var(--shadow);
    }
    .nav.active { transform: translateY(0); }
    .nav__link { text-align: center; padding: 12px; }
    .hero { min-height: 70vh; }
    .hero__content { margin-left: 20px; }
    .cat-strip__grid { grid-template-columns: repeat(3, 1fr); gap: 8px; }
    .cat-strip__item { padding: 16px 8px; }
    .launches__grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
    .products__grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
    .about__inner, .contact__inner { grid-template-columns: 1fr; }
    .banner__inner { flex-direction: column; text-align: center; }
    .about__values { grid-template-columns: 1fr; }
    .testimonials__grid { grid-template-columns: 1fr; }
    .footer__grid { grid-template-columns: 1fr; }
    .footer__bottom { flex-direction: column; gap: 12px; text-align: center; }
    .form-row { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
    .cat-strip__grid { grid-template-columns: repeat(2, 1fr); }
    .products__grid { grid-template-columns: 1fr; }
    .launches__grid { grid-template-columns: 1fr; }
    .hero__title { font-size: 2rem; }
    .hero__actions { flex-direction: column; }
    .hero__actions .btn { width: 100%; }
}
