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

:root {
    --rose: #E11D48;
    --rose-dark: #BE123C;
    --rose-light: #FFE4E6;
    --bg: #FFF1F2;
    --bg-white: #FFFFFF;
    --navy: #0F172A;
    --text: #1F2937;
    --text-muted: #6B7280;
    --border: #F3F4F6;
    --shadow: 0 2px 20px rgba(225, 29, 72, 0.1);
    --shadow-lg: 0 8px 40px rgba(0,0,0,0.12);
    --radius: 16px;
    --radius-sm: 8px;
}

html {
    scroll-behavior: smooth;
}

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

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

#header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--rose-light);
    box-shadow: 0 1px 12px rgba(225, 29, 72, 0.08);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    height: 64px;
    display: flex;
    align-items: center;
    gap: 32px;
}

.logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--rose);
    text-decoration: none;
    white-space: nowrap;
    flex-shrink: 0;
}

.logo span {
    color: var(--rose-dark);
}

nav {
    flex: 1;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 8px;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: var(--text);
    font-size: 0.9rem;
    font-weight: 500;
    padding: 6px 12px;
    border-radius: var(--radius-sm);
    transition: all 0.2s;
}

.nav-links a:hover {
    color: var(--rose);
    background: var(--rose-light);
}

.btn-nav {
    background: var(--rose);
    color: #fff;
    text-decoration: none;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    white-space: nowrap;
    transition: all 0.2s;
    flex-shrink: 0;
}

.btn-nav:hover {
    background: var(--rose-dark);
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(225,29,72,0.3);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 8px;
    margin-left: auto;
}

.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text);
    border-radius: 2px;
    transition: all 0.3s;
}

.hero {
    min-height: 85vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 80px 24px 60px;
    background: linear-gradient(135deg, #FFF1F2 0%, #fff 50%, #FFF1F2 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(225,29,72,0.06) 0%, transparent 70%);
    border-radius: 50%;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -80px;
    left: -80px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(225,29,72,0.05) 0%, transparent 70%);
    border-radius: 50%;
}

.hero-badge {
    background: var(--rose-light);
    color: var(--rose-dark);
    font-size: 0.85rem;
    font-weight: 600;
    padding: 6px 16px;
    border-radius: 50px;
    margin-bottom: 28px;
    display: inline-block;
}

.hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.4rem, 5vw, 4rem);
    font-weight: 700;
    line-height: 1.2;
    color: var(--text);
    max-width: 700px;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.hero h1 em {
    font-style: italic;
    color: var(--rose);
}

.hero-sub {
    font-size: 1.05rem;
    color: var(--text-muted);
    max-width: 520px;
    margin-bottom: 36px;
    position: relative;
    z-index: 1;
}

.hero-sub strong {
    color: var(--text);
    font-weight: 600;
}

.hero-btns {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 48px;
    position: relative;
    z-index: 1;
}

.btn-primary {
    background: var(--rose);
    color: #fff;
    padding: 14px 32px;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.2s;
    display: inline-block;
}

.btn-primary:hover {
    background: var(--rose-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(225,29,72,0.35);
}

.btn-outline {
    background: transparent;
    color: var(--rose);
    padding: 14px 32px;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    border: 2px solid var(--rose);
    cursor: pointer;
    transition: all 0.2s;
    display: inline-block;
}

.btn-outline:hover {
    background: var(--rose-light);
    transform: translateY(-2px);
}

.trust-bar {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
    justify-content: center;
    position: relative;
    z-index: 1;
}

.trust-bar span {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 4px;
}

.categories {
    background: var(--bg-white);
    padding: 40px 24px;
    border-bottom: 1px solid var(--border);
}

.cat-grid {
    display: flex;
    gap: 8px;
    justify-content: center;
    flex-wrap: wrap;
}

.cat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 16px 24px;
    border-radius: var(--radius);
    text-decoration: none;
    color: var(--text);
    transition: all 0.2s;
    border: 1px solid var(--border);
    min-width: 90px;
}

.cat-item:hover {
    border-color: var(--rose-light);
    background: var(--rose-light);
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.cat-icon {
    font-size: 1.8rem;
}

.cat-item span {
    font-size: 0.85rem;
    font-weight: 500;
}

.about-section {
    padding: 80px 24px;
    background: var(--bg-white);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.section-label {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    color: var(--rose);
    text-transform: uppercase;
    margin-bottom: 12px;
}

.about-text h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 20px;
    color: var(--text);
}

.about-text p {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.7;
}

.about-text strong {
    color: var(--text);
}

.stats-row {
    display: flex;
    gap: 32px;
    margin-top: 36px;
    padding-top: 32px;
    border-top: 1px solid var(--border);
}

.stat strong {
    display: block;
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--rose);
}

.stat span {
    font-size: 0.82rem;
    color: var(--text-muted);
}

.about-card {
    display: flex;
    justify-content: center;
}

.about-card-inner {
    background: linear-gradient(135deg, #FFF1F2, #FFE4E6);
    border-radius: 24px;
    padding: 40px;
    text-align: center;
    position: relative;
    width: 280px;
    box-shadow: var(--shadow-lg);
}

.rating-badge {
    position: absolute;
    top: -16px;
    right: -16px;
    background: #FEF08A;
    border-radius: var(--radius-sm);
    padding: 8px 12px;
    font-size: 0.78rem;
    font-weight: 700;
    text-align: center;
    line-height: 1.3;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.brand-icon {
    font-size: 4rem;
    margin: 16px 0;
}

.about-card-inner h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    color: var(--rose-dark);
    margin-bottom: 4px;
}

.about-card-inner > p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.delivery-badge {
    position: absolute;
    bottom: -16px;
    left: -16px;
    background: var(--rose);
    color: #fff;
    border-radius: var(--radius-sm);
    padding: 10px 14px;
    font-size: 0.75rem;
    font-weight: 700;
    text-align: center;
    line-height: 1.3;
    box-shadow: 0 4px 12px rgba(225,29,72,0.3);
}

.collections-section {
    padding: 80px 24px;
    background: var(--bg);
}

.collections-section h2,
.featured-section h2,
.why-section h2,
.reviews-section h2,
.faq-section h2,
.contact-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text);
    text-align: center;
}

.section-sub {
    text-align: center;
    color: var(--text-muted);
    font-size: 1rem;
    margin-bottom: 40px;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
}

.collections-section .section-label,
.featured-section .section-label,
.why-section .section-label,
.reviews-section .section-label,
.faq-section .section-label,
.contact-section .section-label {
    text-align: center;
    display: block;
}

.filter-tabs {
    display: flex;
    gap: 8px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.tab-btn {
    padding: 8px 20px;
    border-radius: 50px;
    border: 2px solid var(--rose-light);
    background: transparent;
    color: var(--text-muted);
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
    font-family: 'Inter', sans-serif;
}

.tab-btn:hover,
.tab-btn.active {
    background: var(--rose);
    border-color: var(--rose);
    color: #fff;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.product-card {
    background: var(--bg-white);
    border-radius: var(--radius);
    padding: 20px;
    position: relative;
    transition: all 0.3s;
    border: 1px solid var(--border);
    cursor: pointer;
}

.product-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--rose-light);
}

.card-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    font-size: 0.72rem;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.card-badge.best-seller { background: #FED7AA; color: #9A3412; }
.card-badge.new { background: #BBF7D0; color: #166534; }
.card-badge.trending { background: #BFDBFE; color: #1E40AF; }
.card-badge.popular { background: #E9D5FF; color: #6B21A8; }

.wishlist-btn {
    position: absolute;
    top: 12px;
    right: 12px;
    background: none;
    border: none;
    font-size: 1.2rem;
    cursor: pointer;
    color: var(--text-muted);
    transition: all 0.2s;
    padding: 4px;
}

.wishlist-btn:hover {
    color: var(--rose);
    transform: scale(1.2);
}

.product-emoji {
    font-size: 3.5rem;
    text-align: center;
    margin: 28px 0 16px;
    display: block;
}

.product-cat {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: var(--rose);
    margin-bottom: 6px;
}

.product-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.0rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 16px;
    line-height: 1.4;
}

.product-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
}

.price {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text);
}

.btn-cart {
    background: var(--rose);
    color: #fff;
    border: none;
    padding: 7px 14px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    font-family: 'Inter', sans-serif;
    white-space: nowrap;
}

.btn-cart:hover {
    background: var(--rose-dark);
    transform: scale(1.05);
}

.product-card.hidden {
    display: none;
}

.featured-section {
    padding: 80px 24px;
    background: var(--bg-white);
}

.featured-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.featured-card {
    border-radius: var(--radius);
    padding: 32px 28px;
    position: relative;
    transition: all 0.3s;
    cursor: pointer;
}

.featured-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.featured-card.pink-bg { background: linear-gradient(135deg, #FFE4E6, #FFF1F2); }
.featured-card.yellow-bg { background: linear-gradient(135deg, #FEF9C3, #FFFBEB); }
.featured-card.purple-bg { background: linear-gradient(135deg, #EDE9FE, #F5F3FF); }

.featured-emoji {
    font-size: 4rem;
    margin: 20px 0 20px;
    display: block;
    text-align: center;
}

.featured-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--text);
}

.featured-card p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 20px;
}

.featured-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.why-section {
    padding: 80px 24px;
    background: var(--bg);
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.why-card {
    background: var(--bg-white);
    border-radius: var(--radius);
    padding: 28px 24px;
    transition: all 0.3s;
    border: 1px solid var(--border);
}

.why-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow);
    border-color: var(--rose-light);
}

.why-icon {
    font-size: 2rem;
    margin-bottom: 14px;
}

.why-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text);
}

.why-card p {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.6;
}

.reviews-section {
    padding: 80px 24px;
    background: var(--bg-white);
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.review-card {
    background: var(--bg);
    border-radius: var(--radius);
    padding: 28px 24px;
    border: 1px solid var(--rose-light);
    transition: all 0.3s;
}

.review-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow);
}

.stars {
    font-size: 1rem;
    margin-bottom: 14px;
}

.review-card p {
    font-size: 0.95rem;
    color: var(--text);
    line-height: 1.7;
    font-style: italic;
    margin-bottom: 20px;
}

.reviewer {
    display: flex;
    align-items: center;
    gap: 12px;
}

.reviewer-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--rose);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1rem;
    flex-shrink: 0;
}

.reviewer strong {
    display: block;
    font-size: 0.9rem;
    color: var(--text);
}

.reviewer span {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.faq-section {
    padding: 80px 24px;
    background: var(--bg);
}

.faq-container {
    max-width: 740px;
}

.faq-list {
    margin-top: 8px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-item {
    background: var(--bg-white);
    border-radius: var(--radius-sm);
    border: 1px solid var(--border);
    overflow: hidden;
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 18px 20px;
    background: none;
    border: none;
    text-align: left;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text);
    cursor: pointer;
    font-family: 'Inter', sans-serif;
    transition: background 0.2s;
}

.faq-question:hover {
    background: var(--rose-light);
}

.faq-icon {
    font-size: 1.2rem;
    font-weight: 400;
    color: var(--rose);
    transition: transform 0.3s;
    flex-shrink: 0;
}

.faq-item.open .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s;
    padding: 0 20px;
}

.faq-item.open .faq-answer {
    max-height: 200px;
    padding: 0 20px 18px;
}

.faq-answer p {
    font-size: 0.92rem;
    color: var(--text-muted);
    line-height: 1.7;
}

.contact-section {
    padding: 80px 24px;
    background: var(--bg-white);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.contact-info h2 {
    text-align: left;
    font-size: 2rem;
    margin-bottom: 12px;
}

.contact-info > p {
    color: var(--text-muted);
    margin-bottom: 32px;
    font-size: 0.95rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 24px;
}

.contact-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.contact-item strong {
    display: block;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--text);
    margin-bottom: 2px;
}

.contact-item p {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 8px;
}

.btn-whatsapp {
    display: inline-block;
    background: #25D366;
    color: #fff;
    padding: 7px 16px;
    border-radius: 50px;
    font-size: 0.82rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s;
}

.btn-whatsapp:hover {
    background: #1da851;
    transform: translateY(-1px);
}

.contact-socials {
    display: flex;
    gap: 12px;
    margin-top: 8px;
}

.contact-socials a {
    font-size: 1.5rem;
    text-decoration: none;
    padding: 8px;
    border-radius: var(--radius-sm);
    background: var(--bg);
    transition: all 0.2s;
}

.contact-socials a:hover {
    transform: scale(1.1);
    background: var(--rose-light);
}

.contact-form-wrap {
    background: var(--bg);
    border-radius: var(--radius);
    padding: 36px;
}

.contact-form-wrap h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 24px;
    color: var(--text);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 6px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #E5E7EB;
    border-radius: var(--radius-sm);
    font-size: 0.9rem;
    font-family: 'Inter', sans-serif;
    color: var(--text);
    background: var(--bg-white);
    transition: all 0.2s;
    outline: none;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--rose);
    box-shadow: 0 0 0 3px rgba(225, 29, 72, 0.1);
}

.form-group textarea {
    resize: vertical;
}

footer {
    background: var(--navy);
    color: #CBD5E1;
    padding-top: 60px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: #F9FAFB;
    margin-bottom: 14px;
}

.footer-brand p {
    font-size: 0.88rem;
    line-height: 1.7;
    margin-bottom: 20px;
}

.footer-socials {
    display: flex;
    gap: 8px;
}

.footer-socials a {
    font-size: 1.3rem;
    padding: 8px;
    border-radius: var(--radius-sm);
    background: rgba(255,255,255,0.08);
    text-decoration: none;
    transition: all 0.2s;
}

.footer-socials a:hover {
    background: rgba(255,255,255,0.15);
    transform: translateY(-2px);
}

.footer-col h4 {
    font-size: 0.9rem;
    font-weight: 700;
    color: #F9FAFB;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.footer-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-col ul a {
    text-decoration: none;
    color: #94A3B8;
    font-size: 0.88rem;
    transition: color 0.2s;
}

.footer-col ul a:hover {
    color: var(--rose-light);
}

.footer-seo {
    padding: 24px 0;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-seo p {
    font-size: 0.8rem;
    color: #475569;
    text-align: center;
    line-height: 1.7;
}

.footer-seo strong {
    color: #64748B;
}

.footer-bottom {
    padding: 20px 0;
    text-align: center;
}

.footer-bottom p {
    font-size: 0.82rem;
    color: #475569;
}

@media (max-width: 1024px) {
    .product-grid { grid-template-columns: repeat(2, 1fr); }
    .about-grid { grid-template-columns: 1fr; }
    .about-card { display: none; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    .nav-links { display: none; }

    .nav-links.open {
        display: flex;
        flex-direction: column;
        position: fixed;
        top: 64px;
        left: 0;
        right: 0;
        background: #fff;
        padding: 20px;
        border-bottom: 1px solid var(--rose-light);
        box-shadow: var(--shadow-lg);
        gap: 4px;
        z-index: 999;
    }

    .nav-links.open li a {
        display: block;
        padding: 12px 16px;
    }

    .btn-nav { display: none; }
    .hamburger { display: flex; }

    .hero h1 { font-size: 2rem; }
    .hero-btns { flex-direction: column; align-items: center; }

    .about-grid { gap: 32px; }
    .about-text h2 { font-size: 1.7rem; }

    .product-grid { grid-template-columns: repeat(2, 1fr); }
    .featured-grid { grid-template-columns: 1fr; }
    .why-grid { grid-template-columns: 1fr 1fr; }
    .reviews-grid { grid-template-columns: 1fr; }
    .contact-grid { grid-template-columns: 1fr; }

    .footer-grid { grid-template-columns: 1fr; gap: 28px; }

    .stats-row { flex-wrap: wrap; gap: 20px; }
}

@media (max-width: 480px) {
    .product-grid { grid-template-columns: 1fr; }
    .why-grid { grid-template-columns: 1fr; }
    .cat-grid { gap: 6px; }
    .cat-item { min-width: 80px; padding: 12px 16px; }
}
