

/* ===== HERO ===== */
.ws-hero {
    position: relative;
    overflow: hidden;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

    .ws-hero::before {
        content: "";
        position: absolute;
        inset: 0;
        background: radial-gradient(1200px 520px at 50% 40%, rgba(0,0,0,.04), rgba(0,0,0,.18) 80%), linear-gradient(to bottom, rgba(10,18,35,.25), rgba(10,18,35,.78));
        z-index: 0;
        pointer-events: none;
    }

    .ws-hero .container {
        position: relative;
        z-index: 1;
        min-height: 280px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

.ws-hero-title {
    font-family: 'Oswald', sans-serif;
    margin: 0 auto;
    color: #fff;
    font-weight: 900;
    letter-spacing: .09em;
    line-height: 1.15;
    font-size: clamp(30px, 3.1vw, 56px);
    text-transform: uppercase;
    text-shadow: 0 3px 12px rgba(0,0,0,.35);
    max-width: 1200px;
}

.ws-hero-sub {
    font-family: 'Oswald', sans-serif;
    margin: .8rem auto 0;
    color: rgba(255,255,255,.92);
    font-size: clamp(1.6rem, 1.65vw, 1.95rem);
    font-weight: 400; /* <- key */
    line-height: 1.35;
    letter-spacing: .025em;
    text-shadow: 0 2px 8px rgba(0,0,0,.35);
    max-width: 760px;
}

/* Desktop: keep subtitle one line if there is room */
@media (min-width: 1200px) {
    .ws-hero-sub {
        white-space: nowrap;
        max-width: none;
    }
}

/* Tablet */
@media (max-width: 991.98px) {
    .ws-hero .container {
        min-height: 280px;
        padding-left: 36px;
        padding-right: 36px;
    }

    .ws-hero-title {
        font-size: clamp(38px, 6vw, 52px);
        line-height: 1.45;
        letter-spacing: .08em;
        max-width: 700px;
    }

    .ws-hero-sub {
        font-size: 1.7rem;
        max-width: 560px;
    }
}

/* Mobile */
@media (max-width: 575.98px) {
    .ws-hero {
        background-position: center;
    }

        .ws-hero .container {
            min-height: 306px;
            padding-left: 26px;
            padding-right: 26px;
        }

    .ws-hero-title {
        font-size: 2.35rem;
        line-height: 1.55;
        letter-spacing: .06em;
        max-width: 330px;
    }

    .ws-hero-sub {
        font-size: 1.35rem;
        line-height: 1.55;
        max-width: 320px;
        color: rgba(255,255,255,.9);
    }
}

/*
    ===========================
    finished hero banner
    ============================
*/


/* ===========================
   Chips comparison cards
   =========================== */

/* OUTER card (the thing that hovers + holds watermark) */
.ws-compareCard {
    position: relative;
    height: 100%;
    border-radius: 18px;
    background: #fff;
    border: 1px solid rgba(16,24,40,.08);
    box-shadow: 0 14px 32px rgba(16,24,40,.10);
    overflow: hidden;
    transition: transform .18s ease, box-shadow .18s ease, outline-color .18s ease;
    outline: 2px dashed rgba(11,90,166,.30);
    outline-offset: 3px;
}

    /* Hover motion */
    .ws-compareCard:hover {
        transform: translateY(-6px);
        box-shadow: 0 20px 48px rgba(16,24,40,.16);
        outline-color: rgba(11,90,166,.50);
    }

    /* Sheen */
    .ws-compareCard::before {
        content: "";
        position: absolute;
        inset: -40% -60%;
        background: linear-gradient(115deg, rgba(255,255,255,0) 42%, rgba(255,255,255,.22) 50%, rgba(255,255,255,0) 58%);
        transform: translateX(-30%) rotate(10deg);
        opacity: 0;
        transition: opacity .2s ease, transform .6s ease;
        pointer-events: none;
        z-index: 0;
    }

    .ws-compareCard:hover::before {
        opacity: 1;
        transform: translateX(30%) rotate(10deg);
    }

    /* Watermark (uses CSS var) */
    .ws-compareCard::after {
        content: "";
        position: absolute;
        inset: 0;
        background-image: var(--wm, none);
        background-repeat: no-repeat;
        background-position: right 22px bottom 18px;
        background-size: 220px auto;
        opacity: .10; /* keep subtle; raise to .12 if needed */
        pointer-events: none;
        z-index: 0;
    }

    /* Make sure content sits above pseudo-elements */
    .ws-compareCard > * {
        position: relative;
        z-index: 1;
    }

    /* Optional featured middle card */
    .ws-compareCard.is-featured {
        background: linear-gradient(180deg, rgba(13,110,253,.06), #fff 55%);
        border-color: rgba(13,110,253,.18);
    }


/* INNER layout wrapper (transparent so watermark can show) */
.ws-chipcard {
    display: flex;
    flex-direction: column;
    background: transparent; /* important */
    border: 0; /* important */
    box-shadow: none; /* important */
    border-radius: 18px;
    padding: 26px 24px 22px;
}

/* Title / subtitle */
.ws-chipcard-title {
    display: inline-block;
    color: #0b5aa6;
    text-decoration: none !important;
    font-size: 25px;
    letter-spacing: .2em;
}

    .ws-chipcard-title:hover {
        text-decoration: underline !important;
    }

.ws-chipcard-sub {
    margin-top: 6px;
    color: rgba(31,53,83,.78);
    letter-spacing: .06em;
    font-size: .95rem;
}

/* Blocks (YOU NEED / YOU GET) */
.ws-chipblock {
    margin-top: 14px;
    padding: 14px 14px 12px;
    border-radius: 12px;
    background: rgba(11,90,166,.06);
    border: 1px solid rgba(31,53,83,.10);
}

/* This is the key fix:
   margin-top:auto goes ONLY here (no duplicate margin-top). */
.ws-chipblock--get {
    margin-top: auto;
    background: rgba(255,255,255,.72); /* make slightly transparent */
    border: 1px solid rgba(31,53,83,.12);
}

/* Label */
.ws-chiplabel {
    font-size: .85rem;
    letter-spacing: .12em;
    color: rgba(31,53,83,.85);
    margin-bottom: 10px;
}

/* Chips */
.ws-chips {
    display: flex;
    flex-wrap: wrap;
    gap: .55rem .55rem;
}

.ws-chip {
    border-radius: 12px; /* smaller radius (your ask) */
    padding: .45rem .70rem;
    display: inline-flex;
    align-items: flex-start;
    gap: .55rem;
    border: 1px solid rgba(31,53,83,.14);
    background: rgba(255,255,255,.92); /* slightly transparent = watermark visible everywhere */
    color: rgba(31,53,83,.92);
    font-size: .95rem;
    line-height: 1.25;
    max-width: 100%;
    white-space: normal;
}

.ws-chipicon {
    width: 18px;
    flex: 0 0 18px;
    margin-top: .18rem;
    line-height: 1;
    color: #0b5aa6;
}

/* Mobile */
@media (max-width:575.98px) {
    .ws-chipcard {
        padding: 22px 18px 18px;
    }

    .ws-chipcard-title {
        font-size: 24px;
    }
}

.read-before {
    outline: 2px dashed rgba(11,90,166,.30) !important;
}


/* 
    ================= 
 Modern promo cards 
    ===== ============
*/
.ws-promoCard:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 40px rgba(16,24,40,.16);
}

.ws-promoMedia:after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,.00), rgba(0,0,0,.22));
}

.ws-promoTitle {
    color: rgba(31,53,83,.95);
    letter-spacing: .10em;
    font-family: 'Oswald', sans-serif;
    font-size: 1.2rem;
    margin-bottom: 8px;
}

.ws-promoText {
    color: rgba(31,53,83,.75);
    font-size: 1rem;
    line-height: 1.35;
    margin-bottom: 0;
}

.ws-promoCta {
    font-family: 'Oswald', sans-serif;
    color: #0b5aa6;
    font-size: 1.2rem;
    letter-spacing: .05em;
    margin-top: auto;
    padding-top: 6px;
}


.card-container {
    display: flex; /* Establishes a flex container */
    justify-content: center; /* Centers cards horizontally along the main axis */
    align-items: stretch; /* Centers cards vertically (optional) */
    gap: 1.5rem; /* Adds space between the cards */
    flex-wrap: wrap; /* Allows cards to wrap to the next line if the screen is too narrow */
}

/* CARD: full height + consistent layout */
.ws-promoCard {
    display: flex;
    flex-direction: column;
    min-height: 325px;
    border-radius: 18px;
    overflow: hidden;
    text-decoration: none;
    background: #fff;
    box-shadow: 0 12px 28px rgba(16,24,40,.10);
    transition: transform .18s ease, box-shadow .18s ease;
}

/* image area must be SAME HEIGHT on all cards */
.ws-promoMedia {
    position: relative;
    height: 165px; /* key: consistent */
    background-size: cover;
    background-position: center;
}

/* body is flex so CTA can push down */
.ws-promoBody {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 20px;
    flex: 1;
}

@media (max-width: 767.98px) {
    .card-container {
        margin-left: 12px;
        margin-right: 12px;
    }

        .card-container > [class*="col-"] {
            padding-left: 6px;
            padding-right: 6px;
        }
}
/* =========================================================
   WEBSTORE SEARCH – SINGLE SOURCE OF TRUTH (FINAL)
   Put at VERY END of custom.css
   ========================================================= */

/* 0) THE REAL FIX for 1200–1919: your .container is too narrow (BS4 = 1140px).
      Widen container ONLY on search page so columns have room. */
@media (min-width: 1200px) {
    main section.py-5 .container {
        max-width: 1400px; /* try 1400 first; you can go 1520 if you want */
    }
}

/* 1) PAGE LAYOUT RAILS (filters + results) */
@media (min-width: 992px) {
    .search-layout {
        display: grid !important;
        grid-template-columns: 320px minmax(0, 1fr);
        gap: 28px;
        align-items: start;
    }

        .search-layout > .search-filters-col,
        .search-layout > .search-results-col {
            width: auto !important;
            max-width: none !important;
            flex: none !important;
            min-width: 0 !important;
        }
}

@media (min-width: 992px) and (max-width: 1199.98px) {
    .search-layout {
        grid-template-columns: 280px minmax(0, 1fr);
    }
}

/* 2) FILTER PANEL (your pretty card) */
#filters {
    background: #fff;
    border: 1px solid rgba(16,24,40,.08);
    border-radius: 18px;
    box-shadow: 0 14px 32px rgba(16,24,40,.08);
    padding: 18px 16px;
}

    #filters .border-dlp,
    #filters .ws-chipblock,
    #filters .ws-chipPanel,
    #filters .card,
    #filters .panel,
    #filters .panel-default {
        border: 0 !important;
        box-shadow: none !important;
        background: transparent !important;
        border-radius: 0 !important;
    }

    #filters h1, #filters h2, #filters h3, #filters h4, #filters h5,
    #filters .h1, #filters .h2, #filters .h3, #filters .h4, #filters .h5,
    #filters .Oswald {
        font-weight: 400 !important;
        letter-spacing: .10em;
    }

    #filters .form-group {
        display: flex;
        align-items: flex-start;
        justify-content: space-between;
        gap: 10px;
    }

        #filters .form-group label {
            flex: 1 1 auto;
            min-width: 0;
        }

        #filters .form-group span {
            float: none !important;
            flex: 0 0 auto;
            white-space: nowrap;
        }

/* 3) RESULT CARD ROW (stable: left grows, right fixed) */
.row.border-dlp.js-item-row {
    border: 1px solid rgba(16,24,40,.08) !important;
    border-radius: 14px !important;
    background: #fff !important;
    box-shadow: 0 10px 26px rgba(16,24,40,.06) !important;
    overflow: visible !important; /* IMPORTANT: stop clipping */
}

/* kill row negative margins/gutters that cause clipping + purple “missing” space */
#sr-items .row.border-dlp.js-item-row {
    --bs-gutter-x: 0 !important;
    --bs-gutter-y: 0 !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
}

@media (min-width: 992px) {
    .row.border-dlp.js-item-row {
        display: grid !important;
        grid-template-columns: minmax(0, 1fr) 260px;
    }

        .row.border-dlp.js-item-row > [class*="col-"] {
            width: auto !important;
            max-width: none !important;
            flex: none !important;
            min-width: 0 !important;
        }

        .row.border-dlp.js-item-row > .col-lg-3 {
            border-left: 1px solid rgba(16,24,40,.06) !important;
        }
}

@media (min-width: 1400px) {
    .row.border-dlp.js-item-row {
        grid-template-columns: minmax(0, 1fr) 280px;
    }
}

@media (min-width: 1920px) {
    .row.border-dlp.js-item-row {
        grid-template-columns: minmax(0, 1fr) 320px;
    }
}

/* Mobile stacking divider */
@media (max-width: 991.98px) {
    .row.border-dlp.js-item-row > .col-lg-3 {
        border-left: 0 !important;
        border-top: 1px solid rgba(16,24,40,.06) !important;
        margin-top: 10px;
        padding-top: 16px !important;
    }
}

/* spacing + typography safety */
.row.border-dlp.js-item-row > [class*="col-"] {
    padding-top: 14px !important;
    padding-bottom: 14px !important;
}

.row.border-dlp.js-item-row a,
.row.border-dlp.js-item-row a:hover {
    text-decoration: none !important;
}

.row.border-dlp.js-item-row h2,
.row.border-dlp.js-item-row .text-dark,
.row.border-dlp.js-item-row .form-check-label {
    min-width: 0;
    overflow-wrap: anywhere;
}

/* right column buttons */
.row.border-dlp.js-item-row .col-lg-3 .btn {
    white-space: normal !important;
    line-height: 1.15;
    padding: .35rem .6rem !important;
    font-size: .9rem !important;
}

.search-layout > .search-filters-col,
.search-layout > .search-results-col {
    width: auto !important;
    max-width: none !important;
    flex: none !important;
    min-width: 0 !important;
}

@media (min-width: 992px) {
    .search-layout > .search-results-col {
        width: 100% !important;
        max-width: 100% !important;
        flex: 1 1 auto !important;
    }
}

@media (min-width: 992px) {
    .search-filters-col {
        width: 100% !important;
        min-width: 0 !important;
    }

        .search-filters-col > * {
            width: 100% !important;
            max-width: 100% !important;
            min-width: 0 !important;
            flex: none !important;
        }
}

@media (min-width: 992px) {
    .search-results-col {
        width: 100% !important;
        max-width: 100% !important;
        min-width: 0 !important;
    }
}
/*
    =======================
    gradient for price part
    =======================*/
@media (min-width: 992px) {
    .row.border-dlp.js-item-row > .col-lg-3 {
        background: rgba(16,24,40,.018);
    }
}


@media (min-width: 992px) {
    .row.border-dlp.js-item-row > .col-lg-3 {
        position: relative;
    }

        .row.border-dlp.js-item-row > .col-lg-3::before {
            content: "";
            position: absolute;
            left: 0;
            top: 12px;
            bottom: 12px;
            width: 1px;
            background: linear-gradient(to bottom, transparent, rgba(16,24,40,.30), transparent);
        }
}

.search-results-col .news-item,
.search-results-col .ws-newsResult { /* keep whichever matches */
    border-radius: 18px !important;
    overflow: hidden;
    margin: 0 3px;
}

.js-item-row {
    transition: transform .18s ease, box-shadow .18s ease;
}



    .js-item-row:hover {
        transform: translateY(-3px);
        box-shadow: 0 12px 26px rgba(0,0,0,.12);
        border-color: rgba(0,0,0,.08);
    }
/*============
    finish
    ===============
*/

.price-panel .btn {
    margin-top: 6px;
    margin-bottom: 12px;
    align-self: flex-start;
    padding: 6px 14px;
    font-size: 0.9rem;
}

.price-panel .printing-options {
    margin-top: 12px;
}

.price-panel .amazon-logo {
    margin-top: 14px;
}

.price-panel {
    display: flex;
    flex-direction: column;
}

    .price-panel .btn:hover {
        transform: translateY(-1px);
    }
/* =========================================
   CART BUTTON SYSTEM (single source of truth)
   ========================================= */

/* Base button */

.cart-btn {
    font-family: 'Oswald', sans-serif !important;
    letter-spacing: 2px !important;
    position: relative;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 8px !important;
    color: #fff !important;
    border: 1px solid rgba(0,0,0,.08) !important;
    border-radius: 5px !important;
    background: #1565c0 !important;
    box-shadow: 0 3px 8px rgba(0,0,0,.10) !important;
    white-space: nowrap !important;
    width: auto !important;
    min-width: 0 !important;
    padding: 0 18px !important;
    height: 45px !important;
    font-size: 18px !important;
    line-height: 40px !important;
    min-width: 210px !important;
    max-width: 240px !important;
    transition: background-color .18s ease, box-shadow .18s ease, transform .18s ease;
}

.cart-btn--wide {
    width: 100% !important;
}

.cart-btn--max {
    width: 100% !important;
    max-width: 450px !important;
}


.cart-btn i {
    font-size: 18px !important;
    line-height: 1;
}

.cart-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 5px 12px rgba(0,0,0,.14) !important;
}

.cart-btn:active {
    transform: translateY(0);
    box-shadow: 0 2px 6px rgba(0,0,0,.12) !important;
}

.cart-btn:focus,
.cart-btn:active {
    outline: 0 !important;
}

.cart-btn--sm {
    height: 45px !important;
    padding: 0 18px !important;
    font-size: 18px !important;
}
/* Gloss highlight */
.cart-btn::before {
    content: "";
    position: absolute;
    left: 1px;
    right: 1px;
    top: 1px;
    height: 35%;
    border-radius: 5px;
    background: linear-gradient(to bottom, rgba(255,255,255,.08), rgba(255,255,255,0));
    pointer-events: none;
}


/* =========================================
   BADGES
   ========================================= */

/* Quantity badge on Add To Cart button */
.cart-btn .u-badge-v1 {
    font-family: Arial, sans-serif !important;
    font-weight: 500;
    position: absolute;
    top: -9px;
    right: -9px;
    min-width: 24px;
    height: 24px;
    line-height: 24px;
    padding: 0 7px;
    font-size: 15px;
    border-radius: 999px;
    background: #e53935;
    color: #fff !important;
    box-shadow: 0 3px 8px rgba(0,0,0,.25);
}

/* Top cart badge */
#basket-bar-invoker {
    position: relative;
}

    #basket-bar-invoker .ws-basket.u-badge-v1 {
        position: absolute;
        top: 6px !important;
        right: 4px !important;
        min-width: 24px;
        height: 24px;
        line-height: 24px;
        padding: 0 6px;
        border-radius: 999px;
        background: #e53935;
        color: #fff !important;
        font-family: Arial, sans-serif;
        font-weight: 500;
        font-size: 13px;
        box-shadow: 0 3px 8px rgba(0,0,0,.25);
        text-align: center;
        display: inline-block;
    }

    #basket-bar-invoker .ws-basket:empty {
        display: none;
    }



/* small Add To Cart link itself */
a.ga-uab-view.ga-uab-add.ws-addbutton.btn.cart-btn {
    font-size: 18px !important;
    padding: 0 18px !important;
    height: 45px !important;
    line-height: 40px !important;
}

    /* icon inside small Add To Cart */
    a.ga-uab-view.ga-uab-add.ws-addbutton.btn.cart-btn > i {
        font-size: 18px !important;
        line-height: 1 !important;
        margin-right: 8px !important;
    }

    /* TEXT span only — NOT the badge */
    a.ga-uab-view.ga-uab-add.ws-addbutton.btn.cart-btn > span:last-child {
        font-size: 18px !important;
        line-height: 1 !important;
        padding: 0 !important;
        margin: 0 !important;
        display: inline !important;
        background: none !important;
        white-space: nowrap !important;
    }



/* =========================
   PAGINATION
   ========================= */

.u-pagination-v1__item {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 12px !important;
    border: 1px solid #d6d6d6;
    border-radius: 6px;
    background: #fff;
    color: #222 !important;
    text-decoration: none !important;
    transition: all .18s ease;
}

    /* hover */
    .u-pagination-v1__item:hover {
        transform: translateY(-1px);
        border-color: #c2c2c2;
        box-shadow: 0 6px 14px rgba(0,0,0,.08);
        color: #000 !important;
    }

/* active/current page */
.u-pagination-v1-5--active {
    background: rgba(200,200,200,.75) !important;
    border-color: rgba(180,180,180,.8) !important;
    color: #111 !important;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    box-shadow: 0 4px 10px rgba(0,0,0,.06), inset 0 1px 0 rgba(255,255,255,.45);
    position: relative;
}

/* arrows */
.u-pagination-v1__item i {
    font-size: 18px;
    line-height: 1;
}

/* spacing between items */
.list-inline-item {
    margin-right: 8px !important;
}

    /* remove extra margin on the last one */
    .list-inline-item:last-child {
        margin-right: 0 !important;
    }

    /* ellipsis */
    .list-inline-item span.g-pa-4-11 {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        min-width: 40px;
        height: 40px;
        padding: 0 12px !important;
        color: #222 !important;
    }

/* mobile - slightly tighter */
@media (max-width: 575.98px) {
    .u-pagination-v1__item {
        min-width: 36px;
        height: 36px;
        padding: 0 10px !important;
    }

    .list-inline-item {
        margin-right: 6px !important;
    }

        .list-inline-item span.g-pa-4-11 {
            min-width: 36px;
            height: 36px;
            padding: 0 10px !important;
        }
}

.u-pagination-v1-5--active::before {
    content: "";
    position: absolute;
    left: 1px;
    right: 1px;
    top: 1px;
    height: 45%;
    border-radius: 6px;
    background: linear-gradient(to bottom, rgba(255,255,255,.35), rgba(255,255,255,0));
    pointer-events: none;
}
/*
    ==================================
    top bar with items count, pagination, etc
    ==================================
*/
.search-top-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
    min-height: 52px;
}

.search-top-left {
    display: flex;
    align-items: center;
    gap: 8px;
}

.search-top-count {
    font-family: 'Oswald', sans-serif;
    font-size: 18px;
    letter-spacing: .5px;
    color: #1565c0;
    opacity: .9;
}

.search-top-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 12px;

    .search-top-right nav {
        margin-bottom: 0 !important;
    }
}

.search-top-left select {
    height: 32px;
    border: 1px solid #cfcfcf;
    border-radius: 6px;
    padding: 0 10px;
    background: #fff;
}

.search-top-left .dropdown-toggle {
    width: 75px;
    text-align: center;
    font-family: 'Oswald', sans-serif;
    letter-spacing: 1px;
}

.search-top-left .dropdown {
    position: relative;
}

.search-top-left .dropdown-menu {
    left: 0;
    right: 0;
    min-width: 100%;
    width: 100%;
    padding: 4px 0px;
    box-shadow: 0 6px 14px rgba(0,0,0,.12);
}

.search-top-left .dropdown-item {
    font-family: 'Oswald', sans-serif;
    letter-spacing: 1px;
    font-size: 15px;
    border-radius: 6px;
    text-align: center;
    padding: 6px 0;
}

/*
    ===========
    other buttons
    ============
*/
.cart-btn--alt {
    background: rgba(21,101,192,.96) !important;
    box-shadow: 0 6px 14px rgba(0,0,0,.12), inset 0 1px 0 rgba(255,255,255,.25);
}

    .cart-btn--alt:hover {
        background: #174a84 !important;
    }


/* icon */
a.service-btn > i {
    font-size: 18px !important;
    line-height: 1 !important;
}

/*
        ===============
        customer service button
        ================
    */
a.service-btn > span {
    font-family: 'Oswald', sans-serif !important;
    font-size: 18px !important;
    letter-spacing: 2px !important;
}

a.service-btn {
    font-family: 'Oswald', sans-serif !important;
    font-size: 18px !important;
    letter-spacing: 2px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 8px !important;
    height: 45px !important;
    padding: 0 18px !important;
    line-height: 40px !important;
    white-space: nowrap !important;
}
/*
        ===============
        subscription button
        ================
    */
a.subscription-btn {
    font-family: 'Oswald', sans-serif !important;
    font-size: 18px !important;
    letter-spacing: 2px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 8px !important;
    height: 45px !important;
    padding: 0 18px !important;
    line-height: 40px !important;
    white-space: nowrap !important;
}

    a.subscription-btn > i {
        font-size: 11px !important;
        line-height: 1 !important;
    }

    a.subscription-btn > span {
        font-family: 'Oswald', sans-serif !important;
        font-size: 18px !important;
        line-height: 1 !important;
        margin: 0 !important;
        padding: 0 !important;
        white-space: nowrap !important;
    }
/*
        ===============
        download button
        ================
    */
a.download-btn {
    font-family: 'Oswald', sans-serif !important;
    font-size: 18px !important;
    letter-spacing: 2px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 8px !important;
    height: 45px !important;
    padding: 0 18px !important;
    line-height: 40px !important;
    white-space: nowrap !important;
}

    a.download-btn > i {
        font-size: 18px !important;
        line-height: 1 !important;
    }

    a.download-btn > span {
        font-family: 'Oswald', sans-serif !important;
        font-size: 18px !important;
        line-height: 1 !important;
        margin: 0 !important;
        padding: 0 !important;
        white-space: nowrap !important;
    }

.search-layout {
    width: 100%;
    max-width: 100%;
}

.search-results-col {
    width: 100%;
    max-width: 100%;
}

.search-filters-col {
    width: 100%;
    max-width: 100%;
}

@media (max-width: 991.98px) {

    /* =================================
        top info row: Show / items / pagination 
        ==================================
    */
    .search-top-left,
    .search-top-count,
    .search-top-right {
        width: 100%;
        margin: 0 !important;
        text-align: center !important;
        justify-content: center !important;
    }

    .search-top-left {
        margin-bottom: 10px !important;
    }

    .search-top-count {
        margin-bottom: 10px !important;
    }

    .search-top-right {
        display: flex !important;
        flex-direction: column;
        align-items: center !important;
        gap: 10px;
    }

        .search-top-right nav {
            margin-bottom: 0 !important;
        }
}
/* 
    =================
    Add Selected button 
    =================
*/
#btnAddSelected {
    width: 100%;
    max-width: 270px;
    margin: 0 auto !important;
    justify-content: center !important;
}

/* Select all row */
.row.mb-3 {
    row-gap: 10px;
}

    .row.mb-3 > div {
        width: 100%;
        max-width: 100%;
        flex: 0 0 100%;
    }

        .row.mb-3 > div:first-child {
            text-align: left !important;
        }

        .row.mb-3 > div:last-child {
            text-align: center !important;
        }

/*
    ================
    cart near search 
    ================
*/

@media (max-width: 991.98px) {
    #basket-bar-invoker {
        display: inline-block;
        position: relative;
        margin-left: 10px;
        margin-right: 10px;
    }

        #basket-bar-invoker .ws-basket.u-badge-v1 {
            top: 2px !important;
            right: -2px !important;
            min-width: 22px;
            height: 22px;
            line-height: 22px;
            font-size: 12px;
            padding: 0 6px;
        }
}

@media (max-width: 575.98px) {
    #basket-bar-invoker .ws-basket.u-badge-v1 {
        top: 3px !important;
        right: -1px !important;
        min-width: 20px;
        height: 20px;
        line-height: 20px;
        font-size: 11px;
    }
}

@media (max-width: 991.98px) {

    /* hide numbered pagination items and ellipsis */
    .search-top-right .list-inline-item.g-hidden-sm-down {
        display: none !important;
    }

    /* keep only arrow buttons visible */
    .search-top-right .list-inline-item {
        display: none !important;
    }

        .search-top-right .list-inline-item:first-child,
        .search-top-right .list-inline-item:last-child {
            display: inline-block !important;
        }
}

@media (max-width: 991.98px) {
    .row.mb-3 > div:first-child {
        padding-left: 14px !important;
    }
}

@media (max-width: 991.98px) {
    .navbar,
    .navbar-collapse,
    .navbar-wrapper {
        width: 100% !important;
        max-width: 100% !important;
    }

    .row.px-0,
    .row.mx-0 {
        margin-left: 0 !important;
        margin-right: 0 !important;
    }
}

/*
    =================
    add selected to cart
    ==================
*/
.bulk-actions-bar {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    column-gap: 16px;
    width: 100%;
    padding-right: 5px;
}

.bulk-actions-left {
    grid-column: 1;
}

.bulk-actions-right {
    grid-column: 3;
    justify-self: end;
}

/* tablet / smaller desktop adjustment */
@media (min-width: 768px) and (max-width: 1919.98px) {
    .bulk-actions-bar {
        padding-right: 5px;
    }
}

/* large desktop only */
@media (min-width: 1920px) {
    .bulk-actions-bar {
        padding-right: 43px;
    }
}

/* mobile: Select All + Add Selected on one line */
@media (max-width: 767.98px) {
    .bulk-actions-bar {
        grid-template-columns: auto auto;
        justify-content: space-between;
        align-items: center;
        column-gap: 10px;
        padding-left: 0;
        padding-right: 5px;
    }

    .bulk-actions-left {
        grid-column: 1;
        justify-self: start;
    }

    .bulk-actions-right {
        grid-column: 2;
        justify-self: end;
    }

        .bulk-actions-right .cart-btn {
            white-space: nowrap;
            padding-left: 14px;
            padding-right: 14px;
        }
}
/* tiny dinosaur phones */
@media (max-width: 374.98px) {
    .bulk-actions-bar {
        grid-template-columns: 1fr;
        row-gap: 10px;
    }

    .bulk-actions-right {
        grid-column: 1;
        justify-self: center;
    }

        .bulk-actions-right .cart-btn {
            width: 100%;
            max-width: 280px;
        }
}
/*
    =====================
    icon in search results
    =======================
*/
.result-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
    margin: 15px 0px;
    margin-left: 0 !important;
    margin-right: 0 !important;
}

.result-action {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: 'Oswald', sans-serif;
    font-size: 15px;
    letter-spacing: .3px;
    color: #222 !important;
    text-decoration: none !important;
}

    .result-action i {
        font-size: 15px;
        line-height: 1;
    }

.result-actions .list-inline-item {
    margin-bottom: 0 !important;
    vertical-align: middle;
}

.result-actions .list-inline {
    margin: 0 !important;
    padding-left: 0 !important;
}

.result-actions .list-inline-item:first-child {
    margin-left: 0 !important;
}

.result-actions .result-action {
    padding-left: 0 !important;
    padding-right: 0 !important;
}


.result-sep {
    color: #b8b8b8;
    font-size: 15px;
    line-height: 1;
}

.alert-action i {
    color: #f2b632;
    padding-left: 0px !important;
}

.pdf-action i {
    color: #c9b6df;
}

.drm-action i {
    color: #f39a2e;
}

.noprint-action i {
    color: #9a9a9a;
}

.result-action:hover {
    opacity: .85;
}
/*==================================
    available in subscriptions and packages
    ==================================
*/
.availability-block {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-top: 6px;
    margin-bottom: 10px;
}

.availability-item {
    display: inline-flex;
    align-items: center;
    font-family: 'Oswald', sans-serif;
    font-size: 18px;
    letter-spacing: .6px;
    line-height: 1.2;
    color: #0d5cab;
    text-decoration: none !important;
}

    .availability-item i {
        width: 18px;
        min-width: 18px;
        margin-right: 6px;
        font-size: 16px;
        text-align: center;
        line-height: 1;
    }

    .availability-item .bi-arrow-repeat {
        font-size: 18px;
    }

.bi-arrow-repeat {
    font-size: 18px;
    transform: scale(1.05);
}

/*
    ==========================
    available for printing under price
    ==========================
*/

.print-options .Oswald,
.amazon-option .Oswald {
    font-size: 18px;
    letter-spacing: 1px;
}

.print-options {
    margin-top: 20px;
    padding-top: 12px;
}

    .print-options .text-muted {
        margin-bottom: 8px;
    }

.amazon-option {
    margin-top: 20px;
}

.amazon-block {
    display: inline-block;
    margin-top: 22px;
    text-decoration: none;
}

.amazon-logo {
    margin-top: 4px;
    width: 110px;
    max-width: 110px;
    height: auto;
    display: block;
    opacity: .95;
}

/* 
    =====================
    record detail
    ====================
*/
.record-section {
    background: #fff;
    border-radius: 10px;
    border: 1px solid #e6e6e6;
    padding: 18px 22px;
    margin-top: 18px;
}

    .record-section h4 {
        font-family: 'Oswald', sans-serif;
        letter-spacing: 1px;
        font-size: 18px;
    }

.record-media-col {
    padding-right: 24px;
}

@media (max-width: 991.98px) {
    .record-media-col {
        padding-right: 15px;
        margin-bottom: 20px;
    }
}


.record-side-btn {
    display: block;
    width: 100%;
    padding: 12px 16px;
    font-family: 'Oswald',sans-serif;
    font-size: 18px;
    letter-spacing: .5px;
    text-align: center;
    text-decoration: none !important;
    color: #2c2c2c;
    background: linear-gradient(#ffffff,#f2f4f7);
    border: 1px solid #d9dfe7;
    border-radius: 6px;
    box-shadow: 0 1px 0 rgba(255,255,255,.8) inset, 0 2px 6px rgba(0,0,0,.06);
    transition: all .18s ease;
}

    .record-side-btn:hover {
        background: linear-gradient(#f8fafc,#e9eef5);
        box-shadow: 0 1px 0 rgba(255,255,255,.8) inset, 0 4px 10px rgba(0,0,0,.12);
        transform: translateY(-1px);
    }

    .record-side-btn:active {
        transform: translateY(0);
        box-shadow: 0 2px 4px rgba(0,0,0,.15) inset;
    }

    .record-side-btn i {
        font-size: 15px;
    }

.record-section:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 14px rgba(0,0,0,0.08);
    transition: all .2s ease;
}

/* Record/Search split columns */
.record-detail-main,
.record-detail-side,
.search-result-main,
.search-result-side {
    width: 100% !important;
    max-width: 100% !important;
    position: relative;
    padding-right: 15px;
    padding-left: 15px;
    flex: 0 0 100%;
}

    /* stacked layout spacing */
    .record-detail-side article,
    .search-result-side article {
        margin-top: 1rem;
        padding-top: 1rem;
    }

    /* stacked buttons */
    .record-detail-side .cart-btn,
    .search-result-side .cart-btn {
        width: 100% !important;
        max-width: 360px !important;
    }

/* desktop only: side by side */
@media (min-width: 1400px) {
    .record-detail-main,
    .search-result-main {
        flex: 0 0 80%;
        max-width: 80%;
    }

    .record-detail-side,
    .search-result-side {
        flex: 0 0 20%;
        max-width: 20%;
    }

        .record-detail-side article,
        .search-result-side article {
            margin-top: 0;
            padding-top: 0;
            border-top: 0;
        }

        .record-detail-side .cart-btn,
        .search-result-side .cart-btn {
            max-width: 230px !important;
        }
}

.record-detail-card,
.search-result-card {
    display: block !important;
}


.record-detail-side,
.search-result-side {
    margin-top: 1rem;
    padding-top: 1rem;
}


/* only real desktop */
@media (min-width: 1400px) {
    .record-detail-card,
    .search-result-card {
        display: flex !important;
        flex-wrap: wrap;
    }

    .record-detail-main,
    .search-result-main {
        flex: 0 0 80% !important;
        max-width: 80% !important;
    }

    .record-detail-side,
    .search-result-side {
        flex: 0 0 20% !important;
        max-width: 20% !important;
        margin-top: 0;
        padding-top: 0;
        border-top: 0;
    }

        .record-detail-side .cart-btn,
        .search-result-side .cart-btn {
            max-width: 230px !important;
        }
}

/* mid-large desktop: give button side more room */
@media (min-width: 1200px) and (max-width: 1919.98px) {
    .record-detail-card,
    .search-result-card {
        display: flex !important;
        flex-wrap: wrap;
    }

    .record-detail-main,
    .search-result-main {
        flex: 0 0 70% !important;
        max-width: 70% !important;
    }

    .record-detail-side,
    .search-result-side {
        flex: 0 0 30% !important;
        max-width: 30% !important;
        margin-top: 0;
        padding-top: 0;
        border-top: 0;
    }

        .record-detail-side .cart-btn,
        .search-result-side .cart-btn {
            width: 100% !important;
            max-width: 230px !important;
        }
}

/* very large desktop */
@media (min-width: 1920px) {
    .record-detail-main,
    .search-result-main {
        flex: 0 0 80% !important;
        max-width: 80% !important;
    }

    .record-detail-side,
    .search-result-side {
        flex: 0 0 20% !important;
        max-width: 20% !important;
    }
}

/*for other also bought*/



@media (max-width: 767.98px) {
    .uab-row {
        display: block;
    }

    .uab-side {
        max-width: 100%;
        margin-top: .75rem;
        text-align: left;
        padding-right: 0;
    }

        .uab-side .cart-btn {
            max-width: 280px !important;
        }
}

.uab-row {
    display: flex;
    align-items: center;
}

.uab-main {
    align-self: flex-start;
}

.uab-side {
    flex: 0 0 240px; /* 👈 controls button space */
    margin-left: auto;
    text-align: right;
}

    .uab-side .cart-btn {
        width: auto; /* stop forced shrinking */
        min-width: 170px; /* your desired size */
    }

/* Others Also Bought - final override */
.record-section.uab-row {
    display: flex !important;
    align-items: center !important;
}

    .record-section.uab-row .uab-main {
        flex: 1 1 auto !important;
        min-width: 0 !important;
    }

    .record-section.uab-row .uab-side {
        flex: 0 0 240px !important;
        max-width: 240px !important;
        width: 240px !important;
        margin-left: auto !important;
        text-align: right !important;
    }

        .record-section.uab-row .uab-side .cart-btn {
            width: 100% !important;
            max-width: 220px !important;
        }

.uab-price-side {
    align-self: flex-start !important;
    text-align: left !important;
    margin-left: 0 !important;
}

    .uab-price-side article {
        text-align: left !important;
        padding-left: 0 !important;
    }

    .uab-price-side .cart-btn {
        margin-left: 0 !important;
        margin-right: auto !important;
    }

/*
        ================
     CART step progress
        ===============
    */

.checkout-steps {
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.checkout-step {
    list-style: none;
}

.checkout-step-link {
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
    padding: 0.4rem 1.1rem;
    border-radius: 8px;
    border: 1px solid #d6dbe1;
    background: #fff;
    color: #495057;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 600;
    line-height: 1;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.checkout-step-num {
    width: 28px;
    height: 28px;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    font-weight: 700;
    border: 1px solid currentColor;
    flex: 0 0 28px;
}

.checkout-step-name {
    text-transform: uppercase;
    font-size: 0.82rem;
    letter-spacing: 0.02em;
}

/* active */
.checkout-step.active .checkout-step-link {
    background: #1976D2;
    border-color: #1976D2;
    color: #fff;
    box-shadow: 0 6px 18px rgba(31, 115, 216, 0.16);
}

.checkout-step.active .checkout-step-num {
    background: rgba(255, 255, 255, 0.16);
    border-color: rgba(255, 255, 255, 0.45);
    color: #fff;
}

/* available */
.checkout-step.available .checkout-step-link {
    background: #fff;
    border-color: #d6dbe1;
    color: #495057;
}

    .checkout-step.available .checkout-step-link:hover,
    .checkout-step.available .checkout-step-link:focus {
        border-color: #1976D2;
        color: #1f73d8;
        box-shadow: 0 4px 14px rgba(31, 115, 216, 0.08);
    }

/* disabled */
.checkout-step.disabled .checkout-step-link {
    background: #f8f9fa;
    border-color: #e3e7eb;
    color: #9aa3ab;
    cursor: default;
}

.checkout-step.disabled .checkout-step-num {
    opacity: 0.8;
}

/* mobile */
@media (max-width: 767.98px) {
    .checkout-steps-wrap {
        overflow-x: visible;
    }

    .checkout-steps {
        justify-content: center;
        flex-wrap: wrap;
        gap: 0.8rem;
    }

    .checkout-step {
        flex: 0 0 calc(50% - 0.4rem);
        display: flex;
        justify-content: center;
    }

    .checkout-step-link {
        width: 100%;
        justify-content: center;
        min-height: 52px;
        padding: 0.7rem 0.95rem;
    }

    .checkout-step-num {
        width: 24px;
        height: 24px;
        font-size: 0.8rem;
        flex: 0 0 24px;
    }

    .checkout-step-name {
        font-size: 0.72rem;
    }
}
/* 
    =====================================
    Light horizontal scrollbar for checkout steps
    =======================================
*/

.checkout-steps-wrap::-webkit-scrollbar {
    height: 6px;
}

.checkout-steps-wrap::-webkit-scrollbar-track {
    background: #f3f5f7;
    border-radius: 10px;
}

.checkout-steps-wrap::-webkit-scrollbar-thumb {
    background: #d5dbe1;
    border-radius: 10px;
}

    .checkout-steps-wrap::-webkit-scrollbar-thumb:hover {
        background: #c3cbd3;
    }

.checkout-steps-wrap {
    overflow: visible;
    scrollbar-color: #d5dbe1 #f3f5f7;
    scrollbar-width: thin;
    padding-bottom: 6px;
}

.proceed-btn {
    display: block;
    width: 100%;
}
/*
    ====================
    product detail in the cart
    ====================
*/
.cart-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 .35rem .85rem rgba(0,0,0,.08);
}

/* top text area */
.cart-item h1 {
    line-height: 1.25;
}

.cart-desc {
    line-height: 1.4;
    font-size: 1.05rem;
}

.cart-label {
    font-size: .95rem;
    line-height: 1.1;
    margin-bottom: .2rem;
}

/* quantity + trash */
.cart-qty-wrap {
    gap: 20px;
}

.cart-qty {
    width: 85px;
    min-width: 85px;
    max-width: 85px;
    height: 40px;
    padding-top: .25rem;
    padding-bottom: .25rem;
}

.cart-trash-wrap {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-left: 2px;
}

    .cart-trash-wrap .ws-remove-item-btn {
        margin-top: 0 !important;
    }

/* price / total */
.cart-price-block,
.cart-total-block {
    line-height: 1.2;
}

    .cart-total-block .h4,
    .cart-price-block .h4 {
        margin-bottom: 0;
    }

/* mobile */
@media (max-width: 767.98px) {
    .cart-item {
        padding-left: .5rem;
        padding-right: .5rem;
    }


    .cart-meta-row {
        padding-top: .75rem !important;
    }

    .cart-price-block,
    .cart-total-block {
        margin-bottom: .75rem;
    }

    .cart-qty-wrap {
        justify-content: flex-start;
        margin-bottom: .75rem;
    }

    .cart-qty {
        width: 88px;
        min-width: 88px;
        max-width: 88px;
    }
}

.ws-remove-item-btn:hover {
    color: #dc3545 !important;
}

.cart-meta-row > div {
    display: flex;
    flex-direction: column;
    justify-content: center;
}


.ws-remove-item-btn {
    font-size: 16px;
    color: #8a94a6; /* bootstrap muted */
    transition: color .2s ease;
}

.cart-total-block .h4 {
    font-weight: 600;
}

.cart-price-block .h4 {
    font-weight: 400;
    color: #2c3e50;
}

.cart-item {
    border-radius: 14px;
    transition: transform .18s ease, box-shadow .18s ease;
    padding-top: .75rem;
    padding-bottom: .75rem;
}

.cart-meta-row {
    align-items: center;
    padding-top: .5rem !important;
    padding-bottom: .5rem !important;
}

.cart-desc li {
    color: #666;
    font-size: 1.05rem;
}
/*============
    sammaty part
    =============
*/

/* remove inner boxed look from summary */
.cart-sidebar .border-dlp,
.cart-sidebar .summary-wrap,
.cart-sidebar .ws-summary {
    background: transparent !important;
    box-shadow: none !important;
}

    /* target the summary inner panel more aggressively if needed */
    .cart-sidebar .border-dlp:first-child {
        border: 0 !important;
        background: transparent !important;
        padding: 0 !important;
        margin-bottom: 1.25rem;
    }

/* payment area */

.payment-options .form-check-inline,
.payment-options .u-check {
    display: block;
    margin-bottom: .65rem;
    margin-right: 0;
}

/* keep your webstore button style, just spacing/full width */
.checkout-btn {
    display: block;
    width: 100%;
    margin-top: .75rem;
    margin-bottom: 1.25rem;
}

/* credit cards image */
.credit-cards-wrap {
    text-align: center;
    padding: .25rem 0 1.25rem;
}

    .credit-cards-wrap img {
        width: 220px;
        max-width: 100%;
        height: auto;
        display: inline-block;
    }

/* discount area – style around existing partial */
.ws-discount {
    margin-top: .5rem;
    margin-bottom: 1.5rem;
}

    .ws-discount .card,
    .ws-discount .collapse,
    .ws-discount .accordion,
    .ws-discount .border {
        background: transparent !important;
        box-shadow: none !important;
    }

    .ws-discount input.form-control {
        height: 46px;
    }

    .ws-discount .btn,
    .ws-discount button {
        height: 46px;
    }

/* share/sign-in breathing room */
.ws-sharecart,
.signin-share-wrap {
    margin-top: 1.25rem;
}

/* mobile */
@media (max-width: 1199.98px) {
    .cart-sidebar {
        margin-top: 1.5rem;
    }
}

.checkout-btn,
.cart-btn {
    display: block !important;
    width: 100% !important;
    max-width: 100% !important;
    min-width: 100% !important;
    box-sizing: border-box !important;
}

.payment-options {
    margin-top: .75rem;
    margin-bottom: 0;
    display: block !important;
    width: 100% !important;
}

    .payment-options .btn-block {
        display: block !important;
        width: 100% !important;
    }

/*
        ==================
       LOGIN
        ================
    */
.password-wrap {
    position: relative;
}


.password-toggle:hover,
.password-toggle:focus {
    color: #0d6efd;
    outline: none;
    box-shadow: none;
}

.field-wrap,
.password-wrap {
    position: relative;
    width: 100%;
}

    .password-wrap .form-control {
        width: 100%;
        padding-right: 3rem !important;
    }

.password-toggle {
    position: absolute;
    top: 50%;
    right: 14px;
    transform: translateY(-50%);
    border: 0;
    background: transparent;
    padding: 0;
    color: #6c757d;
    font-size: 1.1rem;
    line-height: 1;
    cursor: pointer;
    z-index: 5;
}

/*
    ===============
    SDO LIST
    ===============
*/
.sdo-logo-wrap {
    width: 160px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 6px;
    border-radius: 12px;
    overflow: hidden;
    margin-left: 10px;
    background: #fff;
    border: 1px solid #e3e8ee;
    box-shadow: 0 2px 6px rgba(0,0,0,.04);
}

.img-mob {
    display: block;
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
}

@media (max-width: 1199.98px) {
    .sdo-logo-wrap {
        width: 96px;
        height: 64px;
    }
}

@media (max-width: 767.98px) {
    .sdo-logo-wrap {
        width: 88px;
        height: 58px;
        padding: 5px;
    }
}

.sdo-row {
    display: flex;
    align-items: center;
    gap: 16px;
}

/* RIGHT SIDE FLEX */
.sdo-content {
    flex: 1;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

/* LEFT TEXT BLOCK */
.sdo-left {
    min-width: 0; /* prevents weird wrapping */
    font-weight: 600;
    font-size: 20px;
}

/* RIGHT ACTIONS */
.sdo-right {
    white-space: nowrap;
    font-size: 18px;
    margin-right: 20px;
}

@media (max-width: 767.98px) {

    .sdo-row {
        align-items: flex-start;
    }

    .sdo-content {
        flex-direction: column;
        align-items: flex-start;
        gap: 6px;
    }

    .sdo-right {
        white-space: normal;
    }
}


@media (max-width: 767.98px) {
    .sdo-list-wrapper {
        padding-left: 12px;
        padding-right: 12px;
    }

    html {
        scroll-padding-top: 200px;
    }
}

html {
    scroll-padding-top: 120px;
}

.alphabet-nav {
    gap: 0.8rem;
}

@media (min-width: 768px) {
    .alphabet-nav {
        gap: 0.5rem;
    }
}

@media (min-width: 1200px) {
    .alphabet-nav {
        gap: 0.8rem;
    }
}

.alphabet-nav a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.2s ease;
}

    .alphabet-nav a.text-primary {
        background: rgba(13, 110, 253, 0.08); /* soft blue */
    }

        .alphabet-nav a.text-primary:hover {
            background: rgba(13, 110, 253, 0.18);
            transform: translateY(-2px);
        }

    .alphabet-nav a.text-grey {
        background: #f1f3f5;
        color: #adb5bd !important;
        pointer-events: none;
        cursor: default;
    }

    .alphabet-nav a.active {
        background: #0d6efd;
        color: #fff !important;
    }


.shadow {
    box-shadow: 0 2px 6px rgba(0,0,0,.04);
}

#linkslist .col-lg-4 {
    margin-bottom: 6px;
}

#linkslist a {
    transition: transform 0.15s ease;
}

    #linkslist a:hover {
        transform: translateX(3px);
        border-color: #0d6efd; /* ANSI blue vibe */
    }

.opacity-record-detail {
    opacity: 0.7;
    filter: grayscale(10%) contrast(1.05);
}


img {
    border-radius: 10px !important;
}

/*
 ==========
    counter
 ============
*/

.ws-numbersSection {
    background: linear-gradient(180deg, #f5f5f5 0%, #eeeeee 100%);
}

.ws-numberCard {
    position: relative;
    padding: 28px 18px 24px;
    text-align: center;
    background: rgba(255,255,255,.75);
    border: 1px solid rgba(11,90,166,.10);
    border-radius: 18px;
    box-shadow: 0 12px 28px rgba(16,24,40,.08);
    overflow: hidden;
}

    .ws-numberCard::before {
        content: "";
        position: absolute;
        top: 0;
        left: 50%;
        width: 70px;
        height: 4px;
        transform: translateX(-50%);
        border-radius: 0 0 999px 999px;
        background: #0b5aa6;
    }

.counter-count {
    font-size: 50px;
    font-weight: 700;
    line-height: 1;
    color: #1f3553;
    text-align: center;
    display: inline-block;
    margin-bottom: 10px;
}

.ws-numberCard h4 {
    color: #1f3553;
    font-size: 1.05rem;
    letter-spacing: .12em;
    text-transform: uppercase;
    margin-bottom: 0;
}

@media (max-width: 767.98px) {
    .counter-count {
        font-size: 42px;
    }

    .ws-numberCard {
        padding: 24px 16px 22px;
    }
}



/*==============
    Package modal 
    ==============
*/
[id^="packagesModal_"] .modal-dialog,
[id^="p"] .modal-dialog {
    margin: 1rem auto;
}

[id^="packagesModal_"] .modal-content,
[id^="p"] .modal-content {
    border-radius: 10px;
    overflow: hidden;
}

[id^="packagesModal_"] .modal-header,
[id^="p"] .modal-header {
    padding: 0.9rem 1rem 0.8rem;
    align-items: flex-start;
}

    [id^="packagesModal_"] .modal-header .fa,
    [id^="p"] .modal-header .fa {
        margin-top: 0.2rem !important;
    }

    [id^="packagesModal_"] .modal-header .h4,
    [id^="p"] .modal-header .h4 {
        line-height: 1.2;
        margin-right: 1rem;
    }

[id^="packagesModal_"] .modal-body,
[id^="p"] .modal-body {
    padding: 1rem 1.2rem 0.5rem;
}

    [id^="packagesModal_"] .modal-body ul,
    [id^="p"] .modal-body ul {
        margin-bottom: 0;
    }

    [id^="packagesModal_"] .modal-body li,
    [id^="p"] .modal-body li {
        margin-bottom: 0.85rem !important;
    }

    [id^="packagesModal_"] .modal-body a,
    [id^="p"] .modal-body a {
        display: inline-block;
        line-height: 1.35;
    }

    [id^="packagesModal_"] .modal-body hr,
    [id^="p"] .modal-body hr {
        margin: 0.65rem 0 0 !important;
    }

[id^="packagesModal_"] .modal-footer,
[id^="p"] .modal-footer {
    padding: 0.75rem 1rem 1rem;
    border-top: 0;
}

[id^="packagesModal_"] .close,
[id^="p"] .close {
    font-size: 2rem;
    line-height: 1;
    padding: 0;
    margin: 0 0 0 auto;
}

/* Mobile only */
@media (max-width: 575.98px) {
    [id^="packagesModal_"] .modal-dialog,
    [id^="p"] .modal-dialog {
        margin: 0.5rem;
        max-width: calc(100% - 1rem);
    }

    [id^="packagesModal_"] .modal-header,
    [id^="p"] .modal-header {
        padding: 0.75rem 0.85rem 0.7rem;
    }

        [id^="packagesModal_"] .modal-header .h4,
        [id^="p"] .modal-header .h4 {
            font-size: 1.45rem;
            line-height: 1.15;
        }

    [id^="packagesModal_"] .modal-body,
    [id^="p"] .modal-body {
        padding: 0.85rem 0.9rem 0.35rem;
    }

        [id^="packagesModal_"] .modal-body a,
        [id^="p"] .modal-body a {
            font-size: 1.05rem;
            line-height: 1.35;
        }

    [id^="packagesModal_"] .modal-footer,
    [id^="p"] .modal-footer {
        padding: 0.4rem 0.9rem 0.85rem;
    }
}


.package-modal-trigger {
    display: inline-block;
    padding: 0;
    border: 0;
    background: transparent;
    cursor: pointer;
    font: inherit;
    text-align: left;
}

    .package-modal-trigger:focus {
        outline: none;
    }

body.modal-open {
    padding-right: 0 !important;
}

.modal-backdrop.show {
    z-index: 1040 !important;
}

.modal.package-modal.show {
    z-index: 9999 !important;
}

    .modal.package-modal.show .modal-dialog {
        z-index: 10000 !important;
    }




/*
    ==========================
    space in small by content screens
    ==========================
*/
.ws-auth-section {
    min-height: 50vh;
    background-size: cover;
    background-position: top right;
}

    .ws-auth-section .container {
        padding-top: 7rem;
        padding-bottom: 7rem;
    }
/*
        ==========
        glossary
        ==========
    */

.ws-page-hero {
    background: linear-gradient(135deg, #f5f8fb 0%, #ffffff 65%);
    border-bottom: 1px solid #e5e9ef;
    padding: 3rem 0 2.5rem;
}

    .ws-page-hero h1 {
        font-size: 2.8rem;
        letter-spacing: .08em;
        text-transform: uppercase;
        color: #005a8b;
        margin-bottom: .5rem;
    }

    .ws-page-hero p {
        font-size: 1.1rem;
        color: #4b5563;
        margin-bottom: 0;
    }



.ws-glossary-wrap h2 {
    font-size: 1.75rem;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: #111827;
}



.ws-glossary-item {
    background: #fff;
    border: 1px solid #e1e6ec;
    border-left: 4px solid #ccc /*005a8b*/;
    border-radius: 10px;
    padding: 1.1rem 1.25rem;
    box-shadow: 0 6px 18px rgba(0,0,0,.04);
}

    .ws-glossary-item h3 {
        font-family: Oswald, sans-serif;
        font-size: 1.2rem;
        letter-spacing: .08em;
        text-transform: uppercase;
        color: #1f2933;
        margin-bottom: .35rem;
    }

    .ws-glossary-item p {
        font-size: 1rem;
        color: #374151;
        margin-bottom: 0;
        line-height: 1.55;
    }



.ws-glossary-wrap {
    width: 100%;
}

.ws-glossary-list {
    display: grid;
    gap: 1rem;
}

@media (min-width: 1200px) {
    .ws-glossary-list {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 1rem 1.5rem;
    }
}
/*balance in main record detail part*/
.search-result-info {
    margin-left: 0px;
}

.result-indent {
    margin-left: var(--result-gutter) !important;
}

.badge,
.badge1 {
    margin-bottom: 15px; /* 👈 clean breathing space */
    display: inline-block;
}

.result-check .form-check-input {
    position: static;
    margin-top: 0px; /* 👈 was ~0.45rem, make it visual-centered */
}

.search-result-info .form-check {
    padding-left: 0 !important;
}

.search-result-info .form-check-input {
    position: relative !important;
    margin-left: 0 !important;
    margin-right: 6px !important;
    margin-top: 0 !important;
    top: -2px; /* adjust: -1px / -2px / -3px */
}

.search-result-info .form-check-label {
    margin-left: 0 !important;
}
/*
    =========
    profile pages
    ============*/
.profile-section-header {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 1rem;
    border-bottom: 1px solid #e5e8ec;
    padding-bottom: .85rem;
    margin-bottom: 1rem;
}

    .profile-section-header h2 {
        margin: 0;
    }

    .profile-section-header .record-side-btn {
        width: auto !important;
        min-width: 130px;
        display: inline-flex !important;
        align-items: center;
        justify-content: center;
        margin-bottom: 0 !important;
        padding: .65rem 1.2rem;
    }

@media (max-width: 575.98px) {
    .profile-section-header {
        grid-template-columns: 1fr;
    }

        .profile-section-header .record-side-btn {
            width: 100% !important;
        }
}

.profile-sidebar-card {
    background: #fff;
    border: 1px solid #e3e7ec;
    border-radius: 10px;
    box-shadow: 0 4px 14px rgba(0,0,0,.05);
    overflow: hidden;
}

    .profile-sidebar-card .list-group-item {
        border: 0;
        padding: .9rem 1.25rem;
        font-weight: 500;
        color: #343a40;
        border-left: 3px solid transparent;
        transition: all .18s ease;
    }

        .profile-sidebar-card .list-group-item:hover {
            background: #f5f9fd;
            color: #005ea8;
            border-left-color: #0071bc;
        }

        .profile-sidebar-card .list-group-item.active,
        .profile-sidebar-card .list-group-item:focus {
            background: #f0f7fd;
            color: #005ea8;
            border-left-color: #0071bc;
        }

.profile-content {
    width: 100%;
}
/*left nav in profile*/
.profile-nav-card {
    background: #fff;
    border: 1px solid #e3e7ec;
    border-radius: 10px;
    box-shadow: 0 6px 18px rgba(0,0,0,.06);
    overflow: hidden;
    width: 100%;
}

    .profile-nav-card ul {
        list-style: none;
        margin: 0;
        padding: 0;
    }

    .profile-nav-card li {
        margin: 0;
        padding: 0;
    }

    .profile-nav-card a,
    .profile-nav-card .nav-link,
    .profile-nav-card .list-group-item {
        display: flex !important;
        align-items: center;
        width: 100% !important;
        min-height: 52px;
        padding: .9rem 1.15rem !important;
        color: #005ea8;
        text-decoration: none;
        border: 0 !important;
        border-bottom: 1px solid #edf0f3 !important;
        border-left: 4px solid transparent !important;
        background: #fff;
        transition: all .18s ease;
    }

        .profile-nav-card a:hover,
        .profile-nav-card .nav-link:hover,
        .profile-nav-card .list-group-item:hover {
            background: #f5f9fd;
            border-left-color: #0071bc !important;
            color: #003f73;
            padding-left: 1.35rem !important;
        }

        .profile-nav-card a.active,
        .profile-nav-card .nav-link.active,
        .profile-nav-card .list-group-item.active {
            background: #005ea8 !important;
            color: #fff !important;
            border-left-color: #003f73 !important;
        }

.profile-pref-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100%;
}

    .profile-pref-icon i {
        font-size: 1.1rem;
        line-height: 1;
    }


.profile-pref-status {
    padding-top: 2.2rem;
    display: flex !important;
    justify-content: center !important;
    align-items: flex-start;
    text-align: center;
    width: 100%;
    max-width: 100%;
    padding-left: 0 !important;
    padding-right: 0 !important;
}

    .profile-pref-status i {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 32px;
        min-width: 24px;
        line-height: 1;
        font-size: 1.1rem;
    }

@media (max-width: 575.98px) {
    .profile-pref-status {
        padding-top: 1.8rem;
        justify-content: flex-end !important;
        padding-right: 1rem;
    }
}

.profile-pref-row {
    align-items: flex-start;
}

.profile-pref-status::before {
    content: "";
    width: 12px;
}


.profile-form-actions .btn {
    width: auto !important;
    min-width: 150px;
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    margin-bottom: 0 !important;
}

@media (max-width: 575.98px) {
    .profile-form-actions {
        display: flex !important;
        flex-direction: column !important;
        align-items: stretch !important;
        gap: .75rem !important;
    }

        .profile-form-actions .profile-action-btn {
            order: 1;
        }

        .profile-form-actions .record-side-btn {
            order: 2;
        }

        .profile-form-actions .record-side-btn,
        .profile-form-actions .profile-action-btn {
            width: 100% !important;
            max-width: none !important;
            min-width: 0 !important;
            height: 51px !important;
            margin: 0 !important;
            display: inline-flex !important;
            align-items: center !important;
            justify-content: center !important;
        }
}

.password-requirements {
    background: #f8fafc;
    border: 1px solid #e3e7ec;
    border-left: 4px solid #005ea8;
    border-radius: 8px;
    padding: 1rem 1.25rem;
    margin: 1.25rem 0;
}

.password-requirements-title {
    color: #005ea8;
    font-weight: 700;
    margin-bottom: .75rem;
}

.password-requirements ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.password-requirements li {
    display: flex;
    align-items: flex-start;
    gap: .5rem;
    margin-bottom: .45rem;
    font-size: .9rem;
}

    .password-requirements li:last-child {
        margin-bottom: 0;
    }

    .password-requirements li i {
        margin-top: .15rem;
    }

.profile-form-actions {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: .75rem;
    margin-top: 1.5rem;
    padding-top: 1rem;
}

    .profile-form-actions .profile-action-btn {
        font-family: 'Oswald', sans-serif !important;
        letter-spacing: 2px !important;
        align-items: center !important;
        justify-content: center !important;
        color: #fff !important;
        border: 1px solid rgba(0,0,0,.08) !important;
        border-radius: 5px !important;
        background: #1565c0 !important;
        box-shadow: 0 3px 8px rgba(0,0,0,.10) !important;
        white-space: nowrap !important;
        padding: 0 18px !important;
        height: 51px !important;
        font-size: 18px !important;
        line-height: 1px !important;
        transition: background-color .18s ease, box-shadow .18s ease, transform .18s ease;
        width: auto !important;
        min-width: 155px;
        display: inline-flex !important;
        margin: 0 !important;
        flex: 0 0 auto !important;
    }

        .profile-form-actions .profile-action-btn:hover {
            transform: translateY(-1px);
            box-shadow: 0 5px 12px rgba(0,0,0,.14) !important;
        }






    .profile-form-actions button.cart-btn.profile-action-btn {
        width: auto !important;
        max-width: 220px !important;
    }

@media (max-width: 575.98px) {
    .profile-form-actions {
        display: flex !important;
        flex-direction: column !important;
        align-items: stretch !important;
        gap: .75rem !important;
    }

        .profile-form-actions .record-side-btn,
        .profile-form-actions .profile-action-btn {
            width: 100% !important;
            min-width: 0 !important;
            max-width: none !important;
            height: 51px !important;
            margin: 0 !important;
            display: inline-flex !important;
            align-items: center !important;
            justify-content: center !important;
            line-height: 1 !important;
            padding: 0 18px !important;
        }
}
/*
    ==============
 address
    =============*/
.address-card-grid {
    row-gap: 1.5rem;
}

.address-card-col {
    display: flex;
}

.address-card {
    width: 100%;
    padding: 1.5rem 1.25rem !important;
    min-height: 260px;
    display: flex;
    flex-direction: column;
}

.address-text {
    font-size: .95rem;
    line-height: 1.45;
}

.address-actions {
    margin-top: auto;
    padding-top: 1.5rem;
    display: flex;
    justify-content: flex-end;
    gap: .65rem;
    flex-wrap: wrap;
}

.address-add-link {
    margin-top: 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 70px;
    padding: 1.2rem 1.5rem;
    border: 2px dashed #b8c7d6;
    border-radius: .35rem;
    color: #005ea8;
    font-family: Oswald, sans-serif;
    text-transform: uppercase;
    letter-spacing: .04em;
    text-decoration: none;
    background: #fff;
}

    .address-add-link:hover {
        color: #004b86;
        border-color: #0075bf;
        text-decoration: none;
        box-shadow: 0 4px 12px rgba(0,0,0,.08);
    }

@media (min-width: 768px) and (max-width: 991.98px) {
    .profile-nav-card {
        max-width: 280px;
    }

    .address-card {
        min-height: 330px;
    }

    .address-actions {
        justify-content: center;
    }

        .address-actions .btn {
            width: 100%;
        }
}

.profile-address-form {
    padding: 2rem !important;
}

    .profile-address-form .form-group {
        margin-bottom: 1.25rem;
    }

    .profile-address-form label {
        font-weight: 600;
        margin-bottom: .4rem;
    }

    .profile-address-form hr {
        margin: 1.25rem 0 1.5rem;
    }

.profile-address-actions {
    display: flex;
    justify-content: flex-end;
    gap: .75rem;
    flex-wrap: wrap;
}

@media (max-width: 575.98px) {
    .profile-address-form {
        padding: 1.25rem !important;
    }

    .profile-address-actions {
        flex-direction: column-reverse;
        align-items: stretch;
    }

        .profile-address-actions .btn {
            width: 100%;
        }
}
/*
    ==============
   order details
    =============*/

.order-details-card {
    padding: 3rem !important;
}

.order-summary-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #e1e5ea;
}

.order-label {
    display: block;
    font-weight: 700;
    margin-bottom: .25rem;
}

.order-summary-item ul {
    margin-bottom: 0;
}

.order-products {
    border-bottom: 1px solid #e1e5ea;
}

.order-product-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 300px 220px;
    gap: 1.5rem;
    align-items: center;
    padding: 1.25rem 0;
    border-bottom: 1px solid #e1e5ea;
}

    .order-product-row:last-child {
        border-bottom: none;
    }

.order-product-description {
    line-height: 1.45;
}

.order-product-meta {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.order-product-action {
    text-align: right;
}

    .order-product-action .btn {
        width: 100%;
    }

.order-discount-row {
    display: flex;
    justify-content: flex-end;
    gap: 2rem;
    padding: .25rem 0 1rem;
}

.order-total-section {
    display: flex;
    justify-content: flex-end;
    padding: 1rem 0 0;
}

.order-total-box {
    width: min(100%, 420px);
}

.order-total-line {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: .5rem;
}

.order-total-final {
    font-size: 1.25rem;
    font-weight: 700;
    margin-top: .25rem;
}

.order-details-actions {
    display: flex;
    justify-content: flex-end;
    gap: .75rem;
    flex-wrap: wrap;
}
/* tablet */
@media (max-width: 991.98px) {
    .order-details-card {
        padding: 2rem !important;
    }

    .order-summary-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .order-product-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .order-product-meta {
        max-width: 360px;
    }

    .order-product-action {
        text-align: left;
    }

        .order-product-action .btn {
            width: auto;
            min-width: 220px;
        }
}
/* mobile */
@media (max-width: 575.98px) {
    .order-details-card {
        padding: 1.5rem !important;
    }

    .order-summary-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }

    .order-product-meta {
        grid-template-columns: 1fr;
        gap: .75rem;
    }

    .order-product-action .btn {
        width: 100%;
        min-width: 0;
    }

    .order-details-actions {
        flex-direction: column-reverse;
        align-items: stretch;
    }

        .order-details-actions .btn {
            width: 100%;
        }
}

.download-expired {
    opacity: .65;
    pointer-events: none;
}
/*
    ==============
  print product
    =============*/
.print-product-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 420px;
    gap: 2rem;
    padding: 1.5rem 0;
    border-bottom: 1px solid #e1e5ea;
}

.print-product-description {
    line-height: 1.45;
}

.print-product-meta {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.print-label {
    display: block;
    font-weight: 700;
    margin-bottom: .25rem;
}

@media (max-width: 767.98px) {
    .print-product-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .print-product-meta {
        grid-template-columns: 1fr;
        gap: .75rem;
    }
}


@media print {
    .profile-form-actions {
        display: none !important;
    }
}
/*
    ==============
   alerts edit
    =============*/
.profile-alerts-intro {
    max-width: 900px;
}

.profile-alerts-layout {
    display: grid;
    grid-template-columns: 260px minmax(0, 1fr);
    gap: 1.5rem;
    align-items: start;
}

.profile-alerts-sidebar {
    min-width: 0;
}

.profile-alerts-content {
    min-width: 0;
}

.profile-alert-row {
    display: grid;
    grid-template-columns: minmax(260px, 34%) minmax(0, 1fr) 36px;
    gap: 1.5rem;
    align-items: start;
    padding: 1rem 0;
}

.profile-alert-main {
    display: contents;
}

.profile-alert-name {
    line-height: 1.35;
}

.profile-alert-title {
    line-height: 1.45;
    min-width: 0;
}

.profile-alert-remove {
    text-align: right;
    padding-top: .15rem;
}

    .profile-alert-remove .fa {
        cursor: pointer;
    }
/* tablet and smaller: sidebar on top, alerts become simple */
@media (max-width: 1199.98px) {
    .profile-alerts-layout {
        grid-template-columns: 1fr;
    }


    .profile-alerts-content {
        max-width: 760px;
        width: 100%;
    }

    .profile-alert-row {
        grid-template-columns: minmax(0, 1fr) 36px;
        gap: 1rem;
    }

    .profile-alert-main {
        display: block;
        min-width: 0;
    }

    .profile-alert-name {
        margin-bottom: .25rem;
    }
}

@media (min-width: 768px) and (max-width: 1199.98px) {
    .profile-alerts-sidebar {
        max-width: 100%;
        width: 100%;
    }

    profile-alerts-sidebar .profile-nav-card {
        max-width: 100%;
    }
}
/* mobile */

@media (max-width: 575.98px) {
    .profile-alerts-sidebar,
    .profile-alerts-sidebar .profile-nav-card {
        max-width: 100%;
        width: 100%;
    }
}

@media (max-width: 575.98px) {


    .profile-alerts-content {
        max-width: 100%;
        padding: 1.25rem !important;
    }

    .profile-alert-row {
        padding: 1.25rem 0;
    }

    .profile-alerts-page .profile-form-actions .btn {
        width: 100%;
    }
}
/*
    ==============
    order history
    =============
*/

.order-history-layout {
    display: grid;
    grid-template-columns: 260px minmax(0, 1fr);
    gap: 1.5rem;
    align-items: start;
}

.order-history-sidebar,
.order-history-content {
    min-width: 0;
}

.order-history-filter {
    padding: .5rem .25rem 1.5rem;
    border-bottom: 1px solid #e1e5ea;
    margin-bottom: .75rem;
}

    .order-history-filter .custom-select {
        width: 100%;
        min-height: 44px;
        font-size: 1rem;
    }

.order-history-list {
    padding: 0 .25rem;
}

.order-history-header,
.order-history-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 180px 160px;
    gap: 1rem;
    align-items: center;
}

.order-history-header {
    font-family: Oswald, sans-serif;
    letter-spacing: .04em;
    padding: .75rem 0;
    border-bottom: 1px solid #d9dee3;
}

.order-history-row {
    padding: .85rem 0;
    border-bottom: 1px solid #d9dee3;
}

.order-history-label {
    display: none;
    font-weight: 700;
    margin-right: .25rem;
}
/* tablet / middle widths */
@media (max-width: 1399.98px) {
    .order-history-layout {
        grid-template-columns: 1fr;
    }

    .order-history-sidebar,
    .order-history-sidebar .profile-nav-card {
        width: 100%;
        max-width: 100%;
    }

    .order-history-content {
        width: 100%;
        max-width: 100%;
    }
}
/* mobile */
@media (max-width: 767.98px) {
    .order-history-header {
        display: none;
    }

    .order-history-row {
        grid-template-columns: 1fr;
        gap: .4rem;
        padding: 1rem 0;
    }

    .order-history-label {
        display: inline-block;
    }
}
/*
    ======================
    credit card payment fields
    ======================
*/
.payment-method-form {
    max-width: 900px;
    margin-left: 0;
}

    .payment-method-form .form-group {
        margin-bottom: .85rem;
    }

    .payment-method-form label {
        margin-bottom: .35rem;
    }

    .payment-method-form .form-control,
    .payment-method-form .custom-select {
        min-height: 40px;
        height: 40px;
        padding-top: .45rem !important;
        padding-bottom: .45rem !important;
    }

    .payment-method-form .row {
        margin-left: -.4rem;
        margin-right: -.4rem;
    }

    .payment-method-form [class*="col-"] {
        padding-left: .4rem !important;
        padding-right: .4rem !important;
    }

.payment-required-note {
    margin-top: .35rem;
}


.payment-card-icon-col .form-group {
    margin-bottom: 0;
}

.payment-method-form .ws-card-number {
    max-width: 340px;
}

.payment-card-icon-col {
    display: flex;
    align-items: flex-end;
    padding-bottom: .35rem !important;
}

    .payment-card-icon-col .default-card {
        display: inline-flex;
        align-items: center;
        gap: .45rem;
    }

    .payment-card-icon-col .ws-valid-card {
        margin-left: 60px !important;
        margin-bottom: 15px;
    }

@media (max-width: 767.98px) {
    .payment-card-icon-col {
        align-items: flex-start;
        padding-bottom: 0 !important;
        margin-top: -.25rem;
        margin-bottom: .75rem;
    }
}
/*
        =======================
        checkout index and review
        =======================
    */

.checkout-payment-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 420px;
    gap: 2.5rem;
    align-items: start;
}

.checkout-payment-main,
.checkout-payment-side {
    min-width: 0;
}

.checkout-payment-side {
    margin-top: 2.5rem;
}
/* middle/tablet */
@media (max-width: 1199.98px) {
    .checkout-payment-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .checkout-payment-side {
        margin-top: 0;
        max-width: 520px;
        width: 100%;
    }
}
/* mobile */
@media (max-width: 575.98px) {
    .checkout-payment-layout {
        gap: 1.5rem;
    }

    .checkout-payment-side {
        max-width: 100%;
    }
}

.checkout-review-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 420px;
    gap: 2.5rem;
    align-items: start;
}

.checkout-review-main,
.checkout-review-side {
    min-width: 0;
}

.checkout-review-side {
    margin-top: 2.5rem;
}
/* tablet / middle */
@media (max-width: 1199.98px) {
    .checkout-review-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .checkout-review-side {
        margin-top: 0;
        max-width: 520px;
        width: 100%;
    }
}

.review-bullet {
    display: inline-block;
    width: 6px;
    height: 6px;
    margin-right: .6rem;
    border-radius: 50%;
    background: #9fb7cf;
    position: relative;
    top: -1px;
}
/* mobile */
@media (max-width: 575.98px) {
    .checkout-review-layout {
        gap: 1.5rem;
    }

    .checkout-review-side {
        max-width: 100%;
    }
}


/* ==========================================================
   Webstore Home - Shared accent lines
   ========================================================== */
:root {
    --ws-blue-line: linear-gradient(90deg, #0354A5 0%, #1976D2 100%);
    --ws-gold-line: linear-gradient(90deg, #F0B833 0%, #f3ab12 100%);
}


/* ==========================================================
   Webstore Home - Solution Cards
   ========================================================== */
.ws-solutions-wrap {
    max-width: 1920px;
    margin: 0 auto;
    padding-left: 18px;
    padding-right: 18px;
}

.ws-solutions-row {
    margin-left: -18px;
    margin-right: -18px;
}

    .ws-solutions-row > [class*="col-"] {
        padding-left: 18px;
        padding-right: 18px;
    }

.ws-solution-card {
    position: relative;
    height: 100%;
    min-height: 560px;
    padding: 5px 0 40px;
    overflow: hidden;
    background: linear-gradient(180deg, #ffffff 0%, #fbfdff 100%);
    border: 2px solid #d9e2ee;
    border-radius: 10px;
    box-shadow: 0 12px 28px rgba(15, 45, 85, 0.08), 0 2px 8px rgba(15, 45, 85, 0.04);
    transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}

    .ws-solution-card::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 5px;
        background: var(--ws-blue-line);
        z-index: 2;
    }

.ws-solution-card--gold::before {
    background: var(--ws-gold-line);
}

.ws-solution-card-packages {
    background: linear-gradient(180deg, #f8fbfd 0%, #dce8ee 100%);
    border-color: #c8d4dc;
}

.ws-solution-card:hover {
    transform: translateY(-3px);
    border-color: #b9cce3;
    box-shadow: 0 18px 40px rgba(15, 45, 85, 0.13), 0 4px 12px rgba(15, 45, 85, 0.06);
}

.ws-solution-header {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    margin-bottom: 30px;
}

.ws-solution-icon {
    flex: 0 0 58px;
    width: 58px;
    height: 58px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #fff;
    font-size: 28px;
    line-height: 1;
    background: linear-gradient(135deg, #0354A5 0%, #1D93D1 100%);
    box-shadow: 0 10px 20px rgba(3, 84, 165, 0.24);
}

.ws-solution-card--gold .ws-solution-icon {
    background: linear-gradient(135deg, #F0B833 0%, #f5a400 100%);
    box-shadow: 0 10px 20px rgba(240, 184, 51, 0.28);
}

.ws-solution-title-link,
.ws-solution-title-link:hover,
.ws-solution-title-link:focus {
    color: #102b4c;
    text-decoration: none;
}

.ws-solution-title {
    margin: 0 0 8px;
    color: #102b4c;
    font-size: 1.45rem;
    line-height: 1.15;
    letter-spacing: .055em;
}

.ws-solution-subtitle {
    margin: 0;
    color: #60718b;
    font-size: .92rem;
    line-height: 1.45;
    letter-spacing: .075em;
}

.ws-solution-group {
    margin-top: 22px;
}

    .ws-solution-group:first-of-type {
        margin-top: 0;
    }

.ws-solution-label {
    margin: 0 0 14px;
    color: #0354A5;
    font-size: 1rem;
    line-height: 1;
    letter-spacing: .08em;
}

.ws-solution-list {
    margin: 0;
    padding: 0;
    list-style: none;
}

    .ws-solution-list li {
        display: flex;
        align-items: flex-start;
        gap: 14px;
        margin-bottom: 10px;
        padding: 14px 16px;
        color: #263b59;
        font-size: 1rem;
        line-height: 1.45;
        background: rgba(255,255,255,.88);
        border: 1px solid #dce3ed;
        border-radius: 10px;
        box-shadow: 0 4px 12px rgba(15, 45, 85, 0.035);
    }

        .ws-solution-list li:last-child {
            margin-bottom: 0;
        }

.ws-solution-check {
    flex: 0 0 auto;
    margin-top: 2px;
    color: #0354A5;
    font-size: 1.05rem;
    line-height: 1;
}

/* ==========================================================
   Webstore Home - Featured Standard Spotlight Cards
   ========================================================== */


.ws-spotlightContainer {
    max-width: 1700px;
}

.ws-spotlightWrap {
    max-width: 100%;
    margin: 0 auto;
}

.ws-spotlightTitle {
    color: #333;
    font-size: 2rem;
    letter-spacing: .08em;
    margin-bottom: 20px;
}

.ws-spotlightCard {
    width: 100%;
    height: 100%;
    padding: 30px 32px;
    background: #fff;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    background: linear-gradient( 180deg, #ffffff 0%, #f8fafc 100% );
}

    .ws-spotlightCard h3 {
        color: #0b5aa6;
        font-size: 1.65rem;
        letter-spacing: .07em;
        margin-bottom: 10px;
    }

    .ws-spotlightCard h5 {
        color: #222;
        font-size: 1.15rem;
        line-height: 1.35;
        margin-bottom: 12px;
    }

    .ws-spotlightCard p {
        color: rgba(31, 53, 83, .78);
        font-size: 1rem;
        line-height: 1.45;
        margin-bottom: 18px;
    }

.ws-monthLink {
    color: #0b5aa6;
    font-size: 1.05rem;
    letter-spacing: .04em;
    text-decoration: none;
    padding: 9px 18px 10px;
    border-radius: 999px;
    background: rgba(3,84,165,.10);
    display: inline-block;
    align-self: flex-start;
    margin-top: auto;
}

    .ws-monthLink:hover {
        color: #073f75;
        text-decoration: none;
        background: rgba(3,84,165,.15);
    }

@media (max-width: 991.98px) {
    .ws-spotlightContainer {
        max-width: 960px;
    }

    .ws-spotlightCard {
        padding: 26px 24px;
    }

        .ws-spotlightCard h3 {
            font-size: 1.45rem;
        }

        .ws-spotlightCard h5 {
            font-size: 1.05rem;
        }
}

@media (max-width: 767.98px) {
    .ws-spotlightTitle {
        font-size: 1.8rem;
    }

    .ws-spotlightCard {
        padding: 26px 28px;
    }
}

/* ==========================================================
   Responsive
   ========================================================== */
@media (min-width: 1200px) {
    .ws-solutions-row > .col-xl-4 {
        -ms-flex: 0 0 33.333333%;
        flex: 0 0 33.333333%;
        max-width: 33.333333%;
    }
}

@media (max-width: 1199.98px) {
    .ws-solutions-wrap {
        max-width: 860px;
    }

    .ws-solution-card {
        min-height: auto;
    }
}

@media (max-width: 767.98px) {
    .ws-monthContent {
        padding: 30px 24px;
    }

    .ws-monthKicker {
        font-size: 1.35rem;
    }

    .ws-monthTitle {
        display: block;
        font-size: 2.55rem;
    }

    .ws-monthBadge {
        margin-bottom: 14px;
    }

    .ws-monthTitle a {
        display: block;
    }

    .ws-monthText {
        font-size: 1rem;
    }
}

@media (max-width: 575.98px) {
    .ws-solutions-wrap {
        padding-left: 12px;
        padding-right: 12px;
    }

    .ws-solutions-row {
        margin-left: -10px;
        margin-right: -10px;
    }

        .ws-solutions-row > [class*="col-"] {
            padding-left: 10px;
            padding-right: 10px;
        }

    .ws-solution-card {
        padding-top: 38px;
        padding-bottom: 24px;
    }

    .ws-solution-header {
        gap: 14px;
    }

    .ws-solution-icon {
        width: 50px;
        height: 50px;
        flex-basis: 50px;
        font-size: 24px;
    }

    .ws-solution-title {
        font-size: 1.25rem;
    }
}



/*
    ================
    mobile hamburger fix 
    ================
*/
@media (max-width: 991.98px) {
    .u-header__section .navbar {
        position: relative;
    }

    .u-header__section .navbar-toggler {
        display: block !important;
        position: absolute !important;
        top: 14px;
        right: 15px;
        z-index: 1050;
        width: 42px;
        height: 42px;
        padding: 0 !important;
        border: 0 !important;
        background: transparent !important;
    }

    .hamburger-box {
        width: 28px;
        height: 20px;
        display: inline-block;
        position: relative;
    }

    .hamburger-inner,
    .hamburger-inner::before,
    .hamburger-inner::after {
        width: 28px;
        height: 3px;
        background-color: #ffffff;
        border-radius: 3px;
        position: absolute;
        left: 0;
        display: block;
        content: "";
    }

    .hamburger-inner {
        top: 50%;
        margin-top: -1.5px;
    }

        .hamburger-inner::before {
            top: -8px;
        }

        .hamburger-inner::after {
            bottom: -8px;
        }
}

@media (max-width: 991.98px) {
    .navbar-dark .navbar-toggler-icon {
        background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important;
    }
}

/* =========================================================
   COOKIEBOT – Webstore STYLES (SCOPED + CLEAN)

   ========================================================= */

/* -------------------------
   A) BIG COOKIEBOT DIALOG
   ------------------------- */

/* Card feel */
#CybotCookiebotDialog {
    border-radius: 18px !important;
    box-shadow: 0 22px 70px rgba(0,0,0,.30) !important;
    border: 1px solid rgba(255,255,255,.22) !important;
    overflow: hidden !important;
}

    /* Remove Cookiebot injected "TEST" overlay */
    #CybotCookiebotDialog > div[style*="font-size: 100px"],
    #CybotCookiebotDialog > div[style*="font-size:100px"] {
        display: none !important;
    }

/* Hide Cookiebot branding in big dialog */
#CybotCookiebotDialogPoweredbyCybot,
#CybotCookiebotDialogPoweredbyText,
#CybotCookiebotDialogPoweredbyLink a,
#CybotCookiebotDialogPoweredbyLink svg {
    display: none !important;
    visibility: hidden !important;
}

/* Kill any forced size on logo wrappers */
#CybotCookiebotDialogHeader #CybotCookiebotDialogHeaderLogosWrapper,
#CybotCookiebotDialogHeader #CybotCookiebotDialogPoweredbyLink {
    width: auto !important;
    height: auto !important;
    max-height: none !important;
    min-height: 55px !important;
    overflow: visible !important;
    display: flex !important;
    align-items: center !important;
}

@media screen and (min-width: 1280px) {
    #CybotCookiebotDialogHeader {
        background-color: #2588c7 !important;
        padding: 0px;
        margin: 0px
    }
}

@media screen and (max-width: 1280px) {
    #CybotCookiebotDialogHeader {
        background-color: #2588c7 !important;
        padding: 0px;
        margin: 0px
    }
}
/* Force the image itself */
#CybotCookiebotDialogHeader #CybotCookiebotDialogPoweredbyImage {
    width: 220px !important; /* your real size */
    height: auto !important;
    max-width: none !important; /* important: don't let it shrink */
    object-fit: contain !important;
    display: block !important;
    max-height: none !important;
}

/* Sometimes Cookiebot sets inline width/height attrs; neutralize */
#CybotCookiebotDialogHeader img#CybotCookiebotDialogPoweredbyImage {
    width: 220px !important;
    height: auto !important;
}

@media (max-width: 768px) {
    #CybotCookiebotDialogHeader #CybotCookiebotDialogPoweredbyImage {
        width: 200px !important;
        max-width: none !important;
    }
}

#CybotCookiebotDialogHeaderLogosWrapper,
#CybotCookiebotDialogPoweredbyLink,
#CybotCookiebotDialogPoweredbyImage {
    transform: none !important;
}



/* ---- Top pills: center + spacing ---- */
#CybotCookiebotDialogNav {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    gap: 18px !important;
    padding-top: 14px !important;
    margin-top: 8px !important;
}

    #CybotCookiebotDialogNav ul,
    #CybotCookiebotDialogNav .CybotCookiebotDialogNavItems {
        display: flex !important;
        justify-content: center !important;
        align-items: center !important;
        gap: 18px !important;
        width: 100% !important;
        margin: 0 !important;
        padding: 0 !important;
    }

    /* Pills typography (Oswald only here — not global) */
    #CybotCookiebotDialogNav a,
    #CybotCookiebotDialogNav button,
    #CybotCookiebotDialogNav a span,
    #CybotCookiebotDialogNav button span {
        font-family: "Oswald", Arial, sans-serif !important;
        font-weight: 400 !important;
        letter-spacing: .05em !important;
        text-transform: uppercase !important;
        border-radius: 999px !important;
        padding: 8px 18px !important;
        border: 1px solid rgba(17,24,39,.16) !important;
        background: #fff !important;
        color: #6b7280 !important;
    }

        /* Selected pill */
        #CybotCookiebotDialogNav a.CybotCookiebotDialogNavItemSelected,
        #CybotCookiebotDialogNav a[aria-selected="true"],
        #CybotCookiebotDialogNav button[aria-selected="true"] {
            color: #111827 !important;
            border-color: rgba(0,117,191,.35) !important;
            box-shadow: 0 8px 18px rgba(0,117,191,.18) !important;
        }

/* Headings / titles inside dialog */
#CybotCookiebotDialog h1,
#CybotCookiebotDialog h2,
#CybotCookiebotDialog h3,
#CybotCookiebotDialog h4,
#CybotCookiebotDialogBodyContentTitle,
.CybotCookiebotDialogDetailBodyContentTitle,
.CybotCookiebotDialogDetailBodyContentCookieContainerTypeHeader {
    font-family: "Oswald", Arial, sans-serif !important;
    font-weight: 400 !important;
    letter-spacing: .05em !important;
    text-transform: uppercase !important;
}

/* Buttons inside dialog */
#CybotCookiebotDialog button,
#CybotCookiebotDialog a.CybotCookiebotDialogBodyButton,
#CybotCookiebotDialogFooter button,
#CybotCookiebotDialogFooter a {
    font-family: "Oswald", Arial, sans-serif !important;
    font-weight: 400 !important;
    letter-spacing: .05em !important;
    text-transform: uppercase !important;
}

/* Desktop compactness */
@media (min-width: 992px) {
    #CybotCookiebotDialog {
        max-height: 82vh !important;
    }

    #CybotCookiebotDialogBody {
        max-height: 56vh !important;
        overflow: auto !important;
    }

    #CybotCookiebotDialogHeader {
        padding-top: 14px !important;
        padding-bottom: 6px !important;
    }

    #CybotCookiebotDialogFooter {
        padding-top: 12px !important;
        padding-bottom: 14px !important;
    }
}

/* -------------------------
   B) SMALL COOKIEBOT WIDGET
   ------------------------- */

/* Hide Cookiebot branding in widget */
.CookiebotWidget-main-logo,
.CookiebotWidget-poweredby,
.CookiebotWidget-footer .CookiebotWidget-poweredby,
.CookiebotWidget-footer a[href*="cookiebot"],
.CookiebotWidget-footer a[href*="usercentrics"],
#CookiebotWidget .CookiebotWidget-poweredby {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
}


/* Widget title / header */
.CookiebotWidget .CookiebotWidget-header,
.CookiebotWidget .CookiebotWidget-title,
.CookiebotWidget h1,
.CookiebotWidget h2,
#CookiebotWidget .CookiebotWidget-header,
#CookiebotWidget .CookiebotWidget-title {
    font-family: "Oswald", Arial, sans-serif !important;
    font-weight: 400 !important;
    letter-spacing: .05em !important;
    text-transform: uppercase !important;
}

/* Widget buttons */
.CookiebotWidget button,
.CookiebotWidget .CookiebotWidget-button,
.CookiebotWidget a[role="button"],
#CookiebotWidget button,
#CookiebotWidget .CookiebotWidget-button,
#CookiebotWidget a[role="button"] {
    font-family: "Oswald", Arial, sans-serif !important;
    font-weight: 400 !important;
    letter-spacing: .05em !important;
    text-transform: uppercase !important;
}
/* =========================================================
   COOKIEBOT – FIX SQUISHED Webstore LOGO (max-height:1.5em override)
   ========================================================= */

#CybotCookiebotDialogHeaderLogosWrapper,
#CybotCookiebotDialogPoweredbyLink {
    display: flex !important;
    align-items: center !important;
    height: auto !important;
    min-height: 56px !important; /* give the header room */
    overflow: visible !important;
}


/* =========================================================
   COOKIEBOT – Webstore: hide broken injected image
   keep only our ::before logo
   ========================================================= */

#CybotCookiebotDialogPoweredbyImage,
#CybotCookiebotDialogHeader img#CybotCookiebotDialogPoweredbyImage {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
    width: 0 !important;
    height: 0 !important;
}

/* logo container */
#CybotCookiebotDialogPoweredbyLink {
    position: relative !important;
    display: flex !important;
    align-items: center !important;
    width: 220px !important;
    height: 67px !important;
    overflow: visible !important;
}

    /* our Webstore logo */
    #CybotCookiebotDialogPoweredbyLink::before {
        content: "" !important;
        display: block !important;
        width: 220px !important;
        height: 67px !important;
        background: url("/images/webstore-logo-white-cookie.webp") no-repeat left center !important;
        background-size: contain !important;
    }
/*
 =====================
        finish Cookiebot
======================
    */

/*marked for alert*/
.result-action.alert-action--marked {
    color: #155724 !important;
    background: #dff3e4;
    border: 1px solid #9fd3ad;
    border-radius: 8px;
    padding: 4px 15px;
    font-weight: 500;
}

    .result-action.alert-action--marked i {
        color: #1f8f3a !important;
    }

    .result-action.alert-action--marked span {
        margin-left: 6px; /* this WILL force space */
    }

.rounded-3 {
    border-radius: 8px;
}


.rounded-10 {
    border-radius: 10px;
}
/*top cart not to be sclipped on tablet*/
.ws-top-cart {
    position: relative;
    padding-right: 18px;
    margin-left: 10px;
    overflow: visible;
}

.top-nav,
.top-nav .d-flex,
.navbar-wrapper {
    overflow: visible;
}

@media (max-width: 991.98px) {
    .top-nav {
        padding-left: 18px !important;
        padding-right: 18px !important;
    }

    .ws-top-cart {
        padding-right: 22px;
        margin-left: 8px;
    }
}

@media (max-width: 575.98px) {
    .top-nav {
        padding-left: 20px !important;
        padding-right: 20px !important;
    }

    .ws-top-cart {
        padding-right: 20px;
        margin-left: 8px;
    }
}
/*ADDED JUNE 9 2026 INSTEAD OF BROKEN MOBILE*/

/* ORDER CONFIRMATION FIXES */

@media (max-width: 767.98px) {
    .order-confirmation-page form section.pt-2 > .row {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 1rem 1.25rem;
    }

        .order-confirmation-page form section.pt-2 > .row > [class*="col-"] {
            max-width: 100%;
            flex: none;
            padding-left: 15px !important;
            padding-right: 15px !important;
        }

    .order-confirmation-page .ga-order-id {
        display: inline-block;
        max-width: 100%;
        overflow-wrap: anywhere;
        word-break: break-word;
        line-height: 1.35;
    }
}

/* Product cards - scoped ONLY to confirmation */
.order-confirmation-page .record-section.border-dlp {
    align-items: center;
    padding: 1.25rem 1.5rem;
}

/* Confirmation tablet */
@media (min-width: 768px) and (max-width: 991.98px) {
    .order-confirmation-page .record-section.border-dlp {
        display: grid !important;
        grid-template-columns: minmax(0, 1fr) 90px 45px 90px 165px !important;
        gap: 1rem;
        align-items: center;
    }

        .order-confirmation-page .record-section.border-dlp > [class*="col-"] {
            width: auto !important;
            max-width: 100% !important;
            flex: none !important;
            padding-left: 0 !important;
            padding-right: 0 !important;
        }

    .order-confirmation-page .confirmation-download-btn {
        width: 165px !important;
        min-width: 165px !important;
        white-space: nowrap;
    }
}

/* Confirmation awkward 576–767 zone */
@media (min-width: 576px) and (max-width: 767.98px) {
    .order-confirmation-page .record-section.border-dlp {
        display: grid !important;
        grid-template-columns: repeat(3, 1fr) !important;
        gap: .75rem 1rem;
        padding: 1rem !important;
    }

        .order-confirmation-page .record-section.border-dlp > [class*="col-"] {
            width: auto !important;
            max-width: 100% !important;
            flex: none !important;
            padding-left: 0 !important;
            padding-right: 0 !important;
        }

        .order-confirmation-page .record-section.border-dlp > div:first-child {
            grid-column: 1 / -1 !important;
        }

        .order-confirmation-page .record-section.border-dlp > div:nth-child(5) {
            grid-column: 1 / -1 !important;
        }

    .order-confirmation-page .confirmation-download-btn {
        width: 100% !important;
    }
}

/* Confirmation mobile */
@media (max-width: 575.98px) {
    .order-confirmation-page form section.pt-2 > .row {
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
    }

    .order-confirmation-page form section.pt-2 .font-18 {
        font-size: 1rem;
    }

    .order-confirmation-page .record-section.border-dlp {
        display: grid !important;
        grid-template-columns: repeat(3, 1fr) !important;
        gap: .75rem;
        padding: 1rem !important;
    }

        .order-confirmation-page .record-section.border-dlp > [class*="col-"] {
            width: auto !important;
            max-width: 100% !important;
            flex: none !important;
            padding-left: 0 !important;
            padding-right: 0 !important;
        }

        .order-confirmation-page .record-section.border-dlp > div:first-child {
            grid-column: 1 / -1 !important;
        }

        .order-confirmation-page .record-section.border-dlp > div:nth-child(5) {
            grid-column: 1 / -1 !important;
        }

        .order-confirmation-page .record-section.border-dlp h1 {
            font-size: 1.05rem;
            line-height: 1.25;
            margin-bottom: .5rem;
        }

        .order-confirmation-page .record-section.border-dlp ul li {
            font-size: .95rem;
            line-height: 1.45;
        }

    .order-confirmation-page .confirmation-download-btn {
        width: 100% !important;
        white-space: nowrap;
    }
}

/* Confirmation iPad Pro / 992–1199 */
@media (min-width: 992px) and (max-width: 1199.98px) {
    .order-confirmation-page .record-section.border-dlp {
        display: grid !important;
        grid-template-columns: minmax(0, 1fr) 90px 45px 90px 165px !important;
        gap: 1.25rem;
        align-items: center;
    }

        .order-confirmation-page .record-section.border-dlp > [class*="col-"] {
            width: auto !important;
            max-width: 100% !important;
            flex: none !important;
            padding-left: 0 !important;
            padding-right: 0 !important;
        }

    .order-confirmation-page .confirmation-download-btn {
        width: 165px !important;
        min-width: 165px !important;
        white-space: nowrap;
    }
}

/* Confirmation discounts */
.confirmation-item-discount {
    display: flex;
    justify-content: center;
    gap: 12rem;
    align-items: center;
    margin: .75rem 0 1rem;
    padding: .85rem 1rem;
    border: 1px solid #e6e6e6;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0,0,0,.06);
    color: #DA4838;
    font-weight: 600;
}

@media (max-width: 575.98px) {
    .confirmation-item-discount {
        width: 100%;
        justify-content: space-between;
        gap: 1rem;
        text-align: left;
    }

        .confirmation-item-discount span:first-child {
            flex: 1;
            min-width: 0;
        }

        .confirmation-item-discount span:last-child {
            white-space: nowrap;
            margin-left: 1rem;
        }
}

/* Discount activator badge */
.discount-activator-badge {
    display: inline-flex;
    align-items: center;
    gap: .35rem;
    margin: 1rem 0 1.25rem;
    padding: .45rem .9rem;
    border: 1px solid #f3c4bf;
    border-radius: 999px;
    background: #fff7f6;
    color: #333;
    font-size: .95rem;
    font-weight: 600;
}

    .discount-activator-badge i,
    .discount-activator-badge span {
        color: #DA4838;
    }

@media (max-width: 575.98px) {
    .discount-activator-badge {
        display: flex;
        width: 100%;
        justify-content: center;
        text-align: center;
        border-radius: 12px;
    }
}

/* Review page */
.review-discount-activator-wrap {
    margin: 1rem 0 2rem;
}

@media (max-width: 575.98px) {
    .review-discount-activator-wrap {
        margin: 1rem 0 1.5rem;
    }
}

.review-item-discount {
    display: flex;
    align-items: center;
    gap: .75rem;
    margin-top: .5rem;
    color: #DA4838;
    font-weight: 700;
}

@media (max-width: 575.98px) {
    .review-item-discount {
        display: block;
        margin-top: 1rem;
        line-height: 1.35;
    }

        .review-item-discount span + span {
            margin-left: .5rem;
            white-space: nowrap;
        }
}

/* Cart summary */
.cart-summary-box {
    padding: 1rem 0;
    margin-bottom: 1rem;
}

    .cart-summary-box .d-flex {
        display: flex !important;
        justify-content: space-between !important;
        align-items: center;
        gap: 1rem;
    }

    .cart-summary-box span:last-child {
        white-space: nowrap;
    }

.cart-sidebar {
    background: #fff;
    border: 1px solid #e6e6e6;
    border-radius: 16px;
    padding: 1.5rem;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

@media (max-width: 575.98px) {
    .cart-sidebar {
        margin-left: 1rem !important;
        margin-right: 1rem !important;
    }

    .cart-summary-box {
        padding-left: 1.25rem !important;
        padding-right: 1.25rem !important;
    }
}

/* Checkout summary */
.checkout-summary-box {
    background: #fff;
    border: 1px solid #e6e6e6;
    border-radius: 16px;
    padding: 1.5rem;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

@media (max-width: 575.98px) {
    .checkout-summary-box {
        padding: 1.25rem;
        margin: 0;
    }
}

/* Auth pages protection */
.ws-auth-section .record-section.border-dlp {
    display: block !important;
    grid-template-columns: none !important;
}

    .ws-auth-section .record-section.border-dlp > * {
        grid-column: auto !important;
    }


.u-check-icon-checkbox-v6 {
    top: 3px !important;
    transform: none !important;
}
