@import url(https://fonts.googleapis.com/css2?family=Nunito+Sans:wght@300;400;500;600;700;800&family=Varela+Round&display=swap);:root{--color-primary:#f5a623;--color-primary-dark:#d98c0f;--color-primary-light:#ffd9a0;--color-secondary:#00aeef;--color-secondary-dark:#0090c7;--color-primary-rgb:245 , 166 , 35;--color-primary-dark-rgb:217 , 140 , 15;--color-secondary-rgb:0 , 174 , 239;--color-secondary-dark-rgb:0 , 144 , 199;--color-success-rgb:22 , 163 , 74;--color-text:#16324f;--color-text-muted:#475569;--color-bg-soft-1:#fff6ec;--color-bg-soft-2:#ffe9d6;--color-success:#16a34a;--color-success-light:#dcfce7;--color-warning:#f59e0b;--color-warning-light:#fef3c7;--color-bg-card:#fff;--color-border:#f1e4d3;--font-heading:'Varela Round' , sans-serif;--font-body:'Nunito Sans' , sans-serif;--radius-sm:10px;--radius-md:18px;--radius-lg:28px;--radius-pill:999px;--shadow-sm:0 2px 8px rgba(22,50,79,.06);--shadow-md:0 8px 24px rgba(22,50,79,.10);--shadow-lg:0 16px 48px rgba(22,50,79,.14);--shadow-primary:0 10px 30px rgba(245,166,35,.35);--max-width:1180px}*{box-sizing:border-box;margin:0;padding:0}html{scroll-behavior:smooth}body{font-family: var(--font-body);color:var(--color-text);background:var(--color-bg-soft-1);line-height:1.65;font-size:16px;-webkit-font-smoothing:antialiased}.ts-scope h1,.ts-scope h2,.ts-scope h3,.ts-scope h4{font-family: var(--font-heading);font-weight:400;line-height:1.2;color:var(--color-text)}.ts-scope img{max-width:100%;display:block}.ts-scope a{color:inherit;text-decoration:none}.ts-scope button{font-family:inherit;cursor:pointer}.ts-scope .container{max-width:var(--max-width);margin:0 auto;padding:0 24px}@media (prefers-reduced-motion:reduce){*,*::before,*::after{animation-duration:.01ms!important;animation-iteration-count:1!important;transition-duration:.01ms!important;scroll-behavior:auto!important}}.ts-scope .placeholder-flag{display:inline-flex;align-items:center;gap:4px;font-size:11px;font-weight:700;color:#b45309;background:var(--color-warning-light);border:1px dashed #d97706;border-radius:var(--radius-pill);padding:2px 10px;margin-left:8px;vertical-align:middle;white-space:nowrap}.ts-scope .trust-bar{background:var(--color-text);color:#cbd5e1;font-size:12.5px}.ts-scope .trust-bar .container{display:flex;align-items:center;justify-content:space-between;gap:16px;padding:7px 24px;flex-wrap:wrap}.ts-scope .trust-bar a{display:inline-flex;align-items:center;gap:5px;color:#e2e8f0;font-weight:600;transition:color 160ms ease}.ts-scope .trust-bar a:hover{color:var(--color-primary-light)}.ts-scope .trust-bar .trust-hotline{color:var(--color-primary-light);font-weight:800}.ts-scope .trust-bar .trust-socials{display:flex;align-items:center;gap:16px}.ts-scope .trust-bar svg{width:15px;height:15px;flex-shrink:0}.ts-scope .trust-bar .trust-empty{opacity:.45;cursor:default}.ts-scope .wallet-bar{background:var(--color-border);border-bottom:1px solid var(--color-border)}.ts-scope .wallet-table{display:grid;grid-template-columns:repeat(4,1fr);gap:1px;padding:0;max-width:var(--max-width)}.ts-scope .wallet-cell{background:#fffbf3;display:flex;flex-direction:column;align-items:center;justify-content:center;gap:1px;padding:4px 6px;text-align:center;transition:background 150ms ease}.ts-scope a.wallet-cell{color:inherit}.ts-scope a.wallet-cell:hover{background:var(--color-bg-soft-1)}.ts-scope .wallet-cell-label{font-size:8.5px;color:var(--color-text-muted);font-weight:700;text-transform:uppercase;letter-spacing:.02em;white-space:nowrap}.ts-scope .wallet-cell-value{font-family: var(--font-heading);font-size:clamp(10.5px,2.2vw,12px);font-weight:800;color:var(--color-text);white-space:nowrap;font-variant-numeric:tabular-nums}.ts-scope .wallet-cell-value.is-main{color:var(--color-success)}.ts-scope .wallet-cell-value.is-pending{color:var(--color-warning)}.ts-scope .wallet-bar a.wallet-link:hover .wallet-value{text-decoration:underline}.ts-scope .cta-pulse{position:relative;display:inline-block}.ts-scope .cta-pulse::before{content:'';position:absolute;inset:-6px;border-radius:var(--radius-pill);border:2px solid var(--color-primary);opacity:.6;animation:cta-ring 1.8s ease-out infinite;pointer-events:none}@keyframes cta-ring {
  0% { transform: scale(1); opacity: 0.6; }
  100% { transform: scale(1.35); opacity: 0; }
}@keyframes cta-shake {
  0%, 100% { transform: translateX(0) rotate(0); }
  20% { transform: translateX(-3px) rotate(-2deg); }
  40% { transform: translateX(3px) rotate(2deg); }
  60% { transform: translateX(-2px) rotate(-1deg); }
  80% { transform: translateX(2px) rotate(1deg); }
}.ts-scope .cta-pulse .btn:hover{animation:cta-shake 420ms ease}@media (prefers-reduced-motion:reduce){.ts-scope .cta-pulse::before{animation:none;opacity:.35}.ts-scope .cta-pulse .btn:hover{animation:none}}.ts-scope .popup-overlay{position:fixed;inset:0;background:rgba(22,50,79,.55);display:none;align-items:center;justify-content:center;z-index:1000;padding:20px;backdrop-filter:blur(2px)}.ts-scope .popup-overlay.show{display:flex}.ts-scope .popup-box{background:#fff;border-radius:var(--radius-lg);padding:36px 30px;max-width:380px;width:100%;text-align:center;box-shadow:var(--shadow-lg);animation:popup-in 380ms cubic-bezier(.34,1.56,.64,1)}@keyframes popup-in { 0% { transform: scale(0.85); opacity: 0; } 100% { transform: scale(1); opacity: 1; } }.ts-scope .popup-box .popup-icon{font-size:46px;margin-bottom:12px}.ts-scope .popup-box h3{font-size:21px;margin-bottom:10px}.ts-scope .popup-box p{color:var(--color-text-muted);font-size:14px;margin-bottom:20px}.ts-scope .popup-amount{font-family: var(--font-heading);font-size:34px;color:var(--color-success);margin:10px 0 18px}.ts-scope .popup-skip{display:block;margin-top:14px;font-size:12.5px;color:var(--color-text-muted);cursor:pointer;text-decoration:underline}@keyframes spin-once { from { transform: rotate(0deg); } to { transform: rotate(1080deg); } }@media (prefers-reduced-motion:reduce){.ts-scope .popup-box{animation:none}.ts-scope #popup-spin-icon{animation:none!important}}.ts-scope .hero-banner-grid{display:grid;grid-template-columns:1.3fr 1fr;grid-template-rows:repeat(2,1fr);gap:18px}.ts-scope .hero-banner{position:relative;overflow:hidden;border-radius:var(--radius-lg);padding:30px;color:#fff;display:flex;flex-direction:column;justify-content:center;box-shadow:var(--shadow-md);transition:transform 220ms ease , box-shadow 220ms ease}.ts-scope .hero-banner:hover{transform:translateY(-3px);box-shadow:var(--shadow-lg)}.ts-scope .hero-banner-lg{grid-row: 1 / 3;padding:40px}.ts-scope .hero-banner-1,.ts-scope .hero-banner-2,.ts-scope .hero-banner-3{background-color:var(--color-primary-dark);background-image:linear-gradient(90deg,rgba(var(--color-primary-dark-rgb),.96) 0%,rgba(var(--color-primary-dark-rgb),.93) 30%,rgba(var(--color-primary-dark-rgb),.55) 44%,rgba(var(--color-primary-dark-rgb),0) 58%) , var(--banner-bg,linear-gradient(135deg,var(--color-primary),var(--color-primary-dark)));background-size:cover , cover;background-position:center , right center;background-repeat:no-repeat , no-repeat}.ts-scope .hero-banner .banner-eyebrow{font-size:13px;font-weight:800;text-transform:uppercase;letter-spacing:.04em;color:#fff;margin-bottom:10px;position:relative;z-index:1;text-shadow:0 1px 6px rgba(90,45,0,.55)}.ts-scope .hero-banner h2,.ts-scope .hero-banner h3{font-family: var(--font-heading);line-height:1.22;margin-bottom:8px;color:#fff;position:relative;z-index:1;text-shadow:0 2px 12px rgba(90,45,0,.6) , 0 1px 3px rgba(90,45,0,.5)}.ts-scope .hero-banner-lg h2{font-size:clamp(32px,3.6vw,46px)}.ts-scope .hero-banner-sm h3{font-size:clamp(19px,1.8vw,23px)}.ts-scope .hero-banner-3 h3{white-space:nowrap;font-size:clamp(12.5px,3.9vw,21px)}.ts-scope .hero-banner-icon{font-size:28px;margin-bottom:6px}.ts-scope .hero-banner .banner-sub{font-family: var(--font-heading);font-size:15.5px;color:#ffe9ae;margin-bottom:18px;max-width:30ch;position:relative;z-index:1;text-shadow:0 1px 8px rgba(90,45,0,.6)}.ts-scope .hero-banner-lg .banner-sub{font-size:21px}.ts-scope .hero-banner .banner-desc{font-size:13.5px;opacity:.94;margin-bottom:20px;max-width:30ch;position:relative;z-index:1;text-shadow:0 1px 6px rgba(90,45,0,.55)}.ts-scope .hero-banner .btn{background:#fff;color:var(--color-primary-dark);box-shadow:0 10px 26px rgba(22,50,79,.22);align-self:flex-start;position:relative;z-index:1}.ts-scope .hero-banner .cta-pulse::before{border-color:rgba(255,255,255,.9)}.ts-scope .cart-btn{position:relative;background:none;border:none;font-size:21px;cursor:pointer;padding:6px;flex-shrink:0;line-height:1}.ts-scope .cart-count{position:absolute;top:-2px;right:-4px;background:var(--color-success);color:#fff;font-size:9.5px;font-weight:800;border-radius:var(--radius-pill);min-width:15px;height:15px;line-height:15px;text-align:center;padding:0 3px;font-family: var(--font-body)}.ts-scope .combo-strip{display:flex;flex-wrap:wrap;align-items:center;gap:2px 20px;margin-top:14px;padding:6px 20px;font-size:20px;line-height:1.3;color:var(--color-text-muted);background:var(--color-bg-card);border:1px solid var(--color-border);border-radius:var(--radius-md)}.ts-scope .combo-strip b{color:var(--color-primary-dark);font-family: var(--font-heading)}.ts-scope .combo-strip .combo-strip-label{font-weight:800;color:var(--color-text)}.ts-scope .combo-strip .combo-strip-note{font-size:11.5px;opacity:.8}.ts-scope .qty-stepper{display:inline-flex;align-items:center;gap:12px;border:1.5px solid var(--color-border);border-radius:var(--radius-pill);padding:4px 8px}.ts-scope .qty-stepper button{width:26px;height:26px;border:none;border-radius:50%;background:var(--color-bg-soft-2);font-size:16px;font-weight:800;cursor:pointer;color:var(--color-primary-dark);line-height:1}.ts-scope .qty-stepper span{min-width:22px;text-align:center;font-weight:800}.ts-scope .qty-stepper.qty-sm{gap:7px;padding:2px 5px}.ts-scope .qty-stepper.qty-sm button{width:20px;height:20px;font-size:13px}.ts-scope .qty-stepper.qty-sm span{min-width:16px;font-size:12.5px}.ts-scope .cart-item{display:flex;align-items:center;gap:10px;padding:10px 0;border-bottom:1px solid var(--color-border);font-size:13.5px}.ts-scope .cart-item .ci-emoji{font-size:24px;flex-shrink:0}.ts-scope .cart-item .ci-info{flex:1;min-width:0}.ts-scope .cart-item .ci-name{font-weight:700;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.ts-scope .cart-item .ci-price{font-size:12px;color:var(--color-text-muted)}.ts-scope .cart-item .ci-remove{background:none;border:none;cursor:pointer;color:var(--color-text-muted);font-size:15px;padding:4px}.ts-scope .ctv-float{position:fixed;bottom:18px;right:18px;z-index:900;background:var(--color-success);color:#fff!important;font-weight:800;font-size:13.5px;padding:12px 18px;border-radius:var(--radius-pill);box-shadow:0 10px 30px rgba(22,163,74,.4);transition:transform 180ms ease , box-shadow 180ms ease}.ts-scope .ctv-float:hover{transform:translateY(-2px);box-shadow:0 14px 34px rgba(22,163,74,.5)}.ts-scope .btn{display:inline-flex;align-items:center;justify-content:center;gap:8px;font-family: var(--font-body);font-weight:700;font-size:15px;padding:14px 28px;border-radius:var(--radius-pill);border:none;cursor:pointer;transition:transform 180ms ease , box-shadow 180ms ease , background 180ms ease;white-space:nowrap}.ts-scope .btn-primary{background:var(--color-primary);color:#fff;box-shadow:var(--shadow-primary)}.ts-scope .btn-primary:hover{transform:translateY(-2px);box-shadow:0 14px 34px rgba(245,166,35,.42)}.ts-scope .btn-secondary{background:#fff;color:var(--color-primary-dark);border:2px solid var(--color-primary-light)}.ts-scope .btn-secondary:hover{border-color:var(--color-primary);transform:translateY(-2px)}.ts-scope .btn-block{width:100%}.ts-scope .btn:focus-visible{outline:3px solid var(--color-secondary);outline-offset:2px}.ts-scope .badge-row{display:grid;grid-template-columns:1fr 1fr;gap:6px}.ts-scope .badge{display:inline-flex;align-items:center;justify-content:center;gap:5px;font-size:11.5px;font-weight:700;padding:5px 10px;border-radius:var(--radius-pill);border:1px solid transparent;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.ts-scope .badge svg{width:13px;height:13px;flex-shrink:0}.ts-scope .badge-points{background:#fff0dc;color:#b45309;border-color:#fcd9a6}.ts-scope .badge-spin{background:#e6f7ff;color:#0369a1;border-color:#bae6fd}.ts-scope .badge-affiliate{background:var(--color-success-light);color:#15803d;border-color:#86efac}.ts-scope section{padding:88px 0}.ts-scope .section-tight{padding:64px 0}.ts-scope .eyebrow{display:inline-flex;align-items:center;gap:8px;font-size:13px;font-weight:800;letter-spacing:.06em;text-transform:uppercase;color:var(--color-primary-dark);margin-bottom:14px}.ts-scope .eyebrow::before{content:'';width:24px;height:3px;background:var(--color-primary);border-radius:2px}.ts-scope .section-title{font-size:clamp(28px,4vw,42px);margin-bottom:16px}.ts-scope .section-lead{font-size:17px;color:var(--color-text-muted);max-width:620px}.ts-scope .card{background:var(--color-bg-card);border-radius:var(--radius-lg);box-shadow:var(--shadow-md);border:1px solid var(--color-border)}.ts-scope .text-center{text-align:center}.ts-scope .mx-auto{margin-left:auto;margin-right:auto}.ts-scope .flex{display:flex}.ts-scope .grid{display:grid}.ts-scope .gap-16{gap:16px}.ts-scope .gap-24{gap:24px}.ts-scope .mt-24{margin-top:24px}.ts-scope .mt-48{margin-top:48px}.ts-scope .visually-hidden{position:absolute;width:1px;height:1px;overflow:hidden;clip:rect(0,0,0,0)}@media (max-width:900px){.ts-scope .trust-bar .trust-label{display:none}.ts-scope .trust-bar .container{padding:7px 16px;gap:10px}.ts-scope .wallet-table{grid-template-columns:repeat(2,1fr)}.ts-scope .hero-banner-grid{grid-template-columns:1fr;grid-template-rows:none}.ts-scope .hero-banner-lg{grid-row:auto;padding:30px}.ts-scope .hero-banner-1,.ts-scope .hero-banner-2,.ts-scope .hero-banner-3{background-image:linear-gradient(90deg,rgba(var(--color-primary-dark-rgb),.96) 0%,rgba(var(--color-primary-dark-rgb),.9) 38%,rgba(var(--color-primary-dark-rgb),.55) 58%,rgba(var(--color-primary-dark-rgb),.22) 80%,rgba(var(--color-primary-dark-rgb),.12) 100%) , var(--banner-bg,linear-gradient(135deg,var(--color-primary),var(--color-primary-dark)))}.ts-scope .combo-strip{font-size:14px;padding:5px 14px;gap:2px 12px}.ts-scope .combo-strip .combo-strip-note{font-size:10px}.ts-scope section{padding:56px 0}[style*="grid-template-columns:repeat\(5"],[style*="grid-template-columns:repeat\(4"],.ts-scope [style*="grid-template-columns:repeat\(3"]{grid-template-columns:1fr 1fr!important}[style*="grid-template-columns:1.1fr"],.ts-scope [style*="grid-template-columns:1fr 1fr"]{grid-template-columns:1fr!important}}@media (max-width:560px){[style*="grid-template-columns:repeat\(5"],[style*="grid-template-columns:repeat\(4"],.ts-scope [style*="grid-template-columns:repeat\(3"]{grid-template-columns:1fr!important}.ts-scope .stat-tile{padding:12px 10px}.ts-scope [style*="grid-template-columns:repeat\(5"]{grid-template-columns:1fr 1fr!important}.ts-scope .product-grid{grid-template-columns:repeat(2,1fr)!important;gap:12px!important}.ts-scope .badge{font-size:9px;padding:3px 3px;gap:2px;letter-spacing:-.2px}.ts-scope .badge .badge-ico{display:none}.ts-scope .badge-row{gap:4px}.ts-scope .product-grid .card [style*="padding:16px"]{padding:12px 8px!important}.ts-scope .wheel-wrap{width:min(300px,90vw)}.ts-scope .checkin-grid{gap:6px}}.ts-scope .badge{position:static!important;width:auto!important;height:auto!important;min-height:0!important;max-width:100%;top:auto!important;right:auto!important;left:auto!important;margin:0!important;float:none!important;display:inline-flex!important;align-items:center!important;justify-content:center;line-height:1.4!important;border-radius:999px!important;padding:5px 10px!important;font-size:11.5px!important;font-weight:700!important;text-transform:none!important;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.ts-scope .badge-inner{all:unset}.ts-scope .badge-points{background:#fff0dc!important;color:#b45309!important;border:1px solid #fcd9a6!important}.ts-scope .badge-spin{background:#e6f7ff!important;color:#0369a1!important;border:1px solid #bae6fd!important}.ts-scope .badge-affiliate{background:var(--color-success-light)!important;color:#15803d!important;border:1px solid #86efac!important}