/* ============== DESIGN TOKENS ============== */
:root {
    --baby-pink: #F4C2C2;
    --baby-pink-soft: #FBE4E4;
    --baby-pink-deep: #E8A5A5;
    --rose-gold: #C9A07A;
    --cream: #FAF7F5;
    --ink: #1F1A1C;
    --graphite: #3D3438;
    --mist: #F5F1F0;
    --white: #ffffff;

    --shadow-soft: 0 10px 40px -10px rgba(232, 165, 165, 0.35);
    --shadow-card: 0 20px 50px -20px rgba(31, 26, 28, 0.15);

    --font-display: 'Cormorant Garamond', Georgia, serif;
    --font-sans: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
}

/* ============== RESET ============== */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
    font-family: var(--font-sans);
    background-color: var(--cream);
    color: var(--ink);
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; display: block; }
button { font: inherit; cursor: pointer; background: none; border: none; color: inherit; }
a { color: inherit; text-decoration: none; }

/* ============== KEYFRAMES ============== */
@keyframes fadeUp {
    0% { opacity: 0; transform: translateY(20px); }
    100% { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
    0% { opacity: 0; }
    100% { opacity: 1; }
}
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
}
@keyframes pulse-ring {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6); }
    70% { box-shadow: 0 0 0 18px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}
@keyframes scroll-marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ============== NAVBAR ============== */
.navbar {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 50;
    background-color: rgba(250, 247, 245, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--baby-pink-soft);
    transition: box-shadow 0.3s ease;
}
.navbar.scrolled { box-shadow: var(--shadow-soft); }
.navbar-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
@media (min-width: 1024px) {
    .navbar-inner { padding: 0 3rem; }
}
.logo { display: flex; flex-direction: column; line-height: 1; }
.logo-name {
    font-family: var(--font-display);
    font-size: 1.625rem;
    font-weight: 500;
    letter-spacing: -0.02em;
}
.logo-tag {
    font-size: 0.625rem;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    color: var(--rose-gold);
    font-weight: 500;
    margin-top: -0.125rem;
}
.nav-links { display: none; align-items: center; gap: 2.5rem; }
@media (min-width: 768px) {
    .nav-links { display: flex; }
}
.nav-link {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--graphite);
    transition: color 0.2s;
}
.nav-link:hover { color: var(--ink); }
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.625rem 1.25rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}
.btn-primary { background: var(--ink); color: var(--baby-pink-soft); }
.btn-primary:hover { background: var(--graphite); }
.menu-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    color: var(--ink);
}
@media (min-width: 768px) {
    .menu-toggle { display: none; }
}
.mobile-menu {
    position: fixed;
    top: 80px;
    right: 0;
    bottom: 0;
    width: 18rem;
    background: var(--cream);
    border-left: 1px solid var(--baby-pink-soft);
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 49;
}
.mobile-menu.open { transform: translateX(0); }
.mobile-menu-inner {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}
.mobile-link {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--ink);
}
.mobile-divider {
    height: 1px;
    background: var(--baby-pink);
    margin: 0.5rem 0;
}

/* ============== HERO ============== */
.hero {
    position: relative;
    min-height: 100vh;
    padding-top: 80px;
    overflow: hidden;
    background:
        radial-gradient(ellipse at top right, rgba(244, 194, 194, 0.55) 0%, transparent 55%),
        radial-gradient(ellipse at bottom left, rgba(251, 228, 228, 0.7) 0%, transparent 50%),
        linear-gradient(180deg, #FAF7F5 0%, #FBE4E4 100%);
}
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.4'/%3E%3C/svg%3E");
    opacity: 0.06;
    pointer-events: none;
    mix-blend-mode: multiply;
}
.hero-decoration {
    position: absolute;
    top: 8rem;
    opacity: 0.3;
    width: 10rem;
    pointer-events: none;
}
.hero-decoration.left { left: 0; transform: translateX(-2rem); }
.hero-decoration.right { right: 0; top: 10rem; transform: translateX(2rem) scaleX(-1); }
@media (min-width: 1024px) {
    .hero-decoration { width: 16rem; }
}
.hero-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 4rem 1.5rem 6rem;
    display: grid;
    gap: 3rem;
    align-items: center;
    position: relative;
    z-index: 10;
}
@media (min-width: 1024px) {
    .hero-inner {
        grid-template-columns: 7fr 5fr;
        padding: 6rem 3rem;
    }
}
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.375rem 1rem;
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(8px);
    border: 1px solid var(--baby-pink);
    border-radius: 9999px;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.25em;
    color: var(--graphite);
    margin-bottom: 2rem;
    animation: fadeIn 0.6s ease-out forwards;
}
.hero-badge-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--rose-gold);
}
.hero-title {
    font-family: var(--font-display);
    font-weight: 300;
    font-size: 3.75rem;
    line-height: 0.95;
    letter-spacing: -0.02em;
    color: var(--ink);
    margin-bottom: 1.5rem;
    animation: fadeUp 0.8s ease-out forwards;
}
.hero-title em {
    font-style: italic;
    font-weight: 500;
    color: var(--baby-pink-deep);
}
@media (min-width: 640px) { .hero-title { font-size: 4.5rem; } }
@media (min-width: 1024px) { .hero-title { font-size: 6rem; } }
@media (min-width: 1280px) { .hero-title { font-size: 7rem; } }

.hero-subtitle {
    font-size: 1rem;
    color: var(--graphite);
    max-width: 28rem;
    line-height: 1.7;
    margin-bottom: 2.5rem;
    animation: fadeUp 0.8s ease-out 0.15s both;
}
@media (min-width: 1024px) { .hero-subtitle { font-size: 1.125rem; } }
.hero-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    animation: fadeUp 0.8s ease-out 0.3s both;
}
.btn-large { padding: 1rem 1.75rem; font-size: 0.875rem; }
.btn-large .icon { transition: transform 0.3s; }
.btn-large:hover .icon { transform: translateX(4px); }
.btn-outline { border: 1px solid rgba(31, 26, 28, 0.2); color: var(--ink); }
.btn-outline:hover { background: rgba(255, 255, 255, 0.6); }

.hero-visual {
    position: relative;
    animation: fadeUp 0.8s ease-out 0.4s both;
}
.hero-image-wrap {
    position: relative;
    aspect-ratio: 3 / 4;
    border-radius: 3rem;
    overflow: hidden;
    box-shadow: var(--shadow-card);
    animation: float 6s ease-in-out infinite;
}
.hero-image-wrap img { width: 100%; height: 100%; object-fit: cover; }
.hero-mini-card {
    display: none;
    position: absolute;
    bottom: -1.5rem;
    left: -1.5rem;
    background: var(--white);
    border-radius: 1rem;
    box-shadow: var(--shadow-card);
    padding: 1.25rem;
    align-items: center;
    gap: 1rem;
    max-width: 240px;
}
@media (min-width: 640px) { .hero-mini-card { display: flex; } }
@media (min-width: 1024px) { .hero-mini-card { left: -3rem; } }
.hero-mini-icon {
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    background: var(--baby-pink-soft);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--baby-pink-deep);
}
.hero-mini-title { font-family: var(--font-display); font-size: 1.125rem; line-height: 1.2; }
.hero-mini-sub { font-size: 0.75rem; color: var(--graphite); }
.hero-tag {
    position: absolute;
    top: -1rem;
    right: -1rem;
    padding: 0.5rem 1rem;
    background: var(--baby-pink-deep);
    color: var(--white);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    border-radius: 9999px;
    transform: rotate(6deg);
    box-shadow: var(--shadow-soft);
}
@media (min-width: 1024px) { .hero-tag { right: -2rem; } }

/* Marquee */
.marquee {
    border-top: 1px solid rgba(244, 194, 194, 0.4);
    background: rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(4px);
    padding: 1.25rem 0;
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    z-index: 5;
}
.marquee-track {
    display: flex;
    width: max-content;
    animation: scroll-marquee 30s linear infinite;
}
.marquee-group {
    display: inline-flex;
    gap: 3rem;
    padding-right: 3rem;
    flex-shrink: 0;
}
.marquee-item {
    font-family: var(--font-display);
    font-style: italic;
    font-size: 1.5rem;
    color: var(--graphite);
}
.marquee-sep { color: var(--rose-gold); }

/* ============== SECTIONS ============== */
.section { padding: 5rem 0; }
@media (min-width: 1024px) { .section { padding: 7rem 0; } }
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
}
@media (min-width: 1024px) { .container { padding: 0 3rem; } }
.section-header { text-align: center; margin-bottom: 4rem; }
.divider-ornament {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    color: var(--rose-gold);
    margin-bottom: 1.5rem;
}
.divider-ornament::before,
.divider-ornament::after {
    content: '';
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--rose-gold), transparent);
    flex: 1;
    max-width: 80px;
}
.section-title {
    font-family: var(--font-display);
    font-size: 2.25rem;
    font-weight: 300;
    color: var(--ink);
    margin-bottom: 0.75rem;
}
@media (min-width: 1024px) { .section-title { font-size: 3rem; } }
.section-subtitle { color: var(--graphite); max-width: 28rem; margin: 0 auto; }

/* Info cards */
.info-grid { display: grid; gap: 1.5rem; }
@media (min-width: 768px) {
    .info-grid { grid-template-columns: repeat(3, 1fr); gap: 2rem; }
}
.info-card {
    background: var(--white);
    border-radius: 1.5rem;
    padding: 2rem;
    border: 1px solid var(--baby-pink-soft);
    transition: box-shadow 0.3s ease;
}
@media (min-width: 1024px) { .info-card { padding: 2.5rem; } }
.info-card:hover { box-shadow: var(--shadow-soft); }
.info-card.accent { background: var(--baby-pink-soft); border-color: var(--baby-pink); }
.info-icon {
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 1rem;
    background: var(--baby-pink-soft);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--baby-pink-deep);
    margin-bottom: 1.5rem;
}
.info-card.accent .info-icon { background: var(--white); }
.info-title { font-family: var(--font-display); font-size: 1.5rem; margin-bottom: 0.75rem; }
.info-text { color: var(--graphite); line-height: 1.7; }
.info-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--ink);
    font-weight: 500;
    margin-top: 1rem;
    transition: color 0.2s;
}
.info-link:hover { color: var(--baby-pink-deep); }

/* ============== CATALOG PREVIEW (página principal) ============== */
.catalog-preview { background: var(--mist); }
.preview-card {
    background: var(--white);
    border-radius: 2rem;
    padding: 2.5rem;
    border: 1px solid var(--baby-pink-soft);
    box-shadow: var(--shadow-card);
    display: grid;
    gap: 2.5rem;
    align-items: center;
}
@media (min-width: 1024px) {
    .preview-card {
        grid-template-columns: 1fr 1fr;
        padding: 4rem;
        gap: 4rem;
    }
}
.preview-content {
    display: flex;
    flex-direction: column;
}
.preview-title {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 300;
    color: var(--ink);
    line-height: 1;
    margin: 0.75rem 0 1.25rem;
}
@media (min-width: 1024px) { .preview-title { font-size: 3.5rem; } }
.preview-title em { font-style: italic; font-weight: 500; color: var(--baby-pink-deep); }
.preview-desc {
    color: var(--graphite);
    line-height: 1.7;
    margin-bottom: 1.75rem;
    max-width: 32rem;
}
.preview-cats {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 2rem;
}
.preview-chip {
    padding: 0.4rem 0.9rem;
    background: var(--baby-pink-soft);
    border: 1px solid var(--baby-pink);
    border-radius: 9999px;
    font-size: 0.8rem;
    color: var(--graphite);
    font-weight: 500;
}
.preview-card .btn { align-self: flex-start; }
.preview-visual {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
}
.preview-image-tile {
    aspect-ratio: 3 / 4;
    border-radius: 1rem;
    overflow: hidden;
    background: var(--baby-pink-soft);
}
.preview-image-tile img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}
.preview-image-tile:hover img { transform: scale(1.06); }
.preview-image-tile.tile-1 { transform: translateY(-0.75rem); }
.preview-image-tile.tile-4 { transform: translateY(-0.75rem); }

/* ============== CATALOG (página interna) ============== */
.catalog { background: var(--mist); }
.catalog-page {
    padding-top: 7rem;
}
@media (min-width: 1024px) {
    .catalog-page { padding-top: 9rem; }
}
.back-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 2rem;
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    background: var(--white);
    border: 1px solid var(--baby-pink-soft);
    color: var(--graphite);
    font-size: 0.875rem;
    font-weight: 500;
    transition: all 0.3s;
}
.back-link:hover {
    border-color: var(--baby-pink-deep);
    color: var(--ink);
    transform: translateX(-3px);
}
.catalog-header {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 3rem;
}
@media (min-width: 1024px) {
    .catalog-header {
        flex-direction: row;
        align-items: flex-end;
        justify-content: space-between;
    }
}
.catalog-eyebrow {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    color: var(--rose-gold);
    margin-bottom: 0.75rem;
}
.catalog-title {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 300;
    color: var(--ink);
    line-height: 0.95;
}
@media (min-width: 1024px) { .catalog-title { font-size: 3.75rem; } }
.catalog-title em { font-style: italic; font-weight: 500; }
.catalog-desc { color: var(--graphite); max-width: 28rem; }
@media (min-width: 1024px) { .catalog-desc { text-align: right; } }

.filter-bar {
    margin-bottom: 3rem;
    margin-left: -1.5rem;
    margin-right: -1.5rem;
    padding: 0 1.5rem;
    overflow-x: auto;
    -ms-overflow-style: none;
    scrollbar-width: none;
}
.filter-bar::-webkit-scrollbar { display: none; }
@media (min-width: 1024px) {
    .filter-bar { margin-left: 0; margin-right: 0; padding: 0; overflow: visible; }
}
.filter-bar-inner { display: flex; gap: 0.625rem; min-width: max-content; }
@media (min-width: 1024px) {
    .filter-bar-inner { flex-wrap: wrap; min-width: 0; }
}
.filter-btn {
    white-space: nowrap;
    padding: 0.625rem 1.25rem;
    border-radius: 9999px;
    border: 1px solid rgba(232, 165, 165, 0.5);
    color: var(--graphite);
    font-size: 0.875rem;
    font-weight: 500;
    transition: all 0.3s ease;
}
.filter-btn:hover:not(.active) { border-color: var(--ink); color: var(--ink); }
.filter-btn.active {
    background: var(--ink);
    color: var(--baby-pink-soft);
    border-color: var(--ink);
}
.product-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
}
@media (min-width: 768px) { .product-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1024px) { .product-grid { grid-template-columns: repeat(4, 1fr); gap: 1.75rem; } }
.product-card {
    background: var(--white);
    border-radius: 1rem;
    overflow: hidden;
    border: 1px solid var(--baby-pink-soft);
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.5s ease;
}
.product-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-card); }
.product-image-wrap {
    aspect-ratio: 3 / 4;
    overflow: hidden;
    background: var(--baby-pink-soft);
    position: relative;
}
.product-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}
.product-card:hover .product-image { transform: scale(1.06); }
.product-tag {
    position: absolute;
    top: 0.75rem;
    left: 0.75rem;
    padding: 0.25rem 0.75rem;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(4px);
    font-size: 0.625rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    border-radius: 9999px;
    color: var(--graphite);
}
.product-body { padding: 1rem; }
@media (min-width: 1024px) { .product-body { padding: 1.25rem; } }
.product-name {
    font-family: var(--font-display);
    font-size: 1.125rem;
    color: var(--ink);
    line-height: 1.2;
    margin-bottom: 0.25rem;
}
@media (min-width: 1024px) { .product-name { font-size: 1.25rem; } }
.product-footer {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 0.5rem;
    margin-top: 0.75rem;
}
.product-price-label {
    font-size: 0.625rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: rgba(61, 52, 56, 0.6);
}
.product-price {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--baby-pink-deep);
    font-weight: 500;
}
.product-wa {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    background: var(--ink);
    color: var(--white);
    border-radius: 50%;
    transition: background 0.3s;
    flex-shrink: 0;
}
@media (min-width: 1024px) { .product-wa { width: 2.75rem; height: 2.75rem; } }
.product-wa:hover { background: var(--baby-pink-deep); }

/* ============== TALLAS ============== */
.product-sizes {
    display: flex;
    flex-wrap: wrap;
    gap: 0.3rem;
    margin-top: 0.5rem;
    margin-bottom: 0.25rem;
}
.size-chip {
    font-size: 0.6rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    padding: 0.2rem 0.45rem;
    border-radius: 0.3rem;
    border: 1px solid var(--baby-pink-deep);
    color: var(--graphite);
    background: var(--baby-pink-soft);
    line-height: 1.4;
}
.product-sizes-label {
    font-size: 0.6rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: rgba(61, 52, 56, 0.55);
    margin-top: 0.6rem;
    margin-bottom: 0.2rem;
}

.empty-state { display: none; text-align: center; padding: 5rem 1rem; }
.empty-state.show { display: block; }
.empty-state-icon { color: var(--baby-pink-deep); margin: 0 auto 1rem; }
.empty-state-text { font-family: var(--font-display); font-size: 1.5rem; color: var(--graphite); }

/* ============== CONTACT / FOOTER ============== */
.contact {
    background: var(--ink);
    color: var(--cream);
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}
@media (min-width: 1024px) { .contact { padding: 8rem 0; } }
.contact-blob-1, .contact-blob-2 {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    pointer-events: none;
}
.contact-blob-1 {
    top: 0; right: 0;
    width: 500px; height: 500px;
    background: rgba(232, 165, 165, 0.2);
    transform: translate(25%, -50%);
}
.contact-blob-2 {
    bottom: 0; left: 0;
    width: 400px; height: 400px;
    background: rgba(201, 160, 122, 0.15);
    transform: translate(-25%, 50%);
    filter: blur(100px);
}
.contact-inner { position: relative; z-index: 10; }
.contact-grid { display: grid; gap: 4rem; margin-bottom: 5rem; }
@media (min-width: 1024px) { .contact-grid { grid-template-columns: 1fr 1fr; } }
.contact-eyebrow {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    color: var(--baby-pink);
    margin-bottom: 1rem;
}
.contact-title {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 300;
    line-height: 0.95;
    margin-bottom: 1.5rem;
}
@media (min-width: 1024px) { .contact-title { font-size: 4.5rem; } }
.contact-title em { font-style: italic; color: var(--baby-pink); }
.contact-text { color: rgba(250, 247, 245, 0.7); max-width: 28rem; }
.contact-list { padding-top: 0; }
@media (min-width: 1024px) { .contact-list { padding-top: 3rem; } }
.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(250, 247, 245, 0.15);
    margin-bottom: 2rem;
    transition: border-color 0.3s;
}
.contact-item:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
.contact-item.link:hover { border-color: var(--baby-pink); }
.contact-icon {
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    background: rgba(244, 194, 194, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--baby-pink);
    transition: background 0.3s;
}
.contact-item.link:hover .contact-icon { background: rgba(244, 194, 194, 0.2); }
.contact-item-content { flex: 1; }
.contact-item-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: rgba(250, 247, 245, 0.5);
    margin-bottom: 0.25rem;
}
.contact-item-value { font-family: var(--font-display); font-size: 1.5rem; line-height: 1.2; }
.contact-item-value.large { font-size: 1.875rem; }
.contact-arrow { color: rgba(250, 247, 245, 0.5); transition: all 0.3s; flex-shrink: 0; }
.contact-item.link:hover .contact-arrow {
    color: var(--baby-pink);
    transform: translate(4px, -4px);
}
.contact-footer {
    border-top: 1px solid rgba(250, 247, 245, 0.15);
    padding-top: 2.5rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}
@media (min-width: 1024px) {
    .contact-footer {
        flex-direction: row;
        align-items: flex-end;
        justify-content: space-between;
    }
}
.contact-signature {
    font-family: var(--font-display);
    font-size: 4.5rem;
    font-weight: 300;
    line-height: 1;
}
@media (min-width: 1024px) { .contact-signature { font-size: 8rem; } }
.contact-signature-tag {
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.4em;
    color: var(--baby-pink);
    margin-top: 0.5rem;
}
.contact-meta {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    color: rgba(250, 247, 245, 0.5);
    font-size: 0.875rem;
}
@media (min-width: 1024px) { .contact-meta { align-items: flex-end; } }
.contact-heart { color: var(--baby-pink); }

/* ============== MINI FOOTER (catálogo) ============== */
.mini-footer {
    background: var(--cream);
    border-top: 1px solid var(--baby-pink-soft);
    padding: 2.5rem 0;
}
.mini-footer-inner {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    align-items: flex-start;
}
@media (min-width: 768px) {
    .mini-footer-inner {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }
}
.mini-footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}
@media (min-width: 640px) {
    .mini-footer-links { flex-direction: row; gap: 1.5rem; }
}

/* ============== FLOATING WHATSAPP ============== */
.wa-float {
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    z-index: 40;
    width: 3.5rem;
    height: 3.5rem;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    color: white;
    animation: pulse-ring 2.2s infinite;
    transition: transform 0.3s;
}
.wa-float:hover { transform: scale(1.1); }
@media (min-width: 1024px) {
    .wa-float { width: 4rem; height: 4rem; }
}

/* ============== UTILS ============== */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.9s ease-out, transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.icon { width: 1rem; height: 1rem; flex-shrink: 0; }
.icon-sm { width: 0.875rem; height: 0.875rem; }
.icon-md { width: 1.25rem; height: 1.25rem; }
.icon-lg { width: 1.5rem; height: 1.5rem; }

/* Reduce motion preference */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

/* ============== HERO FULL-BLEED (foto de fondo) ============== */
.hero-fullbleed {
    position: relative;
    min-height: 100vh;
    padding-top: 80px;
    overflow: hidden;
    background: var(--ink); /* fallback while image loads */
    display: flex;
    flex-direction: column;
}

/* --- Background image layer --- */
.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}
.hero-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 20%;
    display: block;
}
/* Gradient overlay: dark on the left for text legibility, fades to transparent on the right */
.hero-bg-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            to right,
            rgba(15, 10, 12, 0.82) 0%,
            rgba(15, 10, 12, 0.60) 40%,
            rgba(15, 10, 12, 0.20) 70%,
            rgba(15, 10, 12, 0.05) 100%
        ),
        linear-gradient(
            to top,
            rgba(15, 10, 12, 0.55) 0%,
            transparent 35%
        );
}

/* --- Content wrapper --- */
.hero-fullbleed-inner {
    position: relative;
    z-index: 10;
    flex: 1;
    display: flex;
    align-items: center;
    max-width: 1280px;
    width: 100%;
    margin: 0 auto;
    padding: 4rem 1.5rem 5rem;
}
@media (min-width: 1024px) {
    .hero-fullbleed-inner { padding: 5rem 3rem 6rem; }
}

.hero-fullbleed-content {
    max-width: 38rem;
}

/* --- Badge variant for dark bg --- */
.hero-badge-light {
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-color: rgba(255, 255, 255, 0.25);
    color: rgba(255, 255, 255, 0.85);
}

/* --- Title variant for dark bg --- */
.hero-title-light {
    color: #ffffff;
    text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}
.hero-title-light em {
    color: var(--baby-pink);
}

/* --- Subtitle variant --- */
.hero-subtitle-light {
    color: rgba(255, 255, 255, 0.80);
}

/* --- Outline button variant for dark bg --- */
.btn-outline-light {
    border: 1px solid rgba(255, 255, 255, 0.45);
    color: #ffffff;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
}
.btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.18);
    border-color: rgba(255, 255, 255, 0.7);
}

/* --- Scroll-down indicator --- */
@keyframes bounce-y {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(6px); }
}

/* ============== PRODUCT CARD — CAROUSEL ============== */

/* The image area becomes a carousel track */
.product-image-wrap {
    position: relative;
    aspect-ratio: 3 / 4;
    overflow: hidden;
    background: var(--baby-pink-soft);
    cursor: pointer;
}

/* Slide strip */
.carousel-track {
    display: flex;
    height: 100%;
    transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: transform;
}

.carousel-slide {
    flex: 0 0 100%;
    width: 100%;
    height: 100%;
    position: relative;
}

.carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

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

/* Arrow buttons */
.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--ink);
    box-shadow: 0 2px 12px rgba(0,0,0,0.15);
    opacity: 0;
    transition: opacity 0.25s, background 0.2s, transform 0.2s;
    pointer-events: none;
}
.carousel-btn svg { width: 0.875rem; height: 0.875rem; stroke-width: 2.5; }
.carousel-btn-prev { left: 0.5rem; }
.carousel-btn-next { right: 0.5rem; }
.carousel-btn:hover { background: var(--white); transform: translateY(-50%) scale(1.08); }

/* Show arrows on card hover (desktop) */
@media (hover: hover) {
    .product-card:hover .carousel-btn {
        opacity: 1;
        pointer-events: auto;
    }
    /* Hide prev on first slide */
    .product-card[data-slide="0"] .carousel-btn-prev { opacity: 0 !important; pointer-events: none !important; }
}

/* Always show on touch (mobile) — but only when there are multiple slides */
@media (hover: none) {
    .carousel-btn { opacity: 0.75; pointer-events: auto; }
    .product-card[data-slide="0"] .carousel-btn-prev { opacity: 0 !important; pointer-events: none !important; }
}

/* Dot indicators */
.carousel-dots {
    position: absolute;
    bottom: 0.6rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.3rem;
    z-index: 10;
}
.carousel-dot {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: rgba(255,255,255,0.5);
    border: none;
    cursor: pointer;
    padding: 0;
    transition: background 0.25s, transform 0.25s;
}
.carousel-dot.active {
    background: #ffffff;
    transform: scale(1.3);
}

/* Single-image cards: no arrows/dots needed (handled in JS) */


/* ==========================================
   BALLET — 2 tarjetas grandes (50/50)
   ========================================== */
.grid-ballet {
    grid-template-columns: 1fr 1fr !important;
    gap: 2rem !important;
}

.product-card--ballet {
    display: flex;
    flex-direction: column;
}

.product-card--ballet .product-image-wrap {
    aspect-ratio: 3 / 4;
    min-height: 420px;
}

.product-card--ballet .product-image-wrap img {
    object-fit: cover;
    width: 100%;
    height: 100%;
}

.product-ballet-desc {
    font-size: 0.875rem;
    color: var(--graphite);
    line-height: 1.6;
    margin: 0.5rem 0 1rem;
    font-family: 'Outfit', sans-serif;
}

@media (max-width: 640px) {
    .grid-ballet {
        grid-template-columns: 1fr !important;
    }

    .product-card--ballet .product-image-wrap {
        min-height: 320px;
    }
}

/* ==========================================
   ACCESORIOS — 1 tarjeta horizontal ancha
   ========================================== */
.grid-accesorios {
    grid-template-columns: 1fr !important;
    gap: 2rem !important;
}

.product-card--accesorios {
    display: grid;
    grid-template-columns: minmax(280px, 38%) 1fr;
    align-items: stretch;
    overflow: hidden;
}

.product-card--accesorios .product-image-wrap {
    aspect-ratio: auto;
    min-height: 360px;
    height: 100%;
}

.product-card--accesorios .product-image-wrap img {
    object-fit: cover;
    width: 100%;
    height: 100%;
}

.product-card--accesorios .product-body {
    padding: 2rem 2.25rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 0.75rem;
}

.product-card--accesorios .product-name {
    font-size: 1.5rem;
    line-height: 1.25;
}

.product-accesorios-desc {
    font-size: 0.95rem;
    color: var(--graphite);
    line-height: 1.65;
    margin: 0.5rem 0 1rem;
    font-family: 'Outfit', sans-serif;
    max-width: 60ch;
}

@media (max-width: 768px) {
    .product-card--accesorios {
        grid-template-columns: 1fr;
    }

    .product-card--accesorios .product-image-wrap {
        min-height: 280px;
        aspect-ratio: 4 / 3;
    }

    .product-card--accesorios .product-body {
        padding: 1.5rem 1.25rem;
    }

    .product-card--accesorios .product-name {
        font-size: 1.25rem;
    }
}

/* ==========================================
   LOGO EN FOOTER
   ========================================== */
.footer-logo-img {
    width: 180px;
    height: 180px;
    object-fit: contain;
    border-radius: 50%;
    flex-shrink: 0;
}

@media (max-width: 640px) {
    .footer-logo-img {
        width: 128px;
        height: 128px;
    }
}
