/* Logo font: Dark Adam (brand/logo only) */
@font-face {
    font-family: 'Dark Adam';
    src: url('/assets/fonts/Dark Adam.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

/* Site font: AC Varela */
@font-face {
    font-family: 'AC Varela';
    src: url('/assets/fonts/ACVarela.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

/* Black & white palette – monochrome brand */
:root {
    --font-sans: 'AC Varela', sans-serif;
    --safety-orange-tints-0: #000000;
    --safety-orange-tints-20: #222222;
    --safety-orange-tints-40: #555555;
    --safety-orange-tints-60: #999999;
    --safety-orange-tints-80: #e0e0e0;
    --safety-orange-shades-0: #000000;
    --safety-orange-shades-20: #1a1a1a;
    --safety-orange-shades-40: #333333;
    --safety-orange-shades-60: #444444;
    --safety-orange-shades-80: #111111;
    /* Main brand color alias */
    --color-primary: var(--safety-orange-tints-0);
}

/* Whole site uses AC Varela; logo/brand keep Dark Adam */
body {
    font-family: var(--font-sans);
}

/* Desktop-only promo strip below navbar */
.promo-strip {
    background-color: var(--safety-orange-tints-80);
    padding: 0.5rem 0;
}

.promo-strip__inner {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1rem 1.5rem;
}

.promo-strip__item {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--safety-orange-shades-60);
    font-size: 0.8125rem;
    text-decoration: none;
    transition: color 0.2s;
}

.promo-strip__item:hover {
    color: var(--safety-orange-shades-80);
}

.promo-strip__icon {
    color: var(--safety-orange-tints-0);
    font-size: 1.1rem;
    flex-shrink: 0;
}

/* Announcement bar – slides with left/right arrows */
.announcement-bar {
    background-color: var(--safety-orange-shades-20);
    color: #fff;
    font-size: 0.8125rem;
    padding: 0.375rem 0;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.announcement-bar__inner {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    max-width: 100%;
    width: fit-content;
}

.announcement-bar__arrow {
    flex-shrink: 0;
    width: 1.25rem;
    height: 1.25rem;
    padding: 0;
    border: none;
    background: transparent;
    color: #fff;
    border-radius: 50%;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.2s, color 0.2s;
}

.announcement-bar__arrow:hover {
    background-color: rgba(255, 255, 255, 0.2);
    color: #fff;
}

.announcement-bar__arrow:focus {
    outline: 2px solid #fff;
    outline-offset: 2px;
}

.announcement-bar__slides-wrapper {
    overflow: hidden;
    min-width: 0;
    width: 50ch;
    max-width: calc(100vw - 6rem);
    cursor: grab;
    user-select: none;
    -webkit-user-select: none;
    touch-action: pan-y pinch-zoom;
}

.announcement-bar__slides-wrapper:active {
    cursor: grabbing;
}

.announcement-bar__slides-wrapper.is-dragging {
    cursor: grabbing;
}

.announcement-bar__slides {
    display: flex;
    transition: transform 0.35s ease-in-out;
}

.announcement-bar__slides.no-transition {
    transition: none;
}

.announcement-bar__slide {
    flex: 0 0 100%;
    min-width: 0;
    padding: 0 0.5rem;
    text-align: center;
    box-sizing: border-box;
}

/* Full-width navbar – black */
.navbar-orange {
    background-color: var(--safety-orange-tints-0) !important;
    padding: 0.5rem 0;
}

.navbar-orange .container-fluid {
    flex-wrap: nowrap;
}

/* Menu button wrap: desktop = right of logo, mobile = full left */
.navbar-orange .navbar-menu-btn-wrap {
    flex-shrink: 0;
}

@media (min-width: 992px) {
    .navbar-orange .navbar-menu-btn-wrap { order: 2; }
    .navbar-orange .navbar-brand { order: 1; }
    .navbar-orange .navbar-search-wrap { order: 3; flex: 1 1 auto; min-width: 0; }
    .navbar-orange .navbar-nav-wrap { order: 4; flex-grow: 0; }
}

/* Menu button: rounded rectangle, icon on top, MENU text below (like reference) */
.nav-menu-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.35rem;
    padding: 0.5rem 0.85rem;
    min-width: 4rem;
    min-height: 3.5rem;
    border: none;
    border-radius: 0.5rem;
    background-color: var(--safety-orange-shades-20);
    color: #fff;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    cursor: pointer;
    transition: background-color 0.2s;
}

.nav-menu-btn:hover {
    background-color: var(--safety-orange-shades-40);
    color: #fff;
}

.nav-menu-btn__icon {
    font-size: 1.5rem;
    line-height: 1;
}

.nav-menu-btn__text {
    line-height: 1;
}

.navbar-orange .navbar-brand {
    min-width: 0;
    font-family: 'Dark Adam', sans-serif;
    font-size: 2.1rem;
    color: #fff !important;
}

.navbar-orange .navbar-brand > span {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.navbar-orange .navbar-brand-logo {
    filter: brightness(0) invert(1);
    flex-shrink: 0;
    width: 56px;
    height: 56px;
}

.navbar-orange .nav-link {
    color: #fff !important;
}

.navbar-orange .nav-link:hover,
.navbar-orange .nav-link:focus {
    color: rgba(255, 255, 255, 0.85) !important;
}

.navbar-orange .navbar-brand:hover,
.navbar-orange .navbar-brand:focus {
    color: #fff !important;
}

/* All sizes: one horizontal row (logo + search + profile + cart) */
.navbar-orange .navbar-nav-wrap {
    display: flex !important;
    flex-grow: 1;
    min-width: 0;
}

/* Mobile: menu button full left, then logo, then nav */
@media (max-width: 991.98px) {
    .navbar-orange .navbar-menu-btn-wrap { order: 1; margin-right: 1rem; }
    .navbar-orange .navbar-brand { order: 2; }
    .navbar-orange .navbar-nav-wrap { order: 3; }

    .nav-menu-btn__text { display: none; }
    .nav-menu-btn__icon { font-size: 2.25rem; }

    .navbar-orange .container-fluid {
        flex-direction: row !important;
        flex-wrap: nowrap !important;
    }

    .navbar-orange .navbar-nav-wrap {
        flex-direction: row !important;
        flex-wrap: nowrap !important;
        display: flex !important;
    }

    .navbar-orange .navbar-nav {
        display: flex !important;
        flex-direction: row !important;
        flex-wrap: nowrap !important;
        gap: 0.5rem;
        width: auto;
        margin-left: auto;
    }

    .navbar-orange .navbar-nav .nav-search-trigger,
    .navbar-orange .navbar-nav .nav-icon-circle {
        flex-shrink: 0;
    }

    .navbar-orange .navbar-brand-logo {
        width: 44px;
        height: 44px;
    }

    .navbar-orange .navbar-brand {
        font-size: 1.6rem;
    }

    .navbar-orange .navbar-brand > span {
        overflow: visible;
        text-overflow: unset;
        white-space: nowrap;
    }
}

.navbar-orange button.nav-icon-circle {
    border: none;
    background-color: rgba(255, 255, 255, 0.2);
    cursor: pointer;
    text-decoration: none;
}

/* Desktop inline search (shopweb-style) */
.navbar-search-wrap {
    position: relative;
    min-width: 0;
}

.navbar-search-container {
    position: relative;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    width: 100%;
    max-width: 800px;
    min-width: 280px;
    padding: 0.25rem 0.75rem 0.25rem 0.25rem;
}

.navbar-search-container .search-input {
    background: transparent;
    border: none;
    box-shadow: none;
    color: #222;
    font-size: 1rem;
}

.navbar-search-container .search-input:focus {
    box-shadow: none;
    outline: none;
}

.navbar-search-container .input-group-text.search-icon-bg {
    background: transparent;
    border: none;
    color: #222;
    font-size: 1.25rem;
    padding-left: 0.5rem;
    cursor: pointer;
}

.navbar-search-container #desktop-search-results.search-results {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    margin-top: 0.5rem;
    background: #fff;
    border: 1px solid #dee2e6;
    border-radius: 0.5rem;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    max-height: 400px;
    overflow-y: auto;
    z-index: 9999;
    padding: 1rem;
}

/* Mobile search overlay */
.mobile-search-overlay {
    position: fixed;
    inset: 0;
    z-index: 1300;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    flex-direction: column;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.mobile-search-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-search-bar {
    background: #fff;
    border-bottom: 1px solid #dee2e6;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.mobile-search-content {
    flex: 1;
    overflow-y: auto;
}

.mobile-search-overlay .search-results {
    position: static;
    border: none;
    box-shadow: none;
    max-height: none;
    padding: 0;
}

body.mobile-search-active {
    overflow: hidden;
}

/* Nav: search trigger – legacy, kept for reference */
.navbar-orange .nav-search-trigger {
    display: inline-flex;
    align-items: center;
    justify-content: flex-start;
    gap: 0.625rem;
    min-width: 22rem;
    height: 3rem;
    padding: 0 1.35rem;
    border: 1px solid var(--safety-orange-shades-20);
    border-radius: 9999px;
    background-color: rgba(0, 0, 0, 0.2);
    color: rgba(255, 255, 255, 0.95);
    font-size: 0.9rem;
    cursor: pointer;
    transition: background-color 0.2s, border-color 0.2s, color 0.2s, box-shadow 0.2s;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12);
}

.navbar-orange .nav-search-trigger:hover {
    background-color: rgba(0, 0, 0, 0.28);
    border-color: transparent;
    color: #fff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.navbar-orange .nav-search-trigger:focus {
    outline: none;
    border-color: var(--safety-orange-tints-0);
    box-shadow: 0 0 0 2px rgba(0, 0, 0, 0.35);
}

.nav-search-trigger__icon {
    font-size: 1.05rem;
    opacity: 0.95;
}

.nav-search-trigger__text {
    opacity: 1;
}

/* Nav right: larger circle icons (profile, cart) */
.navbar-orange .nav-icon-circle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.2);
    color: #fff;
    text-decoration: none;
    font-size: 1.5rem;
    transition: background-color 0.2s, color 0.2s;
}

.navbar-orange .nav-icon-circle:hover,
.navbar-orange .nav-icon-circle:focus {
    background-color: rgba(255, 255, 255, 0.35);
    color: #fff;
}

/* Cart icon: badge with item count */
.navbar-orange .nav-icon-circle--cart {
    position: relative;
}

.navbar-orange .nav-cart-badge {
    position: absolute;
    top: -2px;
    right: -2px;
    min-width: 1.25rem;
    height: 1.25rem;
    padding: 0 0.35rem;
    border-radius: 9999px;
    white-space: nowrap;
    background-color: #fff;
    color: var(--safety-orange-tints-0);
    font-size: 0.7rem;
    font-weight: 600;
    line-height: 1.25rem;
    text-align: center;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

/* Search overlay (old navbar behavior/style) */
.search-overlay {
    position: fixed;
    inset: 0;
    z-index: 1200;
    background: rgba(15, 23, 42, 0.5);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    display: none;
    align-items: flex-start;
    justify-content: center;
    padding: clamp(0.75rem, 2vw, 1.5rem);
}
.search-overlay.active {
    display: flex;
}
.search-modal {
    width: min(920px, 100%);
    max-height: min(82vh, 760px);
    background: #fff;
    border-radius: 16px;
    border: 1px solid rgba(15, 23, 42, 0.08);
    box-shadow: 0 28px 60px rgba(15, 23, 42, 0.28);
    overflow: hidden;
    margin-top: clamp(0.5rem, 4vh, 2rem);
}
.search-input-wrapper {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.95rem 1.1rem;
    border-bottom: 1px solid rgba(15, 23, 42, 0.08);
    background: #fff;
}
.search-icon {
    color: rgba(15, 23, 42, 0.55);
    font-size: 1.15rem;
}
.search-input {
    flex: 1;
    border: none;
    outline: none;
    background: transparent;
    font-size: 1rem;
    color: #1f2937;
}
.search-input::placeholder {
    color: rgba(55, 65, 81, 0.55);
}
.search-kbd {
    border: 1px solid rgba(15, 23, 42, 0.16);
    border-bottom-width: 2px;
    border-radius: 8px;
    padding: 0.2rem 0.5rem;
    font-size: 0.72rem;
    color: rgba(15, 23, 42, 0.72);
    background: #f8fafc;
}
.search-results {
    padding: 1rem 1.1rem 1.1rem;
    overflow-y: auto;
    max-height: calc(min(82vh, 760px) - 64px);
}
.search-section + .search-section {
    margin-top: 1rem;
}
.search-section-title {
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: rgba(15, 23, 42, 0.58);
    margin: 0 0 0.7rem;
}
.search-categories {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.6rem;
}
.search-category {
    display: flex;
    align-items: center;
    gap: 0.55rem;
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 10px;
    padding: 0.5rem 0.6rem;
    text-decoration: none;
    color: #1f2937;
    font-size: 0.9rem;
    transition: border-color 0.15s ease, box-shadow 0.15s ease, transform 0.15s ease;
}
.search-category:hover {
    border-color: rgba(0, 0, 0, 0.45);
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.12);
    transform: translateY(-1px);
    color: #1f2937;
}
.search-category-img {
    width: 28px;
    height: 28px;
    object-fit: contain;
    flex-shrink: 0;
}
.search-categories--with-subs {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.search-category-group {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}
.search-category--sub {
    padding-left: 2.2rem;
    font-size: 0.85rem;
}
.search-category--sub .search-category-img {
    display: none;
}
.search-items {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}
.search-item {
    display: grid;
    grid-template-columns: 48px minmax(0, 1fr) auto;
    align-items: center;
    gap: 0.7rem;
    padding: 0.48rem 0.5rem;
    border-radius: 10px;
    text-decoration: none;
    color: #111827;
}
.search-item:hover {
    background: #f8fafc;
    color: #111827;
}
.search-item-img {
    width: 48px;
    height: 48px;
    border-radius: 8px;
    object-fit: cover;
    border: 1px solid rgba(15, 23, 42, 0.08);
}
.search-item-content {
    min-width: 0;
    display: flex;
    flex-direction: column;
}
.search-item-title {
    font-size: 0.9rem;
    font-weight: 600;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.search-item-category {
    font-size: 0.78rem;
    color: rgba(15, 23, 42, 0.58);
}
.search-item-price {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--safety-orange-tints-0);
}
.search-loading-text {
    color: var(--safety-orange-tints-0);
    font-size: 1.1rem;
    font-weight: 700;
}
.search-loading-spinner {
    width: 2rem;
    height: 2rem;
    border-width: 0.24em;
    color: var(--safety-orange-tints-0);
}
.search-loading-spinner--mobile {
    width: 3.25rem;
    height: 3.25rem;
}
.search-no-results p {
    margin: 0;
    font-size: 0.9rem;
    color: rgba(15, 23, 42, 0.68);
}
@media (max-width: 767.98px) {
    .search-overlay {
        padding: 0.5rem;
    }
    .search-modal {
        border-radius: 12px;
        max-height: 90vh;
        margin-top: 0.25rem;
    }
    .search-results {
        max-height: calc(90vh - 62px);
        padding: 0.8rem;
    }
    .search-categories {
        grid-template-columns: 1fr;
    }
}

.navbar-orange .dropdown-menu {
    --bs-dropdown-link-color: #212529;
}

/* Off-canvas menu links */
.nav-offcanvas-link {
    display: block;
    padding: 0.6rem 0;
    color: #212529;
    text-decoration: none;
    transition: color 0.2s;
}

.nav-offcanvas-link:hover {
    color: var(--safety-orange-tints-0);
}

/* Cart off-canvas */
#cartOffcanvas .offcanvas-body {
    display: flex;
    flex-direction: column;
}

/* Cart footer buttons – match site primary CTAs */
#cartOffcanvas .cart-checkout-btn {
    background: var(--safety-orange-tints-0);
    border: 1px solid var(--safety-orange-tints-0);
    color: #fff;
    font-weight: 600;
    font-size: 1rem;
    padding: 0.75rem 1.25rem;
    border-radius: 10px;
    transition: background 0.2s, border-color 0.2s, box-shadow 0.2s;
}
#cartOffcanvas .cart-checkout-btn:hover {
    background: var(--safety-orange-shades-20);
    border-color: var(--safety-orange-shades-20);
    color: #fff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.35);
}

#cartOffcanvas .cart-view-cart-btn {
    background: transparent;
    color: var(--safety-orange-tints-0);
    border: 1px solid var(--safety-orange-tints-0);
    font-weight: 600;
    font-size: 1rem;
    padding: 0.75rem 1.25rem;
    border-radius: 10px;
    transition: background 0.2s, color 0.2s, border-color 0.2s;
}
#cartOffcanvas .cart-view-cart-btn:hover {
    background: var(--safety-orange-tints-80);
    color: var(--safety-orange-shades-40);
    border-color: var(--safety-orange-tints-0);
}

/* Cart item quantity +/- buttons */
#cartOffcanvas .cart-item-qty-controls .qty-btn {
    color: var(--safety-orange-tints-0);
    text-decoration: none;
}
#cartOffcanvas .cart-item-qty-controls .qty-btn:hover {
    color: var(--safety-orange-shades-20);
}

/* Cart offcanvas: total row – modern, clean */
#cartOffcanvas .cart-summary-card-offcanvas {
    background: var(--bs-body-bg);
    padding: 1.25rem 1.5rem;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
}
#cartOffcanvas .cart-totals-offcanvas {
    margin-bottom: 1rem;
}
#cartOffcanvas .cart-totals-row-offcanvas {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    background: rgba(0, 0, 0, 0.03);
    border-radius: 10px;
}
#cartOffcanvas .cart-summary-total-label-offcanvas {
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--bs-secondary-color, #6c757d);
    letter-spacing: 0.01em;
}
#cartOffcanvas .cart-summary-total-amount-offcanvas {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--bs-body-color);
    letter-spacing: -0.02em;
}

/* Home: categories + slider section (full width, white) */
.home-categories-slider {
    background-color: #fff;
}

.home-categories-slider .container-fluid {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

.home-categories-card {
    background: #fff;
    border-radius: 12px;
    padding: 1.25rem;
    height: 100%;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.06);
}

.home-categories-heading {
    margin-bottom: 0.75rem;
    padding-left: 0.4rem;
    border-left: 4px solid #000000;
}

.home-categories-title {
    font-size: 1.15rem;
    font-weight: 700;
    margin: 0;
    color: #1a1a1a;
    line-height: 1.3;
}

.home-categories-subtitle {
    font-size: 0.8rem;
    color: #616161;
    margin: 0.15rem 0 0;
    font-weight: 400;
    line-height: 1.4;
}

.home-categories-list {
    list-style: none;
    padding: 0;
    margin: 0;
    max-height: min(520px, 70vh);
    overflow-y: auto;
}

.home-categories-list li {
    margin-bottom: 0.125rem;
}

.home-categories-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.6rem 0.5rem;
    color: #212529;
    text-decoration: none;
    border-radius: 8px;
    transition: background-color 0.2s, color 0.2s;
}

.home-categories-link:hover {
    background-color: rgba(0, 0, 0, 0.08);
    color: var(--safety-orange-tints-0);
}

.home-categories-link:hover .home-categories-link__arrow {
    color: var(--safety-orange-tints-0);
}

.home-categories-link__icon,
.home-categories-link__img {
    flex-shrink: 0;
    width: 2rem;
    height: 2rem;
    display: block;
    object-fit: contain;
}
.home-categories-link__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    background-color: var(--safety-orange-tints-0);
    color: #fff;
    font-size: 1rem;
}

.home-categories-link__text {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 0.125rem;
}

.home-categories-link__title {
    font-size: 0.9rem;
    font-weight: 600;
    line-height: 1.2;
}

.home-categories-link__subtitle {
    font-size: 0.75rem;
    color: #6c757d;
    line-height: 1.2;
}

.home-categories-link:hover .home-categories-link__subtitle {
    color: inherit;
}

.home-categories-link__arrow {
    flex-shrink: 0;
    opacity: 0.55;
    font-size: 0.875rem;
    color: #adb5bd;
    transition: color 0.2s, opacity 0.2s;
}

.home-slider-wrap {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(0, 0, 0, 0.06);
    height: 100%;
    min-height: 240px;
}

.home-hero-swiper {
    border-radius: 12px;
    height: 100%;
}

.home-hero-swiper .swiper-wrapper {
    align-items: stretch;
}

.home-hero-swiper .swiper-slide {
    height: auto;
}

.home-slide {
    height: 100%;
    min-height: 220px;
    border-radius: 12px;
    background-size: cover;
    background-position: center;
}

.home-slide--1 {
    background-color: var(--safety-orange-shades-40);
    background-image: linear-gradient(135deg, var(--safety-orange-shades-40) 0%, var(--safety-orange-shades-20) 100%);
}

.home-slide--2 {
    background-color: var(--safety-orange-tints-0);
    background-image: linear-gradient(135deg, var(--safety-orange-tints-0) 0%, var(--safety-orange-tints-40) 100%);
}

.home-slide--3 {
    background-color: var(--safety-orange-shades-20);
    background-image: linear-gradient(135deg, var(--safety-orange-shades-20) 0%, var(--safety-orange-shades-40) 100%);
}

.home-swiper-pagination .swiper-pagination-bullet {
    background: #fff;
    opacity: 0.6;
}

.home-swiper-pagination .swiper-pagination-bullet-active {
    opacity: 1;
    transform: scale(1.2);
}

.home-hero-swiper .home-swiper-btn {
    color: #fff;
}

.home-hero-swiper .home-swiper-btn::after {
    font-size: 1.25rem;
    font-weight: bold;
}

/* Home: top categories of the month (circular icons slider) */
.home-top-categories {
    background-color: #fff;
}

.home-top-categories .container-fluid {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

.home-top-categories__heading {
    padding-left: 0.4rem;
    border-left: 4px solid #000000;
}

.home-top-categories__title {
    font-size: clamp(1.1rem, 2.5vw, 1.35rem);
    font-weight: 700;
    color: #1a1a1a;
    margin: 0;
    line-height: 1.3;
}

.home-top-categories__subtitle {
    font-size: 0.8rem;
    color: #616161;
    margin: 0.15rem 0 0;
    font-weight: 400;
    line-height: 1.4;
}

.home-top-categories-swiper {
    position: relative;
    overflow: hidden;
    padding: 0.5rem 0;
}

.home-top-categories-swiper .swiper-slide {
    height: auto;
}

.home-top-cat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: inherit;
    padding: 0.25rem 0;
    transition: opacity 0.2s;
}

.home-top-cat-item:hover {
    opacity: 0.85;
}

.home-top-cat-item__icon-wrap {
    position: relative;
    width: 100%;
    aspect-ratio: 1;
    max-width: 120px;
    border-radius: 50%;
    overflow: hidden;
    background-color: #fff;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.06);
    flex-shrink: 0;
}

.home-top-cat-item__icon {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.home-top-cat-item__label {
    margin-top: 0.5rem;
    font-size: 0.8rem;
    color: #5a5a5a;
    text-align: center;
    line-height: 1.3;
    max-width: 100%;
}

.home-top-categories-swiper .home-top-categories-prev,
.home-top-categories-swiper .home-top-categories-next {
    color: #000000 !important;
    --swiper-navigation-color: #000000;
}

.home-top-categories-swiper .home-top-categories-prev::after,
.home-top-categories-swiper .home-top-categories-next::after {
    font-size: 0.875rem;
    font-weight: bold;
    color: #000000 !important;
    border-color: #000000 !important;
}

/* 404 page – pattern behind code, top categories */
.page-404-wrapper {
    margin-top: 0;
}
.page-404-section {
    position: relative;
    background-color: #fff;
    padding-top: 5rem;
    padding-bottom: 5rem;
}
@media (min-width: 992px) {
    .page-404-section {
        padding-top: 8rem;
        padding-bottom: 8rem;
    }
}
.page-404-section .container-fluid {
    position: relative;
    z-index: 1;
}
.page-404__inner {
    max-width: 36rem;
}
.page-404__code-wrap {
    position: relative;
    display: inline-block;
    margin-bottom: 0.5rem;
    padding: 0 2rem;
}
.page-404__code-wrap::before {
    content: '';
    position: absolute;
    inset: -20px -40px;
    z-index: 0;
    opacity: 0.5;
    background-image:
        linear-gradient(var(--safety-orange-tints-80, rgba(0, 0, 0, 0.2)) 1.4px, transparent 1.4px),
        linear-gradient(to right, var(--safety-orange-tints-80, rgba(0, 0, 0, 0.2)) 1.4px, transparent 1.4px);
    background-size: 28px 28px;
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 12%, black 88%, transparent 100%);
    mask-image: linear-gradient(to right, transparent 0%, black 12%, black 88%, transparent 100%);
    pointer-events: none;
}
.page-404__code {
    position: relative;
    z-index: 1;
    font-size: clamp(5rem, 18vw, 10rem);
    font-weight: 900;
    color: var(--safety-orange-tints-0);
    margin: 0 0 0.5rem;
    line-height: 1;
    letter-spacing: -0.02em;
}
.page-404__title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 0.75rem;
    line-height: 1.2;
}
.page-404__text {
    font-size: 1rem;
    color: #1a1a1a;
    line-height: 1.5;
    margin: 0 0 1.5rem;
}
.page-404__back {
    background-color: var(--safety-orange-tints-0);
    border-color: var(--safety-orange-tints-0);
    color: #fff;
}
.page-404__back:hover {
    background-color: var(--safety-orange-shades-20);
    border-color: var(--safety-orange-shades-20);
    color: #fff;
}
.page-404-top-categories-swiper {
    position: relative;
    overflow: hidden;
    padding: 0.5rem 0;
}
.page-404-top-categories-swiper .swiper-slide {
    height: auto;
}
.page-404-top-categories-swiper .page-404-top-categories-prev,
.page-404-top-categories-swiper .page-404-top-categories-next {
    color: #000000 !important;
    --swiper-navigation-color: #000000;
}
.page-404-top-categories-swiper .page-404-top-categories-prev::after,
.page-404-top-categories-swiper .page-404-top-categories-next::after {
    font-size: 0.875rem;
    font-weight: bold;
    color: #000000 !important;
}

/* Home product cards section */
.home-products {
    background-color: #fff;
    padding-top: 0.75rem;
}

.home-products .container-fluid {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

.home-products-swiper {
    position: relative;
    padding-bottom: 0.5rem;
    overflow: visible;
}

.home-products-swiper .swiper-slide {
    height: auto;
}

.home-products-swiper .home-product-card {
    min-height: 200px;
}

.home-products-swiper .home-products-prev,
.home-products-swiper .home-products-next {
    color: #000000 !important;
    --swiper-navigation-color: #000000;
}

.home-products-swiper .home-products-prev::after,
.home-products-swiper .home-products-next::after {
    font-size: 0.875rem;
    font-weight: bold;
    color: #000000 !important;
    border-color: #000000 !important;
}

.home-product-card {
    display: flex;
    flex-direction: column;
    background-color: #f5f5f5;
    border-radius: 14px;
    padding: 1rem;
    text-decoration: none;
    color: inherit;
    height: 100%;
    transition: box-shadow 0.2s, transform 0.2s;
}

.home-product-card:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    transform: translateY(-2px);
}

.home-product-card__title {
    font-size: 1.2rem;
    font-weight: 700;
    color: #1a1a2e;
    margin: 0 0 0.15rem;
    line-height: 1.25;
}

.home-product-card__model {
    font-size: 0.9rem;
    color: #5a5a5a;
    margin: 0 0 0.35rem;
    line-height: 1.35;
}

.home-product-card__icon-wrap {
    position: relative;
    align-self: flex-end;
    width: 120px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.25rem;
}

.home-product-card__shape {
    position: absolute;
    inset: -6px -6px -6px 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.18) 0%, rgba(0, 0, 0, 0.06) 100%);
    border-radius: 50% 40% 45% 50% / 60% 50% 50% 40%;
    z-index: 0;
}

.home-product-card__icon {
    position: relative;
    z-index: 1;
    width: 100px;
    height: 100px;
    object-fit: contain;
}

.home-product-card__price {
    font-size: 1.85rem;
    font-weight: 700;
    color: var(--safety-orange-tints-0);
    margin: 0 0 0.1rem;
    line-height: 1.2;
}

.home-product-card__installment {
    font-size: 0.85rem;
    color: #6c757d;
    margin: 0;
    line-height: 1.35;
}

/* Deals row: header left, product slider right */
.home-orange-row {
    position: relative;
    margin-top: 2rem;
    background-color: #000000;
    color: #fff;
}

.home-orange-row .container-fluid {
    position: relative;
    z-index: 1;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

.home-orange-row__title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #fff;
    margin: 0 0 0.5rem;
    line-height: 1.2;
}

.home-orange-row__subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    line-height: 1.4;
}

.home-orange-row-swiper-wrap {
    padding-bottom: 2rem;
    padding-left: 4rem;
    padding-right: 4rem;
    position: relative;
}

.home-orange-row-pagination {
    position: relative;
    margin-top: 1rem;
}

.home-orange-row-pagination .swiper-pagination-bullet {
    width: 6px;
    height: 6px;
    background: #fff;
    opacity: 0.5;
    transition: opacity 0.2s;
}

.home-orange-row-pagination .swiper-pagination-bullet-active {
    opacity: 1;
}

.home-orange-row-swiper {
    overflow: visible;
}

.home-orange-row-prev {
    left: 0;
}

.home-orange-row-next {
    right: 0;
}

.home-orange-row-swiper .swiper-slide {
    height: auto;
}

.home-orange-row-swiper .home-deal-card {
    min-height: 240px;
}

.home-orange-row-prev,
.home-orange-row-next {
    color: #fff !important;
    --swiper-navigation-color: #fff;
    top: 50%;
    width: 24px;
    height: 24px;
    margin-top: -12px;
}

.home-orange-row-prev::after,
.home-orange-row-next::after {
    font-size: 0.55rem;
    font-weight: bold;
    color: #fff !important;
}

@media (max-width: 575.98px) {
    .home-orange-row-prev,
    .home-orange-row-next {
        width: 20px;
        height: 20px;
        margin-top: -10px;
    }

    .home-orange-row-prev::after,
    .home-orange-row-next::after {
        font-size: 0.5rem;
    }
}

/* Mobile: deals section cards wider + larger images */
@media (max-width: 991.98px) {
    .home-orange-row .container-fluid {
        padding-left: 0.75rem;
        padding-right: 0.75rem;
    }

    .home-orange-row-swiper-wrap {
        padding-left: 0.25rem;
        padding-right: 0.25rem;
        padding-bottom: 1.75rem;
    }

    .home-orange-row-swiper .home-deal-card {
        min-height: 340px;
    }

    .home-orange-row .home-deal-card__icon-wrap {
        width: min(100%, 280px);
        height: 240px;
        margin-top: 1rem;
    }

    .home-orange-row .home-deal-card__icon-wrap .home-deal-card__img {
        width: 220px;
        height: 220px;
    }

    .home-orange-row .home-deal-card__body {
        padding: 0.75rem 0.85rem 1rem;
    }

    .home-orange-row .home-deal-card__title {
        font-size: 0.95rem;
    }

    .home-orange-row .home-deal-card__price {
        font-size: 1.3rem;
    }
}

@media (max-width: 575.98px) {
    .home-orange-row .home-deal-card__icon-wrap {
        width: min(100%, 300px);
        height: 260px;
    }

    .home-orange-row .home-deal-card__icon-wrap .home-deal-card__img {
        width: 240px;
        height: 240px;
    }
}

/* Deal cards on featured row: boxed image (like second section), SKU, title, availability, price row */
.home-deal-card {
    background: #fff;
    border-radius: 10px;
    overflow: visible;
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.08);
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: box-shadow 0.2s;
}

.home-deal-card:hover {
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

/* One boxed image (no shape background) */
.home-deal-card__icon-wrap {
    position: relative;
    align-self: center;
    width: 210px;
    height: 210px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0.85rem auto 0.35rem;
    text-decoration: none;
}

.home-deal-card__icon-wrap .home-deal-card__img {
    position: relative;
    z-index: 1;
    width: 185px;
    height: 185px;
    object-fit: contain;
}

.home-deal-card__body {
    padding: 0.65rem 0.7rem 0.75rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    position: relative;
}

.home-deal-card__sku {
    font-size: 0.7rem;
    color: #adb5bd;
    margin: 0 0 0.35rem;
    line-height: 1.2;
}

.home-deal-card__title {
    font-size: 0.82rem;
    font-weight: 700;
    color: #1a1a2e;
    margin: 0 0 0.35rem;
    line-height: 1.35;
    text-decoration: none;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.home-deal-card__title:hover {
    color: #000000;
}

.home-deal-card__availability {
    font-size: 0.75rem;
    font-weight: 500;
    color: #198754;
    margin: 0 0 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.35rem;
}

.home-deal-card__availability i {
    font-size: 0.9rem;
    flex-shrink: 0;
}

.home-deal-card__price-row {
    margin-top: auto;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0.65rem;
}

.home-deal-card__prices {
    display: flex;
    align-items: baseline;
    gap: 0.4rem;
    flex-wrap: wrap;
}

.home-deal-card__price {
    font-size: 1.15rem;
    font-weight: 700;
    color: #1a1a2e;
    line-height: 1.2;
}

.home-deal-card__price--old {
    font-size: 0.85rem;
    font-weight: 500;
    color: #adb5bd;
    text-decoration: line-through;
}

.home-deal-card__add {
    width: 100%;
    min-height: 42px;
    padding: 0.55rem 0.75rem;
    border-radius: 8px;
    border: none;
    background: #1a1a1a;
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.45rem;
    font-size: 0.85rem;
    font-weight: 600;
    line-height: 1.2;
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
    flex-shrink: 0;
}

.home-deal-card__add:hover {
    background: #333333;
    color: #fff;
}

.home-deal-card__add i {
    font-size: 1rem;
}

.product-card.trending-card-wrapper {
    display: flex;
    flex-direction: column;
}

.product-card .trending-card {
    display: block;
    text-decoration: none;
    color: inherit;
}

.product-card .trending-card-image {
    width: 100%;
    aspect-ratio: 1;
    max-height: 280px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: #f7f7f7;
    margin-bottom: 0.5rem;
}

.product-card .trending-card-image img {
    width: 100%;
    height: 100%;
    max-width: 260px;
    max-height: 260px;
    object-fit: contain;
}

.product-card .home-deal-card__add {
    width: 100%;
}

.cart-page .home-deal-card__add {
    min-height: 44px;
    font-size: 0.9rem;
}
.cart-page .home-deal-card__add i {
    font-size: inherit;
}

/* Explore section: left = big collage, right = simple image collage */
.home-collage {
    background: #fff;
}

.home-collage .container-fluid {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

.home-collage .row {
    align-items: stretch;
}

.home-collage .row > [class*="col-"] {
    display: flex;
    flex-direction: column;
}

.home-collage .row .home-collage__grid {
    flex: 1;
    min-height: 0;
}

.home-collage .row .home-collage-right__grid {
    flex: 1;
    min-height: 0;
}

.home-collage__header {
    padding-left: 1rem;
    border-left: 4px solid #000000;
    margin-bottom: 1.25rem;
}

.home-collage__title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a2e;
    margin: 0 0 0.25rem;
}

.home-collage__subtitle {
    font-size: 0.9rem;
    color: #6c757d;
    margin: 0;
}

.home-collage__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: minmax(140px, auto);
    gap: 0.5rem;
}

@media (min-width: 576px) {
    .home-collage__grid {
        grid-template-columns: repeat(4, 1fr);
        grid-auto-rows: minmax(160px, auto);
        gap: 0.6rem;
    }
}

@media (min-width: 992px) {
    .home-collage__grid {
        grid-template-columns: repeat(4, 1fr);
        grid-template-rows: repeat(3, 180px);
        gap: 0.75rem;
    }
}

.home-collage__tile {
    display: block;
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    text-decoration: none;
}

.home-collage__tile img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.35s ease;
}

.home-collage__tile:hover img {
    transform: scale(1.06);
}

.home-collage__tile--large {
    grid-column: span 2;
    grid-row: span 2;
    min-height: 200px;
}

.home-collage__tile--wide {
    grid-column: span 2;
}

.home-collage__tile--square {
    grid-column: span 1;
    grid-row: span 1;
}

.home-collage__tile--tall {
    grid-column: span 1;
    grid-row: span 2;
}

@media (min-width: 576px) {
    .home-collage__tile--large {
        min-height: 240px;
    }
}

@media (min-width: 992px) {
    .home-collage__tile--large {
        grid-column: 1 / 3;
        grid-row: 1 / 3;
        min-height: 0;
    }

    .home-collage__tile--wide:first-of-type {
        grid-column: 3 / 5;
        grid-row: 1 / 2;
    }

    .home-collage__tile--square:nth-of-type(3) {
        grid-column: 3 / 4;
        grid-row: 2 / 3;
    }

    .home-collage__tile--tall {
        grid-column: 4 / 5;
        grid-row: 2 / 4;
    }

    .home-collage__tile--square:nth-of-type(5) {
        grid-column: 1 / 2;
        grid-row: 3 / 4;
    }

    .home-collage__tile--wide:last-of-type {
        grid-column: 2 / 4;
        grid-row: 3 / 4;
    }
}

/* Right column: header + simple images collage */
.home-collage-right__header {
    padding-left: 1rem;
    border-left: 4px solid #000000;
    margin-bottom: 1rem;
}

.home-collage-right__title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a2e;
    margin: 0 0 0.25rem;
}

.home-collage-right__subtitle {
    font-size: 0.9rem;
    color: #6c757d;
    margin: 0;
}

.home-collage-right__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
    min-height: 280px;
}

@media (min-width: 992px) {
    .home-collage-right__grid {
        grid-template-rows: 1fr 1fr;
        min-height: 0;
    }
}

.home-collage-right__tile {
    display: block;
    overflow: hidden;
    border-radius: 8px;
    text-decoration: none;
}

.home-collage-right__tile img {
    width: 100%;
    height: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.home-collage-right__tile:hover img {
    transform: scale(1.05);
}

/* Help section: payment, delivery, how to order */
.home-help {
    background: #fff;
}

.home-help .container-fluid {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

.home-help__header {
    padding-left: 1rem;
    border-left: 4px solid #000000;
    margin-bottom: 1.25rem;
}

.home-help__title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a2e;
    margin: 0 0 0.25rem;
}

.home-help__subtitle {
    font-size: 0.9rem;
    color: #6c757d;
    margin: 0;
}

.home-help-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background: #fff;
    border-radius: 10px;
    padding: 1.5rem 1.25rem;
    text-decoration: none;
    color: inherit;
    height: 100%;
}

.home-help-card__icon {
    width: 72px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.12);
    color: #000000;
    border-radius: 50%;
    font-size: 2rem;
    margin-bottom: 1rem;
}

.home-help-card__title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1a1a2e;
    margin: 0 0 0.5rem;
    line-height: 1.3;
}

.home-help-card__text {
    font-size: 0.9rem;
    color: #5a5a5a;
    margin: 0 0 0.75rem;
    line-height: 1.45;
    flex: 1;
}

.home-help-card__link {
    font-size: 0.85rem;
    font-weight: 600;
    color: #000000;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
}

.home-help-swiper-wrap {
    padding-left: 2rem;
    padding-right: 2rem;
}

.home-help-swiper .swiper-slide {
    height: auto;
}

.home-help-swiper-wrap .home-help-prev,
.home-help-swiper-wrap .home-help-next {
    color: #000000 !important;
    --swiper-navigation-color: #000000;
}

.home-help-swiper-wrap .home-help-prev {
    left: 0;
}

.home-help-swiper-wrap .home-help-next {
    right: 0;
}

.home-help-swiper-wrap .home-help-prev::after,
.home-help-swiper-wrap .home-help-next::after {
    font-size: 0.875rem;
    font-weight: bold;
    color: #000000 !important;
}

/* Social section: portrait post cards (rotated) + contact-style cards */
.home-social {
    background: #fff;
}
.success-page-social-wrap .home-social {
    padding-top: 1.5rem;
}

.home-social .container-fluid {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

.home-social-posts {
    position: relative;
    height: 460px;
    padding: 1rem 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.home-social-post {
    position: absolute;
    display: block;
    width: 28%;
    min-width: 200px;
    max-width: 260px;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    text-decoration: none;
    color: inherit;
    top: 50%;
    transform: translateY(-50%);
}

.home-social-post--instagram {
    z-index: 3;
    left: 50%;
    width: 34%;
    min-width: 240px;
    max-width: 300px;
    transform: translate(-50%, -50%) rotate(-5deg);
}

.home-social-post--facebook {
    z-index: 2;
    left: 5%;
    transform: translateY(-50%) rotate(4deg);
}

.home-social-post--youtube {
    z-index: 1;
    left: auto;
    right: 5%;
    transform: translateY(-50%) rotate(-5deg);
}

.home-social-post__thumb {
    display: block;
    aspect-ratio: 280 / 400;
    overflow: hidden;
}

.home-social-post__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.home-social-post__badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.8rem;
    font-weight: 700;
    color: #1a1a2e;
    padding: 0.6rem 0.75rem 0;
}

.home-social-post__badge i {
    font-size: 1rem;
}

.home-social-post--instagram .home-social-post__badge { color: #E4405F; }
.home-social-post--facebook .home-social-post__badge { color: #1877F2; }
.home-social-post--youtube .home-social-post__badge { color: #FF0000; }

.home-social-post__text {
    font-size: 0.8rem;
    color: #5a5a5a;
    margin: 0 0 0.75rem;
    padding: 0 0.75rem;
    line-height: 1.35;
}

/* Mobile: small collage (3 tiles) */
.home-social-collage {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.4rem;
    padding: 0.5rem 0;
}

.home-social-collage__tile {
    display: block;
    overflow: hidden;
    border-radius: 8px;
    aspect-ratio: 1;
}

/* Slight random rotation per tile */
.home-social-collage__tile:nth-child(1) { transform: rotate(-4deg); }
.home-social-collage__tile:nth-child(2) { transform: rotate(3deg); }
.home-social-collage__tile:nth-child(3) { transform: rotate(-2deg); }

.home-social-collage__tile img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.home-social-collage__tile:hover img {
    transform: scale(1.05);
}

/* Right column: contact-style cards (like footer) */
.home-social-cards {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.home-social-card {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.25rem 1.25rem;
    background: #e9ecef;
    border-radius: 0.65rem;
    text-decoration: none;
    color: inherit;
    transition: background 0.2s;
}

.home-social-card:hover {
    background: #dee2e6;
    color: inherit;
}

.home-social-card__icon {
    width: 3rem;
    height: 3rem;
    min-width: 3rem;
    min-height: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.home-social-card:nth-child(1) .home-social-card__icon { color: #1877F2; }
.home-social-card:nth-child(2) .home-social-card__icon { color: #E4405F; }
.home-social-card:nth-child(3) .home-social-card__icon { color: #FF0000; }

.home-social-card__body {
    flex: 1;
    min-width: 0;
}

.home-social-card__main {
    display: block;
    font-size: 1.25rem;
    font-weight: 700;
    color: #1a1a2e;
    line-height: 1.3;
}

.home-social-card__sub {
    display: block;
    font-size: 1rem;
    color: #5a5a5a;
    margin-top: 0.25rem;
    line-height: 1.4;
}

/* Orange footer (Bootstrap + minimal custom) */
.footer-wrapper {
    margin-top: auto;
}

.footer-orange {
    background-color: #000000;
}

.footer-orange .footer-link {
    opacity: 0.85;
}

.footer-orange .footer-link:hover {
    opacity: 1;
}

.footer-developed {
    font-size: 1.05rem;
}

.footer-fossasoft {
    color: #fff !important;
    opacity: 1;
    font-size: 1.25rem;
}

.footer-fossasoft:hover {
    color: #fff !important;
    opacity: 0.9;
}

.footer-fossa-icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    filter: brightness(0) invert(1);
}

.footer-bottom-row {
    min-height: 4.5rem;
}

.footer-description {
    max-width: 100%;
}

.footer-social-links a {
    font-size: 1.35rem;
}

.footer-social-links .bi {
    font-size: 1.4rem;
}

.footer-copyright-block span + span {
    margin-top: 0.15rem;
}

.footer-copyright-brand {
    font-family: 'Dark Adam', sans-serif;
    font-size: 1.05em;
    letter-spacing: 0.02em;
}

/* Footer logo: match navbar brand exactly */
.footer-brand {
    font-family: 'Dark Adam', sans-serif;
    font-size: 2.1rem;
    color: #fff !important;
}

.footer-brand:hover,
.footer-brand:focus {
    color: #fff !important;
}

.footer-brand-logo {
    filter: brightness(0) invert(1);
    flex-shrink: 0;
    width: 72px;
    height: 72px;
}

.footer-brand-name {
    font-family: 'Dark Adam', sans-serif;
    font-size: 2.5rem;
    line-height: 1.1;
}

/* Footer contact cards (card-style blocks) */
.footer-contact-cards {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-contact-card {
    align-items: flex-start;
    padding: 0.75rem 1rem;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.35);
    border-radius: 0.5rem;
    transition: background 0.2s, border-color 0.2s;
}

.footer-contact-card:hover {
    background: rgba(255, 255, 255, 0.18);
    border-color: rgba(255, 255, 255, 0.5);
    color: #fff;
}

.footer-contact-address .footer-contact-icon,
.footer-contact-card .footer-contact-icon {
    width: 2.25rem;
    height: 2.25rem;
    filter: brightness(0) invert(1);
    flex-shrink: 0;
    margin-top: 0.1rem;
}

.footer-contact-card-main {
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.3;
}

.footer-contact-card-sub {
    font-size: 0.8125rem;
    opacity: 0.88;
    margin-top: 0.15rem;
}

/* Smaller link text in footer columns (Famous categories, Shop, Help, Company) */
.footer-col-links a,
.footer-col-links .footer-link {
    font-size: 0.875rem;
}

.footer-flag-icon {
    flex-shrink: 0;
    border-radius: 2px;
    vertical-align: middle;
}

/* Footer language dropdown */
/* Footer language row: align with Company column */
.footer-lang-row {
    margin-top: 0.5rem;
    margin-bottom: 1rem;
}

/* Navbar "Call us" block (large screens only, next to MENU button) */
.nav-call-us:hover {
    color: #fff;
    opacity: 0.95;
}

.nav-call-us-icon {
    flex-shrink: 0;
    filter: brightness(0) invert(1);
}

.nav-call-us-label {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    opacity: 0.9;
}

.nav-call-us-number {
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.2;
}

.footer-lang-dropdown-btn {
    font-size: 0.9rem;
    opacity: 0.9;
    border: 1px solid rgba(255, 255, 255, 0.4);
    background: rgba(255, 255, 255, 0.08);
    padding: 0.5rem 0.75rem;
}

.footer-lang-dropdown-btn:hover,
.footer-lang-dropdown-btn:focus {
    color: #fff;
    opacity: 1;
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.5);
}

.footer-lang-dropdown-btn::after {
    margin-left: 0.35rem;
}

/* Glass effect for footer language dropdown menu */
.footer-lang-dropdown-menu {
    min-width: 11rem;
    padding: 0.5rem;
    background: rgba(0, 0, 0, 0.45);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 0.5rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.footer-lang-dropdown-menu .dropdown-item {
    border-radius: 0.35rem;
    padding: 0.5rem 0.75rem;
    margin-bottom: 0.5rem;
    color: #fff;
}

.footer-lang-dropdown-menu .dropdown-item:last-child {
    margin-bottom: 0;
}

.footer-lang-dropdown-menu .dropdown-item:hover {
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
}

.footer-lang-dropdown-menu .dropdown-item.active {
    background: rgba(255, 255, 255, 0.25);
    color: #fff;
}

/* Breadcrumb strip: supports old (.breadcrumb-strip) and current (.breadcrumb-bar) markup */
.breadcrumb-strip,
.breadcrumb-bar {
    margin-bottom: 0.5rem;
    background-color: #f5f5f5;
    background-color: color-mix(in srgb, var(--safety-orange-tints-80) 55%, white);
    padding-top: 0.15rem;
    padding-bottom: 0.15rem;
}

.breadcrumb-strip .breadcrumb,
.breadcrumb-bar .breadcrumb-list {
    margin: 0;
    padding: 0;
    border: none !important;
    box-shadow: none !important;
    filter: none !important;
    background: none;
}

.breadcrumb-bar .breadcrumb-list {
    list-style: none;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.breadcrumb-strip .breadcrumb-item a,
.breadcrumb-strip .breadcrumb-item.active,
.breadcrumb-bar .breadcrumb-item a,
.breadcrumb-bar .breadcrumb-current {
    color: var(--safety-orange-shades-60);
    text-decoration: none;
    font-size: 0.875rem;
}

.breadcrumb-strip .breadcrumb-item a:hover,
.breadcrumb-bar .breadcrumb-item a:hover {
    color: var(--safety-orange-tints-0);
}

.breadcrumb-bar .breadcrumb-sep {
    color: var(--safety-orange-tints-40);
    font-size: 0.875rem;
    user-select: none;
}

/* Auth sections: white panels, left-border heading like home page */
.auth-page .auth-section {
    background-color: #fff;
    border: none;
    box-shadow: none;
}

.auth-section-heading {
    padding-left: 0.75rem;
    border-left: 4px solid var(--safety-orange-tints-0);
}

.auth-section-title {
    font-size: 1.15rem;
    font-weight: 700;
    margin: 0;
    color: var(--safety-orange-shades-80);
    line-height: 1.3;
}

.auth-section-subtitle {
    font-size: 0.8rem;
    color: var(--safety-orange-shades-60);
    margin: 0.15rem 0 0;
    font-weight: 400;
    line-height: 1.4;
}

.auth-page .btn-primary {
    background-color: var(--safety-orange-tints-0);
    border: 1px solid var(--safety-orange-tints-0);
}
.auth-page .btn-primary:hover {
    background-color: var(--safety-orange-shades-20);
    border-color: var(--safety-orange-shades-20);
}

.auth-page .btn-outline-primary {
    color: var(--safety-orange-tints-0);
    border: 1px solid var(--safety-orange-tints-0);
    background-color: transparent;
}
.auth-page .btn-outline-primary:hover {
    background-color: var(--safety-orange-tints-80);
    color: var(--safety-orange-shades-40);
    border-color: var(--safety-orange-tints-0);
}

.auth-page .auth-section a:not(.btn) {
    color: var(--safety-orange-tints-0);
    text-decoration: none;
}
.auth-page .auth-section a:not(.btn):hover {
    color: var(--safety-orange-shades-40);
}
.auth-forgot-link {
    color: var(--safety-orange-tints-0) !important;
}
.auth-forgot-link:hover {
    color: var(--safety-orange-shades-40) !important;
}

.auth-page .form-control:focus {
    border-color: var(--safety-orange-tints-40);
    box-shadow: 0 0 0 0.2rem rgba(0, 0, 0, 0.2);
}
.auth-page .form-label {
    color: var(--safety-orange-shades-80);
}
.auth-page .auth-section .text-muted,
.auth-page .auth-section .text-secondary {
    color: var(--safety-orange-shades-60) !important;
}
.auth-benefits-list {
    margin-bottom: 1.25rem;
}
.auth-benefits-note {
    color: var(--safety-orange-shades-60) !important;
    line-height: 1.5;
    margin-bottom: 1.25rem;
}

/* Forgot password modal – layout like reference */
.forgot-password-modal .modal-dialog {
    max-width: 28rem;
}
.forgot-password-modal__content {
    background-color: color-mix(in srgb, var(--safety-orange-tints-80) 25%, white);
    border: none;
    border-radius: 0.75rem;
}
.forgot-password-modal__header {
    position: absolute;
    top: 0.75rem;
    right: 0.75rem;
    z-index: 1;
    padding: 0;
    border: none;
}
.forgot-password-modal__close {
    width: 1.5rem;
    height: 1.5rem;
    padding: 0;
    border-radius: 50%;
    background-color: var(--safety-orange-tints-80) !important;
    opacity: 1;
    font-size: 0.65rem;
}
.forgot-password-modal__close:hover {
    background-color: var(--safety-orange-tints-60) !important;
}
.forgot-password-modal__body {
    padding: 2rem 1.5rem 1.5rem;
    padding-top: 2.5rem;
}
.forgot-password-modal__icon {
    font-size: 3.5rem;
    color: var(--safety-orange-tints-0);
}
.forgot-password-modal__title {
    font-weight: 700;
    color: var(--safety-orange-shades-80);
    font-size: 1.15rem;
    line-height: 1.3;
}
.forgot-password-modal__subtitle {
    color: var(--safety-orange-shades-60);
    max-width: 20rem;
    margin-left: auto;
    margin-right: auto;
}
.forgot-password-modal__form .form-control {
    background-color: #fff;
}
.forgot-password-modal .btn-primary {
    background-color: var(--safety-orange-tints-0);
    border-color: var(--safety-orange-tints-0);
}
.forgot-password-modal .btn-primary:hover {
    background-color: var(--safety-orange-shades-20);
    border-color: var(--safety-orange-shades-20);
}

/* Content pages (ToS, Privacy, etc.) – same header style as auth, body below */
.content-page .content-section {
    background-color: #fff;
    border: none;
    box-shadow: none;
}
.content-page__body {
    margin-top: 0.5rem;
}
.content-page__text {
    color: var(--safety-orange-shades-60);
    line-height: 1.6;
    margin-bottom: 1rem;
}
.content-page__text:last-child {
    margin-bottom: 0;
}

/* 404 page: pattern background only */
.page-404-wrapper {
    margin-top: 0;
}
.page-404-section {
    position: relative;
    background-color: #fff;
    padding-top: 5rem;
    padding-bottom: 5rem;
}
@media (min-width: 992px) {
    .page-404-section {
        padding-top: 8rem;
        padding-bottom: 8rem;
    }
}
.page-404-section .container-fluid {
    position: relative;
    z-index: 1;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}
.page-404__inner {
    max-width: 36rem;
}
.page-404__code-wrap {
    position: relative;
    display: inline-block;
    margin-bottom: 0.5rem;
    padding: 0 2rem;
}
.page-404__code-wrap::before {
    content: '';
    position: absolute;
    inset: -20px -40px;
    z-index: 0;
    opacity: 0.5;
    background-image:
        linear-gradient(var(--safety-orange-tints-80) 1.4px, transparent 1.4px),
        linear-gradient(to right, var(--safety-orange-tints-80) 1.4px, transparent 1.4px);
    background-size: 28px 28px;
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 12%, black 88%, transparent 100%);
    mask-image: linear-gradient(to right, transparent 0%, black 12%, black 88%, transparent 100%);
    pointer-events: none;
}
.page-404__code {
    position: relative;
    z-index: 1;
    font-size: clamp(5rem, 18vw, 10rem);
    font-weight: 900;
    color: var(--safety-orange-tints-0);
    margin: 0 0 0.5rem;
    line-height: 1;
    letter-spacing: -0.02em;
}
.page-404__title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 0.75rem;
    line-height: 1.2;
}
.page-404__text {
    font-size: 1rem;
    color: #1a1a1a;
    line-height: 1.5;
    margin: 0 0 1.5rem;
}
.page-404__back {
    background-color: var(--safety-orange-tints-0);
    border-color: var(--safety-orange-tints-0);
    color: #fff;
}
.page-404__back:hover {
    background-color: var(--safety-orange-shades-20);
    border-color: var(--safety-orange-shades-20);
    color: #fff;
}

.page-404-top-categories-swiper {
    position: relative;
    overflow: hidden;
    padding: 0.5rem 0;
}
.page-404-top-categories-swiper .swiper-slide {
    height: auto;
}
.page-404-top-categories-swiper .page-404-top-categories-prev,
.page-404-top-categories-swiper .page-404-top-categories-next {
    color: #000000 !important;
    --swiper-navigation-color: #000000;
}
.page-404-top-categories-swiper .page-404-top-categories-prev::after,
.page-404-top-categories-swiper .page-404-top-categories-next::after {
    font-size: 0.875rem;
    font-weight: bold;
    color: #000000 !important;
}

/* Shopping cart page – two columns + popular products (our style) */
.cart-main {
    background-color: #fff;
    border: none;
    box-shadow: none;
}
/* Cart section headings: left border + title/subtitle like home page */
.cart-section-heading {
    padding-left: 0.75rem;
    border-left: 4px solid var(--safety-orange-tints-0);
}
/* Align with Popular products: cancel cart-main padding so titles share same X axis */
.cart-section-heading--align-left {
    margin-left: -1.5rem;
}
@media (min-width: 992px) {
    .cart-section-heading--align-left {
        margin-left: -3rem;
    }
}
.cart-section-title {
    font-size: 1.15rem;
    font-weight: 700;
    margin: 0;
    color: var(--safety-orange-shades-80);
    line-height: 1.3;
}
.cart-section-subtitle {
    font-size: 0.8rem;
    color: var(--safety-orange-shades-60);
    margin: 0.15rem 0 0;
    font-weight: 400;
    line-height: 1.4;
}
.cart-empty__text {
    color: var(--safety-orange-shades-60);
    font-size: 1.1rem;
}
.cart-page .cart-empty .btn-outline-primary {
    color: var(--safety-orange-tints-0);
    border-color: var(--safety-orange-tints-0);
}
.cart-page .cart-empty .btn-outline-primary:hover {
    background-color: var(--safety-orange-tints-80);
    color: var(--safety-orange-shades-40);
    border-color: var(--safety-orange-tints-0);
}
.cart-table th {
    color: var(--safety-orange-shades-80);
    font-weight: 600;
    border-bottom-color: var(--safety-orange-tints-80);
}
.cart-table td {
    border-bottom-color: var(--safety-orange-tints-80);
    color: var(--safety-orange-shades-60);
    vertical-align: middle;
}
.cart-item__img {
    object-fit: cover;
}
.cart-item__name {
    font-weight: 500;
}

/* Cart sidebar (right column) */
.cart-sidebar {
    background-color: color-mix(in srgb, var(--safety-orange-tints-80) 50%, white);
    border: none;
    box-shadow: none;
}
.cart-sidebar__totals,
.cart-sidebar__total-row {
    color: var(--safety-orange-shades-60);
}
.cart-page .cart-sidebar .btn-primary {
    background-color: var(--safety-orange-tints-0);
    border-color: var(--safety-orange-tints-0);
}
.cart-page .cart-sidebar .btn-primary:hover {
    background-color: var(--safety-orange-shades-20);
    border-color: var(--safety-orange-shades-20);
}
/* Cart sidebar: help & Viber as flat sections (no button look, no hover effects) */
.cart-sidebar__block {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.875rem 1rem;
    border: none;
    color: #fff;
    transition: none;
}
.cart-sidebar__block--call {
    background-color: var(--safety-orange-shades-40);
}
.cart-sidebar__block--viber {
    background-color: #7360f2;
}
.cart-sidebar__block-icon {
    font-size: 1.5rem;
    line-height: 1;
    flex-shrink: 0;
}
.cart-sidebar__block-icon i {
    font-size: inherit;
}
.cart-sidebar__block-text {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
}
.cart-sidebar__block-title {
    font-size: 0.95rem;
    font-weight: 600;
    line-height: 1.2;
}
.cart-sidebar__block-sub {
    font-size: 0.8rem;
    font-weight: 400;
    opacity: 0.95;
    line-height: 1.3;
}
.cart-sidebar__block-sub strong {
    font-weight: 600;
}
/* Coupon input group: single rounded block */
.cart-coupon-input-group.input-group {
    border-radius: 0.5rem;
}
.cart-coupon-input-group .form-control {
    border-radius: 0.5rem 0 0 0.5rem;
}
.cart-coupon-input-group .btn {
    border-radius: 0 0.5rem 0.5rem 0;
}

/* Popular products (cart page): 4 deal cards per slide, prev/next buttons */
/* Recommended/Popular products: extra padding so cards and shadows show in full */
.cart-popular {
    padding: 1rem 0 1.5rem;
    padding-left: 1rem;
    padding-right: 1rem;
}
@media (min-width: 992px) {
    .cart-popular {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }
}
.cart-popular-swiper-wrap {
    overflow: hidden;
    position: relative;
    padding: 0.75rem 0 0.5rem;
}
.cart-popular-swiper {
    overflow: hidden;
}
.cart-popular-swiper .swiper-slide {
    height: auto;
    box-sizing: border-box;
}
.cart-popular-swiper .swiper-wrapper {
    align-items: stretch;
}
.cart-popular-swiper .home-deal-card {
    min-height: 220px;
    box-shadow: none;
}
.cart-popular .home-deal-card:hover {
    box-shadow: none;
}
.cart-page .cart-popular__nav {
    color: var(--safety-orange-tints-0);
    border-color: var(--safety-orange-tints-60);
}
.cart-page .cart-popular__nav:hover:not(:disabled) {
    background-color: var(--safety-orange-tints-80);
    border-color: var(--safety-orange-tints-0);
    color: var(--safety-orange-shades-40);
}
.cart-popular-card {
    background-color: #fff;
    border: 1px solid var(--safety-orange-tints-80);
}
.cart-popular-card__title {
    color: var(--safety-orange-shades-80);
    line-height: 1.3;
}
.cart-popular-card__price {
    color: var(--safety-orange-tints-0);
}
.cart-page .cart-popular-card .btn-primary {
    background-color: var(--safety-orange-tints-0);
    border-color: var(--safety-orange-tints-0);
}
.cart-page .cart-popular-card .btn-primary:hover {
    background-color: var(--safety-orange-shades-20);
    border-color: var(--safety-orange-shades-20);
}

/* ===== Shopping cart page – layout & colors (Bootstrap Icons) ===== */
.cart-page {
    background: linear-gradient(180deg, #fff 0%, #f5f5f5 50%, #fff 100%);
    min-height: 50vh;
}
/* Left column: cart card */
.cart-page .cart-card {
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.12);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    padding: 1.5rem 1.5rem 2rem;
}
/* Cart page: section headings with left border + subtext (no icons) */
.cart-page .cart-section-heading {
    padding-left: 0.75rem;
    border-left: 4px solid var(--safety-orange-tints-0);
}
.cart-page .cart-section-title {
    font-size: 1.15rem;
    font-weight: 700;
    margin: 0;
    color: var(--safety-orange-shades-80, #1a1a1a);
    line-height: 1.3;
}
.cart-page .cart-section-subtitle {
    font-size: 0.8rem;
    color: var(--safety-orange-shades-60, #6c757d);
    margin: 0.15rem 0 0;
    font-weight: 400;
    line-height: 1.4;
}
.cart-page .cart-table-header {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    color: var(--bs-secondary-color);
    padding-bottom: 0.75rem;
}
.cart-page .cart-divider {
    margin: 0 0 1rem;
    border-color: rgba(0, 0, 0, 0.15);
}

/* Cart item rows */
.cart-page .cart-item {
    padding: 1rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}
.cart-page .cart-item:last-child {
    border-bottom: 0;
}
.cart-page .cart-item-image {
    width: 80px;
    height: 80px;
    object-fit: cover;
    display: block;
}
.cart-page .cart-item-image a {
    display: block;
    line-height: 0;
}
.cart-page .cart-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.cart-page .cart-item-name {
    font-weight: 600;
    font-size: 0.9375rem;
    margin: 0;
    line-height: 1.35;
}
.cart-page .cart-item-title-link:hover {
    color: var(--safety-orange-tints-0);
}
.cart-page .cart-item-code {
    font-size: 0.8125rem;
    margin: 0;
}
.cart-page .cart-item-price {
    font-weight: 700;
    font-size: 1rem;
    color: var(--safety-orange-shades-80);
}
/* Cart page quantity controls – same look as offcanvas menu (link-style +/-) */
.cart-page .cart-quantity {
    max-width: 120px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.cart-page .cart-qty-btn {
    padding: 0;
    margin: 0;
    border: 0;
    background: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--safety-orange-tints-0);
    text-decoration: none;
    font-size: 20px;
    line-height: 1;
    transition: color 0.2s;
}
.cart-page .cart-qty-btn:hover {
    color: var(--safety-orange-shades-20);
}
.cart-page .cart-qty-value {
    min-width: 2rem;
    text-align: center;
    font-weight: 600;
    font-size: 0.9375rem;
    line-height: 1;
    color: var(--bs-body-color);
}
.cart-page .cart-remove-btn {
    width: 40px;
    height: 40px;
    padding: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 0;
    background: transparent;
    color: #6c757d;
    border-radius: 10px;
    transition: background 0.2s, color 0.2s;
}
.cart-page .cart-remove-btn:hover {
    background: rgba(220, 53, 69, 0.1);
    color: #dc3545;
}
.cart-page .cart-item-mobile-bottom {
    padding-top: 0.5rem;
    border-top: 1px dashed rgba(0, 0, 0, 0.08);
    margin-top: 0.5rem;
}

/* Right column: summary card */
.cart-page .cart-summary-card {
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.12);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    padding: 1.5rem;
    border-radius: 1rem;
}
.cart-page .cart-coupon-input {
    border-radius: 10px;
    border-color: rgba(0, 0, 0, 0.2);
}
.cart-page .cart-coupon-input:focus {
    border-color: var(--safety-orange-tints-0);
    box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.15);
}
.cart-page .cart-coupon-btn {
    background: var(--safety-orange-tints-0);
    border: 1px solid var(--safety-orange-tints-0);
    color: #fff;
    font-weight: 600;
    border-radius: 10px;
    padding: 0.5rem 1rem;
    transition: background 0.2s, border-color 0.2s, box-shadow 0.2s;
}
.cart-page .cart-coupon-btn:hover:not(:disabled) {
    background: var(--safety-orange-shades-20);
    border-color: var(--safety-orange-shades-20);
    color: #fff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
}
.cart-page .cart-coupon-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}
.cart-page #remove-coupon-btn {
    background: transparent;
    color: #6c757d;
    border: 1px solid rgba(0, 0, 0, 0.15);
}
.cart-page #remove-coupon-btn:hover {
    background: rgba(0, 0, 0, 0.06);
    color: #1a1a1a;
}
.cart-page .cart-totals {
    padding: 0.75rem 0;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
}
.cart-page .cart-total-row {
    padding-top: 0.5rem;
    margin-top: 0.5rem;
    border-top: 2px solid rgba(0, 0, 0, 0.2);
    font-size: 1.0625rem;
}
.cart-page .cart-total-row span:last-child {
    color: var(--safety-orange-shades-80);
}
.cart-page .cart-checkout-btn {
    background: var(--safety-orange-tints-0);
    border: 1px solid var(--safety-orange-tints-0);
    color: #fff;
    font-weight: 600;
    font-size: 1rem;
    padding: 0.75rem 1.25rem;
    border-radius: 10px;
    transition: background 0.2s, border-color 0.2s, box-shadow 0.2s;
}
.cart-page .cart-checkout-btn:hover:not(:disabled) {
    background: var(--safety-orange-shades-20);
    border-color: var(--safety-orange-shades-20);
    color: #fff;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.35);
}
.cart-page .cart-checkout-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

/* ========== Checkout page – match cart/site styles ========== */
.checkout-page {
    background: linear-gradient(180deg, #fff 0%, #f5f5f5 50%, #fff 100%);
    min-height: 50vh;
}
.checkout-page .checkout-section-heading {
    padding-left: 0.75rem;
    border-left: 4px solid var(--safety-orange-tints-0);
}
.checkout-page .checkout-section-title {
    font-size: 1.15rem;
    font-weight: 700;
    margin: 0;
    color: var(--safety-orange-shades-80, #1a1a1a);
    line-height: 1.3;
}
.checkout-page .checkout-section-heading:first-of-type .checkout-section-title {
    font-size: 1.35rem;
}
.checkout-page .checkout-section-subtitle {
    font-size: 0.8rem;
    color: var(--safety-orange-shades-60, #6c757d);
    margin: 0.15rem 0 0;
    font-weight: 400;
    line-height: 1.4;
}
.checkout-page .checkout-card {
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.12);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    padding: 1.5rem;
}
.checkout-page .checkout-input {
    border-radius: 10px;
    border-color: rgba(0, 0, 0, 0.2);
}
.checkout-page .checkout-input:focus {
    border-color: var(--safety-orange-tints-0);
    box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.15);
}
.checkout-page .checkout-vat-btn {
    background: var(--safety-orange-tints-0);
    border: 1px solid var(--safety-orange-tints-0);
    color: #fff;
    border-radius: 10px;
    padding: 0.5rem 1rem;
    transition: background 0.2s, box-shadow 0.2s;
}
.checkout-page .checkout-vat-btn:hover {
    background: var(--safety-orange-shades-20);
    border-color: var(--safety-orange-shades-20);
    color: #fff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
}
.checkout-page .checkout-info-box {
    padding: 0.75rem 1rem;
    background: rgba(0, 0, 0, 0.06);
    border-radius: 10px;
    border: 1px solid rgba(0, 0, 0, 0.12);
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}
.checkout-page .checkout-info-box i {
    color: var(--safety-orange-tints-0);
    font-size: 1.1rem;
    flex-shrink: 0;
    margin-top: 0.1rem;
}
.checkout-page .checkout-info-box p {
    font-size: 0.875rem;
    color: var(--bs-body-color);
    line-height: 1.45;
}
/* Checkout checkboxes – match category filters */
.checkout-page .form-check-input {
    accent-color: var(--safety-orange-tints-0);
    width: 1.125em;
    height: 1.125em;
    margin-top: 0.15em;
}
.checkout-page .form-check-input:checked {
    background-color: var(--safety-orange-tints-0);
    border-color: var(--safety-orange-tints-0);
}
.checkout-page .form-check-input:focus {
    border-color: rgba(0, 0, 0, 0.5);
    box-shadow: 0 0 0 0.2rem rgba(0, 0, 0, 0.25);
}
.checkout-page .form-check-input:focus-visible {
    outline: 0;
}

.checkout-page .checkout-options .method-container {
    margin-bottom: 0.75rem;
}
.checkout-page .checkout-option {
    cursor: pointer;
    margin: 0;
    padding: 0;
    display: block;
    line-height: 0;
}
.checkout-page .checkout-option-input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
    margin: 0;
    padding: 0;
}
.checkout-page .checkout-option-box {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    border: 1px solid rgba(0, 0, 0, 0.25);
    border-radius: 10px;
    transition: background 0.2s, border-color 0.2s;
    line-height: normal;
    margin: 0;
}
.checkout-page .checkout-option:hover .checkout-option-box {
    background: rgba(0, 0, 0, 0.06);
    border-color: rgba(0, 0, 0, 0.4);
}
.checkout-page .checkout-option-input:checked + .checkout-option-box {
    background: rgba(0, 0, 0, 0.08);
    border-color: var(--safety-orange-tints-0);
}
.checkout-page .checkout-option-icon {
    color: var(--safety-orange-tints-0);
    font-size: 1.25rem;
}
.checkout-page .checkout-option-check {
    margin-left: auto;
    color: var(--safety-orange-tints-0);
    font-size: 1.1rem;
    opacity: 0;
    transition: opacity 0.2s;
}
.checkout-page .checkout-option-input:checked + .checkout-option-box .checkout-option-check {
    opacity: 1;
}
.checkout-page .checkout-option-price {
    font-weight: 600;
    color: var(--safety-orange-shades-80);
}
.checkout-page .method-message-box {
    padding: 0.6rem 0.75rem;
    margin-top: 0.25rem;
    font-size: 0.8125rem;
    background: rgba(0, 0, 0, 0.06);
    border-radius: 8px;
    border: 1px solid rgba(0, 0, 0, 0.12);
    color: var(--bs-body-color);
    line-height: 1.4;
}
.checkout-page .checkout-totals {
    padding: 0.75rem 0;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
}
.checkout-page .checkout-total-row {
    border-top: 2px solid rgba(0, 0, 0, 0.2);
    padding-top: 0.75rem;
    margin-top: 0.5rem;
    font-size: 1.0625rem;
}
.checkout-page .checkout-help-card {
    padding: 0.75rem 1rem;
    background: #fafafa;
    border: 1px solid rgba(0, 0, 0, 0.08);
    color: inherit;
    transition: background 0.2s, border-color 0.2s;
}
.checkout-page .checkout-help-card:hover {
    background: #fff;
    border-color: rgba(0, 0, 0, 0.2);
}
.checkout-page .checkout-help-phone i {
    color: var(--safety-orange-tints-0);
}
.checkout-page .checkout-help-viber i {
    color: #7360f2;
}
.checkout-page .checkout-terms-link {
    color: var(--safety-orange-tints-0);
    font-weight: 600;
}
.checkout-page .checkout-terms-link:hover {
    color: var(--safety-orange-shades-20);
}
.checkout-page .cart-checkout-btn,
.checkout-page #checkout-btn {
    background: var(--safety-orange-tints-0);
    border: 1px solid var(--safety-orange-tints-0);
    color: #fff;
    font-weight: 600;
    font-size: 1rem;
    padding: 0.75rem 1.25rem;
    border-radius: 10px;
    transition: background 0.2s, box-shadow 0.2s;
}
.checkout-page .cart-checkout-btn:hover:not(:disabled),
.checkout-page #checkout-btn:hover:not(:disabled) {
    background: var(--safety-orange-shades-20);
    border-color: var(--safety-orange-shades-20);
    color: #fff;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.35);
}
.checkout-page .cart-checkout-btn:disabled,
.checkout-page #checkout-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}
.checkout-page .alert-danger {
    border-radius: 10px;
    border-color: rgba(220, 53, 69, 0.3);
}
.checkout-page .alert-success {
    border-radius: 10px;
    border-color: rgba(25, 135, 84, 0.3);
}

/* Help cards (phone / Viber) */
.cart-page .cart-help {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}
.cart-page .cart-help-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.25rem;
    border-radius: 12px;
    text-decoration: none;
    color: inherit;
    border: 1px solid rgba(0, 0, 0, 0.08);
    background: #fafafa;
    transition: background 0.2s, border-color 0.2s, box-shadow 0.2s;
}
.cart-page .cart-help-card:hover {
    background: #fff;
    border-color: rgba(0, 0, 0, 0.2);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}
.cart-page .cart-help-phone i,
.cart-page .cart-help-viber i {
    font-size: 1.5rem;
    flex-shrink: 0;
}
.cart-page .cart-help-phone i {
    color: var(--safety-orange-tints-0);
}
.cart-page .cart-help-viber i {
    color: #7360f2;
}
.cart-page .cart-help-label {
    display: block;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    color: var(--bs-secondary-color);
    margin-bottom: 0.15rem;
}
.cart-page .cart-help-value {
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--bs-body-color);
}

/* Cart page: loading spinner */
.cart-page .cart-loading-spinner {
    color: var(--safety-orange-tints-0);
    border-color: currentColor;
}

/* Cart page: Popular products – native scroll track (no Swiper) */
.cart-page .cart-popular-section .cart-section-heading {
    margin-bottom: 1rem;
}
.cart-page .cart-popular-track-wrap {
    overflow: hidden;
    margin: 0 -0.25rem;
}
.cart-page .cart-popular-track {
    display: flex;
    gap: 14px;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding: 0.25rem 0;
}
.cart-page .cart-popular-track::-webkit-scrollbar {
    display: none;
}
.cart-page .cart-popular-card {
    flex: 0 0 85%;
    min-width: 0;
    scroll-snap-align: start;
}
.cart-page .cart-popular-card .home-deal-card {
    min-height: 100%;
    height: 100%;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}
.cart-page .cart-popular-card .home-deal-card__icon-wrap {
    border-radius: 14px;
    overflow: hidden;
    margin: 0.85rem 0.85rem 0.35rem;
}
.cart-page .cart-popular-card .home-deal-card__icon-wrap .home-deal-card__img {
    border-radius: 14px;
}
.cart-page .cart-popular-card .home-deal-card__body {
    padding: 0.65rem 0.85rem 0.85rem;
    border-radius: 0 0 20px 20px;
}
@media (min-width: 576px) {
    .cart-page .cart-popular-track { gap: 16px; }
    .cart-page .cart-popular-card { flex: 0 0 48%; }
}
@media (min-width: 768px) {
    .cart-page .cart-popular-track { gap: 18px; }
    .cart-page .cart-popular-card { flex: 0 0 32%; }
}
@media (min-width: 992px) {
    .cart-page .cart-popular-track { gap: 20px; }
    .cart-page .cart-popular-card { flex: 0 0 24%; }
}
@media (min-width: 1200px) {
    .cart-page .cart-popular-card { flex: 0 0 19%; }
}

/* Scroll-to-top floating button */
.scroll-to-top-btn {
    position: fixed;
    right: 1rem;
    bottom: 1rem;
    width: 44px;
    height: 44px;
    border: 0;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--safety-orange-tints-0);
    color: #fff;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.16);
    cursor: pointer;
    z-index: 1040;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: opacity 0.2s ease, transform 0.2s ease, background-color 0.2s ease, visibility 0.2s ease;
}

.scroll-to-top-btn.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-to-top-btn:hover {
    background: var(--safety-orange-shades-20);
}

.scroll-to-top-btn:focus-visible {
    outline: 2px solid #fff;
    outline-offset: 2px;
    box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.24);
}

/* Offcanvas multi-level sample menu */
.offcanvas-menu .sliding-menu {
    position: relative;
    overflow: hidden;
}

.offcanvas-menu .menu-panel {
    display: none;
}

.offcanvas-menu .menu-panel.active {
    display: block;
}

.offcanvas-menu .menu-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.offcanvas-menu .menu-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    width: 100%;
    padding: 22px 20px;
    text-decoration: none;
    color: inherit;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.offcanvas-menu .menu-item-content {
    display: flex;
    align-items: center;
    gap: 14px;
    min-width: 0;
}

.offcanvas-menu .menu-item-img {
    width: 40px;
    height: 40px;
    object-fit: contain;
    flex: 0 0 auto;
}

.offcanvas-menu .menu-item-text {
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.offcanvas-menu .menu-item-title {
    font-weight: 600;
    line-height: 1.3;
    font-size: 1.125rem;
}

.offcanvas-menu .menu-item-subtitle {
    font-size: 0.9375rem;
    opacity: 0.7;
    line-height: 1.25;
    margin-top: 3px;
}

.offcanvas-menu .menu-item-arrow {
    opacity: 0.65;
    font-size: 1.25rem;
}

.offcanvas-menu .menu-item--back {
    justify-content: flex-start;
    text-align: left;
}

.offcanvas-menu .menu-item--back .menu-item-text {
    align-items: flex-start;
}

/* ========== Feedback modal (coupon / cart alerts) ========== */
.feedback-modal-dialog {
    max-width: 420px;
    margin: 1rem auto;
}
.feedback-modal-content {
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.12);
    border-radius: 20px;
    box-shadow: 0 20px 48px rgba(0, 0, 0, 0.14), 0 8px 24px rgba(0, 0, 0, 0.08);
    overflow: hidden;
}
.feedback-modal-body {
    position: relative;
    padding: 2rem 1.75rem 1.75rem;
}
.feedback-modal-close {
    position: absolute;
    top: 0.75rem;
    right: 0.75rem;
    width: 36px;
    height: 36px;
    padding: 0;
    border: 0;
    background-color: rgba(0, 0, 0, 0.06);
    border-radius: 12px;
    opacity: 0.85;
    transition: background-color 0.2s, opacity 0.2s;
}
.feedback-modal-close:hover {
    background-color: rgba(0, 0, 0, 0.12);
    opacity: 1;
}
.feedback-modal-icon {
    font-size: 3rem;
    line-height: 1;
}
.feedback-modal-icon.success {
    color: #198754;
}
.feedback-modal-icon.success i {
    font-size: inherit;
}
.feedback-modal-icon.danger {
    color: #dc3545;
}
.feedback-modal-icon.danger i {
    font-size: inherit;
}
.feedback-modal-icon.info {
    color: var(--safety-orange-tints-0);
}
.feedback-modal-icon.info i {
    font-size: inherit;
}
.feedback-modal-message {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--bs-body-color);
    margin-bottom: 0.25rem;
}
.feedback-modal-subtext {
    font-size: 0.9375rem;
    color: var(--bs-secondary-color);
    line-height: 1.4;
}

/* ========== Upsell modal ========== */
.upsell-modal-dialog {
    max-width: 800px;
    margin: 1rem auto;
}
.upsell-modal-content {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.12), 0 12px 24px rgba(0, 0, 0, 0.08);
}
.upsell-modal-header {
    background: linear-gradient(135deg, #000000 0%, #333333 100%);
    color: #fff;
    padding: 1.25rem 1.5rem;
    position: relative;
}
.upsell-modal-title {
    color: #fff;
    font-weight: 700;
    font-size: 1.25rem;
    letter-spacing: -0.02em;
}
.upsell-modal-subtitle {
    color: rgba(255, 255, 255, 0.88);
    font-size: 0.8125rem;
    margin-top: 0.25rem;
}
.upsell-modal-body {
    padding: 1.25rem 1.5rem 1.5rem;
    min-height: 180px;
}
.upsell-modal-swiper-container {
    margin-bottom: 1.25rem;
}
.upsell-modal-footer {
    padding-top: 1rem;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
}
.upsell-continue-btn {
    background: #1a1a1a;
    color: #fff;
    font-weight: 600;
    font-size: 1rem;
    padding: 0.75rem 1.25rem;
    border: none;
    border-radius: 10px;
    transition: background 0.2s, box-shadow 0.2s;
}
.upsell-continue-btn:hover {
    background: #333333;
    color: #fff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.35);
}
.upsell-swiper-wrap {
    position: relative;
    padding-left: 2rem;
    padding-right: 2rem;
}
.upsell-products-swiper {
    overflow: hidden;
}
.upsell-products-swiper .swiper-slide {
    height: auto;
}
.upsell-products-swiper .home-deal-card {
    min-height: 240px;
}
.upsell-products-prev,
.upsell-products-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    background: none;
    border: none;
    padding: 0;
    color: #000000;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    transition: opacity 0.2s;
}
.upsell-products-prev:hover,
.upsell-products-next:hover {
    opacity: 0.8;
}
.upsell-products-prev {
    left: 0;
}
.upsell-products-next {
    right: 0;
}
.upsell-products-prev i,
.upsell-products-next i {
    font-size: 0.875rem;
    font-weight: 700;
}
.upsell-add-btn.upsell-add-btn--added {
    background: rgba(0, 0, 0, 0.08);
    cursor: default;
}
.upsell-add-btn.upsell-add-btn--added .bi-check-lg {
    font-size: 1.25rem;
}

/* ========== Order success page – white bg, checkmark, fixed bottom button ========== */
.success-page {
    background: #fff;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    padding-bottom: 0;
    overflow-x: hidden;
}
.success-page__content {
    flex: 1 1 auto;
    padding: 2rem 0 1rem;
}
.success-page__inner {
    max-width: 980px;
    margin: 0 auto;
    text-align: center;
}
.success-page .success-icon {
    position: relative;
    width: 120px;
    height: 120px;
    margin: 0 auto 24px;
    background: #000000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: successCheckmarkAppear 0.8s ease-out;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.35);
    z-index: 1;
}
.success-page .checkmark {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 60px;
    height: 30px;
    transform: translate(-50%, -50%) rotate(-45deg) scale(0);
    border-left: 6px solid #fff;
    border-bottom: 6px solid #fff;
    border-radius: 4px;
    animation: successCheckmarkDraw 0.6s ease-out 0.4s forwards;
}
@keyframes successCheckmarkAppear {
    0% { transform: scale(0) rotate(-180deg); opacity: 0; }
    50% { transform: scale(1.1) rotate(-90deg); }
    100% { transform: scale(1) rotate(0deg); opacity: 1; }
}
@keyframes successCheckmarkDraw {
    0% { transform: translate(-50%, -50%) rotate(-45deg) scale(0); }
    100% { transform: translate(-50%, -50%) rotate(-45deg) scale(1); }
}
.success-page .success-header {
    font-size: clamp(1.5rem, 4vw, 2.25rem);
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 0.5rem;
    letter-spacing: -0.02em;
    animation: successFadeInUp 0.8s ease-out 0.6s both;
}
.success-page .success-subtext {
    font-size: 1.05rem;
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.5;
    animation: successFadeInUp 0.8s ease-out 0.8s both;
}
.success-page .order-id-container {
    margin-bottom: 1.5rem;
    animation: successFadeInUp 0.8s ease-out 1s both;
}
.success-page .order-id {
    font-size: 1.1rem;
    color: #333;
    padding: 1rem 1.5rem;
    background: #fff;
    border-radius: 12px;
    border: 2px solid var(--safety-orange-tints-0);
    display: inline-block;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    font-weight: 600;
}
.success-page .order-id strong {
    color: var(--safety-orange-tints-0);
    font-weight: 700;
    font-size: 1.15rem;
    margin-left: 0.35rem;
}
.success-page .order-items {
    margin: 1.5rem auto;
    max-width: 800px;
    text-align: left;
    animation: successFadeInUp 0.8s ease-out 1.2s both;
}
.success-page .order-table-container {
    background: #fff;
    border-radius: 12px;
    padding: 1.25rem;
    border: 1px solid rgba(0,0,0,0.08);
    box-shadow: 0 2px 12px rgba(0,0,0,0.04);
}
.success-page .order-table { width: 100%; border-collapse: collapse; margin: 0; }
.success-page .order-table thead { background: rgba(0, 0, 0, 0.08); }
.success-page .order-table th {
    padding: 0.75rem 1rem;
    text-align: left;
    font-weight: 700;
    color: #1a1a1a;
    font-size: 0.875rem;
    border-bottom: 2px solid rgba(0, 0, 0, 0.25);
}
.success-page .order-table td:last-child { text-align: right; }
.success-page .order-item-cell {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}
.success-page .order-item-thumb {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    overflow: hidden;
    background: #f5f5f5;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}
.success-page .order-item-thumb img { width: 100%; height: 100%; object-fit: cover; }
.success-page .order-item-thumb i { font-size: 1.25rem; color: var(--safety-orange-tints-0); }
.success-page .order-item-title-link { color: #1a1a1a; text-decoration: none; font-weight: 600; }
.success-page .order-item-title-link:hover { text-decoration: underline; color: #1a1a1a; }
.success-page .order-table tbody tr { border-bottom: 1px solid #f0f0f0; }
.success-page .order-table tbody tr:last-child { border-bottom: none; }
.success-page .order-table td { padding: 0.75rem 1rem; color: #555; font-size: 0.9rem; }
.success-page .product-name { font-weight: 600; color: #1a1a1a; margin-bottom: 2px; }
.success-page .product-code { font-size: 0.8rem; color: #888; }
.success-page .product-quantity { color: #555; font-weight: 500; }
.success-page .product-price { font-weight: 600; color: var(--safety-orange-tints-0); white-space: nowrap; }
.success-page .order-table tfoot { border-top: 2px solid rgba(0, 0, 0, 0.25); }
.success-page .order-table tfoot tr { background: rgba(0, 0, 0, 0.06); }
.success-page .order-table tfoot td { padding: 1rem; font-weight: 700; font-size: 1.05rem; }
.success-page .total-label { color: #1a1a1a; }
.success-page .total-amount { color: var(--safety-orange-tints-0); font-size: 1.2rem; }
.success-page .payment-method-message {
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.25);
    border-radius: 12px;
    padding: 1.25rem;
    margin: 1.25rem auto;
    max-width: 600px;
    text-align: left;
    animation: successFadeInUp 0.8s ease-out 1.1s both;
    position: relative;
    overflow: hidden;
}
.success-page .payment-method-message::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--safety-orange-tints-0);
}
.success-page .payment-method-message .text-info { color: var(--safety-orange-tints-0) !important; font-weight: 700; }
.success-page .payment-method-message .text-muted { color: #666 !important; }
.success-page .payment-method-message .message-content {
    white-space: pre-line;
    color: #333;
    line-height: 1.5;
    font-size: 0.95rem;
    margin-top: 0.5rem;
}
.success-page .payment-method-header { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 0.75rem; }
.success-page .payment-method-icon {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.12);
    border-radius: 8px;
    color: var(--safety-orange-tints-0);
}
@keyframes successFadeInUp {
    0% { opacity: 0; transform: translateY(20px); }
    100% { opacity: 1; transform: translateY(0); }
}
.success-page__back-wrap {
    text-align: center;
}
.success-page .back-home {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.4rem 1rem;
    background: transparent;
    border: none;
    color: var(--safety-orange-tints-0);
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: color 0.2s, background 0.2s;
}
.success-page .back-home:hover {
    color: var(--safety-orange-shades-20);
    background: rgba(0, 0, 0, 0.08);
}
@media (max-width: 768px) {
    .success-page .success-icon { width: 100px; height: 100px; }
    .success-page .checkmark { width: 50px; height: 25px; border-width: 5px; }
}
@media (max-width: 480px) {
    .success-page__content { padding: 1.5rem 0 1rem; }
    .success-page .order-table th,
    .success-page .order-table td { padding: 0.5rem 0.5rem; font-size: 0.8rem; }
}

