
:root {
    --sf-navy-950: #04243f;
    --sf-navy-900: #06365f;
    --sf-blue-700: #0758a5;
    --sf-blue-600: #0877c9;
    --sf-cyan-500: #0ea5e9;
    --sf-teal-500: #0d9488;
    --sf-canvas: #f4f8fb;
    --sf-surface: #ffffff;
    --sf-surface-soft: #f7fafc;
    --sf-border: #dbe6ef;
    --sf-text: #10243e;
    --sf-muted: #64748b;
    --sf-container: 1280px;
    --sf-radius: 24px;
    --sf-shadow: 0 18px 50px rgba(15, 35, 58, .08);
}

html {
    width: 100% !important;
    max-width: none !important;
    margin: 0 !important;
    overflow-x: clip;
    background: var(--sf-canvas);
}

body.sf-body {
    width: 100% !important;
    min-width: 0 !important;
    max-width: none !important;
    min-height: 100vh;
    margin: 0 !important;
    overflow-x: clip;
    color: var(--sf-text);
    background: var(--sf-canvas);
}

body.sf-body *,
body.sf-body *::before,
body.sf-body *::after {
    box-sizing: border-box;
}

body.sf-body img,
body.sf-body svg,
body.sf-body video,
body.sf-body canvas {
    max-width: 100%;
}

.sf-site {
    width: 100% !important;
    min-width: 0;
    min-height: 100vh;
    overflow: clip;
}

.sf-container {
    width: min(calc(100% - 32px), var(--sf-container));
    margin-inline: auto;
}

.sf-skip-link {
    position: fixed;
    top: -80px;
    right: 18px;
    z-index: 9999;
    border-radius: 12px;
    padding: 12px 18px;
    color: #fff;
    background: var(--sf-blue-700);
    font-size: 13px;
    font-weight: 900;
    transition: top .2s ease;
}

.sf-skip-link:focus { top: 16px; }

/* Header */
.sf-header {
    position: sticky;
    top: 0;
    z-index: 60;
    width: 100%;
    border-bottom: 1px solid rgba(203, 216, 228, .9);
    background: rgba(255, 255, 255, .97);
    box-shadow: 0 8px 28px rgba(15, 35, 58, .055);
    backdrop-filter: blur(16px);
}

.sf-topbar {
    width: 100%;
    color: #fff;
    background: linear-gradient(90deg, var(--sf-navy-950), var(--sf-blue-700));
}

.sf-topbar-inner {
    min-height: 38px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    font-size: 12px;
    font-weight: 750;
}

.sf-topbar-links {
    display: flex;
    align-items: center;
    gap: 18px;
}

.sf-topbar a { color: inherit; text-decoration: none; }
.sf-topbar a:hover { text-decoration: underline; text-underline-offset: 4px; }

.sf-header-main {
    min-height: 88px;
    display: grid;
    grid-template-columns: auto minmax(260px, 1fr) auto;
    align-items: center;
    gap: clamp(16px, 2vw, 30px);
    padding-block: 10px;
}

.sf-brand {
    min-width: 0;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: inherit;
    text-decoration: none;
}

.sf-brand-logo {
    display: block !important;
    flex: 0 0 64px !important;
    width: 64px !important;
    height: 64px !important;
    min-width: 64px !important;
    max-width: 64px !important;
    min-height: 64px !important;
    max-height: 64px !important;
    object-fit: contain !important;
    border-radius: 17px;
    background: #fff;
}

.sf-brand-copy { min-width: 0; }
.sf-brand-name {
    display: block;
    color: var(--sf-blue-700);
    font-size: clamp(18px, 1.5vw, 24px);
    line-height: 1.2;
    font-weight: 950;
    white-space: nowrap;
}
.sf-brand-slogan {
    display: block;
    max-width: 230px;
    margin-top: 5px;
    color: var(--sf-muted);
    font-size: 10px;
    line-height: 1.6;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.sf-search {
    position: relative;
    min-width: 0;
}

.sf-search-row {
    display: flex;
    min-height: 50px;
    overflow: hidden;
    border: 1px solid var(--sf-border);
    border-radius: 17px;
    background: #f7fafc;
    transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}

.sf-search-row:focus-within {
    border-color: rgba(14, 165, 233, .65);
    background: #fff;
    box-shadow: 0 0 0 4px rgba(14, 165, 233, .11);
}

.sf-search input {
    width: 100%;
    min-width: 0;
    border: 0;
    outline: 0;
    padding: 0 18px;
    color: var(--sf-text);
    background: transparent;
    font: inherit;
    font-size: 13px;
}

.sf-search button {
    flex: 0 0 54px;
    border: 0;
    color: #fff;
    background: linear-gradient(145deg, var(--sf-blue-600), var(--sf-cyan-500));
    cursor: pointer;
    font-size: 18px;
}

.sf-search-results {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    left: 0;
    z-index: 90;
    display: none;
    max-height: 410px;
    overflow: auto;
    border: 1px solid var(--sf-border);
    border-radius: 18px;
    padding: 8px;
    background: #fff;
    box-shadow: 0 24px 65px rgba(15, 35, 58, .16);
}
.sf-search-results.is-open { display: block; }
.sf-search-result {
    display: flex;
    align-items: center;
    gap: 12px;
    border-radius: 13px;
    padding: 10px;
    color: var(--sf-text);
    text-decoration: none;
}
.sf-search-result:hover { background: #eff8ff; }
.sf-search-result img {
    width: 48px !important;
    height: 48px !important;
    max-width: 48px !important;
    object-fit: contain;
    border-radius: 10px;
    background: #f8fafc;
}
.sf-search-result-copy { min-width: 0; flex: 1; }
.sf-search-result-copy strong { display: block; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; font-size: 13px; }
.sf-search-result-copy small { display: block; margin-top: 4px; color: var(--sf-blue-700); font-size: 11px; }
.sf-search-empty { padding: 20px; text-align: center; color: var(--sf-muted); font-size: 12px; }

.sf-header-actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 8px;
}

.sf-action {
    position: relative;
    min-width: 46px;
    min-height: 46px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border: 1px solid var(--sf-border);
    border-radius: 15px;
    padding: 0 13px;
    color: #334155;
    background: #fff;
    text-decoration: none;
    font-size: 13px;
    font-weight: 850;
    transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
}
.sf-action:hover { transform: translateY(-1px); border-color: #b7d8ec; box-shadow: 0 8px 22px rgba(15, 35, 58, .07); }
.sf-action-icon { font-size: 18px; line-height: 1; }
.sf-action-count {
    position: absolute;
    top: -7px;
    left: -6px;
    min-width: 20px;
    height: 20px;
    display: grid;
    place-items: center;
    border: 2px solid #fff;
    border-radius: 999px;
    padding-inline: 4px;
    color: #fff;
    background: #e11d48;
    font-size: 9px;
    font-weight: 900;
}
.sf-action-cart {
    border-color: transparent;
    color: #fff;
    background: linear-gradient(145deg, var(--sf-blue-600), var(--sf-cyan-500));
}
.sf-action-cart small { display: block; color: #dff4ff; font-size: 9px; font-weight: 700; }
.sf-menu-toggle { display: none; cursor: pointer; }

.sf-mobile-search { display: none; padding-bottom: 12px; }

.sf-nav {
    width: 100%;
    border-top: 1px solid #edf2f7;
    background: #fff;
}
.sf-nav-inner {
    min-height: 48px;
    display: flex;
    align-items: center;
    gap: 25px;
    overflow-x: auto;
    scrollbar-width: none;
}
.sf-nav-inner::-webkit-scrollbar { display: none; }
.sf-nav a {
    flex: 0 0 auto;
    position: relative;
    color: #334155;
    text-decoration: none;
    font-size: 12px;
    font-weight: 850;
    white-space: nowrap;
}
.sf-nav a::after {
    content: '';
    position: absolute;
    right: 0;
    bottom: -14px;
    width: 0;
    height: 2px;
    border-radius: 99px;
    background: var(--sf-cyan-500);
    transition: width .2s ease;
}
.sf-nav a:hover { color: var(--sf-blue-700); }
.sf-nav a:hover::after { width: 100%; }

.sf-mobile-menu {
    display: none;
    border-top: 1px solid #edf2f7;
    padding: 10px 0 18px;
    background: #fff;
}
.sf-mobile-menu.is-open { display: block; }
.sf-mobile-menu-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 7px; }
.sf-mobile-menu a {
    border-radius: 12px;
    padding: 12px 13px;
    color: #334155;
    background: #f8fafc;
    text-decoration: none;
    font-size: 12px;
    font-weight: 850;
}
.sf-mobile-menu a:hover { color: var(--sf-blue-700); background: #eff8ff; }

/* Public pages */
.sf-public-main { width: 100%; padding: clamp(32px, 5vw, 68px) 0; }
.sf-page-shell { width: min(calc(100% - 32px), 980px); margin-inline: auto; }
.sf-page-shell-wide { width: min(calc(100% - 32px), 1180px); }
.sf-breadcrumb { display: flex; flex-wrap: wrap; align-items: center; gap: 8px; color: var(--sf-muted); font-size: 11px; font-weight: 800; }
.sf-breadcrumb a { color: var(--sf-blue-700); text-decoration: none; }
.sf-page-card {
    margin-top: 18px;
    overflow: hidden;
    border: 1px solid var(--sf-border);
    border-radius: 28px;
    padding: clamp(24px, 4vw, 48px);
    background: #fff;
    box-shadow: var(--sf-shadow);
}
.sf-page-badge {
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    padding: 8px 13px;
    color: var(--sf-blue-700);
    background: #eaf7ff;
    font-size: 11px;
    font-weight: 900;
}
.sf-page-title { margin: 18px 0 0; color: #0f2741; font-size: clamp(27px, 4vw, 44px); line-height: 1.35; font-weight: 950; }
.sf-page-summary { max-width: 760px; margin: 13px 0 0; color: var(--sf-muted); font-size: 14px; line-height: 2; }
.sf-prose { margin-top: 30px; color: #334155; font-size: 15px; line-height: 2.25; overflow-wrap: anywhere; }
.sf-prose > :first-child { margin-top: 0; }
.sf-prose > :last-child { margin-bottom: 0; }
.sf-prose h2, .sf-prose h3, .sf-prose h4 { margin: 32px 0 12px; color: #10243e; line-height: 1.55; font-weight: 950; }
.sf-prose h2 { font-size: 23px; }
.sf-prose h3 { font-size: 19px; }
.sf-prose p { margin: 12px 0; }
.sf-prose ul, .sf-prose ol { margin: 15px 0; padding-right: 24px; }
.sf-prose li { margin: 7px 0; }
.sf-prose a { color: var(--sf-blue-700); text-decoration: underline; text-underline-offset: 4px; }
.sf-prose blockquote { margin: 22px 0; border-right: 4px solid var(--sf-cyan-500); border-radius: 14px; padding: 15px 18px; color: #334155; background: #f0f9ff; }
.sf-prose table { width: 100%; border-collapse: collapse; overflow: hidden; border-radius: 14px; }
.sf-prose th, .sf-prose td { border: 1px solid var(--sf-border); padding: 11px; text-align: right; }
.sf-prose th { background: #f8fafc; }

.sf-hero {
    overflow: hidden;
    border-radius: 30px;
    padding: clamp(28px, 5vw, 54px);
    color: #fff;
    background: linear-gradient(135deg, var(--sf-navy-950), var(--sf-blue-700) 58%, var(--sf-teal-500));
    box-shadow: 0 25px 70px rgba(6, 54, 95, .2);
}
.sf-hero-kicker { margin: 0; color: #cceeff; font-size: 12px; font-weight: 900; letter-spacing: .05em; }
.sf-hero h1 { margin: 12px 0 0; font-size: clamp(30px, 5vw, 50px); line-height: 1.35; font-weight: 950; }
.sf-hero p { max-width: 820px; margin: 18px 0 0; color: #e1f3ff; font-size: 15px; line-height: 2.15; }

.sf-grid { display: grid; gap: 22px; }
.sf-grid-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.sf-info-card { border: 1px solid var(--sf-border); border-radius: 24px; padding: 25px; background: #fff; box-shadow: 0 12px 35px rgba(15, 35, 58, .055); }
.sf-info-card h2 { margin: 0; font-size: 21px; font-weight: 950; }
.sf-info-card p { margin: 14px 0 0; color: var(--sf-muted); line-height: 2; }

.sf-faq-group + .sf-faq-group { margin-top: 30px; }
.sf-faq-group h2 { margin: 0 0 14px; font-size: 20px; font-weight: 950; }
.sf-faq-list { display: grid; gap: 10px; }
.sf-faq-item { overflow: hidden; border: 1px solid var(--sf-border); border-radius: 18px; background: #fff; box-shadow: 0 8px 25px rgba(15, 35, 58, .035); }
.sf-faq-item summary { position: relative; cursor: pointer; list-style: none; padding: 18px 20px 18px 54px; font-size: 14px; font-weight: 900; }
.sf-faq-item summary::-webkit-details-marker { display: none; }
.sf-faq-item summary::after { content: '+'; position: absolute; left: 18px; top: 50%; width: 25px; height: 25px; display: grid; place-items: center; transform: translateY(-50%); border-radius: 999px; color: var(--sf-blue-700); background: #eaf7ff; font-size: 19px; }
.sf-faq-item[open] summary::after { content: '−'; }
.sf-faq-answer { border-top: 1px solid #edf2f7; padding: 16px 20px 20px; color: #475569; font-size: 13px; line-height: 2.1; }

.sf-contact-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 24px; }
.sf-contact-panel { border-radius: 28px; padding: clamp(25px, 4vw, 42px); color: #fff; background: linear-gradient(145deg, var(--sf-navy-950), var(--sf-blue-700)); box-shadow: var(--sf-shadow); }
.sf-contact-panel h1 { margin: 17px 0 0; font-size: clamp(28px, 4vw, 42px); font-weight: 950; }
.sf-contact-panel > p { margin: 14px 0 0; color: #d8efff; line-height: 2; }
.sf-contact-items { display: grid; gap: 11px; margin-top: 24px; }
.sf-contact-item { display: block; border: 1px solid rgba(255,255,255,.12); border-radius: 17px; padding: 15px; color: #fff; background: rgba(255,255,255,.08); text-decoration: none; }
.sf-contact-item small { display: block; color: #bde5ff; font-size: 10px; }
.sf-contact-item strong, .sf-contact-item p { display: block; margin: 6px 0 0; line-height: 1.9; }
.sf-form-card { border: 1px solid var(--sf-border); border-radius: 28px; padding: clamp(24px, 4vw, 38px); background: #fff; box-shadow: var(--sf-shadow); }
.sf-form-card h2 { margin: 0; font-size: 26px; font-weight: 950; }
.sf-form-card > p { margin: 9px 0 0; color: var(--sf-muted); line-height: 1.9; }
.sf-form-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 17px; margin-top: 23px; }
.sf-field { display: grid; gap: 7px; }
.sf-field-full { grid-column: 1 / -1; }
.sf-field span { font-size: 12px; font-weight: 900; }
.sf-field input, .sf-field textarea, .sf-field select { width: 100%; min-height: 47px; border: 1px solid var(--sf-border); border-radius: 14px; padding: 11px 13px; outline: 0; color: var(--sf-text); background: #fff; font: inherit; font-size: 13px; transition: border-color .2s ease, box-shadow .2s ease; }
.sf-field textarea { min-height: 145px; resize: vertical; }
.sf-field input:focus, .sf-field textarea:focus, .sf-field select:focus { border-color: #65bce9; box-shadow: 0 0 0 4px rgba(14,165,233,.1); }
.sf-button { min-height: 46px; display: inline-flex; align-items: center; justify-content: center; border: 0; border-radius: 14px; padding: 0 20px; color: #fff; background: linear-gradient(145deg, var(--sf-blue-600), var(--sf-cyan-500)); text-decoration: none; font: inherit; font-size: 13px; font-weight: 900; cursor: pointer; box-shadow: 0 10px 25px rgba(8,119,201,.18); }
.sf-button-secondary { color: var(--sf-text); background: #fff; border: 1px solid var(--sf-border); box-shadow: none; }
.sf-alert { margin-top: 18px; border: 1px solid #f5cf79; border-radius: 15px; padding: 14px 16px; color: #854d0e; background: #fffbeb; font-size: 12px; line-height: 1.9; }
.sf-callout { margin-top: 30px; border: 1px solid #cce9f8; border-radius: 22px; padding: 24px; text-align: center; background: #eef9ff; }
.sf-callout strong { display: block; font-size: 17px; }
.sf-callout .sf-button { margin-top: 15px; }
.sf-empty { border: 1px dashed #cbd5e1; border-radius: 20px; padding: 35px; text-align: center; color: var(--sf-muted); background: #fff; }

/* Footer */
.sf-footer {
    width: 100%;
    margin-top: clamp(52px, 8vw, 90px);
    color: #fff;
    background: var(--sf-navy-950);
}

.sf-footer-main {
    display: grid;
    grid-template-columns: minmax(250px, 1.2fr) repeat(3, minmax(150px, .72fr));
    gap: clamp(26px, 4vw, 48px);
    padding-block: clamp(38px, 5vw, 62px);
}

.sf-footer-brand { min-width: 0; }
.sf-footer-brand-row { display: flex; align-items: center; gap: 13px; }
.sf-footer-logo {
    display: block !important;
    flex: 0 0 72px !important;
    width: 72px !important;
    height: 72px !important;
    min-width: 72px !important;
    max-width: 72px !important;
    min-height: 72px !important;
    max-height: 72px !important;
    object-fit: contain !important;
    border-radius: 17px;
    padding: 5px;
    background: #fff;
}
.sf-footer-brand strong { display: block; font-size: 20px; font-weight: 950; }
.sf-footer-brand small { display: block; margin-top: 5px; color: #b7d8ef; font-size: 10px; }
.sf-footer-description { max-width: 430px; margin: 18px 0 0; color: #c8e0f1; font-size: 12px; line-height: 2.1; }
.sf-footer-column h2 { margin: 0; color: #fff; font-size: 14px; font-weight: 950; }
.sf-footer-links { display: grid; gap: 10px; margin-top: 17px; }
.sf-footer-links a, .sf-footer-links p { margin: 0; color: #c6deef; text-decoration: none; font-size: 12px; line-height: 1.8; }
.sf-footer-links a:hover { color: #fff; text-decoration: underline; text-underline-offset: 4px; }
.sf-social-link { width: fit-content; border: 1px solid rgba(255,255,255,.16); border-radius: 12px; padding: 8px 11px; }

.sf-trust-wrap { border-top: 1px solid rgba(255,255,255,.1); background: #052d4d; }
.sf-trust { min-height: 138px; display: grid; grid-template-columns: minmax(220px, .65fr) minmax(0, 1.35fr); align-items: center; gap: 28px; padding-block: 24px; }
.sf-trust-copy h2 { margin: 0; color: #fff; font-size: 16px; font-weight: 950; }
.sf-trust-copy p { max-width: 430px; margin: 8px 0 0; color: #b8d4e8; font-size: 11px; line-height: 1.9; }
.sf-trust-grid { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 12px; }
.sf-trust-badge { min-width: 106px; min-height: 112px; display: grid; place-items: center; align-content: center; gap: 7px; overflow: hidden; border: 1px solid rgba(255,255,255,.14); border-radius: 17px; padding: 9px; background: rgba(255,255,255,.96); }
.sf-trust-badge-link { display: grid !important; place-items: center; text-decoration: none; }
.sf-trust-badge-image,
.sf-trust-badge img {
    display: block !important;
    width: 82px !important;
    height: 82px !important;
    max-width: 82px !important;
    max-height: 82px !important;
    object-fit: contain !important;
}
.sf-trust-badge-name { max-width: 100px; overflow: hidden; color: #334155; font-size: 9px; font-weight: 850; text-align: center; text-overflow: ellipsis; white-space: nowrap; }

.sf-footer-credit { border-top: 1px solid rgba(255,255,255,.09); background: #04253f; }
.sf-footer-credit-inner { min-height: 72px; display: flex; align-items: center; justify-content: space-between; gap: 22px; color: #bed8eb; font-size: 11px; line-height: 2; }
.sf-footer-credit a { color: #fff; font-weight: 950; text-decoration: underline; text-decoration-color: #5cc5f3; text-underline-offset: 4px; }
.sf-footer-bottom { border-top: 1px solid rgba(255,255,255,.08); padding: 16px; color: #aac8dd; text-align: center; font-size: 10px; }

.sf-whatsapp {
    position: fixed;
    bottom: 18px;
    left: 18px;
    z-index: 55;
    width: 54px;
    height: 54px;
    display: grid;
    place-items: center;
    border: 3px solid rgba(255,255,255,.9);
    border-radius: 999px;
    color: #fff;
    background: #10b981;
    box-shadow: 0 16px 38px rgba(16,185,129,.3);
    text-decoration: none;
    font-size: 22px;
}

@media (max-width: 1050px) {
    .sf-header-main { grid-template-columns: auto minmax(220px, 1fr) auto; gap: 12px; }
    .sf-brand-copy { display: none; }
    .sf-action-account, .sf-action-wishlist, .sf-action-compare { display: none; }
    .sf-footer-main { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 820px) {
    .sf-container { width: min(calc(100% - 24px), var(--sf-container)); }
    .sf-topbar-links { display: none; }
    .sf-header-main { grid-template-columns: auto 1fr auto; min-height: 72px; }
    .sf-header-main > .sf-search { display: none; }
    .sf-brand-logo { width: 54px !important; height: 54px !important; min-width: 54px !important; max-width: 54px !important; min-height: 54px !important; max-height: 54px !important; }
    .sf-action-cart .sf-action-copy { display: none; }
    .sf-menu-toggle { display: inline-flex; }
    .sf-mobile-search { display: block; }
    .sf-nav { display: none; }
    .sf-contact-grid { grid-template-columns: 1fr; }
    .sf-grid-2 { grid-template-columns: 1fr; }
    .sf-trust { grid-template-columns: 1fr; }
    .sf-trust-grid { justify-content: flex-start; }
    .sf-footer-credit-inner { flex-direction: column; align-items: flex-start; padding-block: 18px; }
}

@media (max-width: 620px) {
    .sf-topbar-inner { min-height: 34px; justify-content: center; text-align: center; font-size: 10px; }
    .sf-header-actions { gap: 5px; }
    .sf-action { min-width: 42px; min-height: 42px; border-radius: 13px; padding: 0 10px; }
    .sf-action-notifications { display: none; }
    .sf-page-shell, .sf-page-shell-wide { width: min(calc(100% - 20px), 1180px); }
    .sf-page-card { border-radius: 22px; padding: 22px 18px; }
    .sf-form-grid { grid-template-columns: 1fr; }
    .sf-field-full { grid-column: auto; }
    .sf-footer-main { grid-template-columns: 1fr; gap: 28px; }
    .sf-footer-logo { width: 62px !important; height: 62px !important; min-width: 62px !important; max-width: 62px !important; min-height: 62px !important; max-height: 62px !important; }
    .sf-mobile-menu-grid { grid-template-columns: 1fr; }
    .sf-trust-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); width: 100%; }
    .sf-trust-badge { min-width: 0; }
}

@media (prefers-reduced-motion: reduce) {
    .sf-site *, .sf-site *::before, .sf-site *::after { scroll-behavior: auto !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
}
