/* ===== RESET & BASE ===== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --bg-primary: #ffffff;
    --bg-cream: #faf7f2;
    --bg-light: #f5f0ea;
    --pink: #d6336c;
    --pink-light: #e8457a;
    --pink-dark: #c2255c;
    --pink-glow: rgba(214, 51, 108, 0.15);
    --text-dark: #1a1a1a;
    --text-body: #555555;
    --text-muted: #999999;
    --border-color: #e8e4de;
    --border-light: #f0ece6;
    --transition: all 0.3s ease;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background-color: var(--bg-primary);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

/* ===== NAVBAR ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(250, 247, 242, 0.9);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-color);
    padding: 0.8rem 0;
}

.nav-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-dark);
    letter-spacing: 3px;
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a {
    color: var(--text-body);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    transition: var(--transition);
}

.nav-links a:hover {
    color: var(--pink);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: var(--text-dark);
    font-size: 1.3rem;
    cursor: pointer;
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.8rem 2rem;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    font-family: inherit;
}

.btn-pink {
    background: var(--pink);
    color: white;
}

.btn-pink:hover {
    background: var(--pink-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px var(--pink-glow);
}

.btn-outline-dark {
    background: transparent;
    color: var(--text-dark);
    border: 1.5px solid var(--text-dark);
}

.btn-outline-dark:hover {
    background: var(--text-dark);
    color: white;
    transform: translateY(-2px);
}

.btn-block {
    width: 100%;
}

/* ===== HERO ===== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
background: linear-gradient(rgba(10, 10, 10, 0.7), rgba(10, 10, 10, 0.7)), 
                url('/imag/hero.jpg'); /* Usa el nombre exacto de tu archivo */
    background-size: cover;
    background-position: center;}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(180, 140, 60, 0.35) 0%, rgba(180, 140, 60, 0.5) 100%);
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 650px;
    padding: 2rem 1.5rem;
}

.hero-tag {
    display: inline-block;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 3px;
    color: white;
    margin-bottom: 1rem;
    opacity: 0.9;
}

.hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    font-weight: 400;
    line-height: 1.1;
    margin-bottom: 1rem;
    color: white;
}

.hero h1 em {
    font-style: italic;
}

.hero-script {
    font-style: italic;
    font-weight: 700;
}

.hero-subtitle {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
    max-width: 450px;
    margin: 0 auto 2rem;
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.hero .btn-outline-dark {
    color: white;
    border-color: white;
}

.hero .btn-outline-dark:hover {
    background: white;
    color: var(--text-dark);
}

/* ===== SECTION STYLES ===== */
section {
    padding: 5rem 1.5rem;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-tag {
    display: inline-block;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 2.5px;
    color: var(--pink);
    margin-bottom: 0.5rem;
}

.section-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 0.6rem;
    color: var(--text-dark);
}

.section-subtitle {
    color: var(--text-body);
    max-width: 500px;
    margin: 0 auto;
    font-size: 0.88rem;
    line-height: 1.6;
}

/* ===== ABOUT ===== */
.about {
    background: var(--bg-cream);
}

.about-container {
    max-width: 1000px;
    margin: 0 auto;
}

.about-content {
    display: flex;
    gap: 3.5rem;
    align-items: flex-start;
}

.about-image-wrapper {
    position: relative;
    min-width: 340px;
    flex-shrink: 0;
}

.about-image-wrapper img {
    width: 340px;
    height: 420px;
    object-fit: cover;
    border-radius: 10px;
}

.about-badge {
    position: absolute;
    bottom: -15px;
    left: -15px;
    background: var(--pink);
    color: white;
    border-radius: 50%;
    width: 90px;
    height: 90px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px var(--pink-glow);
}

.badge-number {
    font-size: 1.4rem;
    font-weight: 800;
    line-height: 1;
}

.badge-text {
    font-size: 0.5rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-align: center;
    line-height: 1.1;
    margin-top: 2px;
}

.about-label {
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--text-muted);
    display: block;
    margin-bottom: 0.3rem;
}

.about-text h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

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

.about-stats {
    display: flex;
    gap: 2rem;
    margin: 1.5rem 0;
    padding: 1.2rem 0;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.about-stat {
    text-align: center;
}

.stat-num {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--text-dark);
}

.stat-num small {
    font-size: 0.9rem;
}

.stat-label {
    display: block;
    font-size: 0.7rem;
    color: var(--text-muted);
    margin-top: 0.1rem;
}

/* ===== COLLECTION ===== */
.collection {
    background: var(--bg-primary);
}

.collection-container {
    max-width: 1100px;
    margin: 0 auto;
}

.collection-tabs {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
}

.tab-btn {
    padding: 0.5rem 1.2rem;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 1px;
    border: 1.5px solid var(--border-color);
    background: transparent;
    color: var(--text-body);
    border-radius: 4px;
    cursor: pointer;
    transition: var(--transition);
    font-family: inherit;
}

.tab-btn.active,
.tab-btn:hover {
    background: var(--pink);
    color: white;
    border-color: var(--pink);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.product-card {
    transition: var(--transition);
}

.product-card:hover {
    transform: translateY(-4px);
}

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

.product-image {
    position: relative;
    height: 320px;
    overflow: hidden;
    border-radius: 8px;
    margin-bottom: 0.6rem;
    background: var(--bg-cream);
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.product-card:hover .product-image img {
    transform: scale(1.05);
}

.product-badge {
    position: absolute;
    top: 0.8rem;
    left: 0.8rem;
    background: white;
    color: var(--text-dark);
    padding: 0.2rem 0.6rem;
    border-radius: 4px;
    font-size: 0.7rem;
    font-weight: 700;
}

.product-card h4 {
    font-size: 0.88rem;
    font-weight: 600;
    margin-bottom: 0.15rem;
}

.product-price {
    color: var(--pink);
    font-size: 0.82rem;
    font-weight: 700;
}

.collection-cta {
    text-align: center;
    margin-top: 2.5rem;
}

/* ===== GALLERY ===== */
.gallery {
    background: var(--bg-cream);
}

.gallery-container {
    max-width: 1100px;
    margin: 0 auto;
}

.gallery-slider {
    overflow: hidden;
    border-radius: 10px;
}

.gallery-track {
    display: flex;
    gap: 1.2rem;
}

.gallery-slide {
    flex: 0 0 calc(25% - 0.9rem);
    border-radius: 10px;
    overflow: hidden;
}

.gallery-slide img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    transition: var(--transition);
}

.gallery-slide:hover img {
    transform: scale(1.05);
}

.gallery-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1.5rem;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--border-color);
    cursor: pointer;
    transition: var(--transition);
}

.dot.active {
    background: var(--pink);
    width: 28px;
    border-radius: 5px;
}

/* ===== FAQ ===== */
.faq {
    background: var(--bg-light);
}

.faq-container {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 3rem;
    align-items: flex-start;
}

.faq-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 1rem;
}

.faq-desc {
    color: var(--text-body);
    font-size: 0.85rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.faq-item {
    border-bottom: 1px solid var(--border-color);
    transition: var(--transition);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
    background: none;
    border: none;
    color: var(--text-dark);
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    text-align: left;
    font-family: inherit;
    gap: 1rem;
}

.faq-question i {
    color: var(--text-muted);
    font-size: 0.8rem;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.faq-item.active .faq-question i {
    transform: rotate(45deg);
    color: var(--pink);
}

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

.faq-item.active .faq-answer {
    max-height: 200px;
    padding-bottom: 1rem;
}

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

/* ===== CONTACT ===== */
.contact {
    background: var(--bg-primary);
}

.contact-container {
    max-width: 1000px;
    margin: 0 auto;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.contact-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.8rem;
    margin-bottom: 1.2rem;
}

.contact-images img {
    width: 100%;
    height: 160px;
    object-fit: cover;
    border-radius: 8px;
}

.contact-details p {
    color: var(--text-body);
    font-size: 0.82rem;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    margin-bottom: 0.5rem;
}

.contact-details i {
    color: var(--pink);
    width: 16px;
    text-align: center;
}

.contact-form-wrapper h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.3rem;
}

.form-desc {
    color: var(--text-muted);
    font-size: 0.82rem;
    margin-bottom: 1.2rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-group {
    margin-bottom: 0.8rem;
}

.form-group label {
    display: block;
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    color: var(--text-body);
    margin-bottom: 0.3rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.7rem 0.9rem;
    background: var(--bg-cream);
    border: 1px solid var(--border-color);
    border-radius: 4px;
    color: var(--text-dark);
    font-size: 0.82rem;
    font-family: inherit;
    transition: var(--transition);
    outline: none;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--pink);
    box-shadow: 0 0 0 2px var(--pink-glow);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-muted);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

/* ===== FOOTER ===== */
.footer {
    background: var(--bg-cream);
    border-top: 1px solid var(--border-color);
}

.footer-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 3rem 1.5rem 2rem;
    display: grid;
    grid-template-columns: 1.8fr 1fr 1fr 1fr;
    gap: 2.5rem;
}

.footer-logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    font-weight: 700;
    letter-spacing: 3px;
    color: var(--text-dark);
    display: inline-block;
    margin-bottom: 0.8rem;
}

.footer-desc {
    color: var(--text-muted);
    font-size: 0.78rem;
    line-height: 1.6;
    margin-bottom: 1rem;
    max-width: 280px;
}

.footer-socials {
    display: flex;
    gap: 0.5rem;
}

.footer-socials a {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-body);
    font-size: 0.85rem;
    transition: var(--transition);
}

.footer-socials a:hover {
    border-color: var(--pink);
    color: var(--pink);
    background: var(--pink-glow);
}

.footer-col h4 {
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.footer-col ul li {
    margin-bottom: 0.5rem;
}

.footer-col ul li a {
    color: var(--text-muted);
    font-size: 0.78rem;
    transition: var(--transition);
}

.footer-col ul li a:hover {
    color: var(--pink);
}

.footer-bottom {
    max-width: 1100px;
    margin: 0 auto;
    padding: 1.5rem 1.5rem;
    border-top: 1px solid var(--border-color);
    text-align: center;
}

.footer-bottom p {
    color: var(--text-muted);
    font-size: 0.72rem;
}

/* ===== ANIMATIONS ===== */
.fade-in {
    opacity: 0;
    transform: translateY(25px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(250, 247, 242, 0.98);
        flex-direction: column;
        padding: 1rem 1.5rem;
        gap: 0;
        border-bottom: 1px solid var(--border-color);
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links li a {
        display: block;
        padding: 0.7rem 0;
        border-bottom: 1px solid var(--border-color);
    }

    .mobile-menu-btn {
        display: block;
    }

    .hero h1 {
        font-size: 2.8rem;
    }

    .about-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .about-image-wrapper {
        min-width: auto;
    }

    .about-stats {
        justify-content: center;
    }

    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .gallery-slide {
        flex: 0 0 calc(50% - 0.6rem);
    }

    .faq-container {
        grid-template-columns: 1fr;
    }

    .contact-content {
        grid-template-columns: 1fr;
    }

    .footer-container {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
}

@media (max-width: 600px) {
    .hero h1 {
        font-size: 2.2rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .about-image-wrapper img {
        width: 280px;
        height: 350px;
    }

    .products-grid {
        grid-template-columns: 1fr;
        max-width: 350px;
        margin: 0 auto;
    }

    .gallery-slide {
        flex: 0 0 100%;
    }

    .section-header h2 {
        font-size: 1.8rem;
    }

    .faq-title {
        font-size: 2rem;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .footer-container {
        grid-template-columns: 1fr;
    }

    .contact-images {
        grid-template-columns: 1fr;
    }
}
