/* ===== VIDAFIT STOREFRONT v2.0 — Rosa femenino, la ropa protagonista ===== */
:root {
    --pink: #ec4899;
    --pink-2: #f472b6;
    --pink-dark: #db2777;
    --pink-deep: #be185d;
    --pink-soft: #fff0f6;
    --pink-soft-2: #fde0ec;
    --pink-line: #f8c8dc;
    --ink: #2b2b2b;
    --ink-soft: #6b5560;
    --ink-mute: #a08d96;
    --bg: #fffdfd;
    --bg-alt: #fff5f9;
    --line: #f7e3ec;
    --ok: #0f9d58;
    --ml-yellow: #ffe600;
    --ml-blue: #3483fa;
    --radius: 18px;
    --shadow: 0 10px 35px rgba(233, 30, 99, 0.10);
    --shadow-lg: 0 18px 50px rgba(233, 30, 99, 0.18);
    --font: 'Montserrat', system-ui, sans-serif;
    --serif: 'Playfair Display', Georgia, serif;
    --header-h: 74px;
    --announce-h: 38px;
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body { font-family: var(--font); color: var(--ink); background: var(--bg); line-height: 1.65; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
input, textarea, select { font-family: inherit; font-size: inherit; }
.sf-container { max-width: 1320px; margin: 0 auto; padding: 0 24px; }

/* ===== ANNOUNCE + HEADER ===== */
.sf-announce {
    min-height: var(--announce-h); display: flex; align-items: center; justify-content: center;
    background: linear-gradient(90deg, var(--pink-2), var(--pink), var(--pink-dark)); color: #fff;
    font-size: 11px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase;
    text-align: center; padding: 6px 12px;
}
.sf-header {
    position: sticky; top: 0; z-index: 900; height: var(--header-h);
    background: rgba(255,255,255,0.9); backdrop-filter: blur(18px);
    border-bottom: 1px solid var(--pink-line);
}
.sf-header-inner {
    max-width: 1320px; margin: 0 auto; padding: 0 24px; height: 100%;
    display: flex; align-items: center; justify-content: space-between; gap: 24px;
}
.sf-logo { font-family: var(--serif); font-size: 27px; font-weight: 700; letter-spacing: 0.04em; color: #1a1a1a; }
.sf-logo span { color: #1a1a1a; }
.sf-logo-light { color: #fff; }
.sf-nav { display: flex; gap: 28px; }
.sf-nav a {
    font-size: 12px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase;
    color: var(--ink-soft); padding: 6px 0; position: relative; transition: color .25s;
}
.sf-nav a::after {
    content: ''; position: absolute; left: 0; bottom: 0; height: 2px; width: 0;
    background: var(--pink); border-radius: 2px; transition: width .3s cubic-bezier(.4,0,.2,1);
}
.sf-nav a:hover, .sf-nav a.active { color: var(--pink); }
.sf-nav a:hover::after, .sf-nav a.active::after { width: 100%; }
.sf-header-actions { display: flex; gap: 6px; align-items: center; }
.sf-icon-btn {
    width: 42px; height: 42px; border-radius: 50%; display: flex; align-items: center;
    justify-content: center; position: relative; transition: background .2s, transform .2s; color: var(--pink-dark);
}
.sf-icon-btn:hover { background: var(--pink-soft-2); transform: scale(1.08); }
.sf-icon-btn svg { width: 21px; height: 21px; }
.sf-cart-count {
    position: absolute; top: 2px; right: 0; min-width: 18px; height: 18px; border-radius: 9px;
    background: var(--pink); color: #fff; font-size: 10px; font-weight: 700;
    display: flex; align-items: center; justify-content: center; padding: 0 4px;
    box-shadow: 0 2px 8px rgba(233,30,99,.5);
}
.sf-menu-btn { display: none; width: 42px; height: 42px; flex-direction: column; align-items: center; justify-content: center; gap: 5px; }
.sf-menu-btn span { width: 22px; height: 2px; background: var(--pink-dark); transition: .3s; border-radius: 2px; }

/* Mobile nav */
.sf-mobile-nav { position: fixed; inset: 0; z-index: 1200; background: rgba(136,14,79,.4); backdrop-filter: blur(6px); opacity: 0; pointer-events: none; transition: opacity .3s; }
.sf-mobile-nav.open { opacity: 1; pointer-events: all; }
.sf-mobile-nav-panel {
    position: absolute; right: 0; top: 0; bottom: 0; width: 320px; max-width: 85vw;
    background: #fff; padding: 28px; transform: translateX(100%); transition: transform .4s cubic-bezier(.16,1,.3,1);
    display: flex; flex-direction: column; border-radius: 24px 0 0 24px;
}
.sf-mobile-nav.open .sf-mobile-nav-panel { transform: translateX(0); }
.sf-mobile-close { font-size: 30px; align-self: flex-end; line-height: 1; margin-bottom: 20px; color: var(--pink-dark); }
.sf-mobile-nav-panel a { padding: 16px 0; font-size: 17px; font-weight: 600; border-bottom: 1px solid var(--line); color: var(--ink); }
.sf-mobile-nav-panel a:hover { color: var(--pink); padding-left: 8px; transition: .2s; }
.sf-mobile-wa { color: var(--pink) !important; }

/* ===== HERO (rosa vibrante con foto) ===== */
.sf-hero {
    min-height: 86vh; display: flex; align-items: center; position: relative;
    background: linear-gradient(115deg, var(--pink-deep) 0%, var(--pink) 55%, var(--pink-2) 100%);
    background-size: cover; background-position: center 25%;
    color: #fff; overflow: hidden;
}
.sf-hero::before {
    content: ''; position: absolute; top: -30%; right: -10%; width: 55%; height: 160%;
    background: radial-gradient(ellipse, rgba(255,255,255,.22), transparent 60%);
    pointer-events: none;
}
.sf-hero-content { max-width: 1320px; margin: 0 auto; padding: 90px 24px; width: 100%; position: relative; z-index: 1; }
.sf-hero-content > * { max-width: 620px; }
.sf-hero-eyebrow {
    display: inline-block; padding: 9px 20px; border: 1.5px solid rgba(255,255,255,.5);
    border-radius: 100px; font-size: 11px; font-weight: 700; letter-spacing: .22em;
    text-transform: uppercase; margin-bottom: 28px; background: rgba(255,255,255,.15); backdrop-filter: blur(6px);
}
.sf-hero h1 {
    font-family: var(--serif); font-size: clamp(46px, 6.5vw, 88px); line-height: 1.02;
    font-weight: 600; margin-bottom: 22px; text-shadow: 0 4px 30px rgba(136,14,79,.4);
}
.sf-hero p { font-size: 18px; line-height: 1.8; color: rgba(255,255,255,.92); margin-bottom: 40px; font-weight: 400; }
.sf-hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; }

/* ===== BOTONES ===== */
.sf-btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 10px;
    padding: 16px 36px; font-size: 12px; font-weight: 700; letter-spacing: .14em;
    text-transform: uppercase; border-radius: 100px; transition: all .3s cubic-bezier(.4,0,.2,1);
    border: 2px solid transparent;
}
.sf-btn-white { background: #fff; color: var(--pink-dark); }
.sf-btn-white:hover { transform: translateY(-3px); box-shadow: 0 14px 35px rgba(0,0,0,.25); }
.sf-btn-ghost { border-color: rgba(255,255,255,.7); color: #fff; }
.sf-btn-ghost:hover { background: rgba(255,255,255,.18); border-color: #fff; transform: translateY(-3px); }
.sf-btn-dark { background: var(--ink); color: #fff; }
.sf-btn-dark:hover { background: var(--pink-dark); transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.sf-btn-pink { background: linear-gradient(135deg, var(--pink-2), var(--pink)); color: #fff; box-shadow: 0 8px 25px rgba(233,30,99,.35); }
.sf-btn-pink:hover { transform: translateY(-3px); box-shadow: 0 14px 40px rgba(233,30,99,.5); }
.sf-btn-wa { background: #25d366; color: #fff; }
.sf-btn-wa:hover { background: #1eb856; transform: translateY(-3px); box-shadow: 0 12px 30px rgba(37,211,102,.4); }
.sf-btn-block { width: 100%; }
.sf-btn[disabled] { opacity: .45; pointer-events: none; }

/* ===== MARQUEE STRIP ===== */
.sf-strip { background: linear-gradient(90deg, var(--pink-dark), var(--pink), var(--pink-dark)); color: #fff; overflow: hidden; padding: 14px 0; }
.sf-strip-track { display: flex; gap: 26px; white-space: nowrap; animation: sfmarquee 32s linear infinite; width: max-content; }
.sf-strip-track span { font-size: 12px; font-weight: 600; letter-spacing: .16em; text-transform: uppercase; opacity: .95; }
@keyframes sfmarquee { to { transform: translateX(-50%); } }

/* ===== SECCIONES ===== */
.sf-section { padding: 84px 0; }
.sf-section-alt { background: var(--bg-alt); }
.sf-section-head { margin-bottom: 44px; position: relative; }
.sf-eyebrow { font-size: 11px; font-weight: 700; letter-spacing: .3em; text-transform: uppercase; color: var(--pink); }
.sf-section-head h2 { font-family: var(--serif); font-size: clamp(30px, 3.6vw, 46px); font-weight: 600; margin-top: 10px; color: var(--ink); }
.sf-link-more { position: absolute; right: 0; bottom: 8px; font-size: 13px; font-weight: 700; color: var(--pink); border-bottom: 2px solid transparent; transition: .25s; }
.sf-link-more:hover { border-color: var(--pink); }

/* ===== CATEGORÍAS ===== */
.sf-cat-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 20px; }
.sf-cat-card { position: relative; aspect-ratio: 4/5; border-radius: var(--radius); overflow: hidden; background: var(--pink-soft-2); box-shadow: var(--shadow); }
.sf-cat-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s cubic-bezier(.16,1,.3,1); }
.sf-cat-card:hover img { transform: scale(1.08); }
.sf-cat-overlay {
    position: absolute; inset: 0; display: flex; flex-direction: column; justify-content: flex-end;
    padding: 28px; color: #fff; background: linear-gradient(to top, rgba(136,14,79,.75), transparent 55%);
}
.sf-cat-overlay h3 { font-family: var(--serif); font-size: 27px; font-weight: 600; }
.sf-cat-overlay span { font-size: 12px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; opacity: 0; transform: translateY(8px); transition: .35s; }
.sf-cat-card:hover .sf-cat-overlay span { opacity: .95; transform: translateY(0); }

/* ===== GRID DE PRODUCTOS (denso, tienda llena) ===== */
.sf-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); gap: 22px; }
.sf-grid-4 { grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); }
.sf-grid-shop { grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); }

.sf-card { background: #fff; }
.sf-card-media {
    position: relative; display: block; aspect-ratio: 3/4; overflow: hidden;
    border-radius: var(--radius); background: var(--pink-soft-2); box-shadow: var(--shadow);
    transition: box-shadow .35s, transform .35s;
}
.sf-card:hover .sf-card-media { box-shadow: var(--shadow-lg); transform: translateY(-5px); }
.sf-card-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .9s cubic-bezier(.16,1,.3,1), opacity .45s; }
.sf-card-img2 { position: absolute; inset: 0; opacity: 0; }
.sf-card:hover .sf-card-media > img:first-child { transform: scale(1.07); }
.sf-card:hover .sf-card-img2 { opacity: 1; transform: scale(1.07); }
.sf-card-placeholder {
    width: 100%; height: 100%; display: flex; align-items: center; justify-content: center;
    font-family: var(--serif); font-size: 26px; color: var(--pink); opacity: .45; letter-spacing: .2em;
}
.sf-card-badges { position: absolute; top: 14px; left: 14px; display: flex; flex-direction: column; gap: 6px; z-index: 2; }
.sf-badge { padding: 5px 13px; border-radius: 100px; font-size: 10px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.sf-badge-hot { background: var(--ink); color: #fff; }
.sf-badge-out { background: #b00020; color: #fff; }
.sf-badge-ws { background: linear-gradient(135deg, var(--pink-2), var(--pink)); color: #fff; }
.sf-badge-sale { background: linear-gradient(135deg, var(--pink-2), var(--pink)); color: #fff; }
.sf-card-quick {
    position: absolute; left: 14px; right: 14px; bottom: 14px; padding: 13px;
    background: rgba(255,255,255,.95); backdrop-filter: blur(8px); border-radius: 100px;
    text-align: center; font-size: 11px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
    color: var(--pink-dark); opacity: 0; transform: translateY(10px); transition: .35s cubic-bezier(.16,1,.3,1);
}
.sf-card:hover .sf-card-quick { opacity: 1; transform: translateY(0); }
.sf-card-quick:hover { background: var(--pink); color: #fff; }
.sf-card-info { padding: 15px 4px 0; }
.sf-card-name { font-size: 15px; font-weight: 600; line-height: 1.35; }
.sf-card-name a:hover { color: var(--pink); }
.sf-card-color { font-size: 12px; color: var(--pink); font-weight: 600; margin-top: 2px; }
.sf-card-row { display: flex; align-items: baseline; gap: 10px; margin-top: 6px; }
.sf-card-price { font-size: 17px; font-weight: 800; }
.sf-card-compare { font-size: 13px; color: var(--ink-mute); text-decoration: line-through; }
.sf-card-colors { display: flex; align-items: center; gap: 7px; margin-top: 10px; }
.sf-dot { width: 16px; height: 16px; border-radius: 50%; border: 2px solid #fff; box-shadow: 0 0 0 1px var(--pink-line); transition: transform .2s; }
.sf-dot:hover { transform: scale(1.25); }
.sf-dot-lg { width: 28px; height: 28px; }
.sf-dot-lg.active { box-shadow: 0 0 0 2px var(--pink); }
.sf-card-ncolors { font-size: 11px; color: var(--ink-mute); margin-left: 4px; }

/* ===== MERCADO LIBRE (réplica del diseño original) ===== */
.sf-ml {
    background: linear-gradient(135deg, #ffe600 0%, #fff159 50%, #ffe600 100%);
    position: relative; overflow: hidden; padding: 0;
}
.sf-ml-blob { position: absolute; border-radius: 50%; background: #3483fa; opacity: .12; filter: blur(70px); pointer-events: none; }
.sf-ml-blob-1 { width: 320px; height: 320px; top: -80px; left: -80px; }
.sf-ml-blob-2 { width: 380px; height: 380px; bottom: -80px; right: -80px; }
.sf-ml-inner {
    display: grid; grid-template-columns: 1.15fr 1fr; gap: 48px; align-items: center;
    position: relative; z-index: 1; padding-top: 72px; padding-bottom: 72px;
}
.sf-ml-badge {
    display: inline-flex; align-items: center; gap: 8px; padding: 9px 18px;
    background: rgba(255,255,255,.92); border-radius: 100px; font-size: 13px; font-weight: 600;
    color: #262626; box-shadow: 0 6px 18px rgba(0,0,0,.1); margin-bottom: 24px;
}
.sf-ml-left h2 { font-size: clamp(30px, 4vw, 46px); font-weight: 800; color: #171717; line-height: 1.12; margin-bottom: 16px; font-family: var(--font); }
.sf-ml-left h2 span { color: #3483fa; }
.sf-ml-left > p { font-size: 18px; color: #404040; max-width: 520px; margin-bottom: 28px; }
.sf-ml-btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 12px;
    padding: 17px 34px; background: #3483fa; color: #fff; font-size: 13px; font-weight: 800;
    letter-spacing: .1em; border-radius: 10px; box-shadow: 0 10px 28px rgba(52,131,250,.4);
    transition: all .3s; margin-bottom: 34px;
}
.sf-ml-btn:hover { background: #2968c8; transform: scale(1.04); box-shadow: 0 16px 36px rgba(52,131,250,.5); }
.sf-ml-btn svg { transition: transform .3s; }
.sf-ml-btn:hover svg { transform: translateX(5px); }
.sf-ml-chips { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 12px; max-width: 560px; }
.sf-ml-chip {
    display: flex; flex-direction: column; align-items: center; gap: 8px; padding: 14px 10px;
    background: rgba(255,255,255,.82); backdrop-filter: blur(6px); border-radius: 14px;
}
.sf-ml-chip span { font-size: 11px; font-weight: 700; color: #262626; text-align: center; line-height: 1.3; }

.sf-ml-right { display: flex; justify-content: flex-end; }
.sf-ml-cardwrap { position: relative; max-width: 380px; width: 100%; }
.sf-ml-glow { position: absolute; inset: 0; background: #3483fa; border-radius: 26px; filter: blur(42px); opacity: .22; transform: scale(1.08); }
.sf-ml-card {
    position: relative; background: #fff; border-radius: 26px; padding: 34px;
    box-shadow: 0 30px 60px rgba(0,0,0,.2);
}
.sf-ml-card-logowrap { display: flex; justify-content: center; margin-bottom: 24px; }
.sf-ml-card-logowrap img { height: 40px; width: auto; }
.sf-ml-card-head { text-align: center; margin-bottom: 24px; }
.sf-ml-msi-pill {
    display: inline-flex; align-items: center; gap: 8px; padding: 9px 18px;
    background: linear-gradient(90deg, #00a650, #00c853); color: #fff; border-radius: 100px;
    font-size: 13px; font-weight: 800; margin-bottom: 14px; animation: sf-mlpulse 2s infinite;
}
@keyframes sf-mlpulse { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.05); } }
.sf-ml-card-head h3 { font-size: 25px; font-weight: 800; color: #171717; margin-bottom: 4px; font-family: var(--font); }
.sf-ml-card-head p { font-size: 14px; color: #666; }
.sf-ml-perks { display: flex; flex-direction: column; gap: 13px; margin-bottom: 26px; }
.sf-ml-perk { display: flex; align-items: center; gap: 12px; font-size: 14px; font-weight: 500; color: #404040; }
.sf-ml-ic { width: 32px; height: 32px; border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.sf-ml-ic-g { background: rgba(0,166,80,.1); }
.sf-ml-ic-b { background: rgba(52,131,250,.1); }
.sf-ml-card-btn {
    display: block; width: 100%; padding: 17px; background: #3483fa; color: #fff; text-align: center;
    font-size: 13px; font-weight: 800; letter-spacing: .1em; border-radius: 12px; transition: background .25s;
}
.sf-ml-card-btn:hover { background: #2968c8; }
.sf-ml-marquee { background: linear-gradient(90deg, #3483fa, #2968c8); padding: 15px 0; overflow: hidden; position: relative; z-index: 1; }
.sf-ml-marquee-track { display: flex; gap: 34px; white-space: nowrap; animation: sfmarquee 26s linear infinite; width: max-content; }
.sf-ml-marquee-track span { color: rgba(255,255,255,.92); font-size: 13px; font-weight: 600; letter-spacing: .1em; }

/* ===== BREADCRUMB ===== */
.sf-breadcrumb { padding-top: 26px; font-size: 12px; color: var(--ink-mute); display: flex; flex-wrap: wrap; gap: 8px; align-items: center; }
.sf-breadcrumb a:hover { color: var(--pink); }
.sf-bc-sep { opacity: .5; }

/* ===== TIENDA ===== */
.sf-shop-head { text-align: center; padding: 56px 24px 46px; }
.sf-shop-head h1 { font-family: var(--serif); font-size: clamp(34px, 4.5vw, 56px); font-weight: 600; color: var(--pink-dark); }
.sf-shop-head p { color: var(--ink-soft); margin-top: 10px; max-width: 640px; margin-left: auto; margin-right: auto; }
.sf-shop-layout { display: grid; grid-template-columns: 230px 1fr; gap: 44px; padding-bottom: 96px; align-items: start; }
.sf-shop-side { position: sticky; top: calc(var(--header-h) + 20px); background: var(--pink-soft); border-radius: var(--radius); padding: 24px; }
.sf-shop-side h3 { font-size: 12px; font-weight: 800; letter-spacing: .18em; text-transform: uppercase; margin-bottom: 14px; color: var(--pink-dark); }
.sf-side-link { display: block; padding: 9px 0; font-size: 14px; color: var(--ink-soft); border-bottom: 1px solid var(--pink-line); transition: .2s; }
.sf-side-link:hover { color: var(--pink-dark); padding-left: 6px; }
.sf-side-link.active { color: var(--pink); font-weight: 700; }
.sf-pagination { display: flex; justify-content: center; gap: 8px; margin-top: 56px; }
.sf-pagination a {
    width: 44px; height: 44px; border-radius: 50%; display: flex; align-items: center; justify-content: center;
    font-size: 14px; font-weight: 600; border: 1.5px solid var(--pink-line); transition: .25s; color: var(--pink-dark);
}
.sf-pagination a:hover { border-color: var(--pink); }
.sf-pagination a.active { background: var(--pink); color: #fff; border-color: var(--pink); }
.sf-empty { text-align: center; padding: 90px 24px; }
.sf-empty h2 { font-family: var(--serif); font-size: 32px; margin-bottom: 12px; color: var(--pink-dark); }
.sf-empty p { color: var(--ink-soft); margin-bottom: 28px; }
.sf-404 { font-family: var(--serif); font-size: 110px; color: var(--pink-line); display: block; line-height: 1; }

/* ===== PRODUCTO ===== */
.sf-product { padding: 40px 0 96px; }
.sf-product-grid { display: grid; grid-template-columns: 1.05fr 1fr; gap: 60px; align-items: start; }
.sf-gallery { position: sticky; top: calc(var(--header-h) + 20px); }
.sf-gallery-main {
    aspect-ratio: 3/4; border-radius: var(--radius); overflow: hidden; background: var(--pink-soft-2);
    cursor: zoom-in; position: relative; box-shadow: var(--shadow);
}
.sf-gallery-main img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s; }
.sf-gallery-main:hover img { transform: scale(1.7); }
.sf-gallery-thumbs { display: flex; gap: 10px; margin-top: 12px; flex-wrap: wrap; }
.sf-thumb {
    width: 76px; height: 100px; border-radius: 12px; overflow: hidden; padding: 0;
    border: 2px solid transparent; transition: .25s; background: var(--pink-soft-2);
}
.sf-thumb.active, .sf-thumb:hover { border-color: var(--pink); }
.sf-thumb img { width: 100%; height: 100%; object-fit: cover; }

.sf-product-cat { font-size: 12px; font-weight: 800; letter-spacing: .2em; text-transform: uppercase; color: var(--pink); }
.sf-product-info h1 { font-family: var(--serif); font-size: clamp(30px, 3.4vw, 44px); font-weight: 600; line-height: 1.12; margin: 12px 0 18px; }
.sf-product-price-row { display: flex; align-items: baseline; gap: 14px; }
.sf-product-price { font-size: 34px; font-weight: 800; color: var(--pink-dark); }
.sf-product-compare { font-size: 19px; color: var(--ink-mute); text-decoration: line-through; }
.sf-product-msi { font-size: 13px; color: var(--ok); font-weight: 700; margin-top: 6px; }
.sf-ws-box {
    margin-top: 18px; padding: 15px 19px; background: var(--pink-soft); border: 1.5px solid var(--pink-line);
    border-radius: 14px; font-size: 14px; color: var(--pink-dark); font-weight: 500;
}
.sf-variant-block { margin-top: 26px; }
.sf-variant-label { font-size: 12px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; display: flex; justify-content: space-between; align-items: center; color: var(--pink-dark); }
.sf-size-guide-link { font-size: 12px; color: var(--pink); text-transform: none; letter-spacing: 0; font-weight: 700; }
.sf-colorways { display: flex; gap: 10px; margin-top: 12px; align-items: center; }
.sf-sizes { display: flex; gap: 10px; margin-top: 12px; flex-wrap: wrap; }
.sf-size {
    min-width: 52px; height: 48px; padding: 0 14px; border: 1.5px solid var(--pink-line); border-radius: 12px;
    font-size: 14px; font-weight: 600; transition: .2s; color: var(--ink);
}
.sf-size:hover { border-color: var(--pink); }
.sf-size.active { background: var(--pink); color: #fff; border-color: var(--pink); }
.sf-size.out { opacity: .3; text-decoration: line-through; }
.sf-buy-row { display: flex; gap: 14px; margin-top: 30px; }
.sf-qty { display: flex; align-items: center; border: 1.5px solid var(--pink-line); border-radius: 100px; }
.sf-qty button { width: 46px; height: 52px; font-size: 20px; color: var(--pink-dark); }
.sf-qty input { width: 44px; text-align: center; border: none; background: none; font-weight: 700; font-size: 15px; }
.sf-product-info .sf-btn-wa { margin-top: 12px; }
.sf-product-trust { margin-top: 30px; padding-top: 26px; border-top: 1.5px solid var(--line); display: flex; flex-direction: column; gap: 14px; }
.sf-product-trust div { display: flex; gap: 12px; align-items: center; font-size: 13px; color: var(--ink-soft); font-weight: 500; }
.sf-product-trust svg { width: 20px; height: 20px; flex-shrink: 0; color: var(--pink); }
.sf-product-desc { margin-top: 30px; padding-top: 26px; border-top: 1.5px solid var(--line); }
.sf-product-desc h2 { font-size: 14px; font-weight: 800; letter-spacing: .18em; text-transform: uppercase; margin-bottom: 14px; color: var(--pink-dark); }
.sf-product-desc p { color: var(--ink-soft); line-height: 1.9; font-size: 15px; }

/* ===== MSI BAND ===== */
.sf-msi { background: linear-gradient(120deg, var(--pink-deep), var(--pink-dark)); color: #fff; padding: 70px 0; }
.sf-msi-inner { display: flex; align-items: center; justify-content: space-between; gap: 40px; flex-wrap: wrap; }
.sf-msi h2 { font-family: var(--serif); font-size: clamp(28px, 3.4vw, 42px); margin: 14px 0 10px; }
.sf-msi p { color: rgba(255,255,255,.85); max-width: 520px; }
.sf-badge-msi { display: inline-block; padding: 7px 18px; background: rgba(255,255,255,.2); border: 1px solid rgba(255,255,255,.4); border-radius: 100px; font-size: 11px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }

/* ===== BENEFITS ===== */
.sf-benefits { padding: 70px 0; background: var(--pink-soft); }
.sf-benefits-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 30px; }
.sf-benefit { text-align: center; background: #fff; padding: 34px 22px; border-radius: var(--radius); box-shadow: var(--shadow); transition: transform .3s; }
.sf-benefit:hover { transform: translateY(-5px); }
.sf-benefit svg { width: 34px; height: 34px; margin: 0 auto 16px; color: var(--pink); }
.sf-benefit h3 { font-size: 15px; font-weight: 700; margin-bottom: 8px; color: var(--pink-dark); }
.sf-benefit p { font-size: 13px; color: var(--ink-soft); line-height: 1.7; }

/* ===== ABOUT / SEO TEXT ===== */
.sf-about { background: #fff; }
.sf-about-inner { max-width: 780px; margin: 0 auto; text-align: center; }
.sf-about h2 { font-family: var(--serif); font-size: clamp(28px, 3.6vw, 42px); margin-bottom: 22px; color: var(--pink-dark); }
.sf-about p { color: var(--ink-soft); font-size: 16px; line-height: 1.9; margin-bottom: 14px; }

/* ===== CTA FINAL ===== */
.sf-cta-final {
    background: linear-gradient(120deg, var(--pink-dark), var(--pink-2)); color: #fff;
    padding: 96px 0; text-align: center;
}
.sf-cta-final h2 { font-family: var(--serif); font-size: clamp(30px, 4vw, 48px); margin-bottom: 14px; }
.sf-cta-final p { color: rgba(255,255,255,.9); margin-bottom: 34px; }

/* ===== BLOG ===== */
.sf-news-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 26px; }
.sf-news-card { background: #fff; border-radius: var(--radius); overflow: hidden; border: 1.5px solid var(--line); transition: .3s; }
.sf-news-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: var(--pink-line); }
.sf-news-media { display: block; aspect-ratio: 3/2; overflow: hidden; background: var(--pink-soft-2); }
.sf-news-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s; }
.sf-news-card:hover .sf-news-media img { transform: scale(1.05); }
.sf-news-body { padding: 24px; }
.sf-news-date { font-size: 11px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; color: var(--pink); }
.sf-news-body h3 { font-family: var(--serif); font-size: 22px; font-weight: 600; margin: 10px 0; line-height: 1.3; }
.sf-news-body h3 a:hover { color: var(--pink); }
.sf-news-body p { font-size: 14px; color: var(--ink-soft); margin-bottom: 14px; }
.sf-news-body .sf-link-more { position: static; }

.sf-article { padding: 40px 0 80px; }
.sf-article-inner { max-width: 760px; margin: 0 auto; }
.sf-article h1 { font-family: var(--serif); font-size: clamp(30px, 4vw, 46px); line-height: 1.15; margin: 14px 0 28px; color: var(--pink-dark); }
.sf-article-img { border-radius: var(--radius); margin-bottom: 34px; }
.sf-article-content { font-size: 17px; line-height: 1.95; color: var(--ink-soft); }
.sf-article-content h2 { font-family: var(--serif); font-size: 28px; color: var(--pink-dark); margin: 36px 0 14px; }
.sf-article-content h3 { font-size: 21px; color: var(--ink); margin: 28px 0 12px; }
.sf-article-content p { margin-bottom: 18px; }
.sf-article-content ul, .sf-article-content ol { margin: 0 0 18px 22px; }
.sf-article-cta { margin-top: 48px; padding: 36px; background: var(--pink-soft); border-radius: var(--radius); text-align: center; }
.sf-article-cta h3 { font-family: var(--serif); font-size: 26px; margin-bottom: 18px; color: var(--pink-dark); }

/* ===== PÁGINAS DE CONTENIDO ===== */
.sf-page-content { padding-bottom: 96px; max-width: 900px; }
.sf-page-content h2 { font-family: var(--serif); font-size: 26px; margin-bottom: 14px; color: var(--pink-dark); }
.sf-page-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; }
.sf-list { margin-left: 20px; display: flex; flex-direction: column; gap: 10px; color: var(--ink-soft); }
.sf-table-wrap { overflow-x: auto; margin-top: 28px; }
.sf-table { width: 100%; border-collapse: collapse; }
.sf-table th, .sf-table td { padding: 14px 18px; text-align: left; border-bottom: 1px solid var(--line); font-size: 14px; }
.sf-table th { background: var(--pink-soft); font-weight: 800; font-size: 12px; letter-spacing: .1em; text-transform: uppercase; color: var(--pink-dark); }
.sf-table tr:hover td { background: var(--bg-alt); }

/* ===== CONTACTO ===== */
.sf-contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; }
.sf-contact-cards { display: flex; flex-direction: column; gap: 14px; margin-top: 28px; }
.sf-contact-card { padding: 22px 26px; border: 1.5px solid var(--line); border-radius: 14px; transition: .25s; background: #fff; }
a.sf-contact-card:hover { border-color: var(--pink); transform: translateX(4px); }
.sf-contact-card h3 { font-size: 12px; font-weight: 800; letter-spacing: .18em; text-transform: uppercase; color: var(--pink); margin-bottom: 6px; }
.sf-form { background: var(--pink-soft); padding: 36px; border-radius: var(--radius); }
.sf-field { margin-bottom: 18px; }
.sf-field label { display: block; font-size: 12px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; margin-bottom: 8px; color: var(--pink-dark); }
.sf-field input, .sf-field textarea, .sf-field select {
    width: 100%; padding: 14px 16px; border: 1.5px solid var(--pink-line); border-radius: 12px;
    background: #fff; outline: none; transition: border .2s;
}
.sf-field input:focus, .sf-field textarea:focus { border-color: var(--pink); }

/* ===== FAQ ===== */
.sf-faq-list { display: flex; flex-direction: column; gap: 12px; }
.sf-faq { border: 1.5px solid var(--line); border-radius: 14px; overflow: hidden; transition: border .25s; background: #fff; }
.sf-faq[open] { border-color: var(--pink-line); background: var(--pink-soft); }
.sf-faq summary {
    padding: 20px 24px; font-weight: 600; font-size: 15px; cursor: pointer; list-style: none;
    display: flex; justify-content: space-between; align-items: center;
}
.sf-faq summary::after { content: '+'; font-size: 22px; color: var(--pink); font-weight: 400; transition: transform .3s; }
.sf-faq[open] summary::after { transform: rotate(45deg); }
.sf-faq p { padding: 0 24px 22px; color: var(--ink-soft); font-size: 14px; line-height: 1.8; }

/* ===== FOOTER (vino/rosa oscuro femenino) ===== */
.sf-footer { background: linear-gradient(160deg, #1c0a12, #0d0308); color: #fff; padding: 72px 0 0; }
.sf-footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 48px; padding-bottom: 56px; }
.sf-footer-brand p { color: rgba(255,255,255,.65); font-size: 14px; margin: 18px 0 22px; max-width: 300px; }
.sf-social { display: flex; gap: 10px; flex-wrap: wrap; }
.sf-social a {
    width: 40px; height: 40px; border-radius: 50%; border: 1.5px solid rgba(255,255,255,.3);
    display: flex; align-items: center; justify-content: center; transition: .25s;
}
.sf-social a:hover { background: var(--pink); border-color: var(--pink); transform: translateY(-3px); }
.sf-social svg { width: 17px; height: 17px; }
.sf-footer-col h4 { font-size: 12px; font-weight: 800; letter-spacing: .2em; text-transform: uppercase; margin-bottom: 18px; color: var(--pink-2); }
.sf-footer-col a { display: block; padding: 6px 0; font-size: 14px; color: rgba(255,255,255,.65); transition: .2s; }
.sf-footer-col a:hover { color: #fff; padding-left: 6px; }
.sf-footer-ml { margin-top: 20px; display: inline-flex; align-items: center; gap: 10px; padding: 12px 18px; background: var(--ml-yellow); color: #3d3400 !important; border-radius: 100px; font-size: 13px; font-weight: 800; transition: .25s; }
.sf-footer-ml:hover { transform: translateY(-2px); box-shadow: 0 10px 25px rgba(255,230,0,.25); }
.sf-footer-bottom {
    border-top: 1px solid rgba(255,255,255,.12); padding: 24px 0;
    display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap;
    font-size: 13px; color: rgba(255,255,255,.55);
}
.sf-pay-badges { display: flex; gap: 8px; flex-wrap: wrap; }
.sf-pay-badges span { padding: 5px 12px; border: 1px solid rgba(255,255,255,.25); border-radius: 100px; font-size: 11px; }

/* ===== BOTONES FLOTANTES SOCIALES ===== */
.sf-float-social {
    position: fixed; right: 20px; bottom: 20px; z-index: 800;
    display: flex; flex-direction: column; gap: 12px;
}
.sf-float {
    width: 54px; height: 54px; border-radius: 50%; color: #fff;
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 8px 25px rgba(0,0,0,.25); transition: transform .25s, box-shadow .25s;
}
.sf-float:hover { transform: scale(1.12); box-shadow: 0 12px 32px rgba(0,0,0,.32); }
.sf-float svg { width: 26px; height: 26px; }
.sf-float-ig { background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); }
.sf-float-fb { background: #1877f2; }
.sf-float-wa { background: #25d366; }

/* ===== CART DRAWER ===== */
.sf-cart-overlay { position: fixed; inset: 0; z-index: 1100; background: rgba(136,14,79,.4); backdrop-filter: blur(4px); opacity: 0; pointer-events: none; transition: opacity .3s; }
.sf-cart-overlay.open { opacity: 1; pointer-events: all; }
.sf-cart-drawer {
    position: fixed; top: 0; right: 0; bottom: 0; z-index: 1110; width: 420px; max-width: 92vw;
    background: #fff; transform: translateX(100%); transition: transform .45s cubic-bezier(.16,1,.3,1);
    display: flex; flex-direction: column; border-radius: 24px 0 0 24px;
}
.sf-cart-drawer.open { transform: translateX(0); }
.sf-cart-head { display: flex; justify-content: space-between; align-items: center; padding: 22px 26px; border-bottom: 1.5px solid var(--line); }
.sf-cart-head h2 { font-family: var(--serif); font-size: 24px; color: var(--pink-dark); }
.sf-cart-head button { font-size: 30px; line-height: 1; color: var(--pink-dark); }
.sf-cart-shipping { padding: 14px 26px; background: var(--pink-soft); font-size: 12px; font-weight: 700; color: var(--pink-dark); }
.sf-cart-items { flex: 1; overflow-y: auto; padding: 18px 26px; }
.sf-cart-item { display: flex; gap: 14px; padding: 14px 0; border-bottom: 1.5px solid var(--line); }
.sf-cart-item-img { width: 72px; height: 96px; border-radius: 10px; overflow: hidden; background: var(--pink-soft-2); flex-shrink: 0; }
.sf-cart-item-img img { width: 100%; height: 100%; object-fit: cover; }
.sf-cart-item-info { flex: 1; }
.sf-cart-item-name { font-size: 14px; font-weight: 600; }
.sf-cart-item-var { font-size: 12px; color: var(--ink-mute); margin: 3px 0 8px; }
.sf-cart-item-row { display: flex; justify-content: space-between; align-items: center; }
.sf-cart-item-qty { display: flex; align-items: center; gap: 12px; border: 1.5px solid var(--pink-line); border-radius: 100px; padding: 2px 10px; }
.sf-cart-item-qty button { font-size: 16px; padding: 2px 6px; color: var(--pink-dark); }
.sf-cart-item-price { font-weight: 800; font-size: 14px; color: var(--pink-dark); }
.sf-cart-item-rm { font-size: 11px; color: var(--ink-mute); text-decoration: underline; margin-top: 6px; display: inline-block; }
.sf-cart-item-rm:hover { color: var(--pink); }
.sf-cart-empty { text-align: center; padding: 60px 20px; color: var(--ink-mute); }
.sf-cart-foot { padding: 20px 26px 26px; border-top: 1.5px solid var(--line); }
.sf-cart-total-row { display: flex; justify-content: space-between; font-size: 15px; margin-bottom: 8px; }
.sf-cart-total-row strong { font-size: 19px; color: var(--pink-dark); }
.sf-cart-foot .sf-btn { margin-top: 10px; }

/* ===== SEARCH ===== */
.sf-search-overlay {
    position: fixed; inset: 0; z-index: 1300; background: rgba(136,14,79,.5); backdrop-filter: blur(8px);
    display: flex; justify-content: center; padding: 110px 20px 20px;
    opacity: 0; pointer-events: none; transition: opacity .25s;
}
.sf-search-overlay.open { opacity: 1; pointer-events: all; }
.sf-search-box { background: #fff; border-radius: 22px; width: 100%; max-width: 620px; height: fit-content; max-height: 76vh; display: flex; flex-direction: column; overflow: hidden; box-shadow: 0 40px 90px rgba(136,14,79,.4); }
.sf-search-input-row { display: flex; align-items: center; gap: 14px; padding: 20px 24px; border-bottom: 1.5px solid var(--line); }
.sf-search-input-row svg { width: 20px; height: 20px; color: var(--pink); flex-shrink: 0; }
.sf-search-input-row input { flex: 1; border: none; outline: none; font-size: 18px; font-weight: 500; }
.sf-search-input-row button { font-size: 26px; color: var(--ink-mute); }
.sf-search-results { overflow-y: auto; padding: 10px; }
.sf-search-item { display: flex; gap: 14px; align-items: center; padding: 12px 14px; border-radius: 14px; transition: background .2s; }
.sf-search-item:hover { background: var(--pink-soft); }
.sf-search-item-img { width: 52px; height: 68px; border-radius: 10px; object-fit: cover; background: var(--pink-soft-2); }
.sf-search-item h4 { font-size: 14px; font-weight: 600; }
.sf-search-item p { font-size: 13px; color: var(--pink); font-weight: 700; }

/* ===== TOAST ===== */
.sf-toast {
    position: fixed; bottom: 26px; left: 50%; transform: translateX(-50%) translateY(80px);
    background: linear-gradient(135deg, var(--pink-2), var(--pink)); color: #fff; padding: 14px 28px; border-radius: 100px;
    font-size: 14px; font-weight: 700; z-index: 1400; opacity: 0; transition: .35s cubic-bezier(.16,1,.3,1);
    box-shadow: 0 14px 40px rgba(233,30,99,.45); pointer-events: none; max-width: 90vw; text-align: center;
}
.sf-toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }

/* ===== REVEAL ===== */
.sf-reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s cubic-bezier(.16,1,.3,1), transform .7s cubic-bezier(.16,1,.3,1); }
.sf-reveal.in { opacity: 1; transform: translateY(0); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .sf-product-grid { grid-template-columns: 1fr; gap: 40px; }
    .sf-gallery { position: static; }
    .sf-footer-grid { grid-template-columns: 1fr 1fr; }
    .sf-ml-inner { grid-template-columns: 1fr; gap: 36px; }
    .sf-ml-right { justify-content: center; }
    .sf-ml-chips { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 860px) {
    .sf-nav { display: none; }
    .sf-menu-btn { display: flex; }
    .sf-shop-layout { grid-template-columns: 1fr; gap: 28px; }
    .sf-shop-side { position: static; }
    .sf-contact-grid, .sf-page-cols { grid-template-columns: 1fr; }
    .sf-grid, .sf-grid-4, .sf-grid-shop { grid-template-columns: repeat(2, 1fr); gap: 12px; }
    .sf-section { padding: 60px 0; }
    .sf-card-info { padding: 10px 2px 0; }
    .sf-card-name { font-size: 13px; }
    .sf-buy-row { flex-direction: column; }
    .sf-qty { justify-content: center; }
    .sf-hero { min-height: 72vh; }
    .sf-footer-grid { grid-template-columns: 1fr; gap: 32px; }
}
@media (max-width: 420px) {
    .sf-grid, .sf-grid-4, .sf-grid-shop { grid-template-columns: repeat(2, 1fr); gap: 10px; }
    .sf-container { padding: 0 16px; }
    .sf-btn { padding: 15px 24px; }
}