:root {
    color-scheme: light;
    --family-accent: #0768A9;
    --family-accent-dark: #00125E;
    --family-ink: #252033;
    --family-muted: #746E80;
    --family-border: #D8E5EC;
    --family-surface: rgba(255, 255, 255, .92);
}

* { box-sizing: border-box; }

html, body {
    margin: 0;
    min-height: 100%;
    overscroll-behavior-y: none;
    font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    background: #EAF2F7;
    color: var(--family-ink);
}

button, input { font: inherit; }

.family-auth-page {
    position: relative;
    width: 100%;
    max-width: 480px;
    min-height: 100vh;
    margin: 0 auto;
    overflow: hidden;
    padding: calc(16px + env(safe-area-inset-top)) 20px calc(28px + env(safe-area-inset-bottom));
    background:
        radial-gradient(circle at 100% 0, rgba(7, 104, 169, .16), transparent 35%),
        linear-gradient(180deg, #F8FBFD 0%, #EDF4F8 58%, #EAF2F7 100%);
}

.family-auth-page::before {
    content: "";
    position: absolute;
    width: 220px;
    height: 220px;
    right: -118px;
    top: 128px;
    border: 40px solid rgba(7, 104, 169, .045);
    border-radius: 50%;
    pointer-events: none;
}

.family-login-top { position: relative; z-index: 1; display: flex; align-items: center; justify-content: space-between; }
.family-back { width: 40px; height: 40px; display: grid; place-items: center; border: 1px solid var(--family-border); border-radius: 12px; background: rgba(255,255,255,.8); color: #51465F; text-decoration: none; box-shadow: 0 4px 14px rgba(57,35,80,.05); }
.family-back svg { width: 20px; height: 20px; }
.family-brand { display: flex; align-items: center; gap: 8px; color: #40334F; font-size:13px; font-weight: 900; }
.family-brand img { width: 30px; height: 30px; object-fit: contain; }

.family-login-header { position: relative; z-index: 1; margin-top: 38px; }
.family-login-icon { width: 54px; height: 54px; display: grid; place-items: center; margin-bottom: 20px; border: 1px solid #C8E0EE; border-radius: 17px; color: var(--family-accent); background: linear-gradient(145deg,#EAF4FA,#DDECF5); box-shadow: 0 9px 24px rgba(0,18,94,.13); }
.family-login-icon svg { width: 28px; height: 28px; }
.family-login-header h1 { margin: 0; color: #2B2235; font-size: clamp(27px,8vw,33px); line-height: 1.08; font-weight: 900; letter-spacing: -.8px; }
.family-login-header p { max-width: 330px; margin: 10px 0 0; color: var(--family-muted); font-size:15px; line-height: 1.5; }

.family-login-card { position: relative; z-index: 1; margin-top: 27px; padding: 20px; border: 1px solid var(--family-border); border-radius: 22px; background: var(--family-surface); box-shadow: 0 16px 42px rgba(57,35,80,.09); backdrop-filter: blur(12px); }
.family-field { margin-bottom: 16px; }
.family-field label { display: block; margin-bottom: 8px; color: #4D4557; font-size:13px; font-weight: 800; }
.family-input { position: relative; }
.family-field-icon { position: absolute; left: 14px; top: 50%; transform: translateY(-50%); display: grid; color: #81788B; pointer-events: none; }
.family-field-icon svg { width: 18px; height: 18px; }
.family-input input { width: 100%; min-height: 52px; padding: 14px 45px 14px 44px; border: 1px solid #D7E3E9; border-radius: 13px; outline: none; background: #F8FAFB; color: var(--family-ink); font-size:15px; font-weight: 650; }
.family-input input:focus { border-color: #0768A9; background: white; box-shadow: 0 0 0 4px rgba(7,104,169,.10); }
.family-input input::placeholder { color: #A19AA8; font-weight: 500; }
.family-password-toggle { position: absolute; right: 9px; top: 50%; transform: translateY(-50%); width: 36px; height: 36px; display: grid; place-items: center; border: 0; border-radius: 9px; background: transparent; color: #776E80; cursor: pointer; }
.family-password-toggle svg { width: 19px; height: 19px; }
.family-password-toggle .eye-off, .family-password-toggle.is-visible .eye-on { display: none; }
.family-password-toggle.is-visible .eye-off { display: block; }
.family-login-message { margin: 3px 0 0; padding: 11px 12px; border: 1px solid #F0CDD0; border-radius: 12px; background: #FFF1F2; color: #9F2831; font-size:14px; line-height: 1.4; }
.family-login-button { width: 100%; min-height: 50px; display: flex; align-items: center; justify-content: center; gap: 8px; margin-top: 19px; border: 0; border-radius: 13px; background: linear-gradient(135deg,var(--family-accent-dark),#0768A9); color: white; box-shadow: 0 10px 22px rgba(0,18,94,.24); font-size:14px; font-weight: 900; cursor: pointer; }
.family-login-button svg { width: 18px; height: 18px; }
.family-login-button:disabled { opacity: .65; }
.family-demo { margin-top: 18px; padding-top: 16px; border-top: 1px solid #E3EBEF; color: #857E8D; text-align: center; font-size:12px; }
.family-demo strong { display: block; margin-top: 4px; color: #496273; }

.child-page-header { position: relative; z-index: 1; margin: 34px 0 22px; }
.child-page-header h1 { margin: 0; font-size:29px; line-height: 1.1; font-weight: 900; letter-spacing: -.6px; }
.child-page-header p { margin: 8px 0 0; color: var(--family-muted); font-size:14px; line-height: 1.45; }
.child-list { position: relative; z-index: 1; display: grid; gap: 12px; }
.child-card { width: 100%; display: flex; align-items: center; gap: 12px; padding: 14px; border: 1px solid var(--family-border); border-radius: 17px; background: rgba(255,255,255,.93); color: inherit; text-align: left; box-shadow: 0 8px 24px rgba(57,35,80,.07); cursor: pointer; }
.child-avatar { width: 46px; height: 46px; flex: 0 0 46px; display: grid; place-items: center; border-radius: 15px; color: var(--family-accent); background: #E5F1F7; }
.child-avatar svg { width: 22px; height: 22px; }
.child-info { min-width: 0; flex: 1; }
.child-info strong, .child-info span { display: block; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.child-info strong { font-size:15px; font-weight: 900; }
.child-info span { margin-top: 4px; color: var(--family-muted); font-size:12px; }
.child-arrow { width: 20px; color: #8C8296; }

@media (max-height: 690px) { .family-login-header{margin-top:24px} .family-login-card{margin-top:20px} }

/* Inicio de familias */
.family-app-shell { width:100%; max-width:480px; min-height:100vh; margin:0 auto; background:#F3F7F9; }
.family-app-bar { position:sticky; z-index:40; top:0; min-height:calc(72px + env(safe-area-inset-top)); display:flex; align-items:center; overflow:hidden; padding:calc(11px + env(safe-area-inset-top)) 16px 11px 18px; border-bottom:0; background:linear-gradient(120deg,#00125E 0%,#0768A9 54%,#0768A9 100%); color:white; box-shadow:0 8px 24px rgba(0,18,94,.22); }
.family-app-bar::before { content:""; position:absolute; width:150px; height:150px; right:-48px; top:calc(-88px + env(safe-area-inset-top)); border:25px solid rgba(255,255,255,.075); border-radius:50%; pointer-events:none; }
.family-app-bar::after { content:""; position:absolute; width:72px; height:72px; left:42%; bottom:-57px; border:18px solid rgba(255,255,255,.045); border-radius:50%; pointer-events:none; }
.family-app-bar > div:first-child { min-width:0; flex:1; }
.family-app-bar span, .family-app-bar strong { display:block; }
.family-app-bar > div:first-child { position:relative; z-index:1; }
.family-app-bar > div:first-child span { color:rgba(255,255,255,.72); font-size:11px; font-weight:850; text-transform:uppercase; letter-spacing:.8px; }
.family-app-bar > div:first-child strong { margin-top:4px; color:white; font-size:20px; line-height:1.1; font-weight:900; letter-spacing:-.3px; }
.family-app-actions { position:relative; z-index:1; display:flex; gap:7px; }
.family-app-actions button, .family-app-actions a { position:relative; width:44px; height:44px; display:grid; place-items:center; border:1px solid rgba(255,255,255,.20); border-radius:14px; background:rgba(255,255,255,.13); color:white; box-shadow:inset 0 1px 0 rgba(255,255,255,.08); cursor:pointer; text-decoration:none; transition:transform .16s ease,background-color .16s ease,color .16s ease,box-shadow .16s ease; -webkit-tap-highlight-color:transparent; backdrop-filter:blur(10px); -webkit-backdrop-filter:blur(10px); }
.family-app-actions button:active, .family-app-actions a:active { transform:scale(.94); background:rgba(255,255,255,.24); color:white; }
.family-app-actions svg { width:20px; height:20px; }
.family-app-actions .notification-badge { position:absolute; right:1px; top:0; min-width:17px; height:17px; display:grid; place-items:center; padding:0 3px; border:2px solid #0768A9; border-radius:20px; background:#FFCE4A; color:#4B3510; box-shadow:0 3px 8px rgba(38,20,78,.22); font-size:10px; font-weight:900; }
.family-home-content { padding:20px 18px calc(106px + env(safe-area-inset-bottom)); }
.family-greeting h1 { margin:0; color:#172033; font-size:27px; font-weight:900; letter-spacing:-.5px; }
.family-greeting p { margin:5px 0 0; color:#737B8C; font-size:14px; }
.player-hero { position:relative; min-height:134px; display:flex; align-items:center; gap:15px; overflow:hidden; margin-top:0; padding:18px; border-radius:24px; background:linear-gradient(135deg,#00125E,#0768A9); box-shadow:0 12px 25px rgba(7,104,169,.23); color:white; }
.player-hero-ball { position:absolute; width:145px; height:145px; right:-31px; top:-34px; color:rgba(255,255,255,.10); }
.player-shield { position:relative; width:82px; height:94px; flex:0 0 82px; display:grid; place-items:center; border-radius:20px; background:white; color:#0768A9; box-shadow:0 7px 16px rgba(0,0,0,.18); }
.player-shield svg { width:53px; height:53px; }
.player-shield.has-club-logo { width:88px; height:96px; flex-basis:88px; padding:8px; border:1px solid rgba(255,255,255,.22); border-radius:24px; background:rgba(255,255,255,.11); box-shadow:inset 0 1px 0 rgba(255,255,255,.13),0 8px 18px rgba(0,18,94,.20); backdrop-filter:blur(5px); -webkit-backdrop-filter:blur(5px); }
.player-shield.has-club-logo img { width:100%; height:100%; display:block; object-fit:contain; filter:drop-shadow(0 5px 6px rgba(0,31,52,.24)); }
.player-data { position:relative; min-width:0; flex:1; }
.player-data > span { color:#D4EAF5; font-size:10px; font-weight:900; letter-spacing:1px; }
.player-data h2 { margin:5px 0 3px; color:white; font-size:22px; line-height:1.08; font-weight:900; overflow-wrap:anywhere; }
.player-data p { margin:0; font-size:13px; font-weight:700; }
.player-data div { display:flex; flex-wrap:wrap; gap:6px; margin-top:9px; }
.player-data small { padding:4px 8px; border:1px solid rgba(255,255,255,.20); border-radius:20px; background:rgba(255,255,255,.15); font-size:10px; font-weight:800; }
.family-section-heading { display:flex; align-items:center; margin:22px 0 10px; }
.family-section-heading h2 { flex:1; margin:0; color:#172033; font-size:18px; font-weight:900; }
.family-section-heading a { color:#0768A9; font-size:13px; font-weight:800; text-decoration:none; }
.collection-progress-card { position:relative; display:flex; align-items:center; gap:15px; padding:17px 17px 32px; border:1px solid #DFE8ED; border-radius:20px; background:white; }
.progress-ring { --progress:62; position:relative; width:70px; height:70px; flex:0 0 70px; display:grid; place-items:center; border-radius:50%; background:conic-gradient(#0768A9 calc(var(--progress)*1%),#E7F2F8 0); }
.progress-ring::before { content:""; position:absolute; width:56px; height:56px; border-radius:50%; background:white; }
.progress-ring strong { position:relative; font-size:18px; font-weight:900; }
.collection-copy { min-width:0; flex:1; }
.collection-copy h3 { margin:0; font-size:17px; font-weight:900; }
.collection-copy p { margin:5px 0 9px; color:#737B8C; font-size:12px; }
.collection-stats { display:flex; align-items:center; flex-wrap:wrap; gap:5px; font-size:11px; }
.collection-stats strong { margin-right:5px; }
.gold-dot,.purple-dot { width:8px; height:8px; border-radius:3px; background:#FFC84A; }.purple-dot{background:#0768A9}
.linear-progress { position:absolute; left:17px; right:17px; bottom:15px; height:7px; overflow:hidden; border-radius:20px; background:#E7F2F8; }.linear-progress span{display:block;height:100%;border-radius:inherit;background:#0768A9}
.family-quick-grid { display:grid; grid-template-columns:repeat(3,minmax(0,1fr)); gap:9px; }
.family-quick-grid a { min-width:0; padding:13px 10px 12px; border:1px solid #DFE8ED; border-radius:17px; background:white; color:#172033; text-decoration:none; }
.family-quick-grid a > span { width:36px; height:36px; display:grid; place-items:center; margin-bottom:10px; border-radius:11px; }.family-quick-grid svg{width:19px;height:19px}
.family-quick-grid strong,.family-quick-grid small { display:block; overflow:hidden; text-overflow:ellipsis; white-space:nowrap; }.family-quick-grid strong{font-size:12px;font-weight:900}.family-quick-grid small{margin-top:3px;color:#858C9A;font-size:10px}
.quick-purple>span{color:#0768A9;background:#E7F2F8}.quick-green>span{color:#168A6A;background:#E6F8F2}.quick-gold>span{color:#E58A00;background:#FFF3DC}
.family-activity-card { display:flex; align-items:center; gap:12px; margin-top:22px; padding:15px; border-radius:19px; background:#172033; color:white; text-decoration:none; }
.activity-spark { width:44px; height:44px; flex:0 0 44px; display:grid; place-items:center; border-radius:50%; background:#303A50; color:#FFC84A; font-size:22px; }
.family-activity-card>span:nth-child(2){min-width:0;flex:1}.family-activity-card strong,.family-activity-card small{display:block}.family-activity-card strong{font-size:13px;font-weight:900}.family-activity-card small{margin-top:4px;color:#B9C1D0;font-size:10px}.family-activity-card>svg{width:19px;height:19px}
.preorder-cta{display:flex;align-items:center;gap:12px;margin-top:16px;padding:15px;border:1px solid rgba(7,104,169,.16);border-radius:20px;background:linear-gradient(135deg,#fff,#EAF3F8);box-shadow:0 8px 20px rgba(0,18,94,.08);color:#172033;text-decoration:none}.preorder-cta-icon{width:50px;height:50px;flex:0 0 50px;display:grid;place-items:center;border-radius:15px;background:linear-gradient(145deg,#00125E,#0768A9);box-shadow:0 8px 17px rgba(0,18,94,.20);color:#fff}.preorder-cta-icon svg{width:26px;height:26px}.preorder-cta-copy{min-width:0;flex:1}.preorder-cta-copy small,.preorder-cta-copy strong,.preorder-cta-copy em{display:block}.preorder-cta-copy small{color:#0768A9;font-size:10px;font-weight:950;letter-spacing:.8px}.preorder-cta-copy strong{margin-top:3px;font-size:14px;line-height:1.22;font-weight:950}.preorder-cta-copy em{margin-top:4px;color:#737B8C;font-size:10px;line-height:1.3;font-style:normal}.preorder-cta-action{align-items:center;align-self:stretch;display:flex;flex:0 0 auto;gap:2px;color:#0768A9;font-size:11px;font-weight:900}.preorder-cta-action svg{width:16px;height:16px}.preorder-cta:active{transform:scale(.985)}
.home-pack-carousel{margin:16px -18px 0}.home-pack-track{display:flex;gap:12px;overflow-x:auto;padding:2px 18px 8px;scroll-padding-inline:18px;scroll-snap-type:x mandatory;scrollbar-width:none;-webkit-overflow-scrolling:touch;overscroll-behavior-x:contain}.home-pack-track::-webkit-scrollbar{display:none}.home-pack-slide{flex:0 0 68%;overflow:hidden;aspect-ratio:451/505;border-radius:22px;background:#E1EAF0;box-shadow:0 9px 22px rgba(0,18,94,.13);scroll-snap-align:start}.home-pack-slide img{width:100%;height:100%;display:block;object-fit:cover}.home-pack-dots{display:flex;align-items:center;justify-content:center;gap:7px;margin-top:4px}.home-pack-dots button{width:7px;height:7px;padding:0;border:0;border-radius:999px;background:#B9CAD4;cursor:pointer;transition:width .2s ease,background-color .2s ease}.home-pack-dots button.is-active{width:22px;background:#0768A9}
.family-bottom-nav { position:fixed; z-index:50; left:50%; bottom:0; transform:translateX(-50%); width:min(480px,100%); display:grid; grid-template-columns:repeat(5,1fr); gap:2px; padding:7px 6px calc(7px + env(safe-area-inset-bottom)); border-top:1px solid rgba(7,104,169,.10); background:rgba(255,255,255,.97); backdrop-filter:blur(20px); -webkit-backdrop-filter:blur(20px); box-shadow:0 -8px 28px rgba(40,30,55,.075); }
.family-bottom-nav>a,.family-bottom-nav>button { position:relative; min-width:0; height:60px; display:flex; flex-direction:column; align-items:center; justify-content:center; gap:4px; border:0; border-radius:15px; background:transparent; color:#77717F; text-decoration:none; font-size:11.5px; line-height:1; font-weight:700; transition:transform .16s ease,background-color .16s ease,color .16s ease; -webkit-tap-highlight-color:transparent; }
.family-bottom-nav>a:active,.family-bottom-nav>button:active { transform:scale(.95); background:#EEF5F9; }
.family-nav-icon { width:34px; height:29px; display:grid; place-items:center; border-radius:10px; transition:background-color .16s ease,transform .16s ease; }.family-nav-icon svg{width:21px;height:21px}
.family-bottom-nav a.active { background:linear-gradient(180deg,#F2F7FA 0%,#E7F2F8 100%); color:#0768A9; font-weight:900; }.family-bottom-nav a.active .family-nav-icon{background:#D7EAF4;transform:translateY(-1px)}.family-bottom-nav a.active::after{content:"";position:absolute;bottom:3px;width:14px;height:3px;border-radius:20px;background:#0768A9}

.family-app-actions button:focus-visible,
.family-bottom-nav a:focus-visible,.family-bottom-nav>button:focus-visible { outline:3px solid rgba(7,104,169,.28); outline-offset:2px; }

@media (prefers-reduced-motion:reduce) {
    .family-app-actions button,
    .family-bottom-nav a,
    .family-nav-icon { transition:none; }
}

/* Tienda */
.store-content { padding:14px 18px calc(105px + env(safe-area-inset-bottom)); }
.store-player-context{position:sticky;z-index:35;top:calc(72px + env(safe-area-inset-top));margin-bottom:10px;padding:9px 12px;border-left:3px solid #0768A9;border-radius:0 11px 11px 0;background:rgba(247,243,252,.97);box-shadow:0 5px 14px rgba(52,35,75,.08);backdrop-filter:blur(12px);-webkit-backdrop-filter:blur(12px)}.store-player-context small,.store-player-context strong,.store-player-context>span{display:block;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.store-player-context small{color:#877E91;font-size:9px;font-weight:850;text-transform:uppercase;letter-spacing:.5px}.store-player-context strong{margin-top:2px;color:#2C2633;font-size:13px;line-height:1.2;font-weight:900}.store-player-context>span{margin-top:3px;color:#746D7D;font-size:10px;line-height:1.25}
.family-player-context-row{position:relative}.family-player-context-row .store-player-context{position:relative;top:auto;padding-right:54px}.context-player-change,.context-exchanges-link{position:absolute;right:10px;top:50%;width:35px;height:35px;display:grid;place-items:center;transform:translateY(-50%);border:0;border-radius:10px;background:#E7F2F8;color:#0768A9}.context-player-change svg,.context-exchanges-link svg{width:18px;height:18px}.exchange-context-row{margin-bottom:12px}.context-exchanges-link{text-decoration:none}
.store-search-row { display:flex; gap:9px; }
.store-search { position:relative; min-width:0; flex:1; }
.store-search>svg { position:absolute; left:13px; top:50%; width:18px; height:18px; transform:translateY(-50%); color:#81788B; }
.store-search input { width:100%; height:46px; padding:0 12px 0 41px; border:1px solid #D8E5EC; border-radius:14px; outline:none; background:white; color:#252033; font-size:13px; }
.store-search input:focus { border-color:#0768A9; box-shadow:0 0 0 3px rgba(7,104,169,.09); }
.store-filter-button { width:46px; height:46px; display:grid; place-items:center; border:0; border-radius:14px; background:#E3EFF6; color:#0768A9; }.store-filter-button svg{width:19px;height:19px}
.store-filters { display:flex; gap:7px; overflow-x:auto; margin:12px -18px 17px; padding:0 18px 2px; scrollbar-width:none; }.store-filters::-webkit-scrollbar{display:none}
.store-filters button { flex:0 0 auto; min-height:33px; padding:0 12px; border:1px solid #D5E3EA; border-radius:20px; background:white; color:#716A7B; font-size:11px; font-weight:800; }.store-filters button.active{border-color:#0768A9;background:#0768A9;color:white}
.store-hero { position:relative; width:100%; min-height:170px; display:flex; align-items:center; overflow:hidden; padding:22px; border:0; border-radius:21px; color:white; text-align:left; background:linear-gradient(135deg,#15243A,#00125E 62%,#0768A9); box-shadow:0 10px 24px rgba(58,34,91,.20); }
.store-hero>span { position:relative; z-index:1; max-width:68%; }.store-hero small,.store-hero strong,.store-hero em,.store-hero b{display:block}.store-hero small{color:#FBD56E;font-size:10px;font-weight:900;letter-spacing:1px}.store-hero strong{margin-top:7px;font-size:22px;line-height:1.05;font-weight:900}.store-hero em{margin-top:7px;color:#D9E6EC;font-size:11px;font-style:normal}.store-hero b{display:inline-block;margin-top:15px;padding:7px 10px;border-radius:9px;background:white;color:#00125E;font-size:11px}
.store-hero>svg { position:absolute; width:145px; height:145px; right:-22px; bottom:-20px; color:rgba(255,255,255,.20); stroke-width:6; }
.store-section { margin-top:22px; }
.store-section-title { display:flex; align-items:center; gap:7px; margin-bottom:11px; }.store-section-title>span{color:#0768A9;font-size:18px}.store-section-title h2{min-width:0;flex:1;margin:0;font-size:17px;font-weight:900}.store-section-title button{border:0;background:transparent;color:#0768A9;font-size:11px;font-weight:800}
.store-products { display:flex; gap:10px; overflow-x:auto; margin-right:-18px; padding-right:18px; padding-bottom:3px; scrollbar-width:none; scroll-snap-type:x proximity; }.store-products::-webkit-scrollbar{display:none}
.store-product { flex:0 0 136px; scroll-snap-align:start; }.store-product[hidden]{display:none}
.product-open { width:100%; height:190px; display:flex; flex-direction:column; align-items:stretch; padding:9px; border:1px solid #DFE8ED; border-radius:16px; background:white; color:#252033; text-align:left;text-decoration:none; }.product-open:disabled{opacity:.82}
.product-art { position:relative; height:78px; flex:0 0 78px; display:grid; place-items:center; overflow:hidden; border-radius:11px; color:white; background:linear-gradient(135deg,#18202F,#F59E0B); }.product-art>svg{width:34px;height:34px}.product-art em{position:absolute;left:6px;top:6px;padding:3px 6px;border-radius:12px;background:#0768A9;color:white;font-size:9px;font-style:normal;font-weight:900}
.product-art--green{background:linear-gradient(135deg,#0E6B57,#30D187)}.product-art--purple{background:linear-gradient(135deg,#111827,#0768A9)}.product-art--gold{background:linear-gradient(135deg,#713F12,#F59E0B)}.product-art--blue{background:linear-gradient(135deg,#1E1B4B,#2563EB)}.product-art--pink{background:linear-gradient(135deg,#581C87,#EC4899)}.product-art--teal{background:linear-gradient(135deg,#0F766E,#2DD4BF)}
.product-open>strong { margin-top:8px; overflow:hidden; font-size:12px; line-height:1.15; font-weight:900; text-overflow:ellipsis; white-space:nowrap; }.product-open>small{margin-top:3px;overflow:hidden;color:#7D7686;font-size:10px;text-overflow:ellipsis;white-space:nowrap}.product-footer{display:flex;align-items:center;margin-top:auto}.product-footer b{min-width:0;flex:1;font-size:12px}.product-footer i{width:25px;height:25px;display:grid;place-items:center;border-radius:8px;background:#0768A9;color:white;font-size:19px;font-style:normal}
.special-offer { display:flex; align-items:center; gap:10px; margin-top:9px; padding:11px; border:1px solid #DFE8ED; border-radius:15px; background:white; }.offer-art{width:52px;height:52px;flex:0 0 52px;display:grid;place-items:center;border-radius:11px;background:linear-gradient(135deg,#1E1B4B,#0768A9);color:white;font-size:23px;font-weight:900}.offer-art--gold{background:linear-gradient(135deg,#713F12,#F59E0B)}.special-offer>div:nth-child(2){min-width:0;flex:1}.special-offer strong,.special-offer small,.special-offer b{display:block}.special-offer strong{overflow:hidden;font-size:11px;font-weight:900;text-overflow:ellipsis;white-space:nowrap}.special-offer small{margin-top:3px;color:#7D7686;font-size:10px}.special-offer>div:last-child{text-align:right}.special-offer em{display:inline-block;padding:3px 6px;border-radius:12px;background:#FFE4E6;color:#E11D48;font-size:9px;font-style:normal;font-weight:900}.special-offer b{margin-top:6px;font-size:11px}
.store-benefits { display:grid; grid-template-columns:repeat(4,1fr); margin-top:22px; padding:13px 5px; border-radius:17px; background:#E7F0F5; }.store-benefits div{text-align:center}.store-benefits span,.store-benefits small{display:block}.store-benefits span{color:#0768A9;font-size:19px}.store-benefits small{margin-top:5px;color:#655D70;font-size:9px;font-weight:800}
.store-empty { padding:25px;text-align:center;color:#81788B;font-size:13px }
.store-section-title>small{color:#81788B;font-size:10px;font-weight:800}
.store-catalog-grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:11px;overflow:visible;margin-right:0;padding-right:0;scroll-snap-type:none}
.store-catalog-grid .store-product{min-width:0;flex:auto}.store-catalog-grid .product-open{height:218px}.store-catalog-grid .product-art{height:108px;flex-basis:108px;background:#EDF3F6}
.product-art--woo img{width:100%;height:100%;display:block;object-fit:cover}.product-art--empty{color:#A69AB8;background:linear-gradient(135deg,#EDF3F6,#DCE9EF)}
.product-footer b del{color:#9A94A2;font-size:10px;font-weight:600}.product-open:disabled .product-footer i{background:#AAA3B5}.family-app-actions button:disabled{cursor:default;opacity:.55}
.store-loading{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:11px}.store-loading[hidden]{display:none}.store-product-skeleton{height:218px;padding:9px;border:1px solid #DFE8ED;border-radius:16px;background:#fff}.store-skeleton-image,.store-skeleton-line,.store-product-skeleton footer i{display:block;background:linear-gradient(90deg,#E7EFF3 25%,#F7FAFB 45%,#E7EFF3 65%);background-size:300% 100%;animation:store-skeleton 1.3s ease-in-out infinite}.store-skeleton-image{height:108px;border-radius:11px}.store-skeleton-line{height:10px;border-radius:999px}.store-skeleton-name{width:82%;height:12px;margin-top:11px}.store-skeleton-category{width:56%;margin-top:7px}.store-product-skeleton footer{display:flex;align-items:center;justify-content:space-between;margin-top:18px}.store-skeleton-price{width:48%;height:12px}.store-product-skeleton footer i{width:25px;height:25px;border-radius:8px}.store-loading p{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);white-space:nowrap;border:0}@keyframes store-skeleton{0%{background-position:100% 0}100%{background-position:0 0}}@media(prefers-reduced-motion:reduce){.store-skeleton-image,.store-skeleton-line,.store-product-skeleton footer i{animation:none}}
.store-error{margin-top:18px;padding:20px;border:1px solid #D8E5EC;border-radius:17px;background:#F7FAFB;text-align:center}.store-error strong{display:block;font-size:14px}.store-error p{margin:5px 0 12px;color:#756D80;font-size:11px}.store-error button{min-height:36px;padding:0 16px;border:0;border-radius:11px;background:#0768A9;color:white;font-size:11px;font-weight:900}

/* Ficha de producto WooCommerce */
.product-app-bar{gap:10px}.product-app-bar>div:first-of-type{position:relative;z-index:1;min-width:0;flex:1}.product-app-bar>div:first-of-type span,.product-app-bar>div:first-of-type strong{display:block}.product-app-bar>div:first-of-type span{color:rgba(255,255,255,.72);font-size:11px;font-weight:850;letter-spacing:.8px;text-transform:uppercase}.product-app-bar>div:first-of-type strong{margin-top:4px;color:white;font-size:20px;line-height:1.1;font-weight:900;letter-spacing:-.3px}.product-back{position:relative;z-index:2;width:38px;height:38px;flex:0 0 38px;display:grid;place-items:center;border-radius:12px;background:rgba(255,255,255,.14);color:white}.product-back svg{width:20px;height:20px}.product-content{padding:15px 18px calc(105px + env(safe-area-inset-bottom))}.product-detail-loading{display:grid;gap:11px}.product-detail-loading[hidden]{display:none}.product-detail-loading span{height:310px;border-radius:22px}.product-detail-loading i{height:22px;border-radius:9px}.product-detail-loading span,.product-detail-loading i{display:block;background:linear-gradient(90deg,#EAF1F5 25%,#F7FAFB 45%,#EAF1F5 65%);background-size:300% 100%;animation:store-skeleton 1.3s ease-in-out infinite}.product-detail-loading p{color:#81788B;text-align:center;font-size:11px}.product-main-image{height:min(410px,105vw);display:grid;place-items:center;overflow:hidden;border-radius:22px;background:linear-gradient(145deg,#F7F4FA,#DFEAF0)}.product-main-image img{width:100%;height:100%;object-fit:contain}.product-main-image svg{width:64px;height:64px;color:#A99DB7}.product-copy{padding:17px 2px 0}.product-categories{display:flex;flex-wrap:wrap;gap:6px}.product-categories span{padding:4px 8px;border-radius:20px;background:#E3EFF6;color:#0768A9;font-size:9px;font-weight:900}.product-copy h1{margin:10px 0 0;color:#252033;font-size:23px;line-height:1.15;font-weight:900;letter-spacing:-.4px}.product-price{display:flex;align-items:center;gap:8px;margin-top:11px}.product-price strong{color:#00125E;font-size:21px}.product-price del{color:#9A94A2;font-size:13px}.product-stock{display:inline-flex;margin-top:9px;padding:5px 8px;border-radius:9px;font-size:10px;font-weight:900}.product-stock.available{background:#EAF8F0;color:#168454}.product-stock.unavailable{background:#FDECEC;color:#C83D4D}.product-short,.product-description div{color:#686171;font-size:12px;line-height:1.65;white-space:pre-line}.product-short{margin-top:14px}.product-options,.product-description{margin-top:18px;padding-top:17px;border-top:1px solid #DCE7EC}.product-options h2,.product-description h2{margin:0 0 11px;font-size:16px;font-weight:900}.product-option-field{display:block;margin-top:10px}.product-option-field>span{display:block;margin-bottom:6px;color:#5F5868;font-size:11px;font-weight:850}.product-option-field select{width:100%;height:44px;padding:0 12px;border:1px solid #D0DFE7;border-radius:12px;background:white;color:#2E2835;font-size:12px}.product-variation-message{margin:8px 0 0;color:#81788B;font-size:10px}.product-variation-message.available{color:#168454}.product-variation-message.unavailable{color:#C83D4D}.product-purchase{display:grid;grid-template-columns:112px 1fr;gap:10px;margin-top:19px}.product-quantity>span{display:block;margin-bottom:5px;color:#696171;font-size:10px;font-weight:850}.product-quantity>div{height:46px;display:grid;grid-template-columns:34px 1fr 34px;align-items:center;border:1px solid #D0DFE7;border-radius:13px;background:white}.product-quantity button{height:100%;border:0;background:transparent;color:#0768A9;font-size:20px}.product-quantity button:disabled{color:#C8C2CD}.product-quantity output{text-align:center;font-size:13px;font-weight:900}.product-cart-button{align-self:end;height:46px;border:0;border-radius:13px;background:#0768A9;color:white;font-size:12px;font-weight:900}.product-cart-button:disabled{background:#C8C2D2;color:#F6F3F9}.product-external{margin-top:19px;padding:15px;border:1px solid #D0DFE7;border-radius:16px;background:#F4F8FA}.product-external strong{font-size:13px}.product-external p{margin:5px 0 12px;color:#71697B;font-size:11px}.product-external a,.product-error a{min-height:42px;display:flex;align-items:center;justify-content:center;border-radius:12px;background:#0768A9;color:white;text-decoration:none;font-size:11px;font-weight:900}.product-coming-dialog{width:min(430px,calc(100% - 28px));margin:auto auto 0;padding:20px;border:0;border-radius:22px 22px 0 0;text-align:center}.product-coming-dialog::backdrop{background:rgba(20,14,29,.55)}.product-coming-dialog>span{display:block;font-size:34px}.product-coming-dialog h2{margin:8px 0 5px;font-size:18px}.product-coming-dialog p{margin:0;color:#71697B;font-size:12px;line-height:1.55}.product-coming-dialog button{width:100%;height:43px;margin-top:16px;border:0;border-radius:12px;background:#0768A9;color:white;font-size:12px;font-weight:900}

/* Ficha de producto 2.2 */
.product-content{padding:18px 16px calc(112px + env(safe-area-inset-bottom));background:linear-gradient(180deg,#F5F9FB 0,#EDF4F7 100%)}
.product-detail{padding-bottom:12px}.product-gallery{position:relative}.product-main-image{height:clamp(330px,103vw,440px);padding:15px;border:1px solid rgba(7,104,169,.08);border-radius:28px;background:#fff;box-shadow:0 18px 44px rgba(55,38,78,.10)}.product-main-image img{border-radius:18px;object-fit:contain}.product-main-image svg{width:76px;height:76px;color:#B6AAC5}
.product-copy{position:relative;margin:-13px 8px 0;padding:22px 17px 18px;border:1px solid #E0EAF0;border-radius:22px;background:rgba(255,255,255,.97);box-shadow:0 12px 30px rgba(55,38,78,.08)}.product-categories span{padding:5px 9px;background:#E6F1F6;font-size:10px}.product-copy h1{margin-top:11px;font-size:26px;line-height:1.12;letter-spacing:-.65px}.product-price{margin-top:12px}.product-price strong{font-size:26px;letter-spacing:-.5px}.product-price del{font-size:14px}.product-stock{margin-top:10px;padding:5px 9px;font-size:10px}.product-short{margin-top:14px;color:#625B6B;font-size:13px;line-height:1.62}
.product-options{margin:16px 8px 0;padding:17px;border:1px solid #DAE7ED;border-radius:20px;background:#fff}.product-options h2{font-size:15px}.product-option-field select{height:50px;border-radius:14px;font-size:13px}
.product-description{margin:18px 8px 0;padding:19px;border:0;border-radius:21px;background:#fff;box-shadow:0 8px 24px rgba(55,38,78,.055)}.product-description h2{font-size:17px}.product-description div{font-size:13px;line-height:1.72}
.product-purchase{position:sticky;z-index:32;bottom:calc(74px + env(safe-area-inset-bottom));grid-template-columns:116px minmax(0,1fr);gap:11px;margin:18px -8px 0;padding:12px;border:1px solid rgba(7,104,169,.12);border-radius:20px;background:rgba(255,255,255,.94);box-shadow:0 -5px 26px rgba(39,24,60,.13);backdrop-filter:blur(18px);-webkit-backdrop-filter:blur(18px)}.product-quantity>span{margin:0 0 5px 3px}.product-quantity>div{height:52px;border-radius:15px}.product-quantity button{font-size:23px}.product-quantity output{font-size:15px}.product-cart-button{height:52px;border-radius:15px;background:linear-gradient(135deg,#00125E,#0768A9);box-shadow:0 9px 20px rgba(0,18,94,.24);font-size:13px}.product-cart-button:active:not(:disabled){transform:scale(.98)}.product-cart-button:disabled{box-shadow:none}
.product-external{margin:18px 8px 0;padding:18px;border-radius:20px;background:#fff;box-shadow:0 8px 24px rgba(55,38,78,.06)}.product-external a{min-height:50px;font-size:12px}
.product-detail-loading{padding:2px}.product-detail-loading span{height:390px;border-radius:28px}.product-detail-loading i{height:24px;border-radius:12px}.product-error{margin:20px 4px}
@media (min-width:700px){.product-content{padding-top:24px}.product-main-image{height:440px}.product-copy h1{font-size:28px}.product-purchase{bottom:82px}}

/* Corrección mobile-first de ficha */
.product-content{width:100%;padding:16px 18px calc(176px + env(safe-area-inset-bottom));overflow-x:hidden}
.product-detail{width:100%;min-width:0}.product-gallery,.product-copy,.product-options,.product-purchase,.product-description,.product-external{width:100%;min-width:0}
.product-main-image{width:100%;height:clamp(300px,82vw,360px);max-height:360px;padding:12px;border-radius:24px}.product-main-image img{display:block;width:100%;height:100%;max-width:100%;max-height:100%;object-fit:contain}.product-main-image #productImagePlaceholder{width:74px;height:74px;max-width:74px;max-height:74px}.product-main-image #productImagePlaceholder[hidden],.product-main-image #productImage[hidden]{display:none!important}
.product-copy{margin:0;padding:22px 2px 4px;border:0;border-radius:0;background:transparent;box-shadow:none}.product-copy h1{margin-top:12px;font-size:clamp(25px,7.2vw,31px);line-height:1.08;letter-spacing:-.8px}.product-price{margin-top:14px}.product-price strong{font-size:clamp(27px,8vw,34px);line-height:1;font-weight:900}.product-price del{font-size:15px}.product-stock{margin-top:12px}.product-short{max-width:none;margin-top:16px;font-size:14px;line-height:1.65}
.product-options{margin:20px 0 0;padding:18px;border-radius:20px}.product-purchase{position:static;display:block;margin:24px 0 0;padding:0;border:0;border-radius:0;background:transparent;box-shadow:none;backdrop-filter:none;-webkit-backdrop-filter:none}.product-quantity{width:100%}.product-quantity>span{margin:0 0 9px;color:#4D4656;font-size:12px}.product-quantity>div{width:164px;height:56px;grid-template-columns:52px 60px 52px;border:1px solid #CDDDE5;border-radius:18px;box-shadow:0 5px 16px rgba(55,38,78,.06)}.product-quantity button{width:52px;min-width:52px;font-size:26px;font-weight:650;-webkit-tap-highlight-color:transparent}.product-quantity output{font-size:17px}
.product-description{width:100%;max-width:none;margin:28px 0 0;padding:22px 18px;border-top:1px solid #D8E5EB;border-radius:20px;background:#fff}.product-description h2{margin-bottom:14px;font-size:19px}.product-description div{max-width:none;font-size:14px;line-height:1.75}
.product-external{margin:24px 0 0}.product-buybar{position:fixed;z-index:49;left:50%;bottom:calc(75px + env(safe-area-inset-bottom));transform:translateX(-50%);width:min(480px,100%);display:grid;grid-template-columns:auto minmax(0,1fr);align-items:center;gap:14px;padding:12px 18px;border-top:1px solid rgba(7,104,169,.12);background:rgba(255,255,255,.96);box-shadow:0 -10px 30px rgba(40,24,62,.12);backdrop-filter:blur(18px);-webkit-backdrop-filter:blur(18px)}.product-buybar>div{min-width:82px}.product-buybar small,.product-buybar strong{display:block}.product-buybar small{color:#81788B;font-size:10px;font-weight:800}.product-buybar strong{margin-top:2px;color:#00125E;font-size:20px;line-height:1;font-weight:900}.product-buybar .product-cart-button{width:100%;height:54px;margin:0;border-radius:16px;font-size:14px}.product-external:not([hidden])~.product-description~.product-buybar,.product-external:not([hidden])~.product-buybar{display:none}
@media (min-width:700px){.product-content{padding:24px 20px 176px}.product-main-image{height:360px}.product-copy{padding-top:25px}.product-description{padding:24px}.product-buybar{padding-left:20px;padding-right:20px}}

/* Carrito WooCommerce */
.family-app-actions .family-cart-link{position:relative;width:44px;height:44px;display:grid;place-items:center;border-radius:14px;background:rgba(255,255,255,.13);color:white}.family-cart-link svg{width:20px;height:20px}.family-cart-link [data-cart-count]{position:absolute;right:-4px;top:-5px;min-width:18px;height:18px;padding:0 4px;display:grid;place-items:center;border:2px solid #0768A9;border-radius:20px;background:#FFD34D;color:#173B52;font-size:10px;font-weight:950}.family-cart-link [data-cart-count][hidden]{display:none}
.product-coming-dialog a{width:100%;height:45px;display:flex;align-items:center;justify-content:center;margin-top:16px;border-radius:12px;background:#0768A9;color:white;text-decoration:none;font-size:12px;font-weight:900}.product-coming-dialog a[hidden]{display:none}.product-coming-dialog a+button{margin-top:8px;background:#E4ECEF;color:#554C60}
.store-promo-dialog{position:fixed;inset:0;width:calc(100% - 24px);max-width:none;height:max-content;max-height:calc(100% - 24px);margin:auto;padding:26px 20px 18px;border:0;border-radius:22px;background:linear-gradient(160deg,#fff 0%,#F1F7FA 100%);color:#252033;text-align:center}.store-promo-dialog::backdrop{background:rgba(20,14,29,.58);backdrop-filter:blur(3px)}.store-promo-dialog[open]{animation:none}.store-promo-close{position:absolute;right:12px;top:12px;width:34px;height:34px;border:0;border-radius:50%;background:#E5EEF2;color:#665d70;font-size:23px;line-height:1}.store-promo-icon{width:64px;height:49px;display:grid;place-items:center;margin:0 auto 12px;overflow:hidden;border-radius:8px}.store-promo-icon img{width:100%;height:100%;display:block;object-fit:contain}.store-promo-dialog>small{display:block;color:#0768A9;font-size:10px;font-weight:950;letter-spacing:1.1px}.store-promo-dialog h2{margin:7px auto 8px;max-width:300px;font-size:22px;line-height:1.15;font-weight:950;letter-spacing:-.35px}.store-promo-dialog p{margin:0 auto;max-width:350px;color:#6f6878;font-size:12.5px;line-height:1.6}.store-promo-dialog a{height:48px;display:flex;align-items:center;justify-content:center;gap:8px;margin-top:19px;border-radius:14px;background:#0768A9;box-shadow:0 10px 22px rgba(7,104,169,.2);color:#fff;text-decoration:none;font-size:13px;font-weight:950}.store-promo-dialog a span{font-size:19px}.store-promo-later{width:100%;height:40px;margin-top:6px;border:0;background:transparent;color:#81798a;font-size:11px;font-weight:850}
.cart-content{min-height:calc(100vh - 83px);padding:18px 18px calc(108px + env(safe-area-inset-bottom));background:linear-gradient(180deg,#F5F9FB,#ECF3F6)}.cart-loading{display:grid;gap:10px}.cart-loading[hidden],#cartReady[hidden],.cart-empty[hidden],.cart-error[hidden]{display:none}.cart-item-skeleton{display:grid;grid-template-columns:90px minmax(0,1fr) 30px;gap:12px;padding:12px;border:1px solid #DAE7ED;border-radius:20px;background:#fff;box-shadow:0 8px 24px rgba(55,38,78,.055)}.cart-item-skeleton>div{min-width:0;padding-top:3px}.cart-skeleton-image,.cart-skeleton-line,.cart-skeleton-controls,.cart-item-skeleton>i{display:block;background:linear-gradient(90deg,#E2EBF0 25%,#F7FAFB 45%,#E2EBF0 65%);background-size:300% 100%;animation:store-skeleton 1.3s ease-in-out infinite}.cart-skeleton-image{height:100px;border-radius:14px}.cart-skeleton-line{height:10px;border-radius:999px}.cart-skeleton-name{width:84%;height:13px}.cart-skeleton-variation{width:62%;margin-top:8px}.cart-skeleton-price{width:45%;height:14px;margin-top:10px}.cart-skeleton-controls{width:min(100%,126px);height:37px;margin-top:10px;border-radius:12px}.cart-item-skeleton>i{width:30px;height:30px;border-radius:10px}.cart-loading>p{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);white-space:nowrap;border:0}.cart-heading{display:flex;align-items:end;justify-content:space-between;margin-bottom:14px}.cart-heading h1{margin:0;font-size:26px;font-weight:950}.cart-heading p{margin:4px 0 0;color:#766E7F;font-size:12px}.cart-heading button{border:0;background:transparent;color:#C23D50;font-size:12px;font-weight:900}.cart-items{display:grid;gap:10px}.cart-item{position:relative;display:grid;grid-template-columns:90px minmax(0,1fr) 30px;gap:12px;padding:12px;border:1px solid #DAE7ED;border-radius:20px;background:white;box-shadow:0 8px 24px rgba(55,38,78,.055)}.cart-item-image{height:100px;display:grid;place-items:center;overflow:hidden;border-radius:14px;background:#ECF3F6}.cart-item-image img{width:100%;height:100%;object-fit:contain}.cart-item-copy{min-width:0;padding:2px 0}.cart-item-copy>strong,.cart-item-copy>small,.cart-item-copy>b{display:block}.cart-item-copy>strong{font-size:14px;line-height:1.25;font-weight:900}.cart-item-copy>small{margin-top:5px;color:#81788B;font-size:10px;line-height:1.4}.cart-item-copy>b{margin-top:8px;color:#00125E;font-size:16px}.cart-item-controls{width:126px;height:37px;display:grid;grid-template-columns:38px 50px 38px;align-items:center;margin-top:9px;border:1px solid #CEDDE5;border-radius:12px}.cart-item-controls button{height:100%;border:0;background:transparent;color:#0768A9;font-size:20px}.cart-item-controls button:disabled{color:#C8C2CD}.cart-item-controls output{text-align:center;font-size:13px;font-weight:900}.cart-item-remove{width:30px;height:30px;border:0;border-radius:10px;background:#F8EDF0;color:#C23D50;font-size:20px}.cart-is-busy{pointer-events:none;opacity:.65}.cart-summary{margin-top:17px;padding:18px;border:1px solid #D9E6EC;border-radius:20px;background:white}.cart-summary h2{margin:0 0 12px;font-size:17px}.cart-summary dl{margin:0}.cart-summary dl>div{display:flex;justify-content:space-between;padding:7px 0;color:#686071;font-size:12px}.cart-summary dd{margin:0;font-weight:850}.cart-summary .cart-summary-total{margin-top:6px;padding-top:13px;border-top:1px solid #D9E6EC;color:#272131;font-size:17px;font-weight:950}.cart-summary>p{margin:9px 0 0;color:#8A8292;font-size:10px}.cart-checkout{height:56px;display:flex;align-items:center;justify-content:center;margin-top:14px;border-radius:17px;background:linear-gradient(135deg,#00125E,#0768A9);box-shadow:0 10px 24px rgba(0,18,94,.25);color:white;text-decoration:none;font-size:14px;font-weight:950}.cart-empty{padding:70px 20px;text-align:center}.cart-empty>span{width:78px;height:78px;display:grid;place-items:center;margin:auto;border-radius:50%;background:#E2EEF5;color:#0768A9}.cart-empty svg{width:36px;height:36px}.cart-empty h1{margin:20px 0 7px;font-size:23px}.cart-empty p{margin:0;color:#766E7F;font-size:12px;line-height:1.6}.cart-empty a{height:49px;display:flex;align-items:center;justify-content:center;margin-top:20px;border-radius:14px;background:#0768A9;color:white;text-decoration:none;font-size:13px;font-weight:900}.cart-error{margin-top:40px}.cart-confirm{width:min(430px,calc(100% - 28px));margin:auto auto 0;padding:20px;border:0;border-radius:22px 22px 0 0}.cart-confirm::backdrop{background:rgba(20,14,29,.55)}.cart-confirm h2{margin:0;font-size:19px}.cart-confirm p{color:#71697B;font-size:12px}.cart-confirm>div:last-child{display:grid;grid-template-columns:1fr 1fr;gap:9px;margin-top:18px}.cart-confirm button{height:45px;border:0;border-radius:12px;background:#E4ECEF;color:#554C60;font-size:12px;font-weight:900}.cart-confirm #cartConfirmAccept{background:#C74455;color:white}
.checkout-wait{position:fixed;z-index:500;inset:0;display:grid;place-items:center;padding:24px;background:rgba(0,18,54,.72);backdrop-filter:blur(5px)}.checkout-wait[hidden]{display:none}.checkout-wait>div{min-width:210px;padding:25px 23px;border-radius:22px;background:#fff;box-shadow:0 22px 65px rgba(0,0,0,.3);text-align:center}.checkout-wait-spinner{width:43px;height:43px;display:block;margin:0 auto 16px;border:4px solid #D7EAF4;border-top-color:#0768A9;border-radius:50%;animation:checkout-wait-spin .75s linear infinite}.checkout-wait strong,.checkout-wait small{display:block}.checkout-wait strong{color:#00125E;font-size:16px}.checkout-wait small{margin-top:6px;color:#71697B;font-size:11px}@keyframes checkout-wait-spin{to{transform:rotate(360deg)}}@media(prefers-reduced-motion:reduce){.checkout-wait-spinner{animation-duration:1.5s}}
@media(min-width:700px){.cart-content{padding:24px 20px 112px}.cart-item,.cart-item-skeleton{grid-template-columns:105px minmax(0,1fr) 34px}.cart-item-image,.cart-skeleton-image{height:112px}}
.store-browser { width:min(480px,100%); max-width:none; height:94vh; max-height:94vh; margin:auto auto 0; padding:0; overflow:hidden; border:0; border-radius:23px 23px 0 0; background:white; }.store-browser::backdrop{background:rgba(13,10,17,.55);backdrop-filter:blur(2px)}.store-browser[open]{display:flex;flex-direction:column;animation:sheet-in .22s ease-out}
.store-browser header { flex:0 0 auto; padding:8px 12px 10px; background:#172033; color:white; }.browser-handle{width:40px;height:4px;display:block;margin:0 auto 8px;border-radius:20px;background:rgba(255,255,255,.35)}.store-browser header>div{display:flex;align-items:center;gap:9px}.store-browser header img{width:32px;height:32px;object-fit:contain}.store-browser header div>span{min-width:0;flex:1}.store-browser header small,.store-browser header strong{display:block;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.store-browser header small{color:#F6C746;font-size:9px;font-weight:900;letter-spacing:1px}.store-browser header strong{margin-top:2px;font-size:15px}.store-browser header button{width:35px;height:35px;border:0;border-radius:10px;background:rgba(255,255,255,.1);color:white;font-size:26px}.store-browser iframe{width:100%;min-height:0;flex:1;border:0;background:white}.browser-loading{height:3px;flex:0 0 3px;background:#172033}.browser-loading.active::after{content:"";display:block;width:35%;height:100%;background:#F6C746;animation:browser-progress 1s ease-in-out infinite}.external-store-link{display:block;padding:10px calc(12px + env(safe-area-inset-bottom));color:#0768A9;background:white;border-top:1px solid #DFE8ED;text-align:center;text-decoration:none;font-size:11px;font-weight:900}@keyframes browser-progress{from{transform:translateX(-100%)}to{transform:translateX(300%)}}

/* Colección */
.collection-content { padding:15px 18px calc(104px + env(safe-area-inset-bottom)); }
.collection-player-header { display:flex; align-items:center; gap:11px; }.collection-player-avatar{width:52px;height:52px;flex:0 0 52px;display:grid;place-items:center;border-radius:50%;background:#E3EFF6;color:#0768A9}.collection-player-avatar svg{width:25px;height:25px}.collection-player-header>div{min-width:0;flex:1}.collection-player-header h1{margin:0;overflow:hidden;font-size:21px;font-weight:900;text-overflow:ellipsis;white-space:nowrap}.collection-player-header p{margin:4px 0 0;overflow:hidden;color:#737B8C;font-size:12px;font-weight:650;text-overflow:ellipsis;white-space:nowrap}.collection-player-header>button{width:39px;height:39px;display:grid;place-items:center;border:0;border-radius:12px;background:#E3EFF6;color:#0768A9}.collection-player-header>button svg{width:20px;height:20px}
.collection-summary { position:relative; display:flex; align-items:center; gap:16px; margin-top:16px; padding:17px 17px 76px; border-radius:21px; background:#101827; color:white; box-shadow:0 8px 19px rgba(16,24,39,.15); }
.album-progress { --progress:62; position:relative; width:104px;height:104px;flex:0 0 104px;display:grid;place-items:center;border-radius:50%;background:conic-gradient(#FFD34D calc(var(--progress)*1%),#273246 0)}.album-progress::before{content:"";position:absolute;width:88px;height:88px;border-radius:50%;background:white}.album-progress>span{position:relative;width:76px;height:76px;display:grid;place-items:center;border-radius:50%;background:linear-gradient(145deg,#EDF5FA,#C9E1EE);color:#0768A9}.album-progress svg{width:37px;height:37px}
.album-summary-copy{min-width:0;flex:1}.album-summary-copy h2{margin:0;color:white;font-size:18px;line-height:1.15;font-weight:900}.album-summary-copy>strong{display:block;margin-top:9px;color:#FFD34D;font-size:14px;font-weight:900}.album-progress-line{height:7px;overflow:hidden;margin-top:8px;border-radius:20px;background:#273246}.album-progress-line span{display:block;height:100%;border-radius:inherit;background:#FFD34D;transition:width .2s ease}
.album-metrics{position:absolute;left:17px;right:17px;bottom:15px;display:grid;grid-template-columns:1fr 1fr;gap:9px}.album-metrics>div{padding:9px 11px;border:1px solid #2D3A51;border-radius:12px;background:#1B2536}.album-metrics strong,.album-metrics span{display:block}.album-metrics strong{font-size:19px;line-height:1;font-weight:900}.album-metrics span{margin-top:4px;color:#B7C2D6;font-size:10px;font-weight:700}
.collection-tabs{display:grid;grid-template-columns:repeat(4,1fr);gap:2px;margin-top:14px;padding:4px;border:1px solid #E1E7F0;border-radius:15px;background:#EDF0F5}.collection-tabs button{height:45px;border:0;border-radius:11px;background:transparent;color:#697386}.collection-tabs button span,.collection-tabs button strong{display:block}.collection-tabs button span{font-size:11px;font-weight:800}.collection-tabs button strong{margin-top:2px;color:#8A94A6;font-size:11px}.collection-tabs button.active{background:white;color:#151826;box-shadow:0 2px 8px rgba(15,23,42,.07)}.collection-tabs button.active strong{color:#0768A9}
.sticker-grid{display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:7px;margin-top:14px}.sticker-card{position:relative;min-width:0;aspect-ratio:.82;padding:7px;border:1px solid;border-radius:11px;text-align:left}.sticker-card[hidden]{display:none}.sticker-number{display:block;font-size:11px;font-weight:900}.sticker-quantity{position:absolute;right:6px;top:6px;color:#D97706;font-size:11px;font-weight:900}.sticker-person{width:32px;height:32px;display:grid;place-items:center;margin:13px auto 9px;border-radius:50%}.sticker-person svg{width:18px;height:18px}.sticker-card>strong{display:block;overflow:hidden;text-align:center;font-size:9px;font-weight:900;text-overflow:ellipsis;white-space:nowrap}.sticker-card--repeated{border-color:#E9B949;background:#FFF4CC;color:#C78300}.sticker-card--repeated .sticker-person{background:#FFE7A3}.sticker-card--missing{border-color:#F2B8B5;background:#FFECEC;color:#D65A5A}.sticker-card--missing .sticker-person{background:#FFD7D7}.sticker-card--owned{border-color:#9DD9B5;background:#E8F8EE;color:#26965A}.sticker-card--owned .sticker-person{background:#CFF0DC}.collection-empty{padding:45px 0;text-align:center;color:#737B8C;font-size:13px}
.collection-summary .album-summary-copy h1{margin:0;color:#fff;font-size:16px;line-height:1.15;font-weight:950}.collection-summary .album-summary-copy h2{margin-top:5px;color:#B7C2D6;font-size:11px;font-weight:750}.collection-summary .album-metrics{grid-template-columns:repeat(3,minmax(0,1fr))}.collection-summary .album-metrics>div{min-width:0;padding:9px 7px;text-align:center}.collection-summary .album-metrics strong{font-size:17px}.collection-summary .album-metrics span{overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.collection-grid-heading{display:flex;align-items:end;justify-content:space-between;margin-top:18px}.collection-grid-heading small{color:#0768A9;font-size:9px;font-weight:950;letter-spacing:.8px}.collection-grid-heading h2{margin:3px 0 0;font-size:18px}.collection-grid-heading>strong{min-width:34px;padding:7px 8px;border-radius:10px;background:#E4F0F6;color:#0768A9;text-align:center;font-size:12px}.collection-loading[hidden],.collection-error[hidden],#collectionReady[hidden]{display:none}.collection-loading{margin-top:16px}.collection-summary-skeleton{height:197px;padding:22px;border-radius:21px;background:#101827}.collection-summary-skeleton i{width:94px;height:94px;display:block;float:left;margin-right:17px;border-radius:50%}.collection-summary-skeleton span{height:14px;display:block;overflow:hidden;margin:9px 0;border-radius:8px}.collection-summary-skeleton span:last-child{clear:both;height:47px;margin-top:30px}.collection-summary-skeleton i,.collection-summary-skeleton span,.collection-grid-skeleton i{background:linear-gradient(90deg,#263247 25%,#3A465A 45%,#263247 65%);background-size:300% 100%;animation:store-skeleton 1.3s ease-in-out infinite}.collection-grid-skeleton{display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:7px;margin-top:14px}.collection-grid-skeleton i{aspect-ratio:.82;border-radius:11px;background:linear-gradient(90deg,#E3EBEF 25%,#F6F9FA 45%,#E3EBEF 65%);background-size:300% 100%}.collection-loading>p{margin:13px 0 0;color:#737B8C;text-align:center;font-size:12px}.collection-error{margin-top:28px;padding:28px 20px;border:1px solid #F0CDD0;border-radius:20px;background:#FFF;text-align:center}.collection-error>span{width:52px;height:52px;display:grid;place-items:center;margin:auto;border-radius:50%;background:#FFF0F1;color:#B82F38;font-size:25px;font-weight:950}.collection-error h2{margin:14px 0 6px;font-size:18px}.collection-error p{margin:0;color:#746E80;font-size:12px;line-height:1.5}.collection-error button{width:100%;height:43px;margin-top:17px;border:0;border-radius:12px;background:#0768A9;color:#fff;font-size:12px;font-weight:900}@media(max-width:360px){.collection-summary{gap:11px;padding-left:13px;padding-right:13px}.album-progress{width:88px;height:88px;flex-basis:88px}.album-progress::before{width:74px;height:74px}.album-progress>span{width:64px;height:64px}.sticker-grid,.collection-grid-skeleton{grid-template-columns:repeat(3,minmax(0,1fr))}}
.child-switcher{width:min(480px,100%);max-width:none;margin:auto auto 0;padding:10px 18px calc(18px + env(safe-area-inset-bottom));border:0;border-radius:22px 22px 0 0;background:white;color:#252033}.child-switcher::backdrop{background:rgba(13,10,17,.5);backdrop-filter:blur(2px)}.child-switcher[open]{animation:sheet-in .22s ease-out}.app-bottom-sheet__handle{width:38px;height:4px;margin:0 auto 18px;border-radius:20px;background:#D7D2DC}.child-switcher h2{margin:0;font-size:21px;font-weight:900}.child-switcher>p{margin:6px 0 17px;color:#746E80;font-size:13px}.child-switcher-list{display:grid;gap:8px}.child-switcher-list button{width:100%;display:flex;align-items:center;gap:10px;padding:11px;border:1px solid #D8E5EC;border-radius:14px;background:white;color:#252033;text-align:left}.child-switcher-list button>span{width:38px;height:38px;display:grid;place-items:center;border-radius:12px;background:#E7F2F8;color:#0768A9}.child-switcher-list svg{width:20px;height:20px}.child-switcher-list button>div{min-width:0;flex:1}.child-switcher-list strong,.child-switcher-list small{display:block;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.child-switcher-list strong{font-size:13px;font-weight:900}.child-switcher-list small{margin-top:3px;color:#746E80;font-size:10px}.child-switcher-list i{display:none;color:#0768A9;font-style:normal;font-weight:900}.child-switcher-list button.active{border-color:#A9CFE2;background:#F5F9FB}.child-switcher-list button.active i{display:block}.child-switcher-cancel{width:100%;height:44px;margin-top:13px;border:0;border-radius:12px;background:#E5ECEF;color:#4E4756;font-size:12px;font-weight:900}

/* Intercambios */
.exchange-content{padding:12px 16px calc(104px + env(safe-area-inset-bottom))}.exchange-tools{display:flex;align-items:center;gap:10px}.exchange-tools>div{min-width:0;flex:1}.exchange-tools strong,.exchange-tools span{display:block;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.exchange-tools strong{font-size:15px;font-weight:900}.exchange-tools span{margin-top:3px;color:#746E80;font-size:11px}.exchange-tools>a{display:flex;align-items:center;gap:5px;padding:8px 10px;border-radius:10px;background:#E7F2F8;color:#0768A9;text-decoration:none;font-size:11px;font-weight:900}.exchange-tools>a svg{width:15px;height:15px}
.exchange-summary-chips{display:flex;gap:7px;overflow-x:auto;margin:12px -16px 0;padding:0 16px;scrollbar-width:none}.exchange-summary-chips span{flex:0 0 auto;padding:7px 10px;border-radius:20px;background:#E5F0F6;color:#4D687A;font-size:11px;font-weight:700}.exchange-summary-chips strong{margin-left:3px;color:#0768A9}.exchange-tabs{display:grid;grid-template-columns:repeat(3,1fr);gap:3px;margin:14px 0;padding:4px;border:1px solid #D7E4EA;border-radius:15px;background:#E5ECEF}.exchange-tabs button{height:66px;display:flex;flex-direction:column;align-items:center;justify-content:center;gap:5px;border:0;border-radius:11px;background:transparent;color:#776F80;font-size:13px;font-weight:850}.exchange-tabs svg{width:30px;height:30px}.exchange-tabs .exchange-tab-icon circle{fill:#0878b7;stroke:none}.exchange-tabs .exchange-tab-icon path{fill:none;stroke:#fff;stroke-linecap:round;stroke-linejoin:round;stroke-width:1.8}.exchange-tabs button.active{background:white;color:#0768A9;box-shadow:0 2px 8px rgba(40,30,55,.08)}
.exchange-panel{display:none}.exchange-panel.active{display:grid;gap:11px;animation:app-view-in .16s ease-out}.exchange-card{padding:14px;border:1px solid #DCE6EB;border-radius:18px;background:white;box-shadow:0 4px 14px rgba(40,30,55,.045)}.exchange-card>header{display:flex;align-items:flex-start;gap:10px}.exchange-family-avatar{width:39px;height:39px;flex:0 0 39px;display:grid;place-items:center;border-radius:12px;background:#E7F2F8;font-size:20px}.exchange-card header>div{min-width:0;flex:1}.exchange-card header strong,.exchange-card header small{display:block;overflow:hidden;text-overflow:ellipsis}.exchange-card header strong{font-size:13px;font-weight:900;white-space:nowrap}.exchange-card header small{margin-top:4px;color:#746E80;font-size:10px;line-height:1.3}.exchange-card header em{flex:0 0 auto;padding:4px 7px;border-radius:20px;background:#E9F7F0;color:#168A6A;font-size:9px;font-style:normal;font-weight:900}
.exchange-group{margin-top:14px}.exchange-group h3{display:flex;align-items:center;gap:6px;margin:0;font-size:12px;font-weight:900}.exchange-group h3>span{width:20px;height:20px;display:grid;place-items:center;border-radius:7px}.exchange-group .down{background:#E8F2FF;color:#3275C9}.exchange-group .up{background:#E8F8EE;color:#26965A}.exchange-group h3 small{margin-left:auto;color:#847C8C;font-size:10px}.exchange-group>div{display:flex;flex-wrap:wrap;gap:6px;margin-top:8px}.exchange-sticker{padding:6px 9px;border:1px solid #CFDFE7;border-radius:20px;background:#F4F8FA;color:#466276;font-size:10px;font-weight:900}.exchange-divider{height:1px;margin-top:14px;background:#E5ECEF}.propose-exchange{width:100%;height:40px;display:flex;align-items:center;justify-content:center;gap:7px;margin-top:14px;border:0;border-radius:11px;background:#0768A9;color:white;font-size:11px;font-weight:900}.propose-exchange svg{width:16px;height:16px}
.sticker-detail-sheet,.exchange-proposal-sheet,.proposal-success{width:min(480px,100%);max-width:none;margin:auto auto 0;padding:10px 19px calc(19px + env(safe-area-inset-bottom));border:0;border-radius:22px 22px 0 0;background:white;color:#252033}.sticker-detail-sheet::backdrop,.exchange-proposal-sheet::backdrop,.proposal-success::backdrop{background:rgba(13,10,17,.5);backdrop-filter:blur(2px)}.sticker-detail-sheet[open],.exchange-proposal-sheet[open],.proposal-success[open]{animation:sheet-in .22s ease-out}.detail-sticker-icon{width:47px;height:47px;display:grid;place-items:center;border-radius:14px;background:#E7F2F8;color:#0768A9;font-size:22px;font-weight:900}.sticker-detail-sheet h2,.exchange-proposal-sheet h2,.proposal-success h2{margin:14px 0 6px;font-size:20px;font-weight:900}.sticker-detail-sheet p,.exchange-proposal-sheet>p,.proposal-success p{margin:0;color:#746E80;font-size:13px;line-height:1.45}.sticker-detail-sheet>button,.proposal-success>button{width:100%;height:43px;margin-top:18px;border:0;border-radius:11px;background:#0768A9;color:white;font-size:11px;font-weight:900}
.exchange-proposal-sheet{max-height:91vh;overflow-y:auto}.exchange-proposal-sheet form>section{margin-top:15px;padding:12px;border:1px solid #DCE6EB;border-radius:14px}.exchange-proposal-sheet section h3{margin:0;font-size:13px;font-weight:900}.exchange-proposal-sheet section p{margin:3px 0 9px;color:#746E80;font-size:10px}.exchange-proposal-sheet section>div{display:flex;flex-wrap:wrap;gap:6px}.exchange-proposal-sheet section label input{position:absolute;opacity:0;pointer-events:none}.exchange-proposal-sheet section label span{display:block;padding:6px 9px;border:1px solid #CFDFE7;border-radius:20px;color:#746E80;font-size:10px;font-weight:900}.exchange-proposal-sheet section label input:checked+span{border-color:#0768A9;background:#E7F2F8;color:#0768A9}.exchange-proposal-sheet form>label{display:block;margin-top:14px;color:#4D4557;font-size:11px;font-weight:900}.exchange-proposal-sheet textarea{width:100%;margin-top:6px;padding:11px;border:1px solid #CFDFE7;border-radius:12px;outline:none;resize:vertical;color:#252033;font:inherit;font-size:12px}.proposal-error{margin:8px 0 0;padding:8px;border-radius:9px;background:#FFF1F2;color:#9F2831;font-size:10px}.proposal-actions{display:grid;grid-template-columns:1fr 1.25fr;gap:8px;margin-top:14px}.proposal-actions button{height:43px;border:0;border-radius:11px;background:#E5ECEF;color:#4E4756;font-size:11px;font-weight:900}.proposal-actions button[type=submit]{background:#0768A9;color:white}.proposal-success{text-align:center}.proposal-success>span{width:50px;height:50px;display:grid;place-items:center;margin:0 auto;border-radius:50%;background:#E8F8EE;color:#26965A;font-size:26px;font-weight:900}
@keyframes app-view-in{from{opacity:.35;transform:translateY(3px)}to{opacity:1;transform:translateY(0)}}

/* Mis intercambios */
.family-subpage-bar{position:sticky;z-index:40;top:0;min-height:calc(61px + env(safe-area-inset-top));display:grid;grid-template-columns:40px 1fr 40px;align-items:center;gap:8px;padding:calc(8px + env(safe-area-inset-top)) 14px 8px;border-bottom:1px solid #DEE8ED;background:rgba(255,255,255,.94);backdrop-filter:blur(18px)}.family-subpage-bar>a,.family-subpage-bar>button{width:39px;height:39px;display:grid;place-items:center;border:0;border-radius:12px;background:#ECF4F8;color:#51445E}.family-subpage-bar svg{width:20px;height:20px}.family-subpage-bar strong{text-align:center;font-size:17px;font-weight:900}
.my-exchanges-content{padding:13px 16px calc(28px + env(safe-area-inset-bottom))}.my-exchanges-tabs{display:grid;grid-template-columns:1fr 1fr;gap:4px;padding:4px;border:1px solid #D7E4EA;border-radius:15px;background:#E5ECEF}.my-exchanges-tabs button{height:47px;display:flex;align-items:center;justify-content:center;gap:6px;border:0;border-radius:11px;background:transparent;color:#776F80;font-size:12px;font-weight:800}.my-exchanges-tabs button span{font-size:20px}.my-exchanges-tabs button b{min-width:19px;padding:3px 5px;border-radius:20px;background:#CFDFE7;color:#655D70;font-size:9px}.my-exchanges-tabs button.active{background:white;color:#0768A9;box-shadow:0 2px 8px rgba(40,30,55,.08)}.my-exchanges-tabs button.active b{background:#E7F2F8;color:#0768A9}
.my-exchange-list{display:none;margin-top:12px}.my-exchange-list.active{display:grid;gap:11px;animation:app-view-in .16s ease-out}.my-exchange-card{padding:14px;border:1px solid #DCE6EB;border-radius:18px;background:white;box-shadow:0 4px 14px rgba(40,30,55,.045)}.my-exchange-card>header{display:flex;align-items:flex-start;gap:10px}.my-exchange-avatar{width:40px;height:40px;flex:0 0 40px;display:grid;place-items:center;border-radius:12px;background:#E7F2F8;font-size:20px}.my-exchange-card header>div{min-width:0;flex:1}.my-exchange-card header strong,.my-exchange-card header small{display:block;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.my-exchange-card header strong{font-size:13px;font-weight:900}.my-exchange-card header small{margin-top:3px;color:#746E80;font-size:10px}.exchange-status{flex:0 0 auto;padding:5px 7px;border:1px solid #FFE49A;border-radius:20px;background:#FFF8E1;color:#8A5A00;font-size:9px;font-style:normal;font-weight:900}.exchange-status--aceptado{border-color:#BFE8CC;background:#EAF8EF;color:#166534}.exchange-status--rechazado{border-color:#FFCACA;background:#FFEEEE;color:#991B1B}.exchange-status--cancelado{border-color:#E5E7EB;background:#F3F4F6;color:#374151}.exchange-status--completado{border-color:#BFDBFE;background:#EFF6FF;color:#1D4ED8}
.exchange-album{margin:11px 0 0;color:#5F5768;font-size:11px;font-weight:800}.my-exchange-card blockquote{margin:10px 0 0;padding:10px;border:1px solid #DFE8ED;border-radius:11px;background:#F6F9FA;color:#514A59;font-size:11px;line-height:1.4}.listed-sticker-group{margin-top:13px}.listed-sticker-group h3{display:flex;align-items:center;gap:6px;margin:0;font-size:11px;font-weight:900}.listed-sticker-group h3 b{width:20px;height:20px;display:grid;place-items:center;border-radius:7px;background:#E7F2F8;color:#0768A9}.listed-sticker-group h3 small{margin-left:auto;color:#81788B}.listed-sticker-group>div{display:flex;flex-wrap:wrap;gap:6px;margin-top:8px}.listed-sticker-group>div>span{display:flex;align-items:center;gap:4px;padding:5px 8px 5px 5px;border:1px solid #CFDFE7;border-radius:20px;background:#F4F8FA;color:#466276;font-size:10px;font-weight:900}.listed-sticker-group i{width:18px;height:18px;display:grid;place-items:center;border-radius:50%;background:#D6E7F0;color:#0768A9;font-size:9px;font-style:normal}.exchange-state-notice{margin-top:13px;padding:9px 10px;border:1px solid #BFE8CC;border-radius:10px;background:#EAF8EF;color:#166534;font-size:10px;font-weight:800}.exchange-state-notice--complete{border-color:#BFDBFE;background:#EFF6FF;color:#1D4ED8}
.listed-exchange-actions{display:flex;gap:8px;margin-top:14px}.listed-exchange-actions:empty{display:none}.listed-exchange-actions button{min-height:39px;flex:1;padding:6px 8px;border:1px solid #D2E1E8;border-radius:11px;background:white;color:#9F2831;font-size:10px;font-weight:900}.listed-exchange-actions button.primary{border-color:#0768A9;background:#0768A9;color:white}.my-exchanges-empty{padding:75px 20px;text-align:center}.my-exchanges-empty>span{color:#0768A9;font-size:44px}.my-exchanges-empty h2{margin:11px 0 5px;font-size:19px;font-weight:900}.my-exchanges-empty p{margin:0;color:#746E80;font-size:12px}
.exchange-action-sheet,.exchange-action-result{width:min(480px,100%);max-width:none;margin:auto auto 0;padding:10px 19px calc(19px + env(safe-area-inset-bottom));border:0;border-radius:22px 22px 0 0;background:white;color:#252033}.exchange-action-sheet::backdrop,.exchange-action-result::backdrop{background:rgba(13,10,17,.5);backdrop-filter:blur(2px)}.exchange-action-sheet[open],.exchange-action-result[open]{animation:sheet-in .22s ease-out}.exchange-action-icon,.exchange-action-result>span{width:49px;height:49px;display:grid;place-items:center;border-radius:14px;background:#E7F2F8;color:#0768A9;font-size:24px;font-weight:900}.exchange-action-sheet h2,.exchange-action-result h2{margin:14px 0 6px;font-size:20px;font-weight:900}.exchange-action-sheet>p,.exchange-action-result>p{margin:0;color:#746E80;font-size:12px;line-height:1.45}.exchange-action-sheet>div:last-child{display:grid;grid-template-columns:1fr 1fr;gap:8px;margin-top:19px}.exchange-action-sheet button,.exchange-action-result>button{height:43px;border:0;border-radius:11px;background:#E5ECEF;color:#51475E;font-size:11px;font-weight:900}.exchange-action-sheet #confirmExchangeAction{background:#0768A9;color:white}.exchange-action-sheet #confirmExchangeAction.danger{background:#B82F38}.exchange-action-result{text-align:center}.exchange-action-result>span{margin:0 auto;border-radius:50%;background:#E8F8EE;color:#26965A}.exchange-action-result>button{width:100%;margin-top:18px;background:#0768A9;color:white}

/* Perfil familiar */
.family-profile-sheet,.family-logout-sheet{width:min(480px,100%);max-width:none;margin:auto auto 0;padding:10px 20px calc(20px + env(safe-area-inset-bottom));border:0;border-radius:23px 23px 0 0;background:white;color:#252033;box-shadow:0 -14px 45px rgba(40,30,55,.18)}.family-profile-sheet::backdrop,.family-logout-sheet::backdrop{background:rgba(13,10,17,.5);backdrop-filter:blur(2px)}.family-profile-sheet[open],.family-logout-sheet[open]{animation:sheet-in .22s ease-out}
.family-profile-avatar{width:68px;height:68px;display:grid;place-items:center;margin:0 auto;border-radius:50%;background:#E3EFF6;color:#0768A9}.family-profile-avatar svg{width:35px;height:35px}.family-profile-sheet h2{margin:13px 0 4px;text-align:center;font-size:22px;font-weight:900}.family-profile-role{display:block;color:#0768A9;text-align:center;font-size:13px;font-weight:900}.family-profile-lines{display:grid;gap:8px;margin-top:18px;padding:13px;border-radius:15px;background:#F4F8FA}.family-profile-lines>div{display:flex;align-items:center;gap:9px;min-width:0;color:#51475E;font-size:12px;font-weight:700}.family-profile-lines svg{width:18px;height:18px;flex:0 0 18px;color:#0768A9}.family-profile-lines span{overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.family-profile-close,.family-profile-logout{width:100%;height:44px;border-radius:12px;font-size:12px;font-weight:900}.family-profile-close{margin-top:15px;border:1px solid #CEDDE4;background:white;color:#51475E}.family-profile-logout{display:flex;align-items:center;justify-content:center;gap:7px;margin-top:8px;border:1px solid #F0CDD0;background:#FFF7F7;color:#B82F38}.family-profile-logout svg{width:17px;height:17px}
.family-profile-page{padding:18px 17px calc(96px + env(safe-area-inset-bottom))}.profile-page-hero{display:flex;align-items:center;gap:14px;padding:18px;border:1px solid #D8E5EC;border-radius:22px;background:linear-gradient(145deg,#fff,#F0F6F9);box-shadow:0 12px 30px rgba(53,35,77,.07)}.profile-page-avatar{width:62px;height:62px;flex:0 0 62px;display:grid;place-items:center;border-radius:20px;background:linear-gradient(145deg,#0768A9,#0768A9);color:#fff;box-shadow:0 9px 22px rgba(7,104,169,.22)}.profile-page-avatar svg{width:32px;height:32px}.profile-page-hero>div{min-width:0}.profile-page-hero small,.profile-page-card header small,.profile-page-heading small{color:#0768A9;font-size:9px;font-weight:950;letter-spacing:.8px}.profile-page-hero h1{margin:4px 0 0;overflow:hidden;color:#282132;font-size:21px;line-height:1.1;font-weight:950;text-overflow:ellipsis;white-space:nowrap}.profile-page-hero p{margin:5px 0 0;overflow:hidden;color:#7c7485;font-size:11px;text-overflow:ellipsis;white-space:nowrap}.profile-page-card{margin-top:14px;padding:17px;border:1px solid #DCE6EB;border-radius:20px;background:#fff}.profile-page-card>header{display:flex;align-items:center;gap:11px}.profile-page-card>header>span{width:43px;height:43px;display:grid;place-items:center;border-radius:13px;background:#E5F1F8;color:#0768A9}.profile-page-card>header svg{width:23px;height:23px}.profile-page-card h2{margin:3px 0 0;font-size:17px;font-weight:950}.profile-player-data{display:grid;grid-template-columns:1fr 1fr;gap:8px;margin:15px 0 0}.profile-player-data div{min-width:0;padding:11px;border-radius:13px;background:#F5F8FA}.profile-player-data dt{color:#8b8393;font-size:9px;font-weight:850;text-transform:uppercase}.profile-player-data dd{margin:4px 0 0;overflow:hidden;color:#403848;font-size:12px;font-weight:850;text-overflow:ellipsis;white-space:nowrap}.profile-page-heading{display:flex;align-items:center;justify-content:space-between}.profile-page-heading span{min-width:28px;padding:6px;border-radius:9px;background:#E4F0F6;color:#0768A9;text-align:center;font-size:12px;font-weight:950}.profile-player-list{display:grid;gap:8px;margin-top:13px}.profile-player-list article{display:flex;align-items:center;gap:10px;padding:10px;border:1px solid #ebe7ef;border-radius:14px}.profile-player-list article.active{border-color:#B7D5E5;background:#F5F9FB}.profile-player-list article>span{width:37px;height:37px;display:grid;place-items:center;border-radius:11px;background:#E5F1F8;color:#0768A9}.profile-player-list svg{width:20px;height:20px}.profile-player-list article>div{min-width:0;flex:1}.profile-player-list strong,.profile-player-list small{display:block;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.profile-player-list strong{font-size:12px}.profile-player-list small{margin-top:3px;color:#817989;font-size:10px}.profile-player-list b{padding:5px 7px;border-radius:8px;background:#e9f7ef;color:#168454;font-size:9px}.profile-page-note{margin:14px 5px 0;color:#8a8292;font-size:10px;line-height:1.5;text-align:center}
.profile-orders-loading{display:grid;gap:7px;margin-top:13px}.profile-orders-loading[hidden]{display:none}.profile-orders-loading i{height:58px;border-radius:14px;background:linear-gradient(90deg,#E9F0F3,#F7FAFB,#E9F0F3);background-size:250% 100%;animation:store-skeleton 1.2s infinite}.profile-orders-list{display:grid;gap:8px;margin-top:13px}.profile-orders-list button{width:100%;display:grid;grid-template-columns:39px minmax(0,1fr) auto;align-items:center;gap:10px;padding:10px;border:1px solid #ebe7ef;border-radius:14px;background:#fff;color:#30293a;text-align:left}.profile-order-icon{width:39px;height:39px;display:grid;place-items:center;border-radius:12px;background:#E5F1F8;color:#0768A9}.profile-order-icon svg{width:20px;height:20px}.profile-orders-list button>span:nth-child(2){min-width:0}.profile-orders-list strong,.profile-orders-list small,.profile-orders-list em{display:block;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.profile-orders-list strong{font-size:12px}.profile-orders-list small{color:#827a8b;font-size:9.5px}.profile-orders-list em{margin-top:4px;color:#0768A9;font-size:9px;font-style:normal;font-weight:850}.profile-orders-list button>b{color:#00125E;font-size:12px}.profile-orders-empty,.profile-orders-error{margin:14px 0 0;padding:13px;border-radius:13px;background:#F5F8FA;color:#817989;font-size:11px;text-align:center}.profile-orders-error{background:#fff3f3;color:#b44149}.profile-orders-all{height:42px;display:flex;align-items:center;justify-content:center;gap:7px;margin-top:11px;border-radius:12px;background:#EAF3F8;color:#0768A9;text-decoration:none;font-size:11px;font-weight:900}.profile-order-detail{width:min(480px,100%);max-width:none;margin:auto auto 0;padding:10px 18px calc(18px + env(safe-area-inset-bottom));border:0;border-radius:23px 23px 0 0;color:#282132}.profile-order-detail::backdrop{background:rgba(13,10,17,.52);backdrop-filter:blur(2px)}.profile-order-detail>button{position:absolute;right:14px;top:12px;width:34px;height:34px;border:0;border-radius:50%;background:#E5EEF2;color:#665d70;font-size:23px}.profile-order-detail>small{color:#0768A9;font-size:9px;font-weight:950;letter-spacing:.8px}.profile-order-detail h2{margin:4px 0 15px;font-size:22px}.profile-order-meta{display:grid;grid-template-columns:1fr 1fr;gap:7px}.profile-order-meta span{padding:10px;border-radius:11px;background:#F5F8FA}.profile-order-meta small,.profile-order-meta b{display:block}.profile-order-meta small{color:#8a8292;font-size:9px}.profile-order-meta b{margin-top:4px;font-size:11px}.profile-order-detail h3{margin:16px 0 8px;font-size:14px}.profile-order-lines{display:grid;gap:7px}.profile-order-lines article{display:flex;align-items:center;justify-content:space-between;gap:12px;padding:11px;border:1px solid #ebe7ef;border-radius:12px}.profile-order-lines strong,.profile-order-lines small{display:block}.profile-order-lines strong{font-size:11px}.profile-order-lines small{margin-top:4px;color:#817989;font-size:9px}.profile-order-lines b{font-size:11px}.profile-order-total{display:flex;align-items:center;justify-content:space-between;margin:14px -18px -18px;padding:16px 18px calc(16px + env(safe-area-inset-bottom));background:#EAF3F8}.profile-order-total span{font-size:11px;font-weight:850}.profile-order-total strong{color:#00125E;font-size:19px}.family-orders-page{padding:20px 17px calc(96px + env(safe-area-inset-bottom))}.family-orders-page>header small{color:#0768A9;font-size:9px;font-weight:950;letter-spacing:.9px}.family-orders-page>header h1{margin:5px 0 4px;font-size:25px}.family-orders-page>header p{margin:0;color:#817989;font-size:11px}.family-orders-loading{display:grid;gap:9px;margin-top:18px}.family-orders-loading[hidden]{display:none}.family-orders-loading i{height:78px;border-radius:17px;background:#E5ECEF}.family-orders-list{display:grid;gap:9px;margin-top:18px}.family-orders-list button{width:100%;display:grid;grid-template-columns:minmax(0,1fr) auto 18px;align-items:center;gap:10px;padding:14px;border:1px solid #DCE6EB;border-radius:17px;background:#fff;color:#30293a;text-align:left}.family-orders-list button span>*{display:block}.family-orders-list small{color:#8a8292;font-size:9px}.family-orders-list strong{margin-top:3px;font-size:14px}.family-orders-list em{margin-top:5px;color:#0768A9;font-size:10px;font-style:normal}.family-orders-list button>b{color:#00125E;font-size:13px}.family-orders-list button>i{color:#9b91a4;font-style:normal}.family-orders-message{margin-top:20px;padding:24px;border-radius:18px;background:#fff;text-align:center}.family-orders-message strong{font-size:16px}.family-orders-message p{color:#817989;font-size:11px}.family-orders-message a,.family-orders-message button{height:42px;display:flex;align-items:center;justify-content:center;margin-top:14px;border:0;border-radius:12px;background:#0768A9;color:#fff;text-decoration:none;font-size:11px;font-weight:900}
.family-logout-icon{width:48px;height:48px;display:grid;place-items:center;border-radius:14px;background:#FFF0F1;color:#B82F38}.family-logout-icon svg{width:24px;height:24px}.family-logout-sheet h2{margin:14px 0 6px;font-size:21px;font-weight:900}.family-logout-sheet>p{margin:0;color:#746E80;font-size:13px;line-height:1.45}.family-logout-actions{display:grid;grid-template-columns:1fr 1fr;gap:9px;margin-top:20px}.family-logout-actions button{height:44px;border:0;border-radius:12px;background:#E5ECEF;color:#51475E;font-size:12px;font-weight:900}.family-logout-actions button:last-child{background:#B82F38;color:white}.family-logout-actions button:disabled{opacity:.55}

.profile-order-detail{width:min(430px,calc(100% - 28px));max-height:min(82dvh,680px);margin:auto;padding:18px;overflow-y:auto;border-radius:23px}.profile-order-detail .app-bottom-sheet__handle{display:none}.profile-order-detail .profile-order-total{padding-bottom:16px}

/* Canje de cartas de premio */
.reward-content [hidden]{display:none!important}
.reward-banner{position:relative;display:flex;align-items:center;gap:14px;overflow:hidden;margin-top:16px;padding:17px 16px;border-radius:21px;background:linear-gradient(128deg,#172033,#173B52 52%,#0768A9);color:white;text-decoration:none;box-shadow:0 11px 25px rgba(42,29,72,.2)}.reward-banner::after{content:"";position:absolute;width:125px;height:125px;right:-55px;top:-57px;border:22px solid rgba(255,255,255,.08);border-radius:50%}.reward-banner:active{transform:scale(.985)}.reward-banner-icon{position:relative;z-index:1;width:57px;height:57px;flex:0 0 57px;display:grid;place-items:center;border:1px solid rgba(255,255,255,.2);border-radius:17px;background:linear-gradient(145deg,#FFC84A,#F59E0B);color:#47300A;box-shadow:0 8px 18px rgba(0,0,0,.18)}.reward-banner-icon svg{width:30px;height:30px}.reward-banner-copy{position:relative;z-index:1;min-width:0;flex:1}.reward-banner-copy small,.reward-banner-copy strong,.reward-banner-copy em,.reward-banner-copy b{display:block}.reward-banner-copy small{color:#FFD875;font-size:9px;font-weight:900;letter-spacing:1px}.reward-banner-copy strong{margin-top:4px;font-size:14px;line-height:1.25;font-weight:900}.reward-banner-copy em{margin-top:4px;color:#D8D2E4;font-size:10px;line-height:1.35;font-style:normal}.reward-banner-copy b{margin-top:9px;color:#FFD875;font-size:10px}.reward-banner-spark{position:absolute;z-index:1;color:#FFD875}.reward-banner-spark--one{right:14px;bottom:11px;font-size:11px}.reward-banner-spark--two{right:38px;top:10px;font-size:8px}
.reward-app-bar{gap:10px}.reward-app-bar>a+div{min-width:0;flex:1}.reward-back{position:relative;z-index:2;width:42px;height:42px;flex:0 0 42px;display:grid;place-items:center;border:1px solid rgba(255,255,255,.2);border-radius:13px;background:rgba(255,255,255,.13);color:white}.reward-back svg{width:21px;height:21px}.reward-content{min-height:calc(100vh - 72px);padding:24px 20px calc(105px + env(safe-area-inset-bottom));background:radial-gradient(circle at 50% 12%,#DFEEF6 0,transparent 31%),#F3F7F9}.reward-intro{text-align:center}.reward-gift-stage{position:relative;width:136px;height:128px;margin:0 auto 8px}.reward-orbit{position:absolute;inset:10px;border:1px dashed #B9D7E7;border-radius:50%;animation:reward-spin 16s linear infinite}.reward-gift{position:absolute;left:50%;top:50%;width:76px;height:76px;display:grid;place-items:center;transform:translate(-50%,-50%);border-radius:25px;background:linear-gradient(145deg,#0768A9,#0768A9);color:white;box-shadow:0 16px 35px rgba(7,104,169,.3);animation:reward-float 2.8s ease-in-out infinite}.reward-gift svg{width:40px;height:40px}.reward-gift-stage i{position:absolute;color:#F2AE19;font-style:normal}.reward-gift-stage i:nth-of-type(1){left:4px;top:29px;font-size:17px}.reward-gift-stage i:nth-of-type(2){right:5px;bottom:25px;font-size:14px}.reward-gift-stage i:nth-of-type(3){right:15px;top:18px;color:#0768A9;font-size:10px}.reward-eyebrow{color:#0768A9;font-size:10px;font-weight:900;letter-spacing:1.3px}.reward-intro h1{margin:7px 0;color:#172033;font-size:29px;font-weight:950;letter-spacing:-.7px}.reward-intro p{max-width:335px;margin:0 auto;color:#707787;font-size:13px;line-height:1.55}.reward-intro p strong{color:#38566A}
.reward-form{margin-top:23px;padding:18px;border:1px solid #D8E6ED;border-radius:20px;background:white;box-shadow:0 10px 28px rgba(48,34,67,.08)}.reward-form>label{display:block;margin-bottom:9px;color:#403849;font-size:12px;font-weight:900}.reward-code-field{position:relative}.reward-code-field svg{position:absolute;left:14px;top:50%;width:20px;height:20px;transform:translateY(-50%);color:#0768A9}.reward-code-field input{width:100%;height:55px;padding:0 14px 0 45px;border:1px solid #CFDFE7;border-radius:14px;outline:0;background:#FBFAFC;color:#252033;font-size:16px;font-weight:850;letter-spacing:1.4px;text-transform:uppercase}.reward-code-field input:focus{border-color:#0768A9;box-shadow:0 0 0 4px rgba(7,104,169,.1)}.reward-code-field input::placeholder{color:#AAA3B0;font-size:13px;font-weight:600;letter-spacing:.3px}.reward-form>small{display:block;margin-top:7px;color:#8A8391;font-size:10px}.reward-message{min-height:0;margin:0;color:#B82F38;font-size:11px;line-height:1.35;font-weight:750}.reward-message:not(:empty){margin-top:9px;padding:8px 9px;border-radius:9px;background:#FFF0F1}.reward-form.has-error input{border-color:#D95860}.reward-submit{width:100%;height:49px;display:flex;align-items:center;justify-content:center;gap:8px;margin-top:14px;border:0;border-radius:13px;background:linear-gradient(135deg,#00125E,#0768A9);color:white;box-shadow:0 9px 20px rgba(0,18,94,.24);font-size:12px;font-weight:900}.reward-submit svg{width:18px;height:18px}.reward-submit.is-loading span{font-size:0}.reward-submit.is-loading span::after{content:"Comprobando código…";font-size:12px}.reward-submit.is-loading svg{animation:reward-spin .8s linear infinite}.reward-submit:disabled{opacity:.78}.reward-demo-note{display:flex;align-items:flex-start;gap:10px;margin-top:14px;padding:12px;border-radius:14px;background:#E7F1F6;color:#6D6477}.reward-demo-note>span{width:23px;height:23px;flex:0 0 23px;display:grid;place-items:center;border-radius:50%;background:#CFE3ED;color:#0768A9;font-size:12px;font-weight:900}.reward-demo-note p{margin:0;font-size:10px;line-height:1.55}.reward-demo-note strong{display:block;color:#51475E;font-size:11px}.reward-demo-note b{color:#0768A9}
.reward-suspense{padding-top:18px;text-align:center;animation:reward-reveal .35s ease-out}.reward-suspense>small{color:#0768A9;font-size:10px;font-weight:950;letter-spacing:1.1px}.reward-suspense h2{margin:8px 0 5px;color:#172033;font-size:25px;font-weight:950}.reward-suspense>p{margin:0;color:#777080;font-size:12px}.mystery-cards{height:230px;display:flex;align-items:center;justify-content:center;gap:10px;margin:10px -5px 2px;perspective:700px}.mystery-card{position:relative;width:94px;height:142px;display:grid;place-items:center;overflow:hidden;border:4px solid white;border-radius:16px;background:repeating-linear-gradient(135deg,rgba(255,255,255,.05) 0 9px,transparent 9px 18px),linear-gradient(145deg,#173B52,#0768A9);color:rgba(255,255,255,.9);box-shadow:0 10px 24px rgba(44,29,70,.16);transform:translateY(0) scale(.94) rotateY(0);transition:transform .12s ease,filter .12s ease,box-shadow .12s ease,opacity .12s ease;opacity:.68}.mystery-card::before{content:"";position:absolute;inset:8px;border:1px solid rgba(255,255,255,.22);border-radius:10px}.mystery-card span{position:relative;z-index:1;width:48px;height:48px;display:grid;place-items:center;border:2px solid rgba(255,255,255,.4);border-radius:50%;background:rgba(255,255,255,.1);font-size:27px;font-weight:950}.mystery-card i{position:absolute;right:13px;top:12px;color:#FFD875;font-size:11px;font-style:normal}.mystery-card:nth-child(1){transform:rotate(-5deg) translateY(8px) scale(.94)}.mystery-card:nth-child(3){transform:rotate(5deg) translateY(8px) scale(.94)}.mystery-card.is-active{z-index:2;opacity:1;filter:brightness(1.25);transform:translateY(-14px) scale(1.08);box-shadow:0 0 0 5px rgba(255,200,74,.2),0 18px 32px rgba(80,47,145,.3)}.mystery-card.is-selected{z-index:2;opacity:1;animation:mystery-selected .75s ease-in-out infinite alternate;box-shadow:0 0 0 5px rgba(255,200,74,.22),0 20px 38px rgba(80,47,145,.34)}.mystery-card.is-selected::after{content:"TU PREMIO";position:absolute;left:8px;right:8px;bottom:13px;color:#FFD875;font-size:9px;font-weight:950;letter-spacing:.7px}.reward-reveal-button{width:100%;min-height:57px;margin-top:5px;padding:10px;border:0;border-radius:15px;background:linear-gradient(135deg,#F3AD16,#FFD86A);color:#3E2907;box-shadow:0 11px 24px rgba(218,145,9,.27);animation:reward-button-in .4s ease-out}.reward-reveal-button span,.reward-reveal-button strong{display:block}.reward-reveal-button span{font-size:10px;letter-spacing:.7px}.reward-reveal-button strong{margin-top:3px;font-size:13px}.reward-reveal-button:active{transform:scale(.98)}
.reward-result{position:relative;padding-top:17px;text-align:center;animation:reward-reveal .65s cubic-bezier(.2,.8,.2,1)}.reward-result-label{display:block;color:#0768A9;font-size:11px;font-weight:950;letter-spacing:1.4px}.reward-card{position:relative;min-height:315px;display:flex;flex-direction:column;align-items:center;justify-content:center;overflow:hidden;margin:14px auto 18px;padding:30px 24px;border:5px solid white;border-radius:28px;background:radial-gradient(circle at 50% 10%,rgba(255,255,255,.35),transparent 30%),linear-gradient(145deg,#00125E,#0768A9 58%,#0768A9);color:white;box-shadow:0 20px 45px rgba(86,48,155,.3)}.reward-card::before,.reward-card::after{content:"";position:absolute;width:140px;height:140px;border:25px solid rgba(255,255,255,.08);border-radius:50%}.reward-card::before{right:-80px;top:-70px}.reward-card::after{left:-85px;bottom:-83px}.reward-card-shine{position:absolute;inset:-80% auto -80% -40%;width:35%;transform:rotate(18deg);background:linear-gradient(90deg,transparent,rgba(255,255,255,.3),transparent);animation:reward-shine 1.15s .25s ease-out both}.reward-card-icon{position:relative;z-index:1;width:91px;height:91px;display:grid;place-items:center;margin-bottom:20px;border:2px solid rgba(255,255,255,.45);border-radius:28px;background:linear-gradient(145deg,#FFE07B,#F2A90E);color:#4C3206;box-shadow:0 12px 25px rgba(42,22,79,.25);font-size:36px;font-weight:950}.reward-card small{position:relative;z-index:1;color:#D2E7F2;font-size:10px;font-weight:900;letter-spacing:1.4px}.reward-card h2{position:relative;z-index:1;margin:7px 0 8px;font-size:25px;line-height:1.06;font-weight:950}.reward-card p{position:relative;z-index:1;max-width:245px;margin:0;color:#E4EFF5;font-size:12px;line-height:1.45}.reward-card b{position:relative;z-index:1;margin-top:18px;padding:7px 11px;border-radius:20px;background:rgba(23,32,51,.3);font-size:9px;letter-spacing:.8px}.reward-result>p{margin:0 auto;color:#777080;font-size:11px}.reward-result>a{height:47px;display:flex;align-items:center;justify-content:center;margin-top:18px;border-radius:13px;background:#172033;color:white;text-decoration:none;font-size:12px;font-weight:900}.reward-confetti i{position:absolute;z-index:3;width:7px;height:14px;top:35px;border-radius:2px;background:#FFC84A;animation:reward-confetti 1.2s ease-out both}.reward-confetti i:nth-child(2n){background:#2ED5A5}.reward-confetti i:nth-child(3n){background:#EE5C83}.reward-confetti i:nth-child(1){left:8%}.reward-confetti i:nth-child(2){left:20%}.reward-confetti i:nth-child(3){left:35%}.reward-confetti i:nth-child(4){left:47%}.reward-confetti i:nth-child(5){left:60%}.reward-confetti i:nth-child(6){left:73%}.reward-confetti i:nth-child(7){left:86%}.reward-confetti i:nth-child(8){left:94%}
@keyframes reward-float{50%{transform:translate(-50%,-56%) rotate(2deg)}}@keyframes reward-spin{to{transform:rotate(360deg)}}@keyframes reward-reveal{from{opacity:0;transform:scale(.86) translateY(18px)}to{opacity:1;transform:none}}@keyframes reward-shine{to{transform:translateX(520%) rotate(18deg)}}@keyframes reward-confetti{0%{opacity:0;transform:translateY(-20px) rotate(0)}25%{opacity:1}100%{opacity:0;transform:translateY(310px) rotate(540deg)}}@keyframes mystery-selected{from{transform:translateY(-10px) scale(1.06)}to{transform:translateY(-17px) scale(1.1);filter:brightness(1.2)}}@keyframes reward-button-in{from{opacity:0;transform:translateY(8px)}to{opacity:1;transform:none}}
@media (prefers-reduced-motion:reduce){.reward-orbit,.reward-gift,.reward-card-shine,.reward-confetti i,.reward-result,.mystery-card.is-selected,.reward-reveal-button{animation:none}.reward-result{opacity:1;transform:none}}
.reward-content .reward-draw-image{height:auto!important;overflow:visible!important;border:0!important;border-radius:0!important;background:transparent!important;box-shadow:none!important;object-fit:contain!important;mix-blend-mode:normal}.reward-content .reward-entry-box{padding-top:10px!important;border:0!important;background:transparent!important;box-shadow:none!important;backdrop-filter:none!important}.reward-entry-box .reward-form{border:0!important;background:transparent!important;box-shadow:none!important}.reward-entry-box .reward-intro p,.reward-entry-box .reward-intro p strong,.reward-entry-box .reward-form>label,.reward-entry-box .reward-form>small{color:#fff!important;text-shadow:0 1px 4px rgba(80,0,0,.35)}.reward-entry-box .reward-child-name{display:block;margin-top:8px;font-size:22px;font-weight:950;line-height:1.15}
.mystery-card{border:0;background:transparent;filter:saturate(.82)}.mystery-card::before{display:none}.mystery-card img{width:100%;height:100%;display:block;border-radius:16px;object-fit:cover}.mystery-card.is-active{filter:brightness(1.18) saturate(1.08)}.mystery-card.is-selected{overflow:visible;filter:none}.mystery-card.is-selected::after{bottom:-29px;padding:5px 3px;border-radius:8px;background:#FFD875;color:#3E2907;box-shadow:0 5px 12px rgba(62,41,7,.18)}
.product-cart-button[aria-busy="true"],.cart-checkout[aria-busy="true"]{display:flex;align-items:center;justify-content:center;pointer-events:none;cursor:wait;opacity:.9}.product-cart-button[aria-busy="true"]:disabled{background:linear-gradient(135deg,#00125E,#0768A9);color:white;box-shadow:0 9px 20px rgba(0,18,94,.24)}.product-cart-button[aria-busy="true"]::before,.cart-checkout[aria-busy="true"]::before{content:none!important;display:none!important}.family-action-spinner{display:block!important;width:22px!important;height:22px!important;min-width:22px!important;min-height:22px!important;flex:0 0 22px!important;border:3px solid rgba(255,255,255,.38)!important;border-top-color:#fff!important;border-radius:50%!important;background:transparent!important;animation:family-action-spin .65s linear infinite!important}@keyframes family-action-spin{to{transform:rotate(360deg)}}@media(prefers-reduced-motion:reduce){.family-action-spinner{animation-duration:1.4s!important}}
.family-app-bar-logo{position:relative;z-index:1;width:48px;height:48px;flex:0 0 48px;margin-right:12px;border:0;border-radius:50%;object-fit:cover}.family-app-bar-copy{position:relative;z-index:1;min-width:0;flex:1}.family-app-bar-copy span,.family-app-bar-copy strong{display:block}.family-app-bar-copy span{color:rgba(255,255,255,.72);font-size:11px;font-weight:850;text-transform:uppercase;letter-spacing:.8px}.family-app-bar-copy strong{margin-top:4px;color:white;font-size:20px;line-height:1.1;font-weight:900;letter-spacing:-.3px}
.album-progress>span{overflow:hidden}.album-level-image{width:100%;height:100%;display:block;object-fit:cover}.album-level-dialog{width:min(88vw,360px);padding:0 22px 24px;border:0;border-radius:24px;text-align:center;background:#fff;color:#172033;box-shadow:0 24px 70px rgba(0,0,0,.3)}.album-level-dialog::backdrop{background:rgba(3,9,26,.68);backdrop-filter:blur(3px)}.album-level-dialog .app-bottom-sheet__handle{margin:10px auto 16px}.album-level-dialog img{width:132px;height:132px;border-radius:50%;object-fit:cover;box-shadow:0 12px 28px rgba(0,18,94,.2)}.album-level-dialog small{display:block;margin-top:17px;color:#0768A9;font-size:10px;font-weight:950;letter-spacing:1px}.album-level-dialog h2{margin:6px 0 8px;font-size:23px}.album-level-dialog p{margin:0;color:#667085;font-size:13px;line-height:1.5}.album-level-dialog button{width:100%;margin-top:20px;padding:13px;border:0;border-radius:14px;background:#0768A9;color:#fff;font-weight:900}
.reward-banner{display:block;aspect-ratio:1080/520;padding:0;background:none}.reward-banner-image{position:static;width:100%;height:100%;display:block;object-fit:cover}.reward-banner::before,.reward-banner::after{display:none}
.collection-summary{background:linear-gradient(135deg,#00125E 0%,#064E88 58%,#0768A9 100%);box-shadow:0 10px 24px rgba(0,18,94,.22)}.collection-summary .album-metrics>div{border-color:rgba(255,255,255,.16);background:rgba(255,255,255,.09)}.collection-summary .album-progress-line{background:rgba(255,255,255,.18)}.collection-summary .album-progress>span{width:88px;height:88px}.collection-summary .album-level-image{transform:scale(1.06)}@media(max-width:360px){.collection-summary .album-progress>span{width:74px;height:74px}}
.sticker-grid .sticker-card{min-height:118px;display:flex;flex-direction:column;aspect-ratio:auto}.sticker-card-main{min-width:0;display:flex;flex:1;flex-direction:column;align-items:center;justify-content:center;padding:0;border:0;background:transparent;color:inherit}.sticker-card-main .sticker-person{margin:5px auto}.sticker-card-main>strong{display:block;max-width:100%;overflow:hidden;text-align:center;font-size:9px;font-weight:900;text-overflow:ellipsis;white-space:nowrap}.sticker-card-main:is(button){width:100%;cursor:pointer}.sticker-controls{position:relative;z-index:2;width:100%;height:32px;display:grid;grid-template-columns:28px minmax(0,1fr) 28px;align-items:center;overflow:hidden;margin-top:5px;border:1px solid currentColor;border-radius:9px;background:rgba(255,255,255,.58)}.sticker-controls button{height:100%;padding:0;border:0;background:rgba(255,255,255,.42);color:inherit;font-size:18px;font-weight:900}.sticker-controls output{text-align:center;font-size:11px;font-weight:950}.sticker-card.is-updating{pointer-events:none;opacity:.58}.sticker-card.is-updating::after{content:"";position:absolute;width:16px;height:16px;left:50%;top:50%;margin:-8px;border:2px solid currentColor;border-top-color:transparent;border-radius:50%;animation:family-action-spin .65s linear infinite}.collection-action-message{margin:10px 0 -3px;padding:9px 11px;border-radius:10px;background:#FFF0F1;color:#B82F38;font-size:10px;font-weight:800;line-height:1.4}.collection-action-message[hidden]{display:none}@media(max-width:360px){.sticker-grid .sticker-card{min-height:116px}}
.collection-ready .sticker-grid,.sticker-grid{grid-template-columns:repeat(auto-fit,minmax(96px,1fr));gap:10px}.sticker-grid .sticker-card{min-height:142px;overflow:hidden;padding:10px;border-width:1px;border-radius:17px;box-shadow:0 7px 18px rgba(38,48,65,.08);transition:transform .16s ease,box-shadow .16s ease,opacity .16s ease}.sticker-grid .sticker-card--missing{border-color:#D8E1E7;background:linear-gradient(155deg,#FAFCFD,#EEF3F6);color:#77838E}.sticker-grid .sticker-card--owned{border-color:#A9DEC0;background:linear-gradient(155deg,#F3FCF7,#DDF5E7);color:#1D8C52}.sticker-grid .sticker-card--repeated{border-color:#F0CF76;background:linear-gradient(155deg,#FFFBEF,#FFF0BC);color:#B87500}.sticker-number{display:flex;align-items:flex-start;gap:1px;color:currentColor;font-size:20px;line-height:1;font-weight:950;letter-spacing:-.5px}.sticker-number small{margin-top:2px;font-size:9px;line-height:1;font-weight:900;letter-spacing:0;opacity:.65}.sticker-quantity{right:8px;top:8px;min-width:28px;padding:4px 6px;border-radius:20px;background:#F3A90E;color:#503300;box-shadow:0 4px 9px rgba(183,117,0,.18);text-align:center;font-size:10px}.sticker-card-main{justify-content:flex-start}.sticker-card-main .sticker-person{width:40px;height:40px;margin:8px auto 6px;box-shadow:inset 0 0 0 1px rgba(255,255,255,.55)}.sticker-card-main .sticker-person svg{width:21px;height:21px}.sticker-card--missing .sticker-person{background:#DFE7EB}.sticker-card--owned .sticker-person{background:#C9EED9}.sticker-card--repeated .sticker-person{background:#FFE491}.sticker-card-main>strong{padding:4px 8px;border-radius:20px;background:rgba(255,255,255,.58);font-size:9px;letter-spacing:.15px}.sticker-add-hint{margin-top:6px;color:#74818C;font-size:8px;font-weight:800}.sticker-controls{height:36px;grid-template-columns:32px minmax(0,1fr) 32px;margin-top:8px;border-color:rgba(0,0,0,.08);border-radius:11px;background:rgba(255,255,255,.78);box-shadow:0 3px 9px rgba(55,48,32,.06)}.sticker-controls button{font-size:19px;transition:background .12s ease,transform .12s ease}.sticker-controls button:active{background:#fff;transform:scale(.9)}.sticker-controls output{font-size:12px}.sticker-card-main:is(button):active{transform:scale(.97)}@media(max-width:360px){.sticker-grid{grid-template-columns:repeat(3,minmax(0,1fr));gap:7px}.sticker-grid .sticker-card{min-height:136px;padding:8px}.sticker-controls{grid-template-columns:29px minmax(0,1fr) 29px}}
.sticker-card-main .sticker-person img{width:100%;height:100%;display:block;border-radius:50%;object-fit:cover;filter:grayscale(1);opacity:.72}.sticker-card--missing .sticker-person img{opacity:.45}.sticker-card--owned .sticker-person img{opacity:.78}.sticker-card--repeated .sticker-person img{opacity:.88}
.collection-filters{display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:5px;margin-top:12px;padding:4px;border:1px solid #DCE6EB;border-radius:15px;background:#EAF0F3}.collection-filters button{min-width:0;height:43px;padding:4px 2px;border:0;border-radius:11px;background:transparent;color:#74808B}.collection-filters span,.collection-filters strong{display:block;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.collection-filters span{font-size:9px;font-weight:850}.collection-filters strong{margin-top:2px;font-size:10px}.collection-filters button.active{background:#fff;color:#0768A9;box-shadow:0 3px 9px rgba(24,42,60,.09)}.sticker-grid{grid-template-columns:repeat(4,minmax(0,1fr));gap:6px;margin-top:11px}.sticker-grid .sticker-card{min-height:124px;padding:7px;border-radius:14px;box-shadow:0 4px 12px rgba(38,48,65,.065)}.sticker-number{font-size:18px;letter-spacing:-.3px}.sticker-number small{font-size:8px}.sticker-quantity{right:5px;top:5px;min-width:24px;padding:3px 4px;font-size:9px}.sticker-card-main .sticker-person{width:34px;height:34px;margin:6px auto 5px}.sticker-card-main>strong{padding:3px 6px;font-size:8px}.sticker-add-hint{margin-top:4px;font-size:7px}.sticker-controls{height:32px;grid-template-columns:24px minmax(0,1fr) 24px;margin-top:6px;border-radius:9px}.sticker-controls button{font-size:17px}.sticker-controls output{font-size:10px}@media(max-width:360px){.sticker-grid{grid-template-columns:repeat(4,minmax(0,1fr));gap:5px}.sticker-grid .sticker-card{min-height:121px;padding:6px}.sticker-controls{grid-template-columns:23px minmax(0,1fr) 23px}.collection-filters{gap:3px}.collection-filters button{height:41px}}
.reward-card-icon.has-image{width:124px;height:187px;overflow:hidden;border-radius:19px;background:none}.reward-card-icon.has-image img{width:100%;height:100%;display:block;object-fit:cover}
.reward-prize-reveal{position:fixed;z-index:200;inset:0;display:grid;place-items:center;padding:24px;background:rgba(0,18,54,.76);backdrop-filter:blur(7px);opacity:0;transition:opacity .3s ease}.reward-prize-reveal.is-visible{opacity:1}.reward-prize-reveal-card{position:relative;width:min(47vw,188px);padding:7px;border-radius:22px;background:#fff;box-shadow:0 25px 70px rgba(0,0,0,.42),0 0 0 0 rgba(255,211,77,0);transform:scale(.22) rotate(-7deg);transition:transform .32s ease,box-shadow .35s ease;will-change:transform}.reward-prize-reveal.is-visible .reward-prize-reveal-card{animation:reward-prize-pop .72s cubic-bezier(.18,.85,.25,1.12) forwards}.reward-prize-reveal-card>span{position:absolute;z-index:2;left:50%;top:-34px;width:max-content;max-width:80vw;transform:translateX(-50%);color:#fff;font-size:9px;font-weight:950;letter-spacing:1.1px;text-shadow:0 2px 8px rgba(0,0,0,.35)}.reward-prize-reveal-card img{width:100%;aspect-ratio:862/1299;display:block;border-radius:16px;object-fit:cover}.reward-prize-reveal.is-changing .reward-prize-reveal-card{animation:none;transform:scale(1.02) rotateY(90deg)}.reward-prize-reveal.is-prize .reward-prize-reveal-card{animation:reward-prize-found .65s cubic-bezier(.2,.8,.2,1) both;box-shadow:0 25px 70px rgba(0,0,0,.42),0 0 0 7px rgba(255,211,77,.25)}.reward-prize-reveal.is-prize .reward-prize-reveal-card>span{color:#FFD34D}.reward-prize-reveal.is-prize .reward-prize-reveal-card>span::after{content:" ENCONTRADO"}@keyframes reward-prize-pop{0%{transform:scale(.22) rotate(-7deg);opacity:0}65%{transform:scale(1.08) rotate(2deg);opacity:1}100%{transform:scale(1) rotate(0);opacity:1}}@keyframes reward-prize-found{0%{transform:scale(.9);filter:brightness(1.5)}55%{transform:scale(1.1);filter:brightness(1.12)}100%{transform:scale(1);filter:none}}@media(prefers-reduced-motion:reduce){.reward-prize-reveal,.reward-prize-reveal-card{transition:none}.reward-prize-reveal.is-visible .reward-prize-reveal-card,.reward-prize-reveal.is-prize .reward-prize-reveal-card{animation:none;transform:none}}
.reward-prize-reveal.is-prize .reward-prize-reveal-card>span{font-size:0}.reward-prize-reveal.is-prize .reward-prize-reveal-card>span::after{content:"¡PREMIO ENCONTRADO!";font-size:9px}
.reward-content{background:#9d0000 url('../images/fondo_sorteo.jpeg') center top/cover fixed no-repeat}.reward-draw-image{width:100%;display:block;overflow:hidden;border:3px solid rgba(255,255,255,.9);border-radius:22px;box-shadow:0 14px 34px rgba(82,0,0,.34)}.reward-entry-box{margin-top:14px;padding:20px 17px 17px;border:1px solid rgba(255,255,255,.72);border-radius:22px;background:rgba(255,255,255,.96);box-shadow:0 15px 36px rgba(82,0,0,.3);backdrop-filter:blur(8px)}.reward-entry-box .reward-intro h1{font-size:27px}.reward-entry-box .reward-form{margin-top:18px;padding:0;border:0;border-radius:0;background:transparent;box-shadow:none}.reward-entry-box .reward-submit{background:#ff2121;box-shadow:0 9px 20px rgba(255,33,33,.3)}.reward-entry-box .reward-code-field svg,.reward-entry-box .reward-eyebrow,.reward-entry-box .reward-demo-note b{color:#ff2121}.reward-entry-box .reward-code-field input:focus{border-color:#ff2121;box-shadow:0 0 0 4px rgba(255,33,33,.11)}.reward-suspense,.reward-result{padding:20px 16px;border-radius:22px;background:rgba(255,255,255,.96);box-shadow:0 15px 36px rgba(82,0,0,.3)}@media(max-width:360px){.reward-content{padding-left:14px;padding-right:14px}.reward-entry-box{padding:17px 14px 14px}.reward-entry-box .reward-intro h1{font-size:24px}}
.exchange-consent-dialog{width:min(390px,calc(100% - 32px));max-width:none;margin:auto;padding:25px 22px 21px;border:0;border-radius:25px;background:#fff;color:#252033;text-align:center;box-shadow:0 24px 70px rgba(0,18,54,.32)}.exchange-consent-dialog::backdrop{background:rgba(0,18,54,.67);backdrop-filter:blur(5px)}.exchange-consent-dialog[open]{animation:exchange-consent-in .3s cubic-bezier(.2,.8,.2,1)}.exchange-consent-icon,.exchange-disabled>span{width:66px;height:66px;display:grid;place-items:center;margin:0 auto 14px;border-radius:21px;background:linear-gradient(145deg,#E5F2F9,#CFE5F1);color:#0768A9;box-shadow:0 9px 22px rgba(7,104,169,.13)}.exchange-consent-icon svg,.exchange-disabled>span svg{width:34px;height:34px}.exchange-consent-dialog>small,.exchange-disabled>small{color:#0768A9;font-size:9px;font-weight:950;letter-spacing:1.1px}.exchange-consent-dialog h2{margin:7px 0 9px;font-size:23px;line-height:1.12;font-weight:950;letter-spacing:-.35px}.exchange-consent-dialog>p{margin:0;color:#6F7783;font-size:12px;line-height:1.58}.exchange-consent-dialog>div{display:grid;gap:8px;margin-top:21px}.exchange-consent-dialog button{min-height:45px;padding:8px 12px;border:0;border-radius:13px;background:#E8EEF1;color:#59616B;font-size:11px;font-weight:900}.exchange-consent-dialog #acceptExchanges{order:-1;background:linear-gradient(135deg,#00125E,#0768A9);color:#fff;box-shadow:0 8px 18px rgba(0,18,94,.2)}.exchange-disabled[hidden],#exchangeExperience[hidden]{display:none}.exchange-disabled{min-height:calc(100vh - 190px);display:flex;flex-direction:column;align-items:center;justify-content:center;padding:34px 20px;text-align:center}.exchange-disabled>span{width:74px;height:74px;border-radius:24px}.exchange-disabled h1{margin:8px 0 7px;font-size:22px;font-weight:950}.exchange-disabled p{max-width:310px;margin:0;color:#727B87;font-size:12px;line-height:1.55}.exchange-disabled button{min-width:210px;height:46px;margin-top:20px;border:0;border-radius:13px;background:linear-gradient(135deg,#00125E,#0768A9);color:#fff;font-size:12px;font-weight:900;box-shadow:0 9px 20px rgba(0,18,94,.2)}@keyframes exchange-consent-in{from{opacity:0;transform:scale(.86) translateY(12px)}to{opacity:1;transform:none}}@media(prefers-reduced-motion:reduce){.exchange-consent-dialog[open]{animation:none}}
.profile-exchange-setting{display:flex;align-items:center;gap:14px;margin-top:15px;padding:13px;border-radius:15px;background:#F4F8FA}.profile-exchange-setting>div{min-width:0;flex:1}.profile-exchange-setting strong{display:block;font-size:12px;font-weight:900}.profile-exchange-setting p{margin:4px 0 0;color:#7A828D;font-size:10px;line-height:1.4}.profile-switch{position:relative;width:54px;height:34px;flex:0 0 54px;display:block;cursor:pointer}.profile-switch input{position:absolute;width:1px;height:1px;opacity:0}.profile-switch>span{position:absolute;inset:0;border-radius:20px;background:#BFC9CE;box-shadow:inset 0 0 0 1px rgba(0,0,0,.06);transition:background .2s ease}.profile-switch>span::after{content:"";position:absolute;width:26px;height:26px;left:4px;top:4px;border-radius:50%;background:#fff;box-shadow:0 3px 8px rgba(32,45,55,.25);transition:transform .2s ease}.profile-switch input:checked+span{background:#0768A9}.profile-switch input:checked+span::after{transform:translateX(20px)}.profile-switch input:focus-visible+span{outline:3px solid rgba(7,104,169,.22);outline-offset:2px}.profile-exchange-status{margin:10px 3px 0;color:#7B838E;font-size:10px}.profile-exchange-status strong{color:#B24951}.profile-exchange-status strong.enabled{color:#168454}
.profile-page-card>header>.profile-player-club-logo{width:54px;height:54px;flex:0 0 54px;overflow:hidden;padding:5px;border:1px solid #D7E5EC;border-radius:16px;background:#fff;box-shadow:0 6px 15px rgba(39,62,77,.1)}.profile-player-club-logo img{width:100%;height:100%;display:block;object-fit:contain}.profile-page-card>header>div h2:only-child{margin:0;font-size:20px}.profile-player-data{gap:9px;margin-top:16px}.profile-player-data>div{display:grid;grid-template-columns:34px minmax(0,1fr);grid-template-rows:auto auto;align-items:center;column-gap:9px;padding:10px;border:1px solid #E1E9ED;border-radius:14px;background:linear-gradient(145deg,#F8FBFC,#EEF4F7)}.profile-player-data-icon{grid-column:1;grid-row:1/3;width:34px;height:34px;display:grid;place-items:center;border-radius:11px;background:#DDECF4;color:#0768A9}.profile-player-data-icon svg{width:18px;height:18px}.profile-player-data dt{grid-column:2;grid-row:1;align-self:end}.profile-player-data dd{grid-column:2;grid-row:2;align-self:start;margin-top:2px;font-size:11px}
.profile-exchange-disabled-notice[hidden]{display:none}.profile-exchange-disabled-notice{display:flex;align-items:flex-start;gap:10px;margin-top:11px;padding:11px;border:1px solid #F0CDD0;border-radius:13px;background:#FFF4F5;color:#963B43}.profile-exchange-disabled-notice>span{width:25px;height:25px;flex:0 0 25px;display:grid;place-items:center;border-radius:50%;background:#F5D9DC;font-size:12px;font-weight:950}.profile-exchange-disabled-notice>div{min-width:0}.profile-exchange-disabled-notice strong{display:block;font-size:11px;font-weight:950}.profile-exchange-disabled-notice p{margin:4px 0 0;color:#8A5C61;font-size:9.5px;line-height:1.45}
.product-price{flex-wrap:wrap}.product-price.has-discount{display:grid;grid-template-columns:auto minmax(0,1fr) auto;gap:8px 13px;align-items:end;margin-top:16px;padding:15px;border:1px solid #D6E5EC;border-radius:19px;background:linear-gradient(135deg,#FFF 0%,#F0F7FA 100%);box-shadow:0 9px 22px rgba(0,18,94,.07)}.product-price-before,.product-price-now{display:flex;flex-direction:column;align-items:flex-start}.product-price-before small,.product-price-now small{margin-bottom:4px;color:#7B8590;font-size:9px;font-weight:950;letter-spacing:.8px;text-transform:uppercase}.product-price.has-discount .product-price-before del{color:#8D96A0;font-size:16px;font-weight:750;text-decoration-color:#E11D48;text-decoration-thickness:2px}.product-price.has-discount .product-price-now strong{color:#00125E;font-size:34px;line-height:.95;font-weight:950;letter-spacing:-1.2px}.product-discount{align-self:stretch;min-width:68px;display:flex;flex-direction:column;align-items:center;justify-content:center;padding:7px 9px;border-radius:14px;background:linear-gradient(145deg,#F43F5E,#BE123C);color:#fff;box-shadow:0 7px 15px rgba(190,18,60,.24);transform:rotate(2deg)}.product-discount strong{color:#fff!important;font-size:19px!important;line-height:1!important;letter-spacing:-.5px!important}.product-discount small{margin-top:3px;color:#FFE4E9;font-size:7px;font-weight:950;letter-spacing:.55px}.product-saving{grid-column:1/-1;min-height:34px;display:flex;align-items:center;justify-content:center;gap:5px;margin-top:3px;padding:8px 10px;border-radius:11px;background:#DFF6E9;color:#177A49;font-size:10px}.product-saving>span{width:18px;height:18px;display:grid;place-items:center;border-radius:50%;background:#21A366;color:#fff;font-size:11px;font-weight:950}.product-saving strong{color:inherit!important;font-size:11px!important;line-height:1!important;letter-spacing:0!important}@media(max-width:360px){.product-price.has-discount{gap:7px 9px;padding:12px}.product-price.has-discount .product-price-now strong{font-size:30px}.product-discount{min-width:62px;padding-inline:7px}}
.product-loader{position:relative;display:block!important;padding:0 0 88px}.product-loader[hidden]{display:none!important}.product-loader-image,.product-loader-copy,.product-loader-buy{position:relative;overflow:hidden}.product-loader-image::after,.product-loader-copy::after,.product-loader-buy::after{position:absolute;inset:0;content:"";background:linear-gradient(105deg,transparent 28%,rgba(255,255,255,.72) 44%,transparent 60%);transform:translateX(-110%);animation:product-loader-shine 1.45s ease-in-out infinite}.product-loader-image{height:clamp(330px,103vw,440px);display:grid;place-items:center;border:1px solid #DFE9EE;border-radius:28px;background:linear-gradient(145deg,#E7EFF3,#D7E5EB);box-shadow:0 14px 34px rgba(55,38,78,.08)}.product-detail-loading .product-loader-mark{position:relative;z-index:1;width:64px;height:64px;display:grid;place-items:center;border-radius:21px;background:rgba(255,255,255,.7);color:#8BA4B2;box-shadow:0 7px 20px rgba(48,72,87,.08);animation:product-loader-float 1.8s ease-in-out infinite}.product-loader-mark svg{width:31px;height:31px}.product-loader-copy{margin:-13px 8px 0;padding:29px 17px 19px;border:1px solid #E0EAF0;border-radius:22px;background:#fff;box-shadow:0 12px 30px rgba(55,38,78,.07)}.product-detail-loading .product-loader-copy i{display:block;height:13px;border-radius:8px;background:#E5EDF1;animation:none}.product-detail-loading .product-loader-chip{width:68px;height:20px}.product-detail-loading .product-loader-title{width:85%;height:24px;margin-top:16px}.product-detail-loading .product-loader-title.short{width:56%;margin-top:7px}.product-loader-price{display:grid;grid-template-columns:55px 92px 62px;gap:9px;align-items:end;margin-top:20px}.product-detail-loading .product-loader-price i:nth-child(1){height:16px}.product-detail-loading .product-loader-price i:nth-child(2){height:34px;background:#D7E4EA}.product-detail-loading .product-loader-price i:nth-child(3){height:43px;border-radius:13px;background:#DFE7EB}.product-detail-loading .product-loader-stock{width:75px;height:22px;margin-top:15px;background:#DCEFE5!important}.product-loader-buy{position:absolute;left:0;right:0;bottom:16px;display:grid;grid-template-columns:112px 1fr;gap:10px;padding:12px;border:1px solid #DCE7EC;border-radius:20px;background:rgba(255,255,255,.94);box-shadow:0 8px 25px rgba(39,24,60,.1)}.product-detail-loading .product-loader-buy i{height:52px;border-radius:15px;background:#DFE8ED;animation:none}.product-detail-loading .product-loader-buy i:last-child{background:linear-gradient(135deg,#CCD9E0,#B7CAD4)}.product-loader p{display:flex;flex-wrap:wrap;align-items:center;justify-content:center;gap:5px 7px;margin:18px 0 0;color:#566775;text-align:center}.product-detail-loading .product-loader-pulse{width:8px;height:8px;display:block;border-radius:50%;background:#0768A9;animation:product-loader-pulse 1.15s ease-in-out infinite}.product-loader p strong{font-size:12px;font-weight:900}.product-loader p small{flex-basis:100%;color:#8A969E;font-size:9px}@keyframes product-loader-shine{to{transform:translateX(110%)}}@keyframes product-loader-float{50%{transform:translateY(-5px)}}@keyframes product-loader-pulse{50%{opacity:.35;transform:scale(.72)}}@media(prefers-reduced-motion:reduce){.product-loader-image::after,.product-loader-copy::after,.product-loader-buy::after,.product-loader-mark,.product-loader-pulse{animation:none!important}}
.reward-page{min-height:100vh;min-height:100svh;background:#720000}.reward-fullscreen-shell{position:relative;isolation:isolate;min-height:100vh;min-height:100svh;background:#9D0000}.reward-fullscreen-shell::before{position:absolute;z-index:-1;inset:0;content:"";background:url('../images/fondo_sorteo.jpeg') center/100% 100% no-repeat;pointer-events:none}.reward-fullscreen-shell .reward-app-bar{justify-content:flex-start;border-bottom:1px solid rgba(255,255,255,.13);background:linear-gradient(180deg,rgba(88,0,0,.42),rgba(126,0,0,.12));box-shadow:none;backdrop-filter:none;-webkit-backdrop-filter:none}.reward-fullscreen-shell .reward-app-bar::before,.reward-fullscreen-shell .reward-app-bar::after,.reward-fullscreen-shell .reward-app-bar .family-app-bar-logo{display:none!important}.reward-fullscreen-shell .reward-content{min-height:calc(100svh - 72px - env(safe-area-inset-top));padding-bottom:calc(30px + env(safe-area-inset-bottom));background:transparent}.reward-fullscreen-shell .reward-back{background:rgba(255,255,255,.16);box-shadow:0 5px 14px rgba(77,0,0,.18)}
.product-main-image{height:auto;max-height:none;aspect-ratio:3/2;padding:7px}.product-main-image img{width:100%;height:100%;border-radius:18px;object-fit:contain}.product-loader-image{height:auto;aspect-ratio:3/2}
.product-meta-row{display:flex;align-items:center;justify-content:space-between;gap:12px}.product-meta-row .product-categories{min-width:0;flex:1}.product-meta-row .product-stock{flex:0 0 auto;margin-top:0}.product-meta-row+h1{margin-top:12px}
.collection-summary{padding-bottom:17px}/* Personal album: dark masthead and recessed sticker tray. */
.collection-special-section{position:relative;isolation:isolate;overflow:hidden;margin-top:16px;padding:0 14px 16px;border:1px solid #D5E0E8;border-radius:22px;background:radial-gradient(ellipse at 50% 0%,#355776 0%,#203C57 65%,#193149 100%);color:#00125E;box-shadow:0 10px 24px rgba(0,18,54,.12)}
.special-collection-heading{position:relative;display:flex;align-items:center;gap:10px;margin:0 -14px 15px;padding:19px 14px 18px;border-bottom:3px solid #DDB65F;background:radial-gradient(ellipse at 100% 0%,rgba(62,136,181,.38),transparent 65%),linear-gradient(120deg,#071B43,#123D63);color:#fff}
.special-collection-heading::after{content:"";position:absolute;right:62px;top:-34px;width:82px;height:150px;border:1px solid rgba(255,255,255,.07);border-radius:16px;transform:rotate(24deg);pointer-events:none;z-index:0}
.special-collection-heading>div{position:relative;z-index:1;min-width:0;flex:1}
.special-collection-icon{width:32px;height:42px;flex:0 0 32px;display:grid;place-items:center;border:1px solid rgba(221,182,95,.6);border-radius:8px;background:rgba(221,182,95,.1);color:#E9CC8C;transform:rotate(-8deg);box-shadow:3px 3px 0 rgba(221,182,95,.12)}
.special-collection-icon svg{width:23px;height:29px}
.special-collection-eyebrow{display:block;margin-bottom:6px;color:#E9CC8C;font-size:8px;line-height:1.3;font-weight:850;letter-spacing:1.1px}
.collection-special-section h2{max-width:210px;margin:0;color:#fff;font-size:20px;line-height:1.1;font-weight:950;letter-spacing:-.6px;text-wrap:balance}
.special-collection-heading p{margin:7px 0 0;color:#B9CDDF;font-size:10px;line-height:1.4}
.special-collection-edition{position:relative;z-index:1;flex:0 0 44px;color:#E9CC8C;text-align:center;font-size:30px;line-height:1;font-weight:900;letter-spacing:-1.5px;font-variant-numeric:tabular-nums}
.special-collection-edition>span{display:block;margin-top:5px;font-size:6px;line-height:1.2;font-weight:800;letter-spacing:.6px}
.special-sticker-add{width:22px;height:22px;flex:0 0 22px;display:grid;place-items:center;border:1px solid #CCDCE6;border-radius:50%;background:#E5EEF4;color:#0768A9;font-size:20px;line-height:1;font-style:normal;font-weight:500}.collection-special-stickers{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:8px}.collection-special-stickers button{min-width:0;height:164px;min-height:164px;display:flex;flex-direction:column;align-items:center;justify-content:center;gap:3px;padding:7px;border:1px solid #D8E1E7;border-radius:14px;background:linear-gradient(155deg,#FAFCFD,#EEF3F6);color:#657583;text-align:center;cursor:pointer;box-shadow:0 4px 12px rgba(38,48,65,.065)}.collection-special-stickers button>span{width:100%;height:auto;min-height:0;flex:1 1 0;display:grid;place-items:center;overflow:hidden;border-radius:9px;background:transparent}.collection-special-stickers button>span img{width:100%;height:100%;display:block;object-fit:contain}.collection-special-stickers button:not(.has-photo)>span img{width:48px;max-width:100%;height:48px;aspect-ratio:1;filter:grayscale(1);mix-blend-mode:multiply;opacity:.45}.collection-special-stickers button.has-photo>span img{object-fit:contain;border-radius:0}.collection-special-stickers button>strong,.collection-special-stickers button>small{display:block;max-width:100%;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.collection-special-stickers button>strong{font-size:9px;font-weight:950}.collection-special-stickers button>small{color:#74808B;font-size:8px;font-weight:800}.collection-special-stickers button:focus-visible{outline:3px solid #FFD34D;outline-offset:3px}.collection-special-stickers button.is-owned{border-color:#A9DEC0;background:linear-gradient(155deg,#F3FCF7,#DDF5E7);color:#1D8C52}.collection-special-stickers button.is-owned>small{color:#1D8C52}.special-sticker-dialog{width:min(480px,100%);max-width:none;max-height:94vh;margin:auto auto 0;padding:10px 19px calc(19px + env(safe-area-inset-bottom));overflow-y:auto;border:0;border-radius:24px 24px 0 0;background:#fff;color:#252033}.special-sticker-dialog::backdrop{background:rgba(0,18,54,.64);backdrop-filter:blur(4px)}.special-sticker-dialog[open]{animation:sheet-in .24s ease-out}.special-sticker-dialog>small{color:#0768A9;font-size:9px;font-weight:950;letter-spacing:1px}.special-sticker-dialog h2{margin:4px 42px 14px 0;font-size:22px;font-weight:950}.special-sticker-close{position:absolute;right:16px;top:13px;width:35px;height:35px;border:0;border-radius:50%;background:#E8EFF2;color:#5F6872;font-size:23px}.special-sticker-preview{height:min(48vh,390px);display:grid;place-items:center;overflow:hidden;border-radius:20px;background:linear-gradient(145deg,#E8F0F4,#D5E3EA)}.special-sticker-preview>img{width:100%;height:100%;display:block;object-fit:contain;background:#172033}.special-sticker-preview>img[hidden],.special-sticker-preview>span[hidden]{display:none}.special-sticker-preview>span{text-align:center}.special-sticker-preview>span img{width:72px;height:72px;display:block;margin:auto;border-radius:50%;object-fit:cover;filter:grayscale(1);opacity:.45}.special-sticker-preview>span b{display:block;margin-top:10px;color:#74818D;font-size:11px}.special-sticker-owned{display:flex;align-items:center;gap:12px;margin-top:13px;padding:12px;border-radius:14px;background:#F3F7F9}.special-sticker-owned>span{min-width:0;flex:1}.special-sticker-owned strong,.special-sticker-owned small{display:block}.special-sticker-owned strong{font-size:12px}.special-sticker-owned small{margin-top:3px;color:#7B8490;font-size:9px}.special-sticker-owned input{position:absolute;width:1px;height:1px;opacity:0}.special-sticker-owned>i{position:relative;width:50px;height:30px;flex:0 0 50px;border-radius:18px;background:#BBC6CC;transition:background .2s ease}.special-sticker-owned>i::after{content:"";position:absolute;width:22px;height:22px;left:4px;top:4px;border-radius:50%;background:#fff;box-shadow:0 2px 7px rgba(30,44,55,.25);transition:transform .2s ease}.special-sticker-owned input:checked+i{background:#0768A9}.special-sticker-owned input:checked+i::after{transform:translateX(20px)}.special-sticker-owned input:focus-visible+i{outline:3px solid rgba(7,104,169,.22);outline-offset:2px}.special-sticker-local-note{margin:10px 2px 0;color:#7B8490;font-size:9px;line-height:1.45}.special-sticker-error{margin:9px 0 0;padding:8px 10px;border-radius:9px;background:#FFF0F1;color:#A43B44;font-size:10px}.special-sticker-error[hidden],.special-sticker-remove-confirm[hidden],.special-sticker-actions button[hidden]{display:none}.special-sticker-actions{display:grid;grid-template-columns:1fr 1fr;gap:8px;margin-top:13px}.special-sticker-actions label,.special-sticker-actions button{height:44px;display:flex;align-items:center;justify-content:center;border:0;border-radius:12px;font-size:11px;font-weight:900}.special-sticker-actions label{background:#0768A9;color:#fff}.special-sticker-actions label input{position:absolute;width:1px;height:1px;opacity:0}.special-sticker-actions button{background:#FFF0F1;color:#A43B44}.special-sticker-remove-confirm{margin-top:10px;padding:11px;border:1px solid #F0CDD0;border-radius:13px;background:#FFF7F7}.special-sticker-remove-confirm p{margin:0;color:#7C5257;font-size:10px}.special-sticker-remove-confirm>div{display:grid;grid-template-columns:1fr 1fr;gap:7px;margin-top:10px}.special-sticker-remove-confirm button{height:38px;border:0;border-radius:10px;background:#E7ECEF;color:#5F6872;font-size:10px;font-weight:900}.special-sticker-remove-confirm button:last-child{background:#B82F38;color:#fff}@media(max-width:360px){.collection-special-section{padding:0 10px 13px}.special-collection-heading{margin-right:-10px;margin-left:-10px;padding:16px 10px;gap:8px}.collection-special-section h2{font-size:18px}.special-collection-eyebrow{font-size:7px;letter-spacing:.7px}.special-collection-edition{flex-basis:36px;font-size:26px}.special-collection-icon{width:28px;flex-basis:28px}.collection-special-stickers{grid-template-columns:repeat(3,minmax(0,1fr));gap:6px}.collection-special-stickers button{height:150px;min-height:150px;padding:6px}.collection-special-stickers button>strong{font-size:8px}.collection-special-stickers button>small{font-size:7px}}

/* Uploaded special stickers use the full card, preserving the photo proportions. */
.collection-special-stickers button.has-photo{position:relative;isolation:isolate;align-self:stretch;display:block;overflow:hidden;padding:0;background:#172033}
.collection-special-stickers button.has-photo>span{position:absolute;inset:0;display:block;width:100%;height:100%;border-radius:0}
.collection-special-stickers button.has-photo>span img{display:block;width:100%;height:100%;object-fit:contain}
.collection-special-stickers button.has-photo>strong,.collection-special-stickers button.has-photo>small,.collection-special-stickers button.has-photo>.special-sticker-add{display:none}
