/* ================================================================
   GWA Uniform Shop — Premium Design System
   ================================================================ */
:root {
    --font-display: 'Fraunces', Georgia, serif;
    --font-body: 'Outfit', 'DM Sans', system-ui, sans-serif;
    --navy: #0c3260;
    --navy-mid: #105caa;
    --navy-soft: #1a4f7a;
    --gold: #d4a853;
    --gold-bright: #f2c413;
    --gold-pale: #faf3e3;
    --white: #ffffff;
    --surface: #f5f7fa;
    --surface-2: #eef1f6;
    --card: #ffffff;
    --border: #e2e8f0;
    --border-light: #f0f3f7;
    --text: #1a2332;
    --text-muted: #64748b;
    --text-light: #94a3b8;
    --danger: #dc3545;
    --success: #198754;
    --radius-xl: 24px;
    --radius-lg: 18px;
    --radius-md: 14px;
    --radius-sm: 10px;
    --radius-pill: 999px;
    --shadow-xs: 0 1px 3px rgba(12, 50, 96, 0.06);
    --shadow-sm: 0 4px 20px rgba(12, 50, 96, 0.07);
    --shadow-md: 0 12px 40px rgba(12, 50, 96, 0.1);
    --shadow-lg: 0 24px 60px rgba(12, 50, 96, 0.14);
    --header-h: 72px;
    --nav-h: 52px;
    --ease: cubic-bezier(0.4, 0, 0.2, 1);
    --transition: 0.3s var(--ease);
    --sidebar-w: 270px;
    --cart-w: 320px;
    --container: min(100%, 1560px);
}

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

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body.shop-premium {
    margin: 0;
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.65;
    color: var(--text);
    background: var(--surface);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; margin: 0; padding: 0; }

/* ── Preloader ── */
#preloader {
    position: fixed; inset: 0;
    background: var(--white);
    z-index: 10000;
    display: flex; align-items: center; justify-content: center;
    transition: opacity 0.4s, visibility 0.4s;
}
body.shop-premium.loaded #preloader {
    display: none !important;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}
.sp-preloader { position: relative; width: 72px; height: 72px; }
.sp-preloader-ring {
    position: absolute; inset: 0;
    border: 2px solid var(--border);
    border-top-color: var(--navy-mid);
    border-radius: 50%;
    animation: sp-spin 0.85s linear infinite;
}
.sp-preloader-logo {
    position: absolute; top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 40px; height: 40px; object-fit: contain;
}
@keyframes sp-spin { to { transform: rotate(360deg); } }

/* ── Site header ── */
.sp-header {
    position: sticky; top: 0; z-index: 800;
    background: rgba(255,255,255,0.92);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border-light);
    box-shadow: var(--shadow-xs);
}
.sp-header-inner {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 20px;
    height: var(--header-h);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}
.sp-brand {
    display: flex; align-items: center; gap: 14px;
    min-width: 0;
}
.sp-brand img {
    width: 48px; height: 48px; object-fit: contain; flex-shrink: 0;
}
.sp-brand-text { min-width: 0; }
.sp-brand-name {
    display: block;
    font-family: var(--font-display);
    font-size: clamp(0.95rem, 2.5vw, 1.15rem);
    font-weight: 500;
    color: var(--navy);
    line-height: 1.2;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.sp-brand-tag {
    display: block;
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gold);
    margin-top: 2px;
}
.sp-header-actions { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }

/* Header basket icon (mobile) */
.sp-header-basket {
    display: none;
    position: relative;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    padding: 0;
    border: 1px solid var(--border-light);
    border-radius: 50%;
    background: linear-gradient(145deg, var(--white), var(--surface));
    color: var(--navy);
    box-shadow: 0 4px 14px rgba(12, 50, 96, 0.12);
    cursor: pointer;
    transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.sp-header-basket:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 18px rgba(12, 50, 96, 0.16);
    border-color: rgba(212, 168, 83, 0.45);
}
.sp-header-basket:active { transform: scale(0.96); }
.sp-header-basket-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
}
.sp-header-basket-icon svg {
    width: 100%;
    height: 100%;
    display: block;
}
.sp-header-basket-badge {
    position: absolute;
    top: -4px;
    right: -4px;
    min-width: 18px;
    height: 18px;
    padding: 0 5px;
    border-radius: var(--radius-pill);
    background: linear-gradient(135deg, var(--accent), #a80101);
    color: red;
    font-family: var(--font-body);
    font-size: 0.65rem;
    font-weight: 700;
    line-height: 18px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(210, 1, 2, 0.35);
}
.sp-header-basket-badge.is-empty { display: none; }

/* Cart drawer backdrop */
.sp-cart-drawer-backdrop {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 850;
    background: rgba(12, 50, 96, 0.45);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    opacity: 0;
    transition: opacity 0.32s ease;
}
.sp-cart-drawer-backdrop.is-visible {
    display: block;
    opacity: 1;
}

body.shop-premium .sp-cart-drawer-close {
    display: none;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    padding: 0;
    border: none;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.12);
    color: var(--white);
    cursor: pointer;
    transition: background var(--transition);
}
body.shop-premium .sp-cart-drawer-close svg {
    width: 18px;
    height: 18px;
    display: block;
}
body.shop-premium .sp-cart-drawer-close:hover {
    background: rgba(255, 255, 255, 0.22);
}

/* ── Buttons ── */
.sp-btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 8px;
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    padding: 11px 22px;
    border-radius: var(--radius-pill);
    border: none;
    cursor: pointer;
    transition: all var(--transition);
    white-space: nowrap;
}
.sp-btn-primary {
    background: linear-gradient(135deg, var(--gold-bright), var(--gold));
    color: var(--navy);
    box-shadow: 0 4px 16px rgba(212, 168, 83, 0.35);
}
.sp-btn-primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 8px 24px rgba(212, 168, 83, 0.45);
    color: var(--navy);
}
.sp-btn-ghost {
    background: transparent;
    color: var(--navy-mid);
    border: 1.5px solid var(--border);
}
.sp-btn-ghost:hover {
    border-color: var(--navy-mid);
    background: rgba(16, 92, 170, 0.04);
    color: var(--navy-mid);
}
.sp-btn-add {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 44px !important;
    height: 44px !important;
    min-width: 44px !important;
    border-radius: 50% !important;
    background: linear-gradient(145deg, var(--navy-mid), var(--navy)) !important;
    color: var(--gold-bright) !important;
    box-shadow: 0 4px 16px rgba(12, 50, 96, 0.32), inset 0 1px 0 rgba(255,255,255,0.12) !important;
    border: 2px solid rgba(242, 196, 19, 0.45) !important;
    cursor: pointer !important;
    transition: transform var(--transition), box-shadow var(--transition), background var(--transition) !important;
    flex-shrink: 0 !important;
    position: static !important;
    right: auto !important;
    top: auto !important;
    float: none !important;
    padding: 0 !important;
}
.sp-btn-add:hover {
    transform: scale(1.06);
    box-shadow: 0 6px 22px rgba(12, 50, 96, 0.4), inset 0 1px 0 rgba(255,255,255,0.15) !important;
    color: var(--gold-bright) !important;
}
.sp-btn-add:active { transform: scale(0.96); }
.sp-btn-add img { display: none !important; }
.sp-btn-add::before {
    content: '\f217';
    font-family: 'FontAwesome';
    font-size: 1.05rem;
    font-weight: normal;
    line-height: 1;
}
.sp-btn-add.open-popup::before,
.sp-btn-add.sp-btn-add-customize::before {
    content: '\f044';
}
body.shop-premium img.blob,
body.shop-premium img#open-popupp,
body.shop-premium img#bloob {
    width: 46px !important;
    height: 46px !important;
    padding: 13px !important;
    border-radius: 50% !important;
    background: linear-gradient(135deg, var(--gold-bright), var(--gold)) !important;
    box-shadow: 0 4px 14px rgba(212, 168, 83, 0.4) !important;
    cursor: pointer !important;
    object-fit: contain !important;
    box-sizing: border-box !important;
    transition: transform var(--transition) !important;
}
body.shop-premium img.blob:hover,
body.shop-premium img#open-popupp:hover,
body.shop-premium img#bloob:hover {
    transform: scale(1.06);
}
.sp-btn-cart-mobile { display: none; }
@media (max-width: 991px) {
    .sp-header-basket { display: inline-flex; }
    .sp-btn-cart-mobile { display: inline-flex !important; }
    .sp-header-actions .sp-btn-ghost { display: none; }
}

body.shop-premium .btn_full,
body.shop-premium a.btn_full {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 100% !important;
    padding: 15px 24px !important;
    background: linear-gradient(135deg, var(--navy-mid), var(--navy)) !important;
    color: var(--white) !important;
    border: none !important;
    border-radius: var(--radius-pill) !important;
    font-family: var(--font-body) !important;
    font-size: 0.85rem !important;
    font-weight: 700 !important;
    letter-spacing: 0.06em !important;
    text-transform: uppercase !important;
    box-shadow: 0 6px 20px rgba(12, 50, 96, 0.25) !important;
    transition: all var(--transition) !important;
    text-align: center !important;
    position: relative !important;
    bottom: auto !important;
}
body.shop-premium .btn_full:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 10px 28px rgba(12, 50, 96, 0.32) !important;
    color: var(--white) !important;
}
body.shop-premium .btn_full .span_amount,
body.shop-premium .btn_full .spanDH {
    position: static !important;
    font-size: inherit !important;
    margin: 0 0 0 4px !important;
    font-family: inherit !important;
}

/* ── Hero banner (full width) ── */
.sp-hero {
    min-height: clamp(400px, 54vw, 640px);
    padding: 52px 20px 56px;
    text-align: center;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--navy);
}
.sp-hero::before {
    content: '';
    position: absolute; inset: 0;
    background: url('/assets/casuniforms/subpageheros-6.png') center/cover no-repeat;
    transform: scale(1.02);
}
.sp-hero::after {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(180deg, rgba(7,35,70,0.55) 0%, rgba(12,50,96,0.82) 100%);
}
.sp-hero-inner {
    position: relative; z-index: 1;
    max-width: min(96vw, 960px);
    margin: 0 auto;
}
.sp-hero .sp-hero-badge,
.sp-hero-badge {
    display: block;
    width: clamp(360px, 78vw, 780px);
    max-width: 96%;
    height: auto;
    margin: 0 auto 28px;
    object-fit: contain;
    filter: drop-shadow(0 10px 28px rgba(0,0,0,0.3));
}
.sp-hero h1 {
    font-family: var(--font-display);
    font-size: clamp(1.75rem, 5vw, 3rem);
    font-weight: 500;
    color: var(--white);
    margin: 0 0 10px;
    line-height: 1.15;
    text-shadow: 0 2px 12px rgba(0,0,0,0.2);
}
.sp-hero p {
    font-size: clamp(0.9rem, 2vw, 1.05rem);
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--gold-bright);
    margin: 0;
}

/* ── Category nav ── */
body.shop-premium #pn-ProductNav_Wrapper,
body.shop-premium .pn-ProductNav_Wrapper {
    position: sticky !important;
    top: var(--header-h) !important;
    z-index: 700 !important;
    background: linear-gradient(135deg, var(--navy), var(--navy-mid)) !important;
    border-bottom: 3px solid var(--gold-bright) !important;
    box-shadow: var(--shadow-md) !important;
    padding: 12px 0 !important;
    margin: 0 !important;
    width: 100% !important;
    overflow: visible !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
}
body.shop-premium .pn-ProductNav {
    display: flex !important;
    justify-content: center !important;
    background: transparent !important;
    overflow-x: auto !important;
    overflow-y: hidden !important;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    white-space: normal !important;
    width: 100% !important;
}
body.shop-premium .pn-ProductNav::-webkit-scrollbar { display: none; }
body.shop-premium .pn-ProductNav_Contents {
    float: none !important;
    display: flex !important;
    justify-content: center !important;
    width: max-content !important;
    max-width: 100% !important;
    margin: 0 auto !important;
}
body.shop-premium .accordion_wrap,
body.shop-premium .accordion_wrap.sp-cat-row {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    align-items: center !important;
    justify-content: center !important;
    width: max-content !important;
    min-width: 0 !important;
    padding: 4px 52px !important;
    gap: 0 !important;
    position: relative !important;
    left: auto !important;
    margin: 0 auto !important;
}
body.shop-premium .accordion_wrap .sp-cat-list,
body.shop-premium .accordion_wrap ul {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 10px !important;
    padding: 0 !important;
    margin: 0 auto !important;
    list-style: none !important;
}
body.shop-premium .accordion_wrap ul li,
body.shop-premium .accordion_wrap .sp-cat-item {
    display: flex !important;
    flex-direction: column !important;
    flex-shrink: 0 !important;
    position: relative !important;
    width: auto !important;
    height: auto !important;
    margin: 0 !important;
}
body.shop-premium .accordion_wrap ul li a {
    color: inherit !important;
    text-decoration: none !important;
    display: block !important;
}
body.shop-premium .accordion_item,
body.shop-premium .accordion_item.sp-cat-pill {
    background: rgba(255,255,255,0.1) !important;
    border: 1.5px solid rgba(255,255,255,0.22) !important;
    border-radius: var(--radius-pill) !important;
    padding: 8px 18px 8px 10px !important;
    min-height: 48px !important;
    width: auto !important;
    height: auto !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 10px !important;
    transition: background var(--transition), border-color var(--transition), transform var(--transition) !important;
    margin: 0 !important;
    cursor: pointer !important;
    box-shadow: none !important;
    border-right: 1.5px solid rgba(255,255,255,0.22) !important;
}
body.shop-premium .accordion_item:hover {
    background: rgba(255,255,255,0.18) !important;
    transform: translateY(-1px);
}
body.shop-premium .walk.active .accordion_item,
body.shop-premium .accordion_wrap ul li.active .accordion_item {
    background: var(--gold-bright) !important;
    border-color: var(--gold-bright) !important;
    box-shadow: 0 4px 16px rgba(242, 196, 19, 0.35) !important;
}
body.shop-premium .sp-cat-icon {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 32px !important;
    height: 32px !important;
    min-width: 32px !important;
    border-radius: 50% !important;
    background: rgba(255,255,255,0.15) !important;
    overflow: hidden !important;
    flex-shrink: 0 !important;
    position: static !important;
    transform: none !important;
}
body.shop-premium .sp-cat-icon img {
    width: 22px !important;
    height: 22px !important;
    object-fit: contain !important;
}
body.shop-premium .sp-cat-icon .fa,
body.shop-premium .sp-cat-icon i {
    font-size: 0.95rem !important;
    color: var(--gold-bright) !important;
    line-height: 1 !important;
}
body.shop-premium .walk.active .sp-cat-icon,
body.shop-premium .accordion_wrap ul li.active .sp-cat-icon {
    background: rgba(12, 50, 96, 0.12) !important;
}
body.shop-premium .walk.active .sp-cat-icon .fa,
body.shop-premium .accordion_wrap ul li.active .sp-cat-icon .fa {
    color: var(--navy) !important;
}
body.shop-premium .category-name,
body.shop-premium .accordion_wrap .icon {
    font-family: var(--font-body) !important;
    font-size: 0.78rem !important;
    font-weight: 600 !important;
    color: var(--white) !important;
    padding: 0 !important;
    letter-spacing: 0.02em;
    white-space: nowrap;
    position: static !important;
    transform: none !important;
}
body.shop-premium .sp-cat-arrow {
    font-size: 0.65rem !important;
    opacity: 0.7;
    margin-left: 2px;
}
body.shop-premium .walk.active .category-name,
body.shop-premium .walk.active .icon,
body.shop-premium .accordion_wrap ul li.active .category-name {
    color: var(--navy) !important;
}
body.shop-premium .accordion_menu,
body.shop-premium .sp-subcat-menu {
    position: absolute !important;
    top: calc(100% + 8px) !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    width: auto !important;
    min-width: 180px !important;
    height: auto !important;
    max-height: 0 !important;
    overflow: hidden !important;
    opacity: 0 !important;
    visibility: hidden !important;
    background: var(--white) !important;
    border-radius: var(--radius-md) !important;
    box-shadow: var(--shadow-md) !important;
    border: 1px solid var(--border) !important;
    z-index: 50 !important;
    transition: max-height 0.25s var(--ease), opacity 0.2s !important;
    animation: none !important;
    display: block !important;
}
body.shop-premium .accordion_wrap ul li.active .accordion_menu,
body.shop-premium .sp-cat-item.active .sp-subcat-menu {
    max-height: 320px !important;
    opacity: 1 !important;
    visibility: visible !important;
    overflow-y: auto !important;
}
body.shop-premium .accordion_menu .inner_am {
    padding: 10px 16px !important;
    border-right: none !important;
    text-align: left !important;
}
body.shop-premium .accordion_menu .scrollTo {
    display: block !important;
    color: var(--text) !important;
    font-size: 0.82rem !important;
    font-weight: 500 !important;
    transition: background var(--transition) !important;
}
body.shop-premium .accordion_menu .scrollTo:hover,
body.shop-premium .accordion_menu .scrollTo.active {
    background: var(--gold-pale) !important;
    color: var(--navy) !important;
}
body.shop-premium .pn-Advancer {
    background: var(--white) !important;
    border: 1px solid var(--border) !important;
    border-radius: 50% !important;
    width: 36px !important; height: 36px !important;
    box-shadow: var(--shadow-xs) !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    bottom: auto !important;
}
body.shop-premium .pn-Advancer_Icon {
    width: 18px !important;
    height: 18px !important;
    background: transparent !important;
}
body.shop-premium .pn-Advancer_Icon path:first-child { fill: var(--navy-mid) !important; }
body.shop-premium .pn-Advancer_Icon path:last-child { fill: var(--white) !important; }

/* ── Floating basket ── */
body.shop-premium #panierbtn {
    position: fixed !important;
    bottom: 20px !important;
    left: 50% !important;
    right: auto !important;
    transform: translateX(-50%) !important;
    width: auto !important;
    min-width: 260px !important;
    max-width: calc(100vw - 32px) !important;
    height: auto !important;
    min-height: 56px !important;
    background: var(--navy) !important;
    border: 2px solid var(--gold-bright) !important;
    border-radius: var(--radius-pill) !important;
    box-shadow: var(--shadow-lg) !important;
    padding: 0 !important;
    z-index: 900 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}
body.shop-premium #panierbtn a {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 10px !important;
    width: 100% !important;
    padding: 14px 24px !important;
    color: var(--white) !important;
    font-family: var(--font-body) !important;
    font-weight: 600 !important;
    font-size: 0.875rem !important;
    text-decoration: none !important;
}
body.shop-premium .basket-label { color: var(--white) !important; }
body.shop-premium .basket-total {
    color: var(--gold-bright) !important;
    font-weight: 700 !important;
}
body.shop-premium .basket-count,
body.shop-premium #llsk {
    background: var(--gold-bright) !important;
    color: var(--navy) !important;
    font-size: 0.7rem !important;
    font-weight: 700 !important;
    min-width: 24px; height: 24px;
    line-height: 24px;
    text-align: center;
    border-radius: 50%;
    padding: 0 6px;
}

/* ── Main layout grid ── */
body.shop-premium .sp-shop {
    max-width: var(--container);
    margin: 0 auto;
    padding: 24px clamp(12px, 2.5vw, 28px) 120px;
    width: 100%;
}
body.shop-premium .shop-container {
    max-width: 100% !important;
    width: 100% !important;
    padding: 0 !important;
    margin: 0 !important;
}
body.shop-premium .shop-grid {
    display: grid !important;
    grid-template-columns: var(--sidebar-w) minmax(0, 1fr) minmax(280px, var(--cart-w)) !important;
    gap: clamp(14px, 1.8vw, 22px) !important;
    align-items: start !important;
    margin: 0 !important;
    width: 100% !important;
}
body.shop-premium #left-box {
    display: block !important;
}
body.shop-premium .sp-left-sticky {
    position: sticky;
    top: calc(var(--header-h) + var(--nav-h) + 16px);
    display: flex;
    flex-direction: column;
    gap: 14px;
}
body.shop-premium .shop-grid::before,
body.shop-premium .shop-grid::after { display: none !important; }
body.shop-premium .shop-grid > * {
    width: 100% !important;
    max-width: 100% !important;
    float: none !important;
    padding: 0 !important;
    position: relative !important;
    left: auto !important;
}

/* Left help sidebar */
body.shop-premium .sp-panel {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
}
body.shop-premium .sp-panel-help { padding: 22px 18px; }
body.shop-premium .sp-help-header { margin-bottom: 18px; }
body.shop-premium .sp-help-header h4 {
    font-family: var(--font-display);
    font-size: 1.25rem;
    color: var(--navy);
    margin: 0 0 6px;
    font-weight: 500;
}
body.shop-premium .sp-help-header p {
    margin: 0;
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.45;
}
body.shop-premium .sp-help-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 14px;
    margin-bottom: 10px;
    border-radius: var(--radius-md);
    border: 1px solid var(--border-light);
    background: var(--surface);
    transition: all var(--transition);
    text-decoration: none !important;
}
body.shop-premium .sp-help-link:hover {
    border-color: var(--navy-mid);
    background: var(--white);
    box-shadow: var(--shadow-xs);
}
body.shop-premium .sp-help-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--navy-mid), var(--navy));
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.15rem;
}
body.shop-premium .sp-help-icon-wa {
    background: #25d366;
    padding: 0;
}
body.shop-premium .sp-help-icon-wa i {
    font-size: 1.35rem;
    color: var(--white);
    line-height: 1;
}
body.shop-premium .sp-help-text { min-width: 0; }
body.shop-premium .sp-help-label {
    display: block;
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--text-muted);
}
body.shop-premium .sp-help-value {
    display: block;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--navy);
}
body.shop-premium .sp-help-link.sp-help-phone .sp-help-value,
body.shop-premium .sp-help-link.sp-help-whatsapp .sp-help-value {
    color: var(--navy) !important;
}
body.shop-premium .sp-panel-help .phone { margin: 0; }
body.shop-premium .sp-panel-badges {
    padding: 18px 16px;
    margin-top: 14px;
}
body.shop-premium .sp-badge-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
    align-items: stretch;
}
body.shop-premium .sp-badge-grid img {
    width: 100%;
    height: auto;
    min-height: 72px;
    max-height: 110px;
    object-fit: contain;
    object-position: center;
    border-radius: var(--radius-md);
    background: var(--surface);
    padding: 10px 12px;
    border: 1px solid var(--border-light);
}
body.shop-premium .sp-panel-help-mobile { display: none !important; }
body.shop-premium .bhours .title {
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-muted);
    margin-bottom: 10px;
}
body.shop-premium .opening-hours li {
    font-size: 0.8rem;
    color: var(--text);
    padding: 6px 0;
    border-bottom: 1px solid var(--border-light);
    display: flex;
    justify-content: space-between;
    gap: 8px;
}
body.shop-premium #cat_nav { padding: 8px; }
body.shop-premium #cat_nav li { margin-bottom: 2px; }
body.shop-premium #cat_nav li a {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    padding: 11px 14px !important;
    border-radius: var(--radius-sm) !important;
    font-size: 0.85rem !important;
    font-weight: 500 !important;
    color: var(--text) !important;
    transition: all var(--transition) !important;
    border: 1px solid transparent !important;
}
body.shop-premium #cat_nav li a:hover,
body.shop-premium #cat_nav li a.active {
    background: var(--navy-mid) !important;
    color: var(--white) !important;
}
body.shop-premium #cat_nav li a span {
    font-size: 0.7rem !important;
    font-weight: 700 !important;
    background: var(--gold-pale) !important;
    color: var(--navy) !important;
    padding: 2px 8px !important;
    border-radius: var(--radius-pill) !important;
}
body.shop-premium #cat_nav li a.active span,
body.shop-premium #cat_nav li a:hover span {
    background: rgba(255,255,255,0.2) !important;
    color: var(--gold-bright) !important;
}

/* Catalog */
body.shop-premium .catalog-panel,
body.shop-premium #main_menu {
    background: var(--card) !important;
    border: 1px solid var(--border) !important;
    border-radius: var(--radius-lg) !important;
    box-shadow: var(--shadow-sm) !important;
    padding: 22px !important;
}
@media (min-width: 992px) {
    body.shop-premium .catalog-panel,
    body.shop-premium #main_menu {
        padding: 18px 20px !important;
    }
}
body.shop-premium #menu_title,
body.shop-premium #menumenu {
    font-family: var(--font-display) !important;
    font-size: clamp(1.5rem, 3vw, 2rem) !important;
    font-weight: 500 !important;
    color: var(--navy) !important;
    margin: 0 0 8px !important;
    padding: 0 !important;
    border: none !important;
    position: static !important;
}
body.shop-premium #menu_title::after {
    content: '';
    display: block;
    width: 48px; height: 3px;
    background: linear-gradient(90deg, var(--gold-bright), var(--gold));
    border-radius: 2px;
    margin-top: 12px;
}
body.shop-premium .designiationf {
    font-family: var(--font-display) !important;
    font-size: clamp(1.2rem, 2.5vw, 1.5rem) !important;
    font-weight: 500 !important;
    color: var(--navy) !important;
    margin: 40px 0 8px !important;
    padding-bottom: 10px !important;
    border-bottom: 1px solid var(--border) !important;
}
body.shop-premium .designiationf:first-of-type { margin-top: 24px !important; }
/* Category description */
body.shop-premium .sp-cat-desc-wrap {
    margin: 0 0 22px !important;
    padding: 14px 16px;
    background: linear-gradient(135deg, var(--gold-pale), rgba(255,255,255,0.9));
    border: 1px solid rgba(212,168,83,0.22);
    border-left: 4px solid var(--gold-bright);
    border-radius: var(--radius-md);
}
body.shop-premium .sp-cat-desc,
body.shop-premium [id^="des_"] {
    color: var(--text) !important;
    font-size: 0.88rem !important;
    line-height: 1.7 !important;
    margin: 0 !important;
}

/* Product grid */
body.shop-premium .col-md-6 {
    width: 100% !important;
    max-width: 100% !important;
    flex: 1 1 auto !important;
    padding: 0 !important;
    float: none !important;
}
body.shop-premium .container_fluid[id^="prod_"] {
    display: grid !important;
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)) !important;
    gap: 12px !important;
    width: 100% !important;
    padding: 0 !important;
    align-items: start !important;
}

/* Product card */
body.shop-premium .sp-product-card,
body.shop-premium .gwa-product-card,
body.shop-premium .row_striped {
    background: var(--card) !important;
    border: 1px solid var(--border) !important;
    border-radius: var(--radius-lg) !important;
    overflow: hidden !important;
    margin: 0 !important;
    padding: 0 !important;
    display: flex !important;
    flex-direction: column !important;
    height: 100% !important;
    box-shadow: var(--shadow-xs) !important;
    transition: transform var(--transition), box-shadow var(--transition) !important;
    float: none !important;
}
body.shop-premium .sp-product-card:hover,
body.shop-premium .gwa-product-card:hover {
    box-shadow: var(--shadow-md) !important;
    border-color: var(--navy-mid) !important;
}
body.shop-premium .col_img {
    width: 100% !important;
    max-width: 100% !important;
    padding: 0 !important;
    float: none !important;
}
body.shop-premium .thumb_menu_list {
    margin: 0 !important;
    border: none !important;
    border-radius: 0 !important;
    aspect-ratio: 5/4;
    background: var(--surface-2);
    overflow: hidden;
}
body.shop-premium .thumb_menu_list img,
body.shop-premium #imagepro {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    transition: transform 0.5s var(--ease);
}
body.shop-premium .sp-product-card:hover img { transform: scale(1.05); }
body.shop-premium #thumb_menu:hover { transform: none !important; }

body.shop-premium .product-card-body,
body.shop-premium [id^="leftall_"] {
    flex: 1 !important;
    display: flex !important;
    flex-direction: column !important;
    padding: 10px 12px 0 !important;
    width: 100% !important;
    float: none !important;
}
body.shop-premium .product-card-info {
    width: 100% !important;
    padding: 0 !important;
    overflow: visible !important;
    flex: 1 1 auto !important;
    min-height: 0;
}
body.shop-premium .sp-product-title-row {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-bottom: 6px;
}
body.shop-premium .item2,
body.shop-premium [id^="item2_"] {
    font-family: var(--font-body) !important;
    font-size: 0.78rem !important;
    font-weight: 600 !important;
    color: var(--navy) !important;
    line-height: 1.35 !important;
    margin: 0 !important;
    text-transform: none !important;
}
body.shop-premium .sp-product-label {
    display: inline-flex;
    align-self: flex-start;
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--navy-mid);
    background: var(--gold-pale);
    border: 1px solid rgba(212,168,83,0.3);
    padding: 2px 8px;
    border-radius: var(--radius-pill);
    line-height: 1.4;
}
/* Product card description — full text visible */
body.shop-premium .sp-product-desc {
    margin-top: 0;
    padding: 8px 10px;
    background: var(--surface);
    border: 1px solid var(--border-light);
    border-left: 3px solid var(--gold-bright);
    border-radius: var(--radius-sm);
    font-size: 0.68rem !important;
    line-height: 1.55 !important;
    color: var(--text-muted) !important;
    overflow: visible;
    display: block;
    word-break: break-word;
    white-space: normal;
    max-height: none;
}
body.shop-premium .sp-product-desc p {
    margin: 0 0 4px !important;
    font-size: inherit !important;
    line-height: inherit !important;
    color: inherit !important;
    font-style: normal !important;
    width: auto !important;
    max-width: 100% !important;
}
body.shop-premium .sp-product-desc p:last-child { margin-bottom: 0 !important; }
body.shop-premium .sp-product-desc br {
    display: block;
    content: '';
    margin-bottom: 3px;
}
body.shop-premium .sp-product-desc b,
body.shop-premium .sp-product-desc strong {
    color: var(--navy) !important;
    font-weight: 600 !important;
}
body.shop-premium .sp-product-desc ul,
body.shop-premium .sp-product-desc ol {
    margin: 4px 0 0 !important;
    padding-left: 16px !important;
    font-size: inherit !important;
}
body.shop-premium .sp-product-desc li {
    margin-bottom: 2px;
}
body.shop-premium #product_description,
body.shop-premium [id^="product_desc_"] {
    width: 100% !important;
    max-width: 100% !important;
    float: none !important;
}
body.shop-premium .product-card-footer,
body.shop-premium [id^="rightall_"] {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 8px !important;
    padding: 10px 12px 12px !important;
    margin-top: auto !important;
    border-top: 1px solid var(--border-light) !important;
    width: 100% !important;
    float: none !important;
    min-width: 0 !important;
}
body.shop-premium .product-card-footer [id^="prixcenter_"],
body.shop-premium .product-card-footer [id^="prixpro_"],
body.shop-premium [id^="rightall_"] [id^="prixcenter_"] {
    min-width: 0 !important;
    flex: 1 1 auto !important;
}
body.shop-premium [id^="picformul_"] {
    flex-shrink: 0 !important;
    position: static !important;
    top: auto !important;
    left: auto !important;
    right: auto !important;
}
body.shop-premium [id^="prixcenter_"] strong,
body.shop-premium [id^="prixpro_"] strong {
    font-size: 0.82rem !important;
    font-weight: 700 !important;
    color: var(--navy) !important;
    background: var(--gold-pale) !important;
    padding: 5px 10px !important;
    border-radius: 6px !important;
    display: inline-block !important;
    font-family: var(--font-body) !important;
    max-width: 100%;
    box-sizing: border-box;
    white-space: nowrap !important;
    line-height: 1.25 !important;
    border: 1px solid rgba(212, 168, 83, 0.35);
}
body.shop-premium [id^="prixcenter_"],
body.shop-premium [id^="prixpro_"] {
    padding: 0 !important;
    background: transparent !important;
}
@media (min-width: 769px) {
    body.shop-premium .product-card-footer,
    body.shop-premium [id^="rightall_"] {
        flex-direction: row !important;
        align-items: center !important;
        justify-content: space-between !important;
    }
    body.shop-premium .product-card-footer [id^="prixcenter_"],
    body.shop-premium .product-card-footer [id^="prixpro_"],
    body.shop-premium [id^="rightall_"] [id^="prixcenter_"] {
        flex: 0 1 auto !important;
        width: auto !important;
    }
    body.shop-premium .product-card-footer [id^="prixcenter_"] strong,
    body.shop-premium .product-card-footer [id^="prixpro_"] strong,
    body.shop-premium [id^="rightall_"] [id^="prixcenter_"] strong,
    body.shop-premium [id^="prixpro_"] strong {
        font-size: 0.92rem !important;
        border-radius: 6px !important;
        padding: 7px 12px !important;
        white-space: nowrap !important;
        display: inline-block !important;
        width: auto !important;
        max-width: none !important;
        text-align: left !important;
    }
    body.shop-premium [id^="prixcenter_"],
    body.shop-premium [id^="prixpro_"] {
        padding: 0 !important;
        background: transparent !important;
        font-size: inherit !important;
    }
}
body.shop-premium .product-card-footer .sp-btn-add,
body.shop-premium [id^="rightall_"] .sp-btn-add,
body.shop-premium [id^="picformul_"] .sp-btn-add {
    position: static !important;
    top: auto !important;
    right: auto !important;
    left: auto !important;
    margin: 0 !important;
    flex-shrink: 0 !important;
    background: linear-gradient(145deg, var(--navy-mid), var(--navy)) !important;
    box-shadow: 0 3px 12px rgba(12, 50, 96, 0.28) !important;
}
body.shop-premium .product-card-footer .sp-btn-add.blob,
body.shop-premium [id^="rightall_"] .sp-btn-add.blob,
body.shop-premium [id^="picformul_"] .sp-btn-add.blob {
    margin: 0 !important;
}
@media (min-width: 992px) {
    body.shop-premium .sp-btn-add {
        width: 36px !important;
        height: 36px !important;
        min-width: 36px !important;
    }
    body.shop-premium .sp-btn-add::before { font-size: 1.2rem !important; }
    body.shop-premium .sp-product-card,
    body.shop-premium .gwa-product-card {
        border-radius: var(--radius-md) !important;
    }
}

/* ── Cart sidebar ── */
body.shop-premium #sidebar { min-width: 0; }
body.shop-premium #cart_box,
body.shop-premium .sp-cart-panel {
    background: var(--card) !important;
    border: 1px solid var(--border) !important;
    border-radius: var(--radius-xl) !important;
    box-shadow: var(--shadow-md) !important;
    overflow: hidden !important;
    position: sticky !important;
    top: calc(var(--header-h) + var(--nav-h) + 16px) !important;
    display: flex !important;
    flex-direction: column !important;
}
body.shop-premium .sp-cart-inner {
    display: flex;
    flex-direction: column;
    flex: 1;
    min-height: 0;
    position: relative;
}
body.shop-premium #my-popup-mask2,
body.shop-premium #my-popup-mask3 { display: none !important; }
body.shop-premium #cart_box.is-loading #my-popup-mask2 { display: flex !important; }
body.shop-premium .sp-cart-loader {
    position: absolute !important;
    inset: 0 !important;
    z-index: 30 !important;
    background: rgba(255, 255, 255, 0.92) !important;
    align-items: center !important;
    justify-content: center !important;
    backdrop-filter: blur(4px);
}
body.shop-premium .sp-cart-loader-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    font-size: 0.82rem;
    color: var(--text-muted);
}
body.shop-premium .sp-cart-loader-spin {
    width: 30px;
    height: 30px;
    border: 2px solid var(--border);
    border-top-color: var(--navy-mid);
    border-radius: 50%;
    animation: sp-spin 0.75s linear infinite;
}

/* Header */
body.shop-premium .sp-cart-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 18px 20px;
    background: linear-gradient(135deg, var(--navy), var(--navy-mid));
    color: var(--white);
    flex-shrink: 0;
}
body.shop-premium .sp-cart-title {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.02em;
}
body.shop-premium .sp-cart-title .icon_cart_alt {
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.14);
    border-radius: 50%;
    color: var(--gold-bright);
    font-size: 1.15rem;
}
body.shop-premium .sp-cart-header-actions {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}
body.shop-premium .sp-cart-clear-all {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    border: 1px solid rgba(255,255,255,0.25);
    background: rgba(255,255,255,0.08);
    color: var(--white);
    font-size: 0.72rem;
    font-weight: 600;
    padding: 6px 10px;
    border-radius: var(--radius-pill);
    cursor: pointer;
    transition: background var(--transition), border-color var(--transition);
}
body.shop-premium .sp-cart-clear-all:hover {
    background: rgba(220,53,69,0.25);
    border-color: rgba(255,255,255,0.4);
}
body.shop-premium .sp-cart-clear-all i {
    font-size: 0.85rem;
}
body.shop-premium .sp-cart-count {
    min-width: 30px;
    height: 30px;
    line-height: 30px;
    text-align: center;
    padding: 0 10px;
    background: var(--gold-bright);
    color: var(--navy);
    font-size: 0.78rem;
    font-weight: 700;
    border-radius: var(--radius-pill);
    box-shadow: 0 2px 8px rgba(242,196,19,0.35);
}

/* Alert */
body.shop-premium .sp-cart-alert,
body.shop-premium .montant_liv {
    margin: 12px 16px 0 !important;
    padding: 12px 14px !important;
    border-radius: var(--radius-md) !important;
    background: var(--gold-pale) !important;
    border: 1px solid rgba(212,168,83,0.35) !important;
}
body.shop-premium .sp-cart-alert p,
body.shop-premium .montant_liv p {
    margin: 0 !important;
    font-family: var(--font-body) !important;
    font-size: 0.78rem !important;
    line-height: 1.5 !important;
    color: var(--navy) !important;
    text-align: center !important;
}

/* Items list */
body.shop-premium .sp-cart-items,
body.shop-premium #cart {
    display: flex !important;
    flex-direction: column !important;
    gap: 10px !important;
    padding: 14px 16px !important;
    max-height: min(52vh, 420px) !important;
    overflow-y: auto !important;
    overflow-x: hidden !important;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    scrollbar-color: var(--border) transparent;
}
body.shop-premium .sp-cart-items::-webkit-scrollbar { width: 5px; }
body.shop-premium .sp-cart-items::-webkit-scrollbar-thumb {
    background: var(--border);
    border-radius: 10px;
}

/* Single item */
body.shop-premium .sp-cart-item {
    position: relative;
    background: var(--surface);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    padding: 10px 32px 10px 10px;
    transition: border-color var(--transition), box-shadow var(--transition);
}
body.shop-premium .sp-cart-item:hover {
    border-color: rgba(16,92,170,0.2);
    box-shadow: var(--shadow-xs);
}
body.shop-premium .sp-cart-item-remove {
    position: absolute;
    top: 8px;
    right: 8px;
    width: 24px;
    height: 24px;
    border: none;
    border-radius: 50%;
    background: rgba(220,53,69,0.1);
    color: var(--danger);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    padding: 0;
    font-size: 0.75rem;
    line-height: 1;
    transition: background var(--transition), transform var(--transition);
    z-index: 2;
}
body.shop-premium .sp-cart-item-remove:hover {
    background: rgba(220,53,69,0.2);
    transform: scale(1.08);
}
body.shop-premium .sp-cart-remove {
    position: absolute;
    top: 8px;
    left: 8px;
    width: 26px;
    height: 26px;
    border: none;
    border-radius: 50%;
    background: rgba(220,53,69,0.1);
    color: var(--danger);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    padding: 0;
    transition: background var(--transition), transform var(--transition);
}
body.shop-premium .sp-cart-remove:hover {
    background: rgba(220,53,69,0.18);
    transform: scale(1.05);
}
body.shop-premium .sp-cart-remove i { font-size: 0.75rem; }
body.shop-premium .sp-cart-item-main {
    display: grid;
    grid-template-columns: 52px 1fr auto;
    gap: 10px;
    align-items: center;
}
body.shop-premium .sp-cart-item-media {
    position: relative;
    width: 52px;
    height: 52px;
    border-radius: var(--radius-sm);
    overflow: hidden;
    background: var(--white);
    border: 1px solid var(--border-light);
    flex-shrink: 0;
}
body.shop-premium .sp-cart-item-media img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    border-radius: 0 !important;
    float: none !important;
    margin: 0 !important;
}
body.shop-premium .sp-cart-qty {
    position: absolute;
    bottom: -4px;
    right: -4px;
    min-width: 22px;
    height: 22px;
    line-height: 22px;
    padding: 0 5px;
    font-size: 0.62rem;
    font-weight: 700;
    text-align: center;
    background: var(--navy);
    color: var(--white);
    border-radius: var(--radius-pill);
    border: 2px solid var(--white);
}
body.shop-premium .sp-cart-item-details {
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 3px;
}
body.shop-premium .sp-cart-item-name {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--navy);
    line-height: 1.35;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    word-break: break-word;
}
body.shop-premium .sp-cart-item-name.is_formule {
    cursor: pointer;
    color: var(--navy-mid);
    text-decoration: underline;
    text-underline-offset: 2px;
}
body.shop-premium .sp-cart-item-label {
    font-size: 0.68rem;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.03em;
}
body.shop-premium .sp-cart-item-cat {
    display: inline-flex;
    align-self: flex-start;
    font-size: 0.62rem;
    font-weight: 600;
    color: var(--navy-mid);
    background: var(--gold-pale);
    padding: 2px 8px;
    border-radius: var(--radius-pill);
}
body.shop-premium .sp-cart-item-price {
    text-align: right;
    flex-shrink: 0;
    align-self: center;
}
body.shop-premium .sp-cart-item-price strong {
    font-family: var(--font-body) !important;
    font-size: 0.82rem !important;
    font-weight: 700 !important;
    color: var(--navy) !important;
    white-space: nowrap;
    background: var(--gold-pale);
    padding: 5px 10px;
    border-radius: var(--radius-pill);
    float: none !important;
}

/* Empty state */
body.shop-premium .sp-cart-empty,
body.shop-premium #panier_vide {
    text-align: center !important;
    padding: 36px 20px !important;
    background: var(--surface) !important;
    border: 1px dashed var(--border) !important;
    border-radius: var(--radius-md) !important;
    margin: 0 !important;
}
body.shop-premium .sp-cart-empty-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 14px;
    border-radius: 50%;
    background: var(--gold-pale);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--navy-mid);
    font-size: 1.4rem;
}
body.shop-premium .sp-cart-empty-title {
    margin: 0 0 6px !important;
    font-size: 0.92rem !important;
    font-weight: 600 !important;
    color: var(--navy) !important;
}
body.shop-premium .sp-cart-empty-text {
    margin: 0 !important;
    font-size: 0.78rem !important;
    color: var(--text-muted) !important;
    line-height: 1.5 !important;
}

/* Footer: total + checkout */
body.shop-premium .sp-cart-footer {
    flex-shrink: 0;
    padding: 0 16px 16px;
    border-top: 1px solid var(--border-light);
    background: linear-gradient(180deg, var(--white) 0%, var(--surface) 100%);
}
body.shop-premium .sp-cart-total-row,
body.shop-premium #total {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 12px !important;
    margin: 14px 0 12px !important;
    padding: 14px 16px !important;
    background: var(--gold-pale) !important;
    border: 1px solid rgba(212,168,83,0.3) !important;
    border-radius: var(--radius-md) !important;
}
body.shop-premium .sp-cart-total-label {
    font-size: 0.82rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--navy);
}
body.shop-premium .sp-cart-total-amount,
body.shop-premium #totalcart {
    font-size: 1.1rem !important;
    font-weight: 700 !important;
    color: var(--navy) !important;
    font-family: var(--font-body) !important;
    white-space: nowrap;
}
body.shop-premium #checkoutall {
    padding: 0 !important;
    margin: 0 !important;
}
body.shop-premium .sp-cart-checkout-btn,
body.shop-premium #checkoutall .btn_full {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 10px !important;
    width: 100% !important;
    padding: 15px 20px !important;
    background: linear-gradient(135deg, var(--gold-bright), var(--gold)) !important;
    color: var(--navy) !important;
    border: none !important;
    border-radius: var(--radius-pill) !important;
    font-family: var(--font-body) !important;
    font-size: 0.88rem !important;
    font-weight: 700 !important;
    letter-spacing: 0.04em !important;
    text-transform: uppercase !important;
    box-shadow: 0 6px 20px rgba(212,168,83,0.4) !important;
    transition: transform var(--transition), box-shadow var(--transition) !important;
    text-decoration: none !important;
}
body.shop-premium .sp-cart-checkout-btn:hover,
body.shop-premium #checkoutall .btn_full:hover {
    transform: translateY(-1px);
    box-shadow: 0 10px 28px rgba(212,168,83,0.5) !important;
    color: var(--navy) !important;
}
body.shop-premium .sp-cart-checkout-btn i { font-size: 0.85rem; }

/* Legacy table overrides (if any remain) */
body.shop-premium .table_summary { display: none !important; }
body.shop-premium .remove_item { cursor: pointer; }

/* ── Modals ── */
body.shop-premium .modal-backdrop {
    background: var(--navy) !important;
    opacity: 0.55 !important;
    z-index: 1050 !important;
}
body.shop-premium .modal.sp-modal {
    z-index: 1060 !important;
}
body.shop-premium .sp-modal .modal-dialog {
    z-index: 1061 !important;
    margin: 30px auto !important;
    max-width: 520px !important;
}
body.shop-premium .sp-modal .modal-dialog,
body.shop-premium .gwa-modal .modal-dialog {
    max-width: 540px !important;
    width: calc(100% - 24px) !important;
    margin: 16px auto !important;
}
body.shop-premium .sp-modal .modal-content,
body.shop-premium .gwa-modal .modal-content {
    border: none !important;
    border-radius: var(--radius-xl) !important;
    box-shadow: var(--shadow-lg) !important;
    overflow: hidden !important;
    display: flex !important;
    flex-direction: column !important;
    max-height: calc(100dvh - 32px) !important;
    position: relative !important;
}
body.shop-premium .sp-modal .modal-title,
body.shop-premium .gwa-modal .modal-title {
    font-family: var(--font-display) !important;
    font-size: 1.15rem !important;
    font-weight: 500 !important;
    color: var(--white) !important;
    background: linear-gradient(135deg, var(--navy), var(--navy-mid)) !important;
    padding: 20px 56px 20px 22px !important;
    margin: 0 !important;
    text-align: left !important;
    line-height: 1.35 !important;
    border: none !important;
}
body.shop-premium .sp-modal #closebtn,
body.shop-premium .gwa-modal #closebtn {
    position: absolute !important;
    top: 16px !important; right: 16px !important;
    z-index: 10 !important;
    width: 36px !important; height: 36px !important;
    background: rgba(255,255,255,0.15) !important;
    border: none !important;
    border-radius: 50% !important;
    color: var(--white) !important;
    font-size: 1.4rem !important;
    line-height: 1 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    opacity: 1 !important;
    padding: 0 !important;
    transition: background var(--transition);
}
body.shop-premium .gwa-modal #closebtn:hover { background: rgba(255,255,255,0.28) !important; }
body.shop-premium .sp-modal .modal-body,
body.shop-premium .gwa-modal .modal-body {
    overflow-y: auto !important;
    flex: 1 !important;
    padding: 20px 22px 24px !important;
    -webkit-overflow-scrolling: touch;
}
body.shop-premium .gwa-modal .alert-info {
    background: rgba(16,92,170,0.06) !important;
    border: 1px solid rgba(16,92,170,0.12) !important;
    color: var(--navy-mid) !important;
    border-radius: var(--radius-md) !important;
    font-size: 0.85rem !important;
    padding: 14px 16px !important;
}
body.shop-premium .gwa-modal .alert-danger {
    border-radius: var(--radius-md) !important;
    font-size: 0.85rem !important;
}
body.shop-premium .gwa-modal .formule_details {
    margin-bottom: 24px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border-light);
}
body.shop-premium .gwa-modal .supplement,
body.shop-premium .gwa-modal .supplement2 {
    font-family: var(--font-body) !important;
    font-size: 0.95rem !important;
    font-weight: 600 !important;
    color: var(--navy) !important;
    margin: 0 !important;
}
body.shop-premium .gwa-modal .nbchoix,
body.shop-premium .gwa-modal .nbchoix2,
body.shop-premium .gwa-modal .choixx,
body.shop-premium .gwa-modal .span0 {
    font-family: var(--font-body) !important;
    font-size: 0.78rem !important;
    color: var(--text-muted) !important;
    position: static !important;
}
body.shop-premium .gwa-modal .choix1,
body.shop-premium .gwa-modal .choix {
    display: flex !important;
    flex-wrap: wrap !important;
    align-items: baseline !important;
    gap: 4px;
    margin-bottom: 14px;
}
body.shop-premium .gwa-modal .modal-body label {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    flex-wrap: wrap !important;
    gap: 10px;
    width: 100% !important;
    padding: 14px 16px !important;
    margin: 0 0 8px !important;
    background: var(--surface) !important;
    border: 1.5px solid var(--border) !important;
    border-radius: var(--radius-md) !important;
    cursor: pointer !important;
    transition: all var(--transition) !important;
    font-weight: normal !important;
}
body.shop-premium .gwa-modal .modal-body label:hover {
    border-color: var(--navy-mid) !important;
    background: rgba(16,92,170,0.03) !important;
}
body.shop-premium .gwa-modal .modal-body label:has(input:checked) {
    border-color: var(--navy-mid) !important;
    background: rgba(16,92,170,0.06) !important;
    box-shadow: 0 0 0 3px rgba(16,92,170,0.08);
}
body.shop-premium .gwa-modal .radiospan1,
body.shop-premium .gwa-modal .checkboxspan1 {
    font-size: 0.875rem !important;
    color: var(--text) !important;
    font-family: var(--font-body) !important;
    flex: 1;
    position: static !important;
}
body.shop-premium .gwa-modal .radiospan2,
body.shop-premium .gwa-modal .checkboxspan2 {
    position: static !important;
    font-size: 0.8rem !important;
    font-weight: 700 !important;
    color: var(--navy) !important;
    background: var(--gold-pale) !important;
    padding: 4px 12px !important;
    border-radius: var(--radius-pill) !important;
    font-family: var(--font-body) !important;
}
body.shop-premium .gwa-modal input[type="radio"],
body.shop-premium .gwa-modal input[type="checkbox"] {
    width: 18px !important; height: 18px !important;
    margin: 0 10px 0 0 !important;
    accent-color: var(--navy-mid);
    flex-shrink: 0;
}

/* ── Product detail popup (normal products) ── */
body.shop-premium .mfp-bg {
    background: rgba(12, 50, 96, 0.65) !important;
    opacity: 1 !important;
}
body.shop-premium .mfp-wrap { z-index: 10050 !important; }
body.shop-premium .mfp-container { padding: 16px !important; }
body.shop-premium .mfp-content {
    height: auto !important;
    max-height: calc(100dvh - 32px);
    vertical-align: middle;
}

body.shop-premium .sp-product-popup,
body.shop-premium .white-popup {
    position: relative !important;
    max-width: 820px !important;
    width: 100% !important;
    border-radius: var(--radius-xl) !important;
    overflow: hidden !important;
    box-shadow: var(--shadow-lg) !important;
    padding: 0 !important;
    margin: 0 auto !important;
    background: var(--white) !important;
    float: none !important;
    height: auto !important;
    text-align: left !important;
}

/* Loader */
body.shop-premium .sp-popup-loader,
body.shop-premium #my-popup-mask {
    display: none;
    position: absolute !important;
    inset: 0 !important;
    z-index: 25 !important;
    background: rgba(255,255,255,0.92) !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 0 !important;
    width: 100% !important;
    height: 100% !important;
}
body.shop-premium .sp-product-popup:has(#my-popup-mask[style*="display: block"]) .sp-popup-loader,
body.shop-premium #my-popup-mask:not([style*="display: none"]) {
    display: flex !important;
}
body.shop-premium .sp-popup-loader-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    font-size: 0.85rem;
    color: var(--text-muted);
}
body.shop-premium .sp-popup-loader-spin {
    width: 36px;
    height: 36px;
    border: 2px solid var(--border);
    border-top-color: var(--navy-mid);
    border-radius: 50%;
    animation: sp-spin 0.75s linear infinite;
}

/* Close button — on image side only (won't cover price) */
body.shop-premium .sp-popup-media {
    position: relative !important;
}
body.shop-premium .sp-popup-close,
body.shop-premium .sp-popup-media .mfp-close {
    position: absolute !important;
    top: 12px !important;
    right: 12px !important;
    width: 38px !important;
    height: 38px !important;
    line-height: 36px !important;
    border-radius: 50% !important;
    background: rgba(12, 50, 96, 0.75) !important;
    color: var(--white) !important;
    opacity: 1 !important;
    font-size: 1.4rem !important;
    box-shadow: var(--shadow-sm) !important;
    z-index: 10 !important;
    border: 2px solid rgba(255,255,255,0.35) !important;
    transition: background var(--transition), transform var(--transition) !important;
}
body.shop-premium .sp-popup-close:hover {
    background: var(--navy) !important;
    transform: scale(1.05);
}

/* Layout — side-by-side; image fills left column height (no gap below photo) */
body.shop-premium .sp-popup-wrapper,
body.shop-premium .white-popup .wrapper {
    display: grid !important;
    grid-template-columns: minmax(260px, 380px) minmax(0, 1fr) !important;
    grid-template-rows: 1fr !important;
    align-items: stretch !important;
    width: 100% !important;
    height: auto !important;
    min-height: 0 !important;
    float: none !important;
    border-radius: 0 !important;
}
body.shop-premium .sp-popup-media,
body.shop-premium .white-popup .product-img {
    grid-column: 1;
    grid-row: 1;
    width: 100% !important;
    max-width: 380px !important;
    min-height: 0 !important;
    max-height: none !important;
    height: 100% !important;
    min-height: 100% !important;
    background: var(--surface-2) !important;
    display: block !important;
    overflow: hidden !important;
    line-height: 0 !important;
    font-size: 0 !important;
    align-self: stretch !important;
    justify-self: stretch !important;
    position: relative !important;
    flex: none !important;
}
body.shop-premium #my-popup-image {
    position: absolute !important;
    inset: 0 !important;
    width: 100% !important;
    height: 100% !important;
    max-height: none !important;
    display: block !important;
    line-height: 0;
    margin: 0;
    padding: 0;
}
body.shop-premium .white-popup #imgproduct,
body.shop-premium #my-popup-image img {
    width: 100% !important;
    height: 100% !important;
    max-height: none !important;
    min-height: 0 !important;
    object-fit: cover !important;
    object-position: top center !important;
    display: block !important;
    margin: 0 !important;
    padding: 0 !important;
    border-radius: 0 !important;
    vertical-align: top !important;
}

body.shop-premium .sp-popup-content,
body.shop-premium .white-popup .product-info {
    grid-column: 2;
    grid-row: 1;
    width: auto !important;
    min-width: 0 !important;
    padding: 22px 22px 20px !important;
    text-align: left !important;
    height: auto !important;
    max-height: none !important;
    background: var(--white) !important;
    float: none !important;
    display: flex !important;
    flex-direction: column !important;
    border-radius: 0 !important;
    align-self: stretch !important;
    flex: none !important;
}
body.shop-premium .sp-popup-body,
body.shop-premium .white-popup .product-text {
    width: 100% !important;
    height: auto !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 12px;
}

@media (min-width: 901px) {
    body.shop-premium .sp-popup-content,
    body.shop-premium .white-popup .product-info {
        min-height: 0 !important;
    }
}

@media (max-width: 900px) {
    body.shop-premium .sp-popup-wrapper,
    body.shop-premium .white-popup .wrapper {
        display: flex !important;
        flex-direction: column !important;
        align-items: stretch !important;
        grid-template-columns: none !important;
    }
    body.shop-premium .sp-popup-media,
    body.shop-premium .white-popup .product-img {
        grid-column: auto;
        grid-row: auto;
        flex: 0 0 auto !important;
        width: 100% !important;
        max-width: 100% !important;
        max-height: 38vh !important;
        height: auto !important;
        min-height: 0 !important;
        aspect-ratio: 4 / 3;
        align-self: auto !important;
        position: relative !important;
    }
    body.shop-premium .sp-popup-content,
    body.shop-premium .white-popup .product-info {
        grid-column: auto;
        grid-row: auto;
        width: 100% !important;
        padding: 20px 18px 22px !important;
    }
    body.shop-premium #my-popup-image {
        position: relative !important;
        inset: auto !important;
        width: 100% !important;
        height: 100% !important;
    }
    body.shop-premium .white-popup #imgproduct,
    body.shop-premium #my-popup-image img {
        width: 100% !important;
        height: 100% !important;
        max-height: 100% !important;
        object-fit: cover !important;
        object-position: center center !important;
    }
}

/* Meta: label + price */
body.shop-premium .sp-popup-meta {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 12px;
    flex-wrap: wrap;
    padding-right: 0;
}
body.shop-premium .sp-popup-label {
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--navy-mid);
    background: var(--gold-pale);
    border: 1px solid rgba(212,168,83,0.3);
    padding: 4px 12px;
    border-radius: var(--radius-pill);
}
body.shop-premium .sp-popup-label:empty { display: none !important; }
body.shop-premium .sp-popup-price {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--navy);
    background: var(--gold-pale);
    padding: 6px 14px;
    border-radius: var(--radius-pill);
    border: 1px solid rgba(212,168,83,0.25);
    margin-left: auto;
}
body.shop-premium .sp-popup-price:empty { display: none !important; }

/* Title */
body.shop-premium .white-popup #h3,
body.shop-premium .white-popup .product-text h3,
body.shop-premium #my-popup-title h3 {
    font-family: var(--font-display) !important;
    font-size: clamp(1.15rem, 2.5vw, 1.45rem) !important;
    font-weight: 500 !important;
    color: var(--navy) !important;
    margin: 0 !important;
    line-height: 1.3 !important;
    padding: 0 !important;
}

/* Description */
body.shop-premium .sp-popup-desc,
body.shop-premium .white-popup #my-popup-description {
    margin: 0 !important;
    text-align: left !important;
}
body.shop-premium .sp-popup-desc-body {
    padding: 14px 16px;
    background: var(--surface);
    border: 1px solid var(--border-light);
    border-left: 4px solid var(--gold-bright);
    border-radius: var(--radius-md);
    font-size: 0.86rem !important;
    color: var(--text) !important;
    line-height: 1.7 !important;
    max-height: none;
    overflow: visible;
}
body.shop-premium .sp-popup-desc-body:empty { display: none; }
body.shop-premium .sp-popup-desc-body p {
    margin: 0 0 8px !important;
    font-size: inherit !important;
    color: inherit !important;
    height: auto !important;
    overflow: visible !important;
}
body.shop-premium .sp-popup-desc-body p:last-child { margin-bottom: 0 !important; }
body.shop-premium .sp-popup-desc-body b,
body.shop-premium .sp-popup-desc-body strong {
    color: var(--navy) !important;
    font-weight: 600 !important;
}
body.shop-premium .sp-popup-desc-body br { display: block; margin-bottom: 6px; }
body.shop-premium .sp-popup-desc-body ul,
body.shop-premium .sp-popup-desc-body ol {
    margin: 8px 0 !important;
    padding-left: 20px !important;
}
body.shop-premium .sp-popup-desc-body li { margin-bottom: 4px; }

/* Size selector */
body.shop-premium .sp-popup-options {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 14px 16px;
    background: var(--surface);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
}
body.shop-premium .sp-popup-size-label:empty { display: none !important; }
body.shop-premium .sp-popup-size-title {
    display: block;
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--navy);
    margin: 0;
}
body.shop-premium .sp-popup-select,
body.shop-premium .decselect {
    width: 100% !important;
    height: 48px !important;
    margin: 0 !important;
    padding: 0 16px !important;
    font-family: var(--font-body) !important;
    font-size: 0.88rem !important;
    color: var(--navy) !important;
    background: var(--white) !important;
    border: 1.5px solid var(--border) !important;
    border-radius: var(--radius-md) !important;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23105caa' d='M6 8L0 0h12z'/%3E%3C/svg%3E") !important;
    background-repeat: no-repeat !important;
    background-position: right 14px center !important;
    cursor: pointer;
    transition: border-color var(--transition), box-shadow var(--transition);
}
body.shop-premium .sp-popup-select:focus,
body.shop-premium .decselect:focus {
    outline: none;
    border-color: var(--navy-mid) !important;
    box-shadow: 0 0 0 3px rgba(16,92,170,0.12) !important;
}

/* Add to cart actions */
body.shop-premium .sp-popup-actions,
body.shop-premium #injectDeclin {
    display: flex !important;
    flex-direction: column !important;
    gap: 10px !important;
    margin-top: auto !important;
    padding-top: 6px !important;
    width: 100% !important;
}
body.shop-premium .sp-popup-actions-inner {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 100%;
}
body.shop-premium .sp-popup-actions-row {
    display: flex;
    align-items: stretch;
    gap: 10px;
    width: 100%;
}
body.shop-premium .sp-popup-actions-row-formule {
    flex-wrap: wrap;
}
body.shop-premium .sp-popup-actions-row-formule .sp-popup-sizes-btn {
    flex: 0 0 auto;
    min-width: 100px;
}
body.shop-premium .sp-popup-actions-row-formule .sp-popup-add-btn-formule {
    flex: 1 1 auto;
    min-width: 0;
}
body.shop-premium .sp-popup-actions-row .sp-popup-add-btn,
body.shop-premium .sp-popup-actions-row .add-to-cart-button {
    flex: 1;
    min-width: 0;
}
body.shop-premium .sp-popup-sizes-btn {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 18px;
    min-width: 88px;
    background: #d20203;
    color: var(--white);
    border: none;
    border-radius: var(--radius-md);
    font-family: var(--font-body);
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    cursor: pointer;
    box-shadow: 0 4px 16px rgba(196, 16, 24, 0.35);
    transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
}
body.shop-premium .sp-popup-sizes-btn:hover {
    transform: translateY(-1px);
    background: #b00102;
    box-shadow: 0 8px 22px rgba(196, 16, 24, 0.45);
    color: var(--white);
}

/* Size guide overlay (table-size.png) */
body.shop-premium .sp-size-guide,
body.shop-premium #popup.sp-size-guide {
    display: none;
    position: fixed !important;
    inset: 0 !important;
    z-index: 10100 !important;
    align-items: center;
    justify-content: center;
    padding: 20px !important;
    width: 100% !important;
    height: 100% !important;
    left: 0 !important;
    top: 0 !important;
    margin: 0 !important;
    background: transparent !important;
    border: none !important;
}
body.shop-premium .sp-size-guide-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(12, 50, 96, 0.7);
    backdrop-filter: blur(4px);
}
body.shop-premium .sp-size-guide-panel {
    position: relative;
    z-index: 2;
    width: min(520px, 100%);
    max-height: min(90vh, 640px);
    background: var(--white);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    padding: 20px 20px 16px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    overflow: hidden;
}
body.shop-premium .sp-size-guide-title {
    margin: 0;
    padding-right: 40px;
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 500;
    color: var(--navy);
}
body.shop-premium .sp-size-guide-close {
    position: absolute;
    top: 14px;
    right: 14px;
    width: 36px;
    height: 36px;
    border: none;
    border-radius: 50%;
    background: var(--surface);
    color: var(--navy);
    font-size: 1.4rem;
    line-height: 1;
    cursor: pointer;
    transition: background var(--transition);
}
body.shop-premium .sp-size-guide-close:hover {
    background: var(--gold-pale);
}
body.shop-premium .sp-size-guide-img-wrap {
    flex: 1;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    background: var(--surface);
    padding: 8px;
}
body.shop-premium .sp-size-guide-img-wrap img {
    width: 100% !important;
    height: auto !important;
    display: block;
    object-fit: contain;
}
body.shop-premium .sp-size-guide-done {
    width: 100%;
    padding: 12px 20px;
    background: linear-gradient(135deg, var(--gold-bright), var(--gold));
    color: var(--navy);
    border: none;
    border-radius: var(--radius-pill);
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    cursor: pointer;
}
body.shop-premium .sp-popup-add-btn,
body.shop-premium .add-to-cart-button {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 10px !important;
    width: 100% !important;
    min-width: 0 !important;
    margin: 0 !important;
    padding: 14px 20px !important;
    background: linear-gradient(135deg, var(--gold-bright), var(--gold)) !important;
    color: var(--navy) !important;
    border: none !important;
    border-radius: var(--radius-md) !important;
    font-family: var(--font-body) !important;
    font-size: 0.88rem !important;
    font-weight: 700 !important;
    letter-spacing: 0.04em !important;
    text-transform: uppercase !important;
    text-decoration: none !important;
    box-shadow: 0 6px 20px rgba(212,168,83,0.4) !important;
    cursor: pointer !important;
    transition: transform var(--transition), box-shadow var(--transition), background var(--transition) !important;
    position: relative !important;
    overflow: hidden !important;
}
body.shop-premium .sp-popup-add-btn:hover,
body.shop-premium .add-to-cart-button:hover {
    transform: translateY(-1px);
    box-shadow: 0 10px 28px rgba(212,168,83,0.5) !important;
    color: var(--navy) !important;
}
body.shop-premium .sp-popup-add-btn.added,
body.shop-premium .add-to-cart-button.added {
    background: linear-gradient(135deg, #2fbf30, #28a745) !important;
    color: var(--white) !important;
    box-shadow: 0 6px 20px rgba(40,167,69,0.35) !important;
}
body.shop-premium .sp-popup-add-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(12,50,96,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    flex-shrink: 0;
}
body.shop-premium .sp-popup-add-btn.added .sp-popup-add-icon {
    background: rgba(255,255,255,0.2);
}
body.shop-premium .add-to-cart { display: inline; }
body.shop-premium .added-to-cart {
    display: none;
    position: static !important;
    margin: 0 !important;
}
body.shop-premium .add-to-cart-button.added .add-to-cart { display: none; }
body.shop-premium .add-to-cart-button.added .added-to-cart { display: inline; }
body.shop-premium .sp-popup-add-btn-formule {
    background: linear-gradient(135deg, var(--navy-mid), var(--navy)) !important;
    color: var(--white) !important;
}
body.shop-premium .sp-popup-add-btn-formule .sp-popup-add-icon {
    background: rgba(255,255,255,0.15);
    color: var(--gold-bright);
}

body.shop-premium #labelDeclin:empty { display: none !important; }

/* Overlay */
body.shop-premium #overlay {
    background: rgba(12, 50, 96, 0.5) !important;
    z-index: 9998 !important;
}
body.shop-premium .spinner {
    border-color: var(--border) !important;
    border-top-color: var(--navy-mid) !important;
}

/* ── Site footer (matches first.blade.php) ── */
body.shop-premium .site-footer {
    background: var(--navy);
    color: var(--white);
    padding-top: 72px;
    margin-top: 0;
}
body.shop-premium .site-footer-container {
    width: 100%;
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 24px;
}
body.shop-premium .site-footer .footer-top {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 56px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
body.shop-premium .site-footer .footer-logo-row {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 18px;
}
body.shop-premium .site-footer .footer-logo-row img {
    width: 52px;
    height: auto;
}
body.shop-premium .site-footer .footer-logo-row strong {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 400;
    letter-spacing: 0;
}
body.shop-premium .site-footer .footer-about {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.7;
    max-width: 300px;
    margin: 0;
}
body.shop-premium .site-footer .footer-col h4 {
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold-bright);
    margin: 0 0 20px;
}
body.shop-premium .site-footer .footer-col p,
body.shop-premium .site-footer .footer-col a {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.65);
    margin: 0 0 10px;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: color var(--transition);
    text-decoration: none;
}
body.shop-premium .site-footer .footer-col a:hover {
    color: var(--white);
}
body.shop-premium .site-footer .footer-col svg {
    width: 16px;
    height: 16px;
    opacity: 0.6;
    flex-shrink: 0;
}
body.shop-premium .site-footer .footer-bottom {
    padding: 22px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
}
body.shop-premium .site-footer .footer-bottom p {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.35);
    margin: 0;
}

/* Hide legacy clutter */
body.shop-premium .margin_60_35 { margin: 0 !important; padding: 0 !important; }

/* ── v3: Product cards — compact on desktop ── */
body.shop-premium .sp-product-card {
    border-radius: var(--radius-md) !important;
    box-shadow: var(--shadow-xs) !important;
}
body.shop-premium [id^="item2_"] {
    min-height: 2.4em;
}


/* ── v3: Modal (no flicker) ── */
body.shop-premium .sp-modal.fade .modal-dialog {
    transform: none !important;
    transition: opacity 0.2s ease !important;
}
body.shop-premium .sp-modal .modal-content {
    display: flex !important;
    flex-direction: column !important;
    max-height: 90vh !important;
    overflow: hidden !important;
    border-radius: var(--radius-xl) !important;
}
body.shop-premium .sp-modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 20px 22px;
    background: linear-gradient(135deg, var(--navy), var(--navy-mid));
    flex-shrink: 0;
}
body.shop-premium .sp-modal-header .modal-title {
    flex: 1;
    margin: 0 !important;
    padding: 0 !important;
    background: none !important;
    color: var(--white) !important;
    font-size: 1.1rem !important;
}
body.shop-premium .sp-modal-close {
    position: static !important;
    width: 38px !important; height: 38px !important;
    background: rgba(255,255,255,0.15) !important;
    border: none !important;
    border-radius: 50% !important;
    color: var(--white) !important;
    font-size: 1.5rem !important;
    line-height: 1 !important;
    cursor: pointer;
    flex-shrink: 0;
}
body.shop-premium .sp-modal .modal-body {
    overflow-y: auto !important;
    flex: 1 1 auto !important;
    padding: 20px 22px !important;
    -webkit-overflow-scrolling: touch;
}
body.shop-premium .sp-modal-footer {
    flex-shrink: 0;
    padding: 16px 22px 22px;
    background: var(--white);
    border-top: 1px solid var(--border-light);
}
body.shop-premium .sp-modal-add-btn {
    position: static !important;
    margin: 0 !important;
}
body.shop-premium .sp-modal-add-btn.is-disabled,
body.shop-premium a.btn_full.sp-modal-add-btn.is-disabled {
    background: #b0b8c4 !important;
    color: rgba(255, 255, 255, 0.88) !important;
    box-shadow: none !important;
    cursor: not-allowed !important;
    pointer-events: none !important;
    opacity: 0.75;
    transform: none !important;
}
body.shop-premium .sp-modal-add-btn.is-disabled:hover,
body.shop-premium a.btn_full.sp-modal-add-btn.is-disabled:hover {
    transform: none !important;
    box-shadow: none !important;
    color: rgba(255, 255, 255, 0.88) !important;
}

/* ── Cart item details modal (formule breakdown) ── */
body.shop-premium .sp-cart-detail-modal .modal-dialog {
    max-width: 480px !important;
    width: calc(100% - 24px) !important;
    margin: 16px auto !important;
}
body.shop-premium .sp-cart-detail-modal .modal-content {
    border-radius: var(--radius-xl) !important;
    overflow: hidden !important;
    max-height: calc(100dvh - 32px) !important;
}
body.shop-premium .sp-cart-detail-header {
    padding: 18px 20px !important;
}
body.shop-premium .sp-cart-detail-header .modal-title {
    font-size: 1.05rem !important;
}
body.shop-premium .sp-cart-detail-body {
    padding: 16px 18px 20px !important;
    background: var(--surface) !important;
    overflow-y: auto !important;
    -webkit-overflow-scrolling: touch;
}
body.shop-premium .sp-cart-detail-stack {
    display: flex;
    flex-direction: column;
    gap: 14px;
}
body.shop-premium .sp-cart-detail-card {
    background: var(--white);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xs);
}
body.shop-premium .sp-cart-detail-card-head {
    padding: 12px 16px 0;
}
body.shop-premium .sp-cart-detail-badge {
    display: inline-flex;
    align-items: center;
    padding: 5px 12px;
    border-radius: var(--radius-pill);
    background: var(--gold-pale);
    border: 1px solid rgba(212, 168, 83, 0.28);
    color: var(--navy);
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}
body.shop-premium .sp-cart-detail-product {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
    padding: 14px 16px;
    border-bottom: 1px solid var(--border-light);
}
body.shop-premium .sp-cart-detail-product-main {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    min-width: 0;
    flex: 1;
}
body.shop-premium .sp-cart-detail-qty {
    flex-shrink: 0;
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--navy-mid);
    background: rgba(16, 92, 170, 0.08);
    padding: 3px 8px;
    border-radius: var(--radius-pill);
}
body.shop-premium .sp-cart-detail-name {
    font-size: 0.92rem;
    font-weight: 600;
    color: var(--navy);
    line-height: 1.35;
    word-break: break-word;
}
body.shop-premium .sp-cart-detail-price {
    flex-shrink: 0;
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--navy);
    background: var(--gold-pale);
    padding: 6px 10px;
    border-radius: var(--radius-pill);
    white-space: nowrap;
}
body.shop-premium .sp-cart-detail-section {
    padding: 12px 16px 0;
}
body.shop-premium .sp-cart-detail-section-title {
    margin: 0 0 10px !important;
    padding: 0 0 8px !important;
    border-bottom: 2px solid var(--gold-bright);
    font-family: var(--font-body) !important;
    font-size: 0.82rem !important;
    font-weight: 700 !important;
    color: var(--navy) !important;
    letter-spacing: 0.02em;
    text-transform: none !important;
}
body.shop-premium .sp-cart-detail-lines {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding-bottom: 12px;
}
body.shop-premium .sp-cart-detail-line {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 10px 12px;
    background: var(--surface);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
}
body.shop-premium .sp-cart-detail-line-label {
    font-size: 0.84rem;
    color: var(--text);
    line-height: 1.35;
    word-break: break-word;
    min-width: 0;
}
body.shop-premium .sp-cart-detail-line-price {
    flex-shrink: 0;
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--navy-mid);
    white-space: nowrap;
}
body.shop-premium .sp-cart-detail-total {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 14px 16px;
    margin-top: 4px;
    background: linear-gradient(135deg, var(--navy), var(--navy-mid));
    color: var(--white);
}
body.shop-premium .sp-cart-detail-total-label {
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    opacity: 0.9;
}
body.shop-premium .sp-cart-detail-total-amount {
    font-size: 1rem;
    font-weight: 700;
    white-space: nowrap;
}
body.shop-premium .sp-cart-detail-empty {
    padding: 24px 16px;
    text-align: center;
    color: var(--text-muted);
    font-size: 0.9rem;
}

body.shop-premium .sp-modal-desc {
    background: var(--surface) !important;
    border: 1px solid var(--border-light) !important;
    border-left: 4px solid var(--gold-bright) !important;
    color: var(--text) !important;
    border-radius: var(--radius-md) !important;
    padding: 14px 16px !important;
    margin-bottom: 18px !important;
}
body.shop-premium .sp-modal-desc-text {
    margin: 0 !important;
    font-size: 0.86rem !important;
    line-height: 1.7 !important;
    color: var(--text) !important;
}
body.shop-premium .sp-modal-desc-text b,
body.shop-premium .sp-modal-desc-text strong {
    color: var(--navy) !important;
    font-weight: 600 !important;
}
body.shop-premium .sp-modal-desc-text br { display: block; margin-bottom: 6px; }
body.shop-premium .sp-formule-block {
    background: var(--surface);
    border-radius: var(--radius-md);
    padding: 16px;
    margin-bottom: 16px;
    border: 1px solid var(--border-light);
    overflow: hidden;
}
body.shop-premium .sp-modal .sp-formule-block > .choix1,
body.shop-premium .sp-modal .sp-formule-block > .choix {
    display: flex !important;
    flex-wrap: wrap !important;
    align-items: center !important;
    gap: 6px;
    margin: 0 0 14px !important;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--gold-bright);
}
body.shop-premium .sp-formule-block .supplement,
body.shop-premium .sp-formule-block .supplement2,
body.shop-premium .sp-modal .supplement,
body.shop-premium .sp-modal .supplement2 {
    font-family: var(--font-body) !important;
    font-size: 0.95rem !important;
    font-weight: 600 !important;
    color: var(--navy) !important;
    margin: 0 !important;
    padding: 0 !important;
    border-bottom: none !important;
    display: inline !important;
    line-height: 1.35 !important;
}
body.shop-premium .sp-modal .nbchoix,
body.shop-premium .sp-modal .nbchoix2,
body.shop-premium .sp-modal .choixx,
body.shop-premium .sp-modal .span0 {
    position: static !important;
    right: auto !important;
    padding-top: 0 !important;
    font-family: var(--font-body) !important;
    font-size: 0.78rem !important;
    color: var(--text-muted) !important;
    font-weight: 500 !important;
}
body.shop-premium .sp-modal .modal-body label {
    display: flex !important;
    align-items: center !important;
    justify-content: flex-start !important;
    flex-wrap: nowrap !important;
    gap: 10px;
    width: 100% !important;
    min-width: 0 !important;
    overflow: hidden !important;
    padding: 14px 16px !important;
    margin-bottom: 8px !important;
    background: var(--white) !important;
    border: 1.5px solid var(--border) !important;
    border-radius: var(--radius-md) !important;
    cursor: pointer;
    transition: border-color 0.2s, background 0.2s !important;
}
body.shop-premium .sp-modal .modal-body label:hover {
    border-color: var(--navy-mid) !important;
}
body.shop-premium .sp-modal .modal-body label:has(input:checked) {
    border-color: var(--navy-mid) !important;
    background: rgba(16,92,170,0.05) !important;
    box-shadow: 0 0 0 3px rgba(16,92,170,0.08);
}
body.shop-premium .sp-modal .modal-body br { display: none; }
body.shop-premium .sp-modal .radiospan1,
body.shop-premium .sp-modal .checkboxspan1 {
    flex: 1 1 auto !important;
    min-width: 0 !important;
    position: static !important;
    font-size: 0.875rem !important;
    color: var(--text) !important;
    font-family: var(--font-body) !important;
    word-break: break-word;
    line-height: 1.35 !important;
}
body.shop-premium .sp-modal .radiospan2,
body.shop-premium .sp-modal .checkboxspan2 {
    position: static !important;
    right: auto !important;
    flex-shrink: 0 !important;
    margin-left: auto !important;
    font-size: 0.8rem !important;
    font-weight: 700 !important;
    color: var(--navy) !important;
    background: var(--gold-pale) !important;
    padding: 4px 12px !important;
    border-radius: var(--radius-pill) !important;
    font-family: var(--font-body) !important;
    white-space: nowrap !important;
}
body.shop-premium .sp-modal input[type="radio"],
body.shop-premium .sp-modal input[type="checkbox"] {
    width: 18px !important;
    height: 18px !important;
    margin: 0 !important;
    flex-shrink: 0 !important;
    accent-color: var(--navy-mid);
}

/* Prevent layout shift / flicker */
body.shop-premium .sp-modal .btn_full,
body.shop-premium .sp-modal a.btn_full {
    position: static !important;
    bottom: auto !important;
    transform: none !important;
    will-change: auto !important;
}
body.shop-premium.modal-open { overflow: hidden !important; padding-right: 0 !important; }

/* ── Page background texture ── */
body.shop-premium {
    background: var(--surface) url('/assets/casuniforms/subpageheros-6.png') center top / cover fixed no-repeat;
}
body.shop-premium::before {
    content: '';
    position: fixed; inset: 0;
    background: rgba(245, 247, 250, 0.92);
    z-index: -1;
    pointer-events: none;
}

/* ================================================================
   RESPONSIVE — 100% all devices
   ================================================================ */
@media (min-width: 1200px) {
    body.shop-premium .container_fluid[id^="prod_"] {
        grid-template-columns: repeat(auto-fill, minmax(175px, 1fr)) !important;
        gap: 14px !important;
    }
}

@media (max-width: 1100px) {
    :root { --sidebar-w: 240px; --cart-w: 290px; }
    body.shop-premium .container_fluid[id^="prod_"] {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)) !important;
    }
}

@media (min-width: 992px) {
    body.shop-premium #panierbtn {
        display: none !important;
    }
    body.shop-premium .sp-shop {
        padding-bottom: 40px !important;
    }
    body.shop-premium #sidebar {
        position: relative !important;
        top: auto !important;
        right: auto !important;
        bottom: auto !important;
        left: auto !important;
        width: auto !important;
        max-width: none !important;
        margin: 0 !important;
        padding: 0 !important;
        z-index: auto !important;
        transform: none !important;
        visibility: visible !important;
        pointer-events: auto !important;
        display: block !important;
    }
    body.shop-premium #sidebar .theiaStickySidebar {
        position: static !important;
        transform: none !important;
        width: 100% !important;
        height: auto !important;
    }
    body.shop-premium #cart_box,
    body.shop-premium .sp-cart-panel {
        position: sticky !important;
        top: calc(var(--header-h) + var(--nav-h) + 16px) !important;
        height: auto !important;
        max-height: none !important;
        border-radius: var(--radius-xl) !important;
        box-shadow: var(--shadow-md) !important;
    }
    body.shop-premium .sp-cart-drawer-close {
        display: none !important;
    }
    body.shop-premium #sp-cart-drawer-backdrop {
        display: none !important;
    }
    body.shop-premium .sp-header-basket {
        display: none !important;
    }
}

@media (max-width: 991px) {
    body.shop-premium {
        overflow-x: clip;
    }
    body.shop-premium .sp-header {
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        right: 0 !important;
        width: 100% !important;
        z-index: 900 !important;
    }
    body.shop-premium .sp-hero {
        margin-top: var(--header-h);
    }
    body.shop-premium #pn-ProductNav_Wrapper,
    body.shop-premium .pn-ProductNav_Wrapper {
        top: var(--header-h) !important;
        z-index: 850 !important;
    }
    body.shop-premium .shop-grid {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
    }
    body.shop-premium #left-box { display: none !important; }

    /* Mobile cart drawer — slides in from the right */
    body.shop-premium #sidebar {
        position: fixed !important;
        top: 0 !important;
        right: 0 !important;
        bottom: 0 !important;
        left: auto !important;
        width: min(92vw, 400px) !important;
        max-width: 400px !important;
        margin: 0 !important;
        padding: 0 !important;
        z-index: 860 !important;
        transform: translateX(100%) !important;
        transition: transform 0.36s cubic-bezier(0.22, 1, 0.36, 1) !important;
        pointer-events: none !important;
        visibility: hidden !important;
    }
    body.shop-premium.sp-cart-drawer-open #sidebar {
        transform: translateX(0) !important;
        pointer-events: auto !important;
        visibility: visible !important;
    }
    body.shop-premium #sidebar .theiaStickySidebar {
        position: static !important;
        transform: none !important;
        width: 100% !important;
        height: 100% !important;
    }
    body.shop-premium #cart_box,
    body.shop-premium .sp-cart-panel {
        position: relative !important;
        top: auto !important;
        transform: none !important;
        height: 100dvh !important;
        max-height: 100dvh !important;
        border-radius: 0 !important;
        border-right: none !important;
        box-shadow: -8px 0 40px rgba(12, 50, 96, 0.18) !important;
        overflow: hidden !important;
        padding-top: env(safe-area-inset-top, 0) !important;
        padding-bottom: env(safe-area-inset-bottom, 0) !important;
    }
    body.shop-premium .sp-cart-inner {
        height: 100%;
    }
    body.shop-premium .sp-cart-items,
    body.shop-premium #cart {
        flex: 1 !important;
        max-height: none !important;
        overflow-y: auto !important;
        -webkit-overflow-scrolling: touch;
    }
    body.shop-premium .sp-cart-drawer-close {
        display: flex !important;
    }
    body.shop-premium .sp-cart-header {
        padding-left: 14px !important;
    }
    body.shop-premium #helppp2 {
        display: none !important;
    }
    body.shop-premium #panierbtn {
        display: none !important;
    }
    body.shop-premium .sp-shop {
        padding-bottom: 24px !important;
    }
    body.shop-premium .sp-cart-item-main {
        grid-template-columns: 56px 1fr;
        grid-template-rows: auto auto;
        gap: 8px 12px;
        align-items: start;
    }
    body.shop-premium .sp-cart-item-media {
        grid-row: 1 / span 2;
        width: 56px;
        height: 56px;
    }
    body.shop-premium .sp-cart-item-details {
        grid-column: 2;
        grid-row: 1;
    }
    body.shop-premium .sp-cart-item-side {
        grid-column: 2;
        grid-row: 2;
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        width: 100%;
        gap: 10px;
    }
    body.shop-premium .sp-cart-item-side .sp-cart-item-price {
        text-align: right;
        margin-top: 0;
    }
    body.shop-premium .sp-panel-help-mobile {
        display: block !important;
        margin-top: 14px !important;
        padding: 22px 18px !important;
        border-radius: var(--radius-lg) !important;
        border: 1px solid var(--border) !important;
        background: var(--card) !important;
    }
    body.shop-premium .sp-badge-grid-mobile {
        display: grid !important;
        grid-template-columns: 1fr 1fr;
        gap: 16px;
        margin-top: 18px;
    }
    body.shop-premium .sp-badge-grid-mobile img {
        width: 100% !important;
        min-height: 90px !important;
        max-height: 130px !important;
        object-fit: contain !important;
        padding: 12px !important;
        background: var(--surface) !important;
        border: 1px solid var(--border-light) !important;
        border-radius: var(--radius-md) !important;
    }
    body.shop-premium .sp-help-wa-img {
        width: 160px;
        height: auto;
        margin: 10px 0;
    }
}

@media (max-width: 768px) {
    :root { --header-h: 64px; }
    .sp-header-inner { padding: 0 16px; }
    .sp-brand img { width: 40px; height: 40px; }
    .sp-btn { padding: 9px 16px; font-size: 0.72rem; }
    .sp-hero { min-height: clamp(360px, 62vw, 520px); padding: 40px 12px 44px; }
    .sp-hero .sp-hero-badge {
        width: clamp(320px, 96vw, 640px);
        max-width: 98%;
        margin-bottom: 24px;
    }
    body.shop-premium .sp-shop { padding: 20px 16px 100px; }
    body.shop-premium .catalog-panel { padding: 20px !important; }
    body.shop-premium .sp-cart-header { padding: 16px; }
    body.shop-premium .sp-cart-items,
    body.shop-premium #cart { padding: 12px 14px !important; }
    body.shop-premium .sp-cart-footer { padding: 0 14px 14px; }
    body.shop-premium .sp-cart-qty-stepper .sp-qty-btn {
        width: 34px;
        height: 34px;
    }
    body.shop-premium .container_fluid[id^="prod_"] {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        gap: 12px !important;
    }
    body.shop-premium .thumb_menu_list {
        aspect-ratio: 1 / 1;
    }
    body.shop-premium .item2,
    body.shop-premium [id^="item2_"] {
        font-size: 0.74rem !important;
        line-height: 1.3 !important;
        min-height: 0 !important;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }
    body.shop-premium .sp-product-label {
        font-size: 0.58rem !important;
        padding: 2px 7px !important;
    }
    body.shop-premium .sp-product-desc,
    body.shop-premium .sp-product-desc p {
        font-size: 0.64rem !important;
        line-height: 1.45 !important;
        padding: 7px 8px !important;
    }
    body.shop-premium .product-card-body,
    body.shop-premium [id^="leftall_"] {
        padding: 8px 10px 0 !important;
    }
    body.shop-premium .product-card-footer,
    body.shop-premium [id^="rightall_"] {
        display: flex !important;
        flex-direction: column !important;
        align-items: stretch !important;
        gap: 8px !important;
        padding: 8px 10px 10px !important;
        justify-content: flex-start !important;
    }
    body.shop-premium .product-card-footer [id^="prixcenter_"],
    body.shop-premium .product-card-footer [id^="prixpro_"],
    body.shop-premium [id^="rightall_"] [id^="prixcenter_"] {
        order: 1 !important;
        width: 100% !important;
        flex: none !important;
        min-width: 0 !important;
        max-width: 100% !important;
        overflow: visible !important;
    }
    body.shop-premium .product-card-footer [id^="picformul_"] {
        order: 2 !important;
        width: 100% !important;
        display: block !important;
    }
    body.shop-premium .product-card-footer .sp-btn-add,
    body.shop-premium [id^="rightall_"] .sp-btn-add,
    body.shop-premium [id^="picformul_"] .sp-btn-add {
        order: 2 !important;
        width: 100% !important;
        min-width: 0 !important;
        height: 36px !important;
        min-height: 36px !important;
        border-radius: var(--radius-sm) !important;
        margin: 0 !important;
    }
    body.shop-premium [id^="prixcenter_"] strong,
    body.shop-premium [id^="prixpro_"] strong {
        font-size: 0.78rem !important;
        padding: 6px 10px !important;
        white-space: normal !important;
        overflow: visible !important;
        text-overflow: unset !important;
        max-width: 100% !important;
        width: 100% !important;
        display: block !important;
        text-align: center !important;
        box-sizing: border-box !important;
    }
    body.shop-premium .sp-btn-add::before {
        font-size: 0.95rem !important;
    }
    body.shop-premium #pn-ProductNav_Wrapper { top: var(--header-h) !important; }
    body.shop-premium .sp-modal .modal-dialog {
        width: 100% !important;
        max-width: 100% !important;
        margin: 0 !important;
        min-height: 100dvh !important;
        height: 100dvh !important;
        display: flex !important;
        align-items: stretch !important;
    }
    body.shop-premium .sp-modal .modal-content {
        max-height: 100dvh !important;
        min-height: 100dvh !important;
        height: 100dvh !important;
        border-radius: 0 !important;
        width: 100% !important;
    }
    body.shop-premium .sp-modal .modal-body label {
        flex-wrap: wrap !important;
        row-gap: 8px !important;
    }
    body.shop-premium .sp-modal .radiospan2,
    body.shop-premium .sp-modal .checkboxspan2 {
        margin-left: 28px !important;
    }

    /* Product popup — fixed full screen on mobile (always visible, no scroll hunt) */
    body.shop-premium .mfp-wrap {
        position: fixed !important;
        inset: 0 !important;
        overflow: hidden !important;
    }
    body.shop-premium .mfp-container:before {
        display: none !important;
        height: 0 !important;
        content: none !important;
    }
    body.shop-premium .mfp-container {
        display: flex !important;
        align-items: stretch !important;
        justify-content: stretch !important;
        text-align: left !important;
        position: fixed !important;
        inset: 0 !important;
        width: 100% !important;
        height: 100% !important;
        max-height: 100dvh !important;
        padding: 0 !important;
        overflow: hidden !important;
    }
    body.shop-premium .mfp-content {
        width: 100% !important;
        height: 100% !important;
        max-height: 100dvh !important;
        min-height: 0 !important;
        margin: 0 !important;
        vertical-align: top !important;
        display: flex !important;
        flex-direction: column !important;
        position: relative !important;
    }
    body.shop-premium .sp-product-popup,
    body.shop-premium .white-popup {
        max-width: 100% !important;
        width: 100% !important;
        min-height: 100dvh !important;
        max-height: 100dvh !important;
        height: 100dvh !important;
        border-radius: 0 !important;
        overflow: hidden !important;
        display: flex !important;
        flex-direction: column !important;
        margin: 0 !important;
    }
    body.shop-premium .sp-popup-wrapper,
    body.shop-premium .white-popup .wrapper {
        display: flex !important;
        flex: 1 1 auto !important;
        flex-direction: column !important;
        align-items: stretch !important;
        min-height: 0 !important;
        overflow: hidden !important;
        height: auto !important;
        grid-template-columns: none !important;
    }
    body.shop-premium .sp-popup-media,
    body.shop-premium .white-popup .product-img {
        flex: 0 0 auto !important;
        width: 100% !important;
        max-width: 100% !important;
        min-height: 0 !important;
        max-height: 38vh !important;
        height: auto !important;
        min-height: 0 !important;
        aspect-ratio: 4 / 3;
        align-self: auto !important;
        line-height: 0 !important;
        position: relative !important;
    }
    body.shop-premium #my-popup-image {
        position: relative !important;
        inset: auto !important;
        width: 100% !important;
        height: 100% !important;
        display: block !important;
    }
    body.shop-premium .white-popup #imgproduct,
    body.shop-premium #my-popup-image img {
        width: 100% !important;
        height: 100% !important;
        max-height: 100% !important;
        object-fit: cover !important;
        object-position: center center !important;
    }
    body.shop-premium .sp-popup-content,
    body.shop-premium .white-popup .product-info {
        flex: 1 1 auto !important;
        min-height: 0 !important;
        height: auto !important;
        overflow-y: auto !important;
        padding: 18px 16px 24px !important;
        -webkit-overflow-scrolling: touch;
    }
    body.shop-premium .sp-popup-desc-body { max-height: none; }
    body.shop-premium .sp-popup-media .sp-popup-close { top: 10px !important; right: 10px !important; }
    body.shop-premium .sp-popup-actions-row { flex-direction: column; }
    body.shop-premium .sp-popup-sizes-btn { width: 100%; min-width: 0; }
    body.shop-premium .sp-size-guide-panel { max-height: 100dvh; border-radius: 0; padding: 16px; }
    body.shop-premium .sp-cart-detail-modal .modal-dialog {
        width: 100% !important;
        max-width: 100% !important;
        margin: 0 !important;
        min-height: 100dvh;
        display: flex !important;
        align-items: stretch !important;
    }
    body.shop-premium .sp-cart-detail-modal .modal-content {
        min-height: 100dvh !important;
        max-height: 100dvh !important;
        border-radius: 0 !important;
    }
    body.shop-premium .sp-cart-detail-body {
        padding: 14px 14px 20px !important;
    }
    body.shop-premium .sp-cart-detail-product {
        flex-direction: column;
        align-items: stretch;
    }
    body.shop-premium .sp-cart-detail-price {
        align-self: flex-start;
    }
    body.shop-premium .site-footer .footer-top {
        grid-template-columns: 1fr;
        gap: 36px;
    }
    body.shop-premium .site-footer .footer-bottom {
        justify-content: center;
        text-align: center;
        flex-direction: column;
    }
}

@media (max-width: 600px) {
    body.shop-premium .sp-popup-meta { flex-direction: column; align-items: flex-start; }
    body.shop-premium .sp-popup-price { margin-left: 0; font-size: 1.25rem !important; }
    body.shop-premium .sp-popup-add-btn,
    body.shop-premium .add-to-cart-button { padding: 14px 18px !important; font-size: 1rem !important; }
}

@media (max-width: 480px) {
    body.shop-premium .container_fluid[id^="prod_"] {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        gap: 10px !important;
    }
    body.shop-premium .product-card-body,
    body.shop-premium [id^="leftall_"] {
        padding: 8px 10px 0 !important;
    }
    body.shop-premium .product-card-footer,
    body.shop-premium [id^="rightall_"] {
        padding: 8px 10px 10px !important;
    }
    body.shop-premium .sp-cart-item {
        padding: 12px 36px 12px 12px;
    }
    body.shop-premium .sp-cart-qty-stepper .sp-qty-btn {
        width: 32px;
        height: 32px;
        font-size: 0.95rem;
    }
    body.shop-premium .sp-cart-qty-stepper .sp-cart-qty-value {
        min-width: 30px;
        font-size: 0.88rem;
    }
    body.shop-premium .sp-cart-total-amount,
    body.shop-premium #totalcart { font-size: 1.15rem !important; }
    body.shop-premium #panierbtn {
        min-width: calc(100vw - 24px) !important;
        max-width: calc(100vw - 24px) !important;
        bottom: 12px !important;
    }
    .sp-brand-tag { display: none; }
    body.shop-premium .container_fluid[id^="prod_"] {
        gap: 10px !important;
    }
    body.shop-premium .sp-product-desc,
    body.shop-premium .sp-product-desc p {
        font-size: 0.6rem !important;
        padding: 6px 7px !important;
    }
    body.shop-premium .product-card-footer .sp-btn-add,
    body.shop-premium [id^="rightall_"] .sp-btn-add,
    body.shop-premium [id^="picformul_"] .sp-btn-add {
        width: 100% !important;
        min-width: 0 !important;
        height: 34px !important;
        min-height: 34px !important;
        border-radius: var(--radius-sm) !important;
    }
    body.shop-premium .sp-btn-add::before {
        font-size: 0.85rem !important;
    }
    body.shop-premium [id^="prixcenter_"] strong,
    body.shop-premium [id^="prixpro_"] strong {
        font-size: 0.72rem !important;
        padding: 5px 8px !important;
    }
}

/* ── v5: Typography aligned with first.blade.php ── */
body.shop-premium,
body.shop-premium p,
body.shop-premium li,
body.shop-premium label,
body.shop-premium span,
body.shop-premium td,
body.shop-premium th {
    font-family: var(--font-body) !important;
}
body.shop-premium .sp-brand-name {
    font-size: clamp(1.1rem, 2.5vw, 1.35rem) !important;
}
body.shop-premium .sp-brand-tag {
    font-size: 0.75rem !important;
}
body.shop-premium .sp-btn {
    font-size: 0.8rem !important;
}
body.shop-premium .category-name {
    font-size: 1rem !important;
}
body.shop-premium .accordion_wrap .icon,
body.shop-premium .accordion_menu .scrollTo {
    font-size: 1rem !important;
}
body.shop-premium #menu_title,
body.shop-premium #menumenu {
    font-size: clamp(1.75rem, 4vw, 2.25rem) !important;
}
body.shop-premium .designiationf {
    font-size: clamp(1.35rem, 3vw, 1.85rem) !important;
}
body.shop-premium .sp-cat-desc,
body.shop-premium [id^="des_"] {
    font-size: 1rem !important;
    line-height: 1.75 !important;
}
body.shop-premium .item2,
body.shop-premium [id^="item2_"] {
    font-size: 1.1rem !important;
    line-height: 1.45 !important;
}
body.shop-premium .sp-product-label {
    font-size: 0.8rem !important;
    padding: 4px 10px !important;
}
body.shop-premium .sp-product-desc,
body.shop-premium .sp-product-desc p {
    font-size: 1rem !important;
    line-height: 1.7 !important;
    padding: 12px 14px !important;
}
@media (min-width: 769px) {
    body.shop-premium [id^="prixcenter_"] strong,
    body.shop-premium [id^="prixpro_"] strong {
        font-size: 0.92rem !important;
        font-family: var(--font-body) !important;
    }
}
body.shop-premium .sp-cart-title,
body.shop-premium .sp-cart-header-title,
body.shop-premium .sp-cart-header h3 {
    font-size: 1.25rem !important;
}
body.shop-premium .sp-cart-count {
    font-size: 0.95rem !important;
}
body.shop-premium .sp-cart-item-name {
    font-size: 1.05rem !important;
}
body.shop-premium .sp-cart-item-label {
    font-size: 0.95rem !important;
}
body.shop-premium .sp-cart-item-cat {
    font-size: 0.85rem !important;
}
body.shop-premium .sp-cart-item-price strong {
    font-size: 1.05rem !important;
}
body.shop-premium .sp-cart-total-label {
    font-size: 1rem !important;
}
body.shop-premium .sp-cart-total-amount,
body.shop-premium #totalcart {
    font-size: 1.35rem !important;
}
body.shop-premium .sp-cart-checkout-btn,
body.shop-premium #checkoutall .btn_full {
    font-size: 1.05rem !important;
}
body.shop-premium .sp-cart-empty-title {
    font-size: 1.15rem !important;
}
body.shop-premium .sp-cart-empty-text {
    font-size: 1rem !important;
}
body.shop-premium #panierbtn-total,
body.shop-premium #panierbtn-label,
body.shop-premium .basket-label,
body.shop-premium .basket-total {
    font-size: 1rem !important;
}
body.shop-premium .sp-modal .modal-title,
body.shop-premium .modal-title {
    font-size: 1.35rem !important;
    font-family: var(--font-body) !important;
}
body.shop-premium .sp-modal-desc-text {
    font-size: 1rem !important;
    line-height: 1.75 !important;
}
body.shop-premium .sp-formule-block .supplement,
body.shop-premium .sp-formule-block .supplement2,
body.shop-premium .sp-modal .supplement,
body.shop-premium .sp-modal .supplement2 {
    font-size: 1.15rem !important;
}
body.shop-premium .sp-modal .nbchoix,
body.shop-premium .sp-modal .nbchoix2,
body.shop-premium .sp-modal .choixx,
body.shop-premium .sp-modal .span0 {
    font-size: 1rem !important;
}
body.shop-premium .sp-modal .radiospan1,
body.shop-premium .sp-modal .checkboxspan1 {
    font-size: 1.05rem !important;
}
body.shop-premium .sp-modal .radiospan2,
body.shop-premium .sp-modal .checkboxspan2 {
    font-size: 1rem !important;
    padding: 6px 14px !important;
}
body.shop-premium .sp-modal-add-btn,
body.shop-premium .sp-modal a.btn_full,
body.shop-premium .btn_full {
    font-size: 1rem !important;
}
body.shop-premium .sp-popup-label {
    font-size: 0.85rem !important;
}
body.shop-premium .sp-popup-price {
    font-size: 1.35rem !important;
}
body.shop-premium #my-popup-title h3,
body.shop-premium .white-popup #h3 {
    font-size: clamp(1.4rem, 3vw, 1.85rem) !important;
}
body.shop-premium .sp-popup-desc-body {
    font-size: 1rem !important;
    line-height: 1.75 !important;
}
body.shop-premium .sp-popup-size-title {
    font-size: 1.05rem !important;
}
body.shop-premium .sp-popup-select,
body.shop-premium .decselect {
    font-size: 1.05rem !important;
}
body.shop-premium .sp-popup-add-btn,
body.shop-premium .add-to-cart-button,
body.shop-premium .sp-popup-sizes-btn {
    font-size: 1rem !important;
}
body.shop-premium .sp-cart-detail-header .modal-title {
    font-size: 1.25rem !important;
}
body.shop-premium .sp-cart-detail-name {
    font-size: 1.1rem !important;
}
body.shop-premium .sp-cart-detail-price {
    font-size: 1.05rem !important;
}
body.shop-premium .sp-cart-detail-section-title {
    font-size: 1.05rem !important;
}
body.shop-premium .sp-cart-detail-line-label {
    font-size: 1.05rem !important;
}
body.shop-premium .sp-cart-detail-total-label {
    font-size: 0.95rem !important;
}
body.shop-premium .sp-cart-detail-total-amount {
    font-size: 1.2rem !important;
}
body.shop-premium .sp-help-header h4 {
    font-size: 1.35rem !important;
}
body.shop-premium .sp-help-header p {
    font-size: 1.05rem !important;
}
body.shop-premium .sp-panel-badges .sp-badge-grid img,
body.shop-premium .sp-badge-grid-mobile img {
    min-height: 80px !important;
    max-height: 120px !important;
}
body.shop-premium .sp-help-label {
    font-size: 0.8rem !important;
}
body.shop-premium .sp-help-value {
    font-size: 1.05rem !important;
}
body.shop-premium .bhours .title,
body.shop-premium .opening-hours .title {
    font-size: 1rem !important;
}
body.shop-premium .opening-hours li,
body.shop-premium .sp-panel-help .opening-hours li {
    font-size: 1rem !important;
}
body.shop-premium .sp-panel-help,
body.shop-premium .sp-panel-help p,
body.shop-premium .sp-panel-help a,
body.shop-premium .sp-panel-help-mobile,
body.shop-premium .sp-panel-help-mobile p,
body.shop-premium .sp-panel-help-mobile a {
    font-size: 1rem !important;
}
body.shop-premium .site-footer .footer-logo-row strong {
    font-size: 1.5rem !important;
}
body.shop-premium .site-footer .footer-about {
    font-size: 1rem !important;
}
body.shop-premium .site-footer .footer-col h4 {
    font-size: 0.75rem !important;
}
body.shop-premium .site-footer .footer-col p,
body.shop-premium .site-footer .footer-col a {
    font-size: 1rem !important;
}
body.shop-premium .site-footer .footer-bottom p {
    font-size: 0.9rem !important;
}

@supports (padding-bottom: env(safe-area-inset-bottom)) {
    body.shop-premium #panierbtn {
        bottom: calc(16px + env(safe-area-inset-bottom)) !important;
    }
    body.shop-premium .sp-shop {
        padding-bottom: calc(110px + env(safe-area-inset-bottom)) !important;
    }
    body.shop-premium .sp-checkout-page {
        padding-bottom: calc(80px + env(safe-area-inset-bottom)) !important;
    }
}

/* ── Quantity steppers (popup, formule modal, basket) ── */
body.shop-premium .sp-qty-stepper {
    display: inline-flex;
    align-items: center;
    gap: 0;
    background: var(--white);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-pill);
    overflow: hidden;
    box-shadow: var(--shadow-xs);
}
body.shop-premium .sp-qty-btn {
    width: 36px;
    height: 36px;
    border: none;
    background: var(--surface);
    color: var(--navy);
    font-size: 1.15rem;
    font-weight: 700;
    line-height: 1;
    cursor: pointer;
    padding: 0;
    transition: background var(--transition), color var(--transition);
}
body.shop-premium .sp-qty-btn:hover {
    background: rgba(16, 92, 170, 0.08);
    color: var(--accent);
}
body.shop-premium .sp-qty-btn:active {
    transform: scale(0.96);
}
body.shop-premium .sp-qty-value,
body.shop-premium .sp-cart-qty-value {
    min-width: 36px;
    padding: 0 6px;
    font-size: 0.95rem;
    font-weight: 700;
    text-align: center;
    color: var(--navy);
}
body.shop-premium .sp-qty-label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.04em;
}
body.shop-premium .sp-popup-qty-row,
body.shop-premium .sp-formule-qty-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 12px;
    padding: 10px 12px;
    background: var(--surface);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
}
body.shop-premium .sp-formule-qty-row {
    margin-bottom: 14px;
}
body.shop-premium .sp-cart-item-side {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 6px;
    flex-shrink: 0;
}
body.shop-premium .sp-cart-qty-stepper .sp-qty-btn {
    width: 30px;
    height: 30px;
    font-size: 1rem;
}
body.shop-premium .sp-cart-qty-stepper .sp-cart-qty-value {
    min-width: 28px;
    font-size: 0.85rem;
}
body.shop-premium .sp-cart-qty-readonly {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--navy);
}
body.shop-premium .sp-cart-item-side .sp-cart-item-price {
    text-align: right;
}

/* ── Mobile product card footer: price on top, full-width rectangular add button ── */
@media (max-width: 768px) {
    body.shop-premium .product-card-footer,
    body.shop-premium [id^="rightall_"] {
        display: flex !important;
        flex-direction: column !important;
        align-items: stretch !important;
        gap: 8px !important;
    }
    body.shop-premium .product-card-footer [id^="prixcenter_"],
    body.shop-premium .product-card-footer [id^="prixpro_"],
    body.shop-premium [id^="rightall_"] [id^="prixcenter_"] {
        order: 1 !important;
        width: 100% !important;
        overflow: visible !important;
    }
    body.shop-premium .product-card-footer [id^="picformul_"] {
        order: 2 !important;
        width: 100% !important;
    }
    body.shop-premium .product-card-footer .sp-btn-add,
    body.shop-premium [id^="rightall_"] .sp-btn-add,
    body.shop-premium [id^="picformul_"] .sp-btn-add {
        order: 2 !important;
        width: 100% !important;
        min-width: 0 !important;
        height: 36px !important;
        min-height: 36px !important;
        border-radius: var(--radius-sm) !important;
    }
    body.shop-premium .product-card-footer [id^="prixcenter_"] strong,
    body.shop-premium .product-card-footer [id^="prixpro_"] strong,
    body.shop-premium [id^="rightall_"] [id^="prixcenter_"] strong {
        width: 100% !important;
        max-width: 100% !important;
        display: block !important;
        text-align: center !important;
        white-space: normal !important;
        overflow: visible !important;
        text-overflow: unset !important;
        font-size: 0.78rem !important;
        padding: 6px 8px !important;
        line-height: 1.3 !important;
    }
}

/* ── Checkout page (same page background as menu — body texture shows through) ── */
body.shop-premium.sp-is-checkout {
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
}
body.shop-premium .sp-checkout-page {
    min-height: 60vh;
    overflow-x: hidden;
    padding-bottom: 80px;
}
body.shop-premium .sp-checkout-page .shop-container,
body.shop-premium .sp-checkout-page .sp-checkout-grid,
body.shop-premium .sp-checkout-page .sp-checkout-main,
body.shop-premium .sp-checkout-page .sp-checkout-aside-right,
body.shop-premium .sp-checkout-page #sidebar {
    min-width: 0;
    max-width: 100%;
    width: 100%;
}
body.shop-premium.sp-is-checkout .sp-header-actions .sp-btn-ghost {
    display: inline-flex !important;
}
body.shop-premium .sp-checkout-hero {
    min-height: clamp(320px, 44vw, 520px);
    padding: 48px 24px 52px;
    text-align: center;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--navy);
    color: var(--white);
}
body.shop-premium .sp-checkout-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('/assets/casuniforms/subpageheros-6.png') center/cover no-repeat;
    transform: scale(1.02);
}
body.shop-premium .sp-checkout-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(7,35,70,0.55) 0%, rgba(12,50,96,0.82) 100%);
}
body.shop-premium .sp-checkout-hero-inner {
    position: relative;
    z-index: 1;
    max-width: min(92vw, 820px);
    margin: 0 auto;
}
body.shop-premium .sp-checkout-hero .sp-hero-badge {
    display: block;
    width: clamp(280px, 62vw, 560px);
    max-width: 95%;
    height: auto;
    margin: 0 auto 24px;
    object-fit: contain;
    filter: drop-shadow(0 10px 28px rgba(0,0,0,0.3));
}
body.shop-premium .sp-checkout-hero h1 {
    font-family: var(--font-display);
    font-size: clamp(1.75rem, 5vw, 3rem);
    font-weight: 500;
    margin: 0 0 10px;
    color: var(--white);
    line-height: 1.15;
    text-shadow: 0 2px 12px rgba(0,0,0,0.2);
}
body.shop-premium .sp-checkout-hero p {
    margin: 0;
    font-size: clamp(0.9rem, 2vw, 1.05rem);
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--gold-bright);
}
body.shop-premium .sp-checkout-grid {
    display: grid;
    grid-template-columns: var(--sidebar-w, 270px) minmax(0, 1fr) var(--cart-w, 320px);
    gap: 20px;
    align-items: start;
}
body.shop-premium .sp-checkout-aside-left .sp-left-sticky {
    position: sticky;
    top: calc(var(--header-h, 72px) + 16px);
}
body.shop-premium .sp-checkout-badges {
    margin-bottom: 14px;
    padding: 14px !important;
}
body.shop-premium .sp-checkout-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
}
body.shop-premium .sp-checkout-card-header {
    padding: 22px 24px;
    background: linear-gradient(135deg, var(--navy), var(--navy-mid));
    color: var(--white);
}
body.shop-premium .sp-checkout-card-header h2 {
    margin: 0 0 6px;
    font-family: var(--font-body);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--white);
}
body.shop-premium .sp-checkout-card-header p {
    margin: 0;
    font-size: 0.9rem;
    color: rgba(255,255,255,0.8);
}
body.shop-premium .sp-checkout-card-body {
    padding: 24px;
}
body.shop-premium .sp-checkout-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px 18px;
}
body.shop-premium .sp-checkout-form > .form-group:not(.sp-form-field) {
    display: none;
}
body.shop-premium .sp-form-group-full {
    grid-column: 1 / -1;
}
body.shop-premium .sp-checkout-form .sp-form-field {
    background: var(--white);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    padding: 14px 16px;
    box-shadow: var(--shadow-xs);
}
body.shop-premium .sp-form-label {
    display: block;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 10px;
    letter-spacing: 0.01em;
}
body.shop-premium .sp-input-wrap {
    position: relative;
    display: flex;
    align-items: stretch;
}
body.shop-premium .sp-input-wrap-textarea {
    align-items: flex-start;
}
body.shop-premium .sp-input-icon {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    width: 22px;
    text-align: center;
    color: var(--navy-mid);
    font-size: 1.05rem;
    pointer-events: none;
    z-index: 2;
}
body.shop-premium .sp-input-icon-top {
    top: 18px;
    transform: none;
}
body.shop-premium .sp-input-wrap .sp-form-control {
    padding-left: 48px !important;
    width: 100%;
}
body.shop-premium .sp-input-wrap-textarea .sp-form-textarea {
    padding-left: 48px !important;
    padding-top: 14px !important;
}
body.shop-premium .sp-input-wrap-select .sp-form-control {
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23105caa' d='M6 8L0 0h12z'/%3E%3C/svg%3E") !important;
    background-repeat: no-repeat !important;
    background-position: right 16px center !important;
    padding-right: 40px !important;
}
body.shop-premium .sp-form-control {
    border: 2px solid var(--border) !important;
    border-radius: var(--radius-md) !important;
    padding: 15px 16px !important;
    min-height: 52px !important;
    font-size: 1.05rem !important;
    font-family: var(--font-body) !important;
    color: var(--navy) !important;
    background: var(--surface) !important;
    height: auto !important;
    box-shadow: inset 0 1px 2px rgba(16,92,170,0.04) !important;
    transition: border-color var(--transition), box-shadow var(--transition), background var(--transition);
}
body.shop-premium .sp-form-control::placeholder {
    color: var(--text-muted) !important;
    opacity: 1 !important;
    font-size: 1rem !important;
}
body.shop-premium .sp-form-control:focus {
    border-color: var(--navy-mid) !important;
    background: var(--white) !important;
    box-shadow: 0 0 0 4px rgba(16,92,170,0.14) !important;
    outline: none !important;
}
body.shop-premium .sp-form-textarea {
    min-height: 130px;
    resize: vertical;
    line-height: 1.55 !important;
}
body.shop-premium .sp-form-hint {
    margin-top: 6px;
    font-size: 0.82rem;
    color: var(--danger);
}
body.shop-premium .sp-checkout-alert {
    grid-column: 1 / -1;
    border-radius: var(--radius-md);
    margin-bottom: 4px;
}
body.shop-premium .sp-checkout-cart {
    position: sticky;
    top: calc(var(--header-h, 72px) + 16px);
}
body.shop-premium .sp-checkout-cart .sp-cart-items,
body.shop-premium .sp-checkout-cart #cart {
    max-height: 42vh;
    overflow-y: auto;
}
body.shop-premium .sp-checkout-actions {
    padding: 0 16px 16px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
body.shop-premium .sp-payment-block {
    text-align: center;
    padding: 12px 0 4px;
    border-top: 1px solid var(--border-light);
}
body.shop-premium .sp-payment-label {
    margin: 0 0 12px;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--navy);
    text-align: left;
}
body.shop-premium .sp-payment-method {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 18px;
    background: linear-gradient(135deg, var(--gold-pale) 0%, var(--white) 100%);
    border: 2px solid rgba(212,168,83,0.45);
    border-radius: var(--radius-md);
    text-align: left;
}
body.shop-premium .sp-payment-method-icon {
    flex-shrink: 0;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--navy), var(--navy-mid));
    color: var(--gold-bright);
    font-size: 1.45rem;
    box-shadow: 0 4px 14px rgba(16,92,170,0.25);
}
body.shop-premium .sp-payment-method-text {
    display: flex;
    flex-direction: column;
    gap: 4px;
    min-width: 0;
}
body.shop-premium .sp-payment-method-text strong {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--navy);
}
body.shop-premium .sp-payment-method-text span {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.4;
}
body.shop-premium .sp-checkout-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 14px 18px !important;
    font-size: 1rem !important;
    font-weight: 600 !important;
    border-radius: var(--radius-md) !important;
    text-align: center;
    transition: transform var(--transition), box-shadow var(--transition);
}
body.shop-premium .sp-checkout-btn-primary {
    background: linear-gradient(135deg, var(--navy), var(--navy-mid)) !important;
    color: var(--white) !important;
    border: none !important;
}
body.shop-premium .sp-checkout-btn-primary:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-1px);
    color: var(--white) !important;
}
body.shop-premium .sp-checkout-btn-outline {
    background: var(--white) !important;
    color: var(--navy) !important;
    border: 2px solid var(--border) !important;
}
body.shop-premium .sp-checkout-btn-outline:hover {
    border-color: var(--navy-mid) !important;
    color: var(--navy) !important;
}
body.shop-premium #validat_btn {
    display: flex;
}
body.shop-premium .sp-checkout-overlay {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    min-height: 120px;
}
body.shop-premium .sp-checkout-overlay-text {
    color: var(--white);
    font-size: 1rem;
    font-weight: 500;
    text-align: center;
    max-width: 320px;
    line-height: 1.5;
}
body.shop-premium .sp-checkout-help-mobile {
    display: none !important;
    margin-top: 20px;
}

@media (max-width: 1100px) {
    body.shop-premium .sp-checkout-grid {
        grid-template-columns: 220px minmax(0, 1fr) 280px;
        gap: 16px;
    }
}

@media (max-width: 991px) {
    body.shop-premium .sp-checkout-grid {
        display: flex;
        flex-direction: column;
        gap: 20px;
    }
    body.shop-premium .sp-checkout-aside-left {
        display: none;
    }
    body.shop-premium .sp-checkout-main {
        order: 1;
        width: 100%;
    }
    body.shop-premium .sp-checkout-aside-right {
        order: 2;
        display: flex;
        flex-direction: column;
        gap: 20px;
        position: static !important;
        transform: none !important;
    }
    body.shop-premium .sp-checkout-page #sidebar,
    body.shop-premium .sp-checkout-page .theiaStickySidebar {
        position: static !important;
        top: auto !important;
        transform: none !important;
        width: 100% !important;
        height: auto !important;
    }
    body.shop-premium .sp-checkout-page #cart_box,
    body.shop-premium .sp-checkout-page .sp-cart-panel,
    body.shop-premium .sp-checkout-cart {
        position: static !important;
        top: auto !important;
        transform: none !important;
        overflow: visible !important;
        order: 1;
        width: 100%;
    }
    body.shop-premium .sp-checkout-cart .sp-cart-items,
    body.shop-premium .sp-checkout-cart #cart {
        max-height: none !important;
        overflow: visible !important;
    }
    body.shop-premium .sp-checkout-help-mobile {
        display: block !important;
        order: 2;
        margin-top: 0;
        width: 100%;
    }
    body.shop-premium .sp-checkout-form {
        grid-template-columns: 1fr;
    }
    body.shop-premium .sp-checkout-page {
        padding-bottom: calc(64px + env(safe-area-inset-bottom, 0px));
    }
    body.shop-premium .sp-checkout-form .sp-form-control {
        font-size: 16px !important;
    }
    body.shop-premium .sp-checkout-actions {
        padding: 0 14px 14px;
    }
    body.shop-premium .sp-payment-method {
        gap: 12px;
        padding: 14px;
    }
    body.shop-premium .sp-payment-method-icon {
        width: 46px;
        height: 46px;
        font-size: 1.25rem;
    }
}

@media (max-width: 480px) {
    body.shop-premium .sp-checkout-page {
        padding-bottom: calc(56px + env(safe-area-inset-bottom, 0px));
    }
    body.shop-premium .sp-checkout-card-body {
        padding: 18px 14px;
    }
    body.shop-premium .sp-checkout-card-header {
        padding: 18px 14px;
    }
    body.shop-premium .sp-checkout-card-header h2 {
        font-size: 1.1rem;
    }
    body.shop-premium .sp-checkout-hero {
        min-height: clamp(280px, 52vw, 420px);
        padding: 28px 14px 32px;
    }
    body.shop-premium .sp-checkout-hero .sp-hero-badge {
        width: clamp(240px, 78vw, 440px);
        margin-bottom: 18px;
    }
    body.shop-premium .sp-checkout-hero h1 {
        font-size: 1.35rem;
    }
    body.shop-premium .sp-checkout-form .sp-form-field {
        padding: 12px 14px;
    }
    body.shop-premium .sp-form-control {
        min-height: 48px !important;
        padding: 13px 14px !important;
    }
    body.shop-premium .sp-checkout-btn {
        padding: 13px 16px !important;
        font-size: 0.95rem !important;
    }
    body.shop-premium .sp-payment-method-text strong {
        font-size: 0.98rem;
    }
    body.shop-premium .sp-payment-method-text span {
        font-size: 0.82rem;
    }
    body.shop-premium .sp-brand-name {
        font-size: 0.85rem;
    }
    .sp-hero {
        min-height: clamp(340px, 70vw, 500px);
        padding: 36px 10px 40px;
    }
    .sp-hero .sp-hero-badge {
        width: min(98vw, 620px);
        max-width: 98%;
        margin-bottom: 22px;
    }
}
/* ── Thank you page ── */
body.shop-premium.sp-is-thankyou {
    overflow-x: hidden;
    --font-display: 'Playwrite GB J', cursive;
    --font-body: 'Outfit', system-ui, sans-serif;
    font-family: var(--font-body);
    font-size: 18px;
    line-height: 1.65;
}
body.shop-premium.sp-is-thankyou .sp-brand-name {
    font-family: var(--font-display);
    font-size: clamp(1.15rem, 2.5vw, 1.4rem) !important;
}
body.shop-premium.sp-is-thankyou .sp-brand-tag {
    font-size: 0.82rem !important;
}
body.shop-premium.sp-is-thankyou .sp-header-actions .sp-btn-ghost {
    display: inline-flex !important;
}
body.shop-premium .sp-thankyou-page {
    min-height: calc(100dvh - var(--header-h, 72px));
    padding: clamp(32px, 6vw, 72px) 20px clamp(48px, 8vw, 96px);
    display: flex;
    align-items: center;
    justify-content: center;
}
body.shop-premium .sp-thankyou-wrap {
    width: 100%;
    max-width: 1040px;
    margin: 0 auto;
}
body.shop-premium .sp-thankyou-body {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    text-align: left;
    margin-bottom: 28px;
}
body.shop-premium .sp-thankyou-sidebar {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
@media (min-width: 992px) {
    body.shop-premium .sp-thankyou-body {
        grid-template-columns: minmax(0, 1.2fr) minmax(300px, 0.8fr);
        gap: 28px;
        align-items: start;
    }
    body.shop-premium .sp-thankyou-sidebar {
        position: sticky;
        top: calc(var(--header-h, 72px) + 20px);
    }
    body.shop-premium .sp-thankyou-order {
        margin-bottom: 0;
    }
    body.shop-premium .sp-thankyou-steps {
        margin-bottom: 0;
    }
    body.shop-premium .sp-thankyou-note {
        margin-bottom: 0;
    }
}
body.shop-premium .sp-thankyou-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
    padding: clamp(28px, 5vw, 48px) clamp(22px, 4vw, 40px);
    text-align: center;
}
body.shop-premium .sp-thankyou-icon {
    width: clamp(72px, 14vw, 88px);
    height: clamp(72px, 14vw, 88px);
    margin: 0 auto 20px;
    border-radius: 50%;
    background: linear-gradient(135deg, #22c55e, #16a34a);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 12px 32px rgba(22, 163, 74, 0.28);
    animation: spThankyouPop 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) both;
}
body.shop-premium .sp-thankyou-icon svg {
    width: 42%;
    height: 42%;
}
@keyframes spThankyouPop {
    0% { transform: scale(0.6); opacity: 0; }
    100% { transform: scale(1); opacity: 1; }
}
body.shop-premium .sp-thankyou-badge {
    display: inline-block;
    padding: 8px 16px;
    margin-bottom: 14px;
    border-radius: var(--radius-pill);
    background: rgba(251, 208, 5, 0.15);
    color: #c9a800;
    font-size: 0.92rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}
body.shop-premium .sp-thankyou-title {
    font-family: var(--font-display);
    font-size: clamp(2.15rem, 5.5vw, 3rem);
    font-weight: 400;
    color: var(--primary, #105caa);
    line-height: 1.15;
    margin: 0 0 14px;
}
body.shop-premium .sp-thankyou-lead {
    font-family: var(--font-body);
    font-size: clamp(1.12rem, 2.4vw, 1.3rem);
    color: var(--text-muted);
    line-height: 1.65;
    margin: 0 0 28px;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
}
body.shop-premium .sp-thankyou-order {
    text-align: left;
    margin-bottom: 0;
    padding: 22px;
    background: var(--surface);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
}
body.shop-premium .sp-thankyou-order-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
    padding-bottom: 18px;
    margin-bottom: 18px;
    border-bottom: 1px solid var(--border-light);
}
body.shop-premium .sp-thankyou-order-label {
    display: block;
    font-family: var(--font-body);
    font-size: 0.92rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 8px;
}
body.shop-premium .sp-thankyou-order-id {
    font-family: var(--font-display);
    font-size: clamp(1.85rem, 4vw, 2.35rem);
    font-weight: 400;
    color: var(--primary, #105caa);
    line-height: 1.15;
}
body.shop-premium .sp-thankyou-order-meta {
    font-family: var(--font-body);
    font-size: 1.08rem;
    color: var(--text-muted);
    padding-top: 6px;
}
body.shop-premium .sp-thankyou-order-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    margin-bottom: 20px;
}
body.shop-premium .sp-thankyou-info-block {
    padding: 14px 16px;
    background: var(--white);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
}
body.shop-premium .sp-thankyou-info-block h3 {
    font-family: var(--font-display);
    font-size: 1.35rem;
    font-weight: 400;
    color: var(--primary, #105caa);
    margin: 0 0 12px;
}
body.shop-premium .sp-thankyou-info-block p {
    font-family: var(--font-body);
    font-size: 1.08rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin: 0 0 8px;
    font-weight: 400;
}
body.shop-premium .sp-thankyou-info-block p strong {
    font-weight: 600;
    color: var(--text);
}
body.shop-premium .sp-thankyou-info-block p:last-child {
    margin-bottom: 0;
}
body.shop-premium .sp-thankyou-items h3 {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 400;
    color: var(--primary, #105caa);
    margin: 0 0 14px;
}
body.shop-premium .sp-thankyou-items-list {
    list-style: none;
    margin: 0 0 18px;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
body.shop-premium .sp-thankyou-item {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 14px;
    padding: 14px 16px;
    background: var(--white);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
}
body.shop-premium .sp-thankyou-item-main {
    flex: 1;
    min-width: 0;
}
body.shop-premium .sp-thankyou-item-main strong {
    display: block;
    font-family: var(--font-body);
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 6px;
    line-height: 1.45;
}
body.shop-premium .sp-thankyou-item-label,
body.shop-premium .sp-thankyou-item-category {
    display: block;
    font-family: var(--font-body);
    font-size: 1.05rem;
    color: var(--text-muted);
    line-height: 1.5;
}
body.shop-premium .sp-thankyou-item-options {
    list-style: none;
    margin: 8px 0 0;
    padding: 0;
}
body.shop-premium .sp-thankyou-item-unit,
body.shop-premium .sp-thankyou-option-unit {
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 500;
    color: rgba(15, 23, 42, 0.72);
}
body.shop-premium .sp-thankyou-item-options li {
    position: relative;
    padding-left: 14px;
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--text-muted);
    line-height: 1.5;
}
body.shop-premium .sp-thankyou-item-options li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #fbd005;
}
body.shop-premium .sp-thankyou-option-row {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
}
body.shop-premium .sp-thankyou-option-label {
    flex: 1;
    min-width: 0;
}
body.shop-premium .sp-thankyou-option-pricing {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
}
body.shop-premium .sp-thankyou-option-qty {
    font-weight: 600;
    color: rgba(15, 23, 42, 0.85);
}
body.shop-premium .sp-thankyou-option-total {
    font-weight: 700;
    color: #0f172a;
}
body.shop-premium .sp-thankyou-item-side {
    flex-shrink: 0;
    text-align: right;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 4px;
}
body.shop-premium .sp-thankyou-item-qty {
    font-family: var(--font-body);
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--text-muted);
}
body.shop-premium .sp-thankyou-item-price {
    font-family: var(--font-body);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary, #105caa);
    white-space: nowrap;
}
body.shop-premium .sp-thankyou-totals {
    padding-top: 16px;
    border-top: 1px solid var(--border-light);
}
body.shop-premium .sp-thankyou-total-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 8px 0;
    font-family: var(--font-body);
    font-size: 1.1rem;
    color: var(--text-muted);
}
body.shop-premium .sp-thankyou-total-row strong {
    font-weight: 700;
    color: var(--text);
}
body.shop-premium .sp-thankyou-total-row-grand {
    margin-top: 10px;
    padding-top: 14px;
    border-top: 1px dashed var(--border);
    font-size: 1.3rem;
}
body.shop-premium .sp-thankyou-total-row-grand span,
body.shop-premium .sp-thankyou-total-row-grand strong {
    color: var(--primary, #105caa);
    font-weight: 700;
}
body.shop-premium .sp-thankyou-steps {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
    text-align: left;
}
body.shop-premium .sp-thankyou-steps li {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 16px;
    background: var(--surface);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
}
body.shop-premium .sp-thankyou-step-icon {
    flex-shrink: 0;
    width: 52px;
    height: 52px;
    min-width: 52px;
    min-height: 52px;
    border-radius: 12px;
    background: rgba(16, 92, 170, 0.08);
    color: #fbd005;
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    line-height: 0;
    padding: 0;
}
body.shop-premium .sp-thankyou-step-icon svg {
    display: block;
    width: 26px;
    height: 26px;
    flex-shrink: 0;
    margin: 0;
}
body.shop-premium .sp-thankyou-steps li > div {
    flex: 1;
    min-width: 0;
}
body.shop-premium .sp-thankyou-steps li strong {
    display: block;
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 400;
    color: var(--primary, #105caa);
    margin-bottom: 6px;
    line-height: 1.35;
}
body.shop-premium .sp-thankyou-steps li div span {
    display: block;
    font-family: var(--font-body);
    font-size: 1.08rem;
    color: var(--text-muted);
    line-height: 1.6;
    font-weight: 400;
}
body.shop-premium .sp-thankyou-note {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 16px 18px;
    margin-bottom: 0;
    background: rgba(16, 92, 170, 0.06);
    border: 1px solid rgba(16, 92, 170, 0.12);
    border-radius: var(--radius-md);
    text-align: left;
}
body.shop-premium .sp-thankyou-note svg {
    width: 26px;
    height: 26px;
    flex-shrink: 0;
    color: var(--navy-mid);
    margin-top: 2px;
}
body.shop-premium .sp-thankyou-note p {
    margin: 0;
    font-size: 1.08rem;
    color: var(--gray-700, var(--text));
    line-height: 1.65;
    font-weight: 400;
}
body.shop-premium .sp-thankyou-contact {
    margin-bottom: 0;
}
body.shop-premium .sp-thankyou-contact-line {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin: 0 0 10px;
    font-family: var(--font-body);
    font-size: 1.05rem;
    color: var(--text-muted);
    line-height: 1.55;
}
body.shop-premium .sp-thankyou-contact-line:last-child {
    margin-bottom: 0;
}
body.shop-premium .sp-thankyou-contact-line svg {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    margin-top: 2px;
    color: #fbd005;
}
body.shop-premium a.sp-thankyou-contact-link {
    text-decoration: none;
    color: var(--text-muted);
    transition: color var(--transition);
}
body.shop-premium a.sp-thankyou-contact-link:hover {
    color: var(--primary, #105caa);
}
body.shop-premium .sp-thankyou-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
}
body.shop-premium .sp-thankyou-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 54px;
    padding: 16px 28px;
    border-radius: var(--radius-pill);
    font-family: var(--font-body);
    font-size: 1.05rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    text-decoration: none;
    transition: all var(--transition);
    flex: 1 1 180px;
    max-width: 100%;
}
body.shop-premium .sp-thankyou-btn-primary {
    background: #000000;
    color: #ffffff;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.22);
}
body.shop-premium .sp-thankyou-btn-primary:hover {
    background: #1a1a1a;
    color: #ffffff;
    transform: translateY(-1px);
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.28);
}
body.shop-premium .sp-thankyou-btn-outline {
    background: var(--white);
    color: var(--navy);
    border: 1.5px solid var(--border);
}
body.shop-premium .sp-thankyou-btn-outline:hover {
    background: var(--surface);
    border-color: var(--navy-mid);
    color: var(--navy);
}

@media (max-width: 768px) {
    body.shop-premium .sp-thankyou-page {
        padding: 24px 16px 40px;
        align-items: flex-start;
    }
    body.shop-premium .sp-thankyou-card {
        padding: 24px 18px 28px;
        border-radius: var(--radius-lg);
    }
    body.shop-premium .sp-thankyou-icon {
        width: 68px;
        height: 68px;
        margin-bottom: 16px;
    }
    body.shop-premium .sp-thankyou-title {
        font-size: 1.9rem;
    }
    body.shop-premium .sp-thankyou-lead {
        font-size: 1.12rem;
        margin-bottom: 22px;
    }
    body.shop-premium .sp-thankyou-order {
        padding: 18px 16px;
    }
    body.shop-premium .sp-thankyou-order-grid {
        grid-template-columns: 1fr;
    }
    body.shop-premium .sp-thankyou-item {
        flex-direction: column;
        gap: 10px;
    }
    body.shop-premium .sp-thankyou-item-side {
        width: 100%;
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: flex-end;
        align-items: center;
        gap: 8px;
    }
    body.shop-premium .sp-thankyou-option-row {
        flex-direction: column;
        gap: 6px;
    }
    body.shop-premium .sp-thankyou-option-pricing {
        width: 100%;
        justify-content: flex-end;
    }
    body.shop-premium .sp-thankyou-steps li {
        padding: 12px 14px;
        gap: 12px;
    }
    body.shop-premium .sp-thankyou-step-icon {
        width: 48px;
        height: 48px;
        min-width: 48px;
        min-height: 48px;
    }
    body.shop-premium .sp-thankyou-step-icon svg {
        width: 24px;
        height: 24px;
    }
    body.shop-premium .sp-thankyou-note {
        padding: 14px;
        margin-bottom: 22px;
    }
    body.shop-premium .sp-thankyou-actions {
        flex-direction: column;
    }
    body.shop-premium .sp-thankyou-btn {
        width: 100%;
        flex: none;
    }
    body.shop-premium.sp-is-thankyou .sp-brand-name {
        font-size: 1.08rem !important;
    }
    body.shop-premium.sp-is-thankyou .sp-brand-tag {
        font-size: 0.95rem !important;
    }
}

@media (max-width: 480px) {
    body.shop-premium .sp-thankyou-page {
        padding: 20px 14px 32px;
    }
    body.shop-premium .sp-thankyou-card {
        padding: 22px 16px 26px;
    }
    body.shop-premium .sp-thankyou-title {
        font-size: 1.7rem;
    }
    body.shop-premium .sp-thankyou-steps li strong {
        font-size: 1.18rem;
    }
    body.shop-premium .sp-thankyou-steps li div span {
        font-size: 1.05rem;
    }
    body.shop-premium .sp-thankyou-info-block p,
    body.shop-premium .sp-thankyou-note p {
        font-size: 1.05rem;
    }
    body.shop-premium .sp-thankyou-order-meta,
    body.shop-premium .sp-thankyou-item-label,
    body.shop-premium .sp-thankyou-item-category,
    body.shop-premium .sp-thankyou-item-options li {
        font-size: 1.02rem;
    }
}
