:root {
    --wm-blue: #0071dc;
    --wm-blue-700: #0058b1;
    --wm-blue-900: #063566;
    --wm-yellow: #ffc220;
    --wm-cyan: #00a6dc;
    --ink: #13263f;
    --muted: #5c708a;
    --paper: #f4f8fc;
    --border: #d7e5f5;
    --card-shadow: 0 16px 30px rgba(12, 56, 102, 0.1);
    --card-shadow-soft: 0 10px 20px rgba(12, 56, 102, 0.07);
}

html {
    overflow-x: clip;
    width: 100%;
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    color: var(--ink);
    font-family: "Nunito", "Quicksand", sans-serif;
    overflow-x: clip;
    width: 100%;
}

main,
.hero,
.icon-categories,
.category-panels,
.product-section,
.reels-section,
.quality-grades-section,
.reviews-slider-section,
.pay-with-section {
    max-width: 100%;
    overflow-x: clip;
}

/* Reduce side whitespace across the page */
.container {
    max-width: 1500px;
    padding-left: max(0.75rem, var(--bs-gutter-x, 1.5rem) * 0.5);
    padding-right: max(0.75rem, var(--bs-gutter-x, 1.5rem) * 0.5);
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Quicksand", "Nunito", sans-serif;
    letter-spacing: -0.02em;
}

.btn {
    border-radius: 999px;
    font-weight: 700;
}

.btn-primary {
    background: linear-gradient(90deg, #0071dc, #0064c4);
    border-color: #0064c4;
}

.btn-primary:hover {
    background: linear-gradient(90deg, #0066c9, #005cb2);
    border-color: #005cb2;
}

.btn-outline-primary {
    border-color: #9ec7f5;
    color: #0f4d89;
}

.btn-outline-primary:hover {
    background: #eaf4ff;
    border-color: #8abaf0;
    color: #0f4d89;
}

.skip-link {
    position: absolute;
    left: -9999px;
    top: 0;
}

.skip-link:focus {
    left: 1rem;
    top: 1rem;
    z-index: 999;
    background: #fff;
    border: 2px solid var(--wm-blue);
    padding: 0.5rem 0.75rem;
    border-radius: 0.5rem;
}

.top-strip {
    background: #08294b;
    color: #d2e7ff;
}

.top-links a {
    color: #d2e7ff;
    text-decoration: none;
}

.top-links a:hover {
    color: #fff;
}

.store-header {
    position: sticky;
    top: 0;
    z-index: 30;
    background: linear-gradient(90deg, #0071dc 0%, #0068cd 50%, #005ec0 100%);
    color: #fff;
    transition: box-shadow 180ms ease;
}

.store-header.scrolled {
    box-shadow: 0 10px 24px rgba(6, 53, 102, 0.3);
}

.safqa-header {
    position: sticky;
    top: 0;
    z-index: 40;
    background: linear-gradient(180deg, #43208c 0%, #3a1a7a 100%);
    color: #fff;
    padding: 0.85rem 0;
    box-shadow: 0 8px 20px rgba(16, 6, 42, 0.35);
}

.safqa-header-inner {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 1.2rem;
    min-width: 0;
}

.safqa-brand {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    text-decoration: none;
    color: #fff;
    font-weight: 800;
    letter-spacing: 0.04em;
}

.safqa-logo {
    height: 46px;
    width: auto;
    object-fit: contain;
}

.safqa-search {
    position: relative;
    background: #fff;
    border-radius: 999px;
    display: flex;
    align-items: center;
    padding: 0.35rem 0.75rem;
    gap: 0.4rem;
    min-width: 0;
}

.safqa-search input {
    border: 0;
    outline: none;
    width: 100%;
    min-width: 0;
    font-weight: 600;
    color: #3b2b6b;
}

.safqa-search-icon {
    border: 0;
    background: linear-gradient(180deg, #43208c 0%, #3a1a7a 100%);
    color: #fff;
    width: 36px;
    height: 36px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.safqa-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
    min-width: 0;
}

.language-switch-form {
    margin: 0;
}

.language-toggle {
    border: 0;
    padding: 0;
    color: #fff;
    background: transparent;
    cursor: pointer;
}

.language-toggle-track {
    position: relative;
    direction: ltr;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    width: 88px;
    height: 40px;
    padding: 4px;
    border: 1px solid rgba(255, 255, 255, 0.26);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.14);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.2),
        0 8px 18px rgba(16, 6, 42, 0.22);
    transition: border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.language-toggle-thumb {
    position: absolute;
    left: 4px;
    top: 4px;
    bottom: 4px;
    width: calc(50% - 4px);
    border-radius: 999px;
    background: #fff;
    box-shadow:
        0 8px 16px rgba(16, 6, 42, 0.22),
        inset 0 0 0 1px rgba(67, 32, 140, 0.08);
    transition: transform 220ms ease;
}

.language-toggle-thumb.is-en {
    transform: translateX(0);
}

.language-toggle-thumb.is-ar {
    transform: translateX(100%);
}

.language-toggle-option {
    position: relative;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    border-radius: 999px;
    font-size: 0.74rem;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.7);
    transition: color 180ms ease;
}

.language-toggle-option.is-active {
    color: #43208c;
}

.language-toggle:hover .language-toggle-track,
.language-toggle:focus-visible .language-toggle-track {
    border-color: rgba(255, 255, 255, 0.44);
    background: rgba(255, 255, 255, 0.2);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.28),
        0 12px 24px rgba(16, 6, 42, 0.28);
}

.language-toggle:focus-visible {
    outline: 3px solid rgba(252, 212, 253, 0.56);
    outline-offset: 4px;
    border-radius: 999px;
}

.wm-translate-wrap {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.2rem 0.35rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
    position: relative;
}

.wm-translate-label {
    font-size: 0.72rem;
    font-weight: 700;
    opacity: 0.92;
}

.wm-lang-select {
    border: 0;
    border-radius: 999px;
    height: 28px;
    min-width: 66px;
    padding: 0 0.65rem;
    font-size: 0.75rem;
    font-weight: 700;
    color: #2a2452;
    background: #fff;
    outline: none;
}

.safqa-action {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #fff;
    text-decoration: none;
    font-size: 0.85rem;
    line-height: 1.1;
}

.safqa-action b {
    font-weight: 800;
}

.safqa-cart {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.15rem;
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    line-height: 1;
}

.safqa-cart-wrap {
    position: relative;
}

.safqa-cart-icon {
    width: 50px;
    height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.safqa-cart-icon-img {
    width: 65px;
    height: 65px;
    object-fit: contain;
}

.safqa-cart-icon b {
    position: absolute;
    top: 10px;
    right: 14px;
    background: #ffc220;
    color: #1b2c45;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    font-size: 1rem;
    font-weight: 500;
    border: 2px solid #3a1a8b;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.safqa-cart-total {
    font-size: 0.72rem;
    font-weight: 800;
    opacity: 1;
    letter-spacing: 0.01em;
    margin-top: 0.5rem;
    margin-left: 0.2rem;
}

.cart-hover-dialog {
    position: absolute;
    top: calc(100% + 0.65rem);
    left: -15rem;
    width: min(360px, 86vw);
    margin: 0;
    border: 1px solid var(--border);
    border-radius: 0.9rem;
    background: #fff;
    color: var(--ink);
    box-shadow: var(--card-shadow);
    padding: 0.75rem;
    z-index: 70;
}

.cart-hover-dialog::backdrop {
    display: none;
}

.cart-hover-dialog::before {
    content: "";
    position: absolute;
    top: -7px;
    right: 24px;
    width: 14px;
    height: 14px;
    background: #fff;
    border-left: 1px solid var(--border);
    border-top: 1px solid var(--border);
    transform: rotate(45deg);
}

.cart-hover-head,
.cart-hover-foot {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.88rem;
}

.cart-hover-head {
    padding-bottom: 0.5rem;
    border-bottom: 1px solid var(--border);
    margin-bottom: 0.5rem;
}

.cart-hover-foot {
    padding-top: 0.55rem;
    border-top: 1px solid var(--border);
    margin-top: 0.5rem;
}

.cart-hover-items {
    display: grid;
    gap: 0.35rem;
    max-height: 210px;
    overflow: auto;
}

.cart-hover-item {
    display: flex;
    justify-content: space-between;
    gap: 0.6rem;
    font-size: 0.8rem;
    line-height: 1.25;
    padding: 0.2rem 0;
}

.cart-hover-item-name {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.cart-hover-empty {
    font-size: 0.82rem;
    color: var(--muted);
    margin: 0.3rem 0;
}

@media (max-width: 992px) {
    .safqa-header-inner {
        grid-template-columns: 1fr;
    }

    .safqa-brand,
    .safqa-search,
    .safqa-actions {
        width: 100%;
        min-width: 0;
    }

    .safqa-actions {
        justify-content: center;
        gap: 0.6rem;
        flex-wrap: wrap;
    }

    .language-toggle-track {
        width: 78px;
        height: 38px;
    }

    .safqa-action,
    .safqa-cart-wrap,
    .language-switch-form,
    .safqa-actions .d-inline {
        flex: 0 1 auto;
        max-width: 100%;
    }

    .safqa-action {
        min-width: 0;
    }

    .safqa-action span {
        overflow-wrap: anywhere;
    }

    .wm-translate-wrap {
        order: 3;
        margin-left: auto;
    }

    .cart-hover-dialog {
        display: none;
    }
}

.category-panels .section-title {
    color: #3b2b8a;
    font-weight: 800;
}

.category-slider-controls {
    display: flex;
    gap: 0.55rem;
}

html[dir="rtl"] .category-slider-head {
    justify-content: space-between !important;
}

html[dir="rtl"] .category-slider-controls {
    flex-direction: row-reverse;
}

.category-slider-btn {
    width: 2.25rem;
    height: 2.25rem;
    border-radius: 999px;
    border: 2px solid #5a35c9;
    background: #fff;
    color: #3b2b8a;
    font-size: 1rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: transform 160ms ease, background-color 160ms ease, color 160ms ease;
}

.category-slider-btn:hover {
    background: #5a35c9;
    color: #fff;
    transform: translateY(-1px);
}

.category-slider {
    display: flex;
    gap: 0.9rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    padding-bottom: 0.25rem;
    -ms-overflow-style: none;
    width: 100%;
    max-width: 100%;
    min-width: 0;
}

.category-slider::-webkit-scrollbar {
    display: none;
}

.icon-categories {
    background: transparent;
}

.icon-categories-track {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: minmax(106px, 1fr);
    gap: 0.9rem;
    overflow-x: auto;
    padding: 0.35rem 0 0.1rem;
    scrollbar-width: none;
    width: 100%;
    max-width: 100%;
    min-width: 0;
}

.icon-categories-track::-webkit-scrollbar {
    display: none;
}

.icon-category-item {
    min-width: 106px;
    text-decoration: none;
    color: #1d1d1f;
    text-align: center;
}

.icon-category-media {
    position: relative;
    display: inline-grid;
    place-items: center;
    width: 98px;
    height: 98px;
}

.icon-category-frame {
    width: 98px;
    height: 98px;
    object-fit: contain;
    position: relative;
    z-index: 1;
}

.icon-category-photo {
    position: absolute;
    width: 52px;
    height: 52px;
    object-fit: cover;
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -53%);
    z-index: 2;
}

.icon-category-label {
    display: block;
    margin-top: 0.5rem;
    font-size: 0.92rem;
    font-weight: 700;
    line-height: 1.2;
}

.akwa-product-slider {
    display: flex;
    gap: 1rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    padding-bottom: 0.25rem;
    -ms-overflow-style: none;
    width: 100%;
    max-width: 100%;
    min-width: 0;
}

.akwa-product-slider::-webkit-scrollbar {
    display: none;
}

.akwa-product-item {
    flex: 0 0 calc((100% - 4rem) / 5);
    min-width: 220px;
    scroll-snap-align: start;
}

html[dir="rtl"] .akwa-slider-head {
    justify-content: space-between !important;
}

/* ============================================
   AKWA SAFQQA - ENHANCED EYE-CATCHING SECTION
   Using Custom Color Scheme
   ============================================ */

.akwa-section {
    position: relative;
    overflow: hidden;
}

/* Enhanced Container with Animated Gradient Background */
.akwa-section .container {
    background:
        radial-gradient(circle at 10% 18%, rgba(89, 55, 191, 0.15), transparent 45%),
        radial-gradient(circle at 85% 12%, rgba(252, 212, 253, 0.3), transparent 48%),
        radial-gradient(circle at 50% 90%, rgba(54, 25, 115, 0.08), transparent 50%),
        linear-gradient(135deg, #ffffff 0%, #f9f5ff 25%, #fef7ff 60%, #fff 100%);
    border: 2px solid rgba(89, 55, 191, 0.2);
    border-radius: 1.5rem;
    padding: 2rem 1.5rem;
    box-shadow:
        0 5px 20px rgba(0, 0, 0, 0.4),
        0 15px 45px rgba(89, 55, 191, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    position: relative;
    animation: subtle-pulse 4s ease-in-out infinite;
}

/* Animated background pulse effect */
@keyframes subtle-pulse {
    0%, 100% {
        box-shadow:
            0 5px 20px rgba(0, 0, 0, 0.4),
            0 15px 45px rgba(89, 55, 191, 0.15),
            inset 0 1px 0 rgba(255, 255, 255, 0.8);
    }
    50% {
        box-shadow:
            0 5px 20px rgba(0, 0, 0, 0.4),
            0 20px 55px rgba(89, 55, 191, 0.25),
            inset 0 1px 0 rgba(255, 255, 255, 0.9);
    }
}

/* Decorative corner accents */
.akwa-section .container::before,
.akwa-section .container::after {
    content: '';
    position: absolute;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
}

.akwa-section .container::before {
    top: -40px;
    left: -40px;
    background: radial-gradient(circle, rgba(89, 55, 191, 0.25) 0%, transparent 70%);
    animation: float-top-left 6s ease-in-out infinite;
}

.akwa-section .container::after {
    bottom: -50px;
    right: -50px;
    background: radial-gradient(circle, rgba(252, 212, 253, 0.4) 0%, transparent 70%);
    animation: float-bottom-right 7s ease-in-out infinite;
}

@keyframes float-top-left {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(10px, 10px) scale(1.1); }
}

@keyframes float-bottom-right {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(-10px, -10px) scale(1.15); }
}

/* Enhanced Section Title with Gradient */
.akwa-section .section-title {
    background: linear-gradient(135deg, #361973 0%, #5937bf 50%, #472c97 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-transform: capitalize;
    letter-spacing: 0.03em;
    font-weight: 900;
    font-size: 2rem;
    text-shadow: 0 2px 8px rgba(89, 55, 191, 0.15);
    position: relative;
    z-index: 1;
}

/* Enhanced "Top Deals" label */
.akwa-section .section-title::before {
    content: "🔥 Top Deals";
    display: inline-block;
    font-size: 0.75rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    background: linear-gradient(90deg, #5937bf 0%, #361973 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800;
    margin-bottom: 0.35rem;
    animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.8; }
}

/* Enhanced Navigation Buttons */
.akwa-section .category-slider-btn {
    border: 2px solid rgba(89, 55, 191, 0.3);
    background: linear-gradient(135deg, #ffffff 0%, #faf7ff 100%);
    color: #5937bf;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 280ms cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow:
        0 4px 12px rgba(89, 55, 191, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    position: relative;
    overflow: hidden;
}

.akwa-section .category-slider-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(89, 55, 191, 0.15) 0%, rgba(252, 212, 253, 0.15) 100%);
    opacity: 0;
    transition: opacity 280ms ease;
}

.akwa-section .category-slider-btn:hover {
    transform: scale(1.1) rotate(5deg);
    border-color: #5937bf;
    background: linear-gradient(135deg, #5937bf 0%, #472c97 100%);
    color: #ffffff;
    box-shadow:
        0 8px 24px rgba(89, 55, 191, 0.3),
        0 5px 20px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.akwa-section .category-slider-btn:hover::before {
    opacity: 1;
}

.akwa-section .category-slider-btn i {
    font-size: 1.25rem;
    position: relative;
    z-index: 1;
}

/* Enhanced Product Cards */
.akwa-section .akwa-product-item .product-card {
    border: 2px solid rgba(89, 55, 191, 0.15);
    border-radius: 1.25rem;
    background: linear-gradient(135deg, #ffffff 0%, #fefbff 100%);
    box-shadow:
        0 12px 28px rgba(89, 55, 191, 0.12),
        0 5px 20px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
    transition: all 320ms cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

/* Hover glow effect */
.akwa-section .akwa-product-item .product-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(89, 55, 191, 0.08) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 320ms ease;
    pointer-events: none;
}

.akwa-section .akwa-product-item .product-card:hover::before {
    opacity: 1;
}

.akwa-section .akwa-product-item .product-card:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: #5937bf;
    box-shadow:
        0 24px 48px rgba(89, 55, 191, 0.22),
        0 5px 20px rgba(0, 0, 0, 0.4),
        0 12px 28px rgba(252, 212, 253, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 1);
}

/* Enhanced Product Badge with Animation */
.akwa-section .akwa-product-item .product-badge {
    background: linear-gradient(135deg, #5937bf 0%, #361973 50%, #472c97 100%);
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    font-weight: 900;
    font-size: 0.7rem;
    padding: 0.4rem 0.9rem;
    border-radius: 0 0 0.75rem 0;
    box-shadow:
        0 5px 20px rgba(0, 0, 0, 0.4),
        0 4px 12px rgba(89, 55, 191, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
    animation: badge-pulse 2s ease-in-out infinite;
}

@keyframes badge-pulse {
    0%, 100% {
        box-shadow:
            0 5px 20px rgba(0, 0, 0, 0.4),
            0 4px 12px rgba(89, 55, 191, 0.4),
            inset 0 1px 0 rgba(255, 255, 255, 0.2);
    }
    50% {
        box-shadow:
            0 5px 20px rgba(0, 0, 0, 0.4),
            0 6px 18px rgba(89, 55, 191, 0.6),
            0 2px 8px rgba(252, 212, 253, 0.4),
            inset 0 1px 0 rgba(255, 255, 255, 0.3);
    }
}

/* Animated shine effect on badge */
.akwa-section .akwa-product-item .product-badge::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -100%;
    width: 50%;
    height: 200%;
    background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.4) 50%, transparent 100%);
    transform: skewX(-20deg);
    animation: badge-shine 3s ease-in-out infinite;
}

@keyframes badge-shine {
    0%, 100% { left: -100%; }
    50% { left: 150%; }
}

/* Enhanced Price Styling */
.akwa-section .akwa-product-item .price {
    font-size: 1.35rem;
    font-weight: 900;
    background: linear-gradient(135deg, #361973 0%, #5937bf 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 0.01em;
}

.akwa-section .akwa-product-item .old-price {
    color: #dc2626;
    font-weight: 800;
    text-decoration: line-through;
    text-decoration-thickness: 2px;
    opacity: 0.75;
    font-size: 0.95rem;
}

/* Enhanced Product Image with Hover Effect */
.akwa-section .akwa-product-item .product-card img {
    transition: transform 380ms cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 1rem;
}

.akwa-section .akwa-product-item .product-card:hover img {
    transform: scale(1.08);
}

/* Enhanced Rating Stars */
.akwa-section .akwa-product-item .rating i {
    color: #fbbf24;
    text-shadow: 0 2px 4px rgba(251, 191, 36, 0.3);
    animation: star-twinkle 2s ease-in-out infinite;
}

@keyframes star-twinkle {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.85; }
}

/* Enhanced Button Styles */
.akwa-section .akwa-product-item .btn-outline-primary {
    border: 2px solid #361973;
    color: #5937bf;
    font-weight: 700;
    transition: all 280ms cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #ffffff 0%, #faf7ff 100%);
}

.akwa-section .akwa-product-item .btn-outline-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent 0%, rgba(89, 55, 191, 0.5) 50%, transparent 100%);
    transition: left 500ms ease;
}

.akwa-section .akwa-product-item .btn-outline-primary:hover {
    background: linear-gradient(135deg, #5937bf 0%, #472c97 100%);
    border-color: #361973;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(89, 55, 191, 0.35);
}

.akwa-section .akwa-product-item .btn-outline-primary:hover::before {
    left: 100%;
}

.akwa-section .akwa-product-item .btn-light {
    background: linear-gradient(135deg, #faf7ff 0%, #ffffff 100%);
    border: 1px solid rgba(89, 55, 191, 0.2);
    font-weight: 600;
    transition: all 280ms ease;
}

.akwa-section .akwa-product-item .btn-light:hover {
    background: linear-gradient(135deg, #f3efff 0%, #faf7ff 100%);
    border-color: rgba(89, 55, 191, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(89, 55, 191, 0.15);
}

/* Product Title Enhancement */
.akwa-section .akwa-product-item .product-title a {
    color: #383838;
    font-weight: 700;
    transition: all 280ms ease;
    position: relative;
}

.akwa-section .akwa-product-item .product-title a:hover {
    color: #5937bf;
}

/* Category Label */
.akwa-section .akwa-product-item .text-muted {
    color: #5937bf !important;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.7rem;
    letter-spacing: 0.05em;
    opacity: 0.8;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .akwa-section .section-title {
        font-size: 1.5rem;
    }

    .akwa-section .container {
        padding: 1.5rem 1rem;
    }

    .akwa-section .category-slider-btn {
        width: 38px;
        height: 38px;
    }
}

.category-card {
    position: relative;
    border: 1px solid #d4e5f8;
    border-radius: 1rem;
    overflow: hidden;
    background: transparent;
    min-height: 320px;
    flex: 0 0 calc((100% - 1.8rem) / 3);
    scroll-snap-align: start;
    cursor: pointer;
    box-shadow: none;
    padding: 0.55rem;
}

.category-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    opacity: 0.9;
    transition: transform 220ms ease, opacity 220ms ease;
}

.category-card-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
    height: calc(100% - 1.9rem);
    padding: 0;
    overflow: hidden;
}

.category-card-grid img:not(.condition-badge) {
    width: 100%;
    height: 98px;
    object-fit: cover;
    border-radius: 0.6rem;
    opacity: 0.95;
    transition: transform 220ms ease, opacity 220ms ease;
}

.category-mini-card {
    background: transparent;
    border: 1px solid #dce9f9;
    border-radius: 0.7rem;
    padding: 0.32rem;
    display: grid;
    gap: 0.28rem;
    overflow: hidden;
}

.category-mini-link {
    position: relative;
    display: block;
    overflow: hidden;
}


.category-mini-actions {
    display: flex;
    justify-content: flex-end;
}

.category-card-title {
    margin: 0 0 0.45rem;
    padding: 0 0.15rem;
    font-size: 0.95rem;
    font-weight: 800;
    line-height: 1.2;
    color: #15345f;
}

.category-mini-meta h5 {
    margin: 0;
    line-height: 1.15;
    font-weight: 700;
    color: #1e3561;
    overflow: hidden;
}

.category-mini-meta p {
    margin: 0.1rem 0 0.2rem;
    color: #5a6f87;
}

.btn-xs {
    --bs-btn-padding-y: 0.18rem;
    --bs-btn-padding-x: 0.6rem;
    --bs-btn-font-size: 0.78rem;
}

.category-label {
    display: none;
}

.category-card::after,
.category-rail::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(20, 10, 40, 0) 0%, rgba(20, 10, 40, 0.65) 100%);
    opacity: 0;
    transition: opacity 200ms ease;
    z-index: 1;
}

.category-card::after {
    display: none;
}

.category-card:hover::after,
.category-rail:hover::after {
    opacity: 1;
}

.category-card:hover img,
.category-rail:hover img {
    transform: scale(1.04);
    opacity: 0.95;
}

.category-card:hover .category-label {
    opacity: 1;
    transform: translateY(0);
}

.category-strip {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1rem;
}

.category-rail {
    position: relative;
    border: 2px solid #5a35c9;
    border-radius: 0.9rem;
    padding: 0.75rem;
    background: #fff;
    overflow: hidden;
}

.category-rail h4 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
    color: #3b1c86;
    font-weight: 800;
    position: absolute;
    left: 0.9rem;
    bottom: 0.9rem;
    margin: 0;
    z-index: 2;
    color: #fff;
    opacity: 0;
    transition: opacity 200ms ease, transform 200ms ease;
    transform: translateY(6px);
}

.category-rail img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 0.75rem;
}

.category-rail:hover h4 {
    opacity: 1;
    transform: translateY(0);
}

.category-rail img {
    transition: transform 220ms ease, opacity 220ms ease;
}

@media (max-width: 992px) {
    .category-card {
        flex-basis: calc((100% - 0.9rem) / 2);
        min-height: 310px;
    }

    .akwa-product-item {
        flex-basis: calc((100% - 2rem) / 3);
    }

    /* Keep product thumbnails consistent on tablet/mobile cards */
    .akwa-product-item .product-image-wrap {
        height: 180px;
        aspect-ratio: auto;
    }

    .akwa-product-item .product-image-wrap img:not(.condition-badge) {
        width: 100% !important;
        height: 100% !important;
        object-fit: contain;
    }
}

@media (max-width: 576px) {
    .akwa-section .container {
        border-radius: 1rem;
        padding: 1rem 0.85rem;
    }

    .icon-categories-track {
        grid-auto-columns: 96px;
        gap: 0.65rem;
    }

    .icon-category-media {
        width: 80px;
        height: 80px;
    }

    .icon-category-frame {
        width: 80px;
        height: 80px;
    }

    .icon-category-photo {
        width: 38px;
        height: 38px;
    }

    .icon-category-label {
        font-size: 0.84rem;
    }

    .category-card {
        flex-basis: 88%;
        min-height: 300px;
    }

    .akwa-product-item {
        flex-basis: calc((100% - 1rem) / 2);
        min-width: 170px;
    }

    .akwa-product-item .product-image-wrap {
        height: 150px;
    }
}

.brand-mark {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--wm-yellow);
    color: var(--wm-blue-900);
    font-weight: 800;
}

.brand-name {
    color: #fff;
    font-size: 1.5rem;
    font-weight: 800;
    line-height: 1;
}

.search-wrap {
    border-radius: 999px;
}

.search-wrap input,
.search-wrap button {
    min-height: 48px;
    border: 0;
}

.search-wrap.is-focused {
    box-shadow: 0 0 0 3px rgba(255, 194, 32, 0.4);
}

.search-suggestions {
    margin-top: 0.5rem;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 0.85rem;
    padding: 0.35rem;
    box-shadow: 0 10px 20px rgba(6, 53, 102, 0.12);
}

.suggestion-item {
    width: 100%;
    text-align: left;
    border: 0;
    background: transparent;
    border-radius: 0.65rem;
    padding: 0.45rem 0.65rem;
    color: #1a406b;
    font-weight: 600;
}

.suggestion-item:hover {
    background: #edf5ff;
}

.header-actions .action-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    text-decoration: none;
    color: #0f3866;
    background: #fff;
    border-radius: 999px;
    padding: 0.4rem 0.65rem;
    font-weight: 600;
    font-size: 0.84rem;
}

.header-actions .action-pill span {
    white-space: nowrap;
}

.header-actions {
    flex-wrap: nowrap;
}

.header-actions .action-pill b {
    display: inline-block;
    min-width: 1.4rem;
    height: 1.4rem;
    line-height: 1.4rem;
    text-align: center;
    border-radius: 999px;
    background: #ebf4ff;
    color: #0b4f8f;
    font-size: 0.78rem;
}

.header-actions .action-pill:hover {
    background: #eef6ff;
}

.header-nav {
    background: #0058b1;
}

.header-nav .navbar-toggler {
    border: 1px solid rgba(255, 255, 255, 0.45);
    background: rgba(255, 255, 255, 0.14);
}

.header-nav .navbar-toggler-icon {
    filter: invert(1);
}

.header-nav .nav-link {
    color: #deedff;
    white-space: nowrap;
    font-weight: 500;
}

.header-nav .nav-link.active,
.header-nav .nav-link:hover {
    color: #fff;
}

.hero-mega {
    display: grid;
    grid-template-columns: 260px minmax(0, 1fr);
    column-gap: 0.75rem;
    transition: column-gap 160ms ease;
    align-items: start;
    border-radius: 1rem;
    overflow: hidden;
    background: #fff;
    box-shadow: var(--card-shadow-soft);
    min-width: 0;
    max-width: 100%;
}

.hero-mega.is-expanded {
    column-gap: 0;
}

.hero-category-menu {
    background: #fff;
    border-right: 1px solid var(--border);
    display: flex;
    flex-direction: column;
    padding: 0.35rem 0;
    max-height: 480px;
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: #cbd5e1 transparent;
}

.hero-category-menu::-webkit-scrollbar {
    width: 5px;
}

.hero-category-menu::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 3px;
}

.hero-category-menu::-webkit-scrollbar-track {
    background: transparent;
}

html[dir="rtl"] .hero-category-menu {
    border-right: 0;
    border-left: 1px solid var(--border);
}

.hero-category-link {
    display: flex;
    align-items: center;
    gap: 0.55rem;
    text-decoration: none;
    color: var(--ink);
    font-size: 0.95rem;
    font-weight: 500;
    padding: 0.54rem 1rem;
    border-left: 3px solid transparent;
    transition: background 160ms ease, color 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

html[dir="rtl"] .hero-category-link {
    border-left: 0;
    border-right: 3px solid transparent;
}

.hero-category-link i {
    font-size: 1rem;
    color: var(--muted);
}

.hero-category-link:hover,
.hero-category-link.is-active {
    background: var(--paper);
    color: var(--wm-blue-900);
    border-left-color: var(--wm-yellow);
    box-shadow: inset 0 0 0 1px var(--border);
}

html[dir="rtl"] .hero-category-link:hover,
html[dir="rtl"] .hero-category-link.is-active {
    border-left-color: transparent;
    border-right-color: var(--wm-yellow);
}

.hero-category-link:hover i,
.hero-category-link.is-active i {
    color: var(--wm-blue);
}

.hero-display {
    position: relative;
    min-height: 390px;
    background: #fff;
    min-width: 0;
    max-width: 100%;
}

.hero-slider-area {
    height: 100%;
    transition: opacity 180ms ease, visibility 180ms ease;
    min-width: 0;
    max-width: 100%;
}

.hero-slider-area .carousel,
.hero-slider-area .carousel-inner,
.hero-slider-area .carousel-item,
.hero-slider-area .carousel-item .hero-card {
    height: 100%;
}

.hero-carousel-inner {
    border-radius: 0;
    box-shadow: none;
}

.hero-submenu-area {
    position: absolute;
    inset: 0;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 180ms ease, visibility 180ms ease;
    background: #eef0f3;
}

.hero-submenu-grid {
    height: 100%;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
    align-items: start;
    padding: 1rem 1.1rem;
    overflow: auto;
}

.hero-submenu-column {
    min-width: 0;
}

.hero-submenu-group + .hero-submenu-group {
    margin-top: 1rem;
}

.hero-submenu-title {
    margin: 0 0 0.5rem;
    padding-bottom: 0.35rem;
    border-bottom: 1px solid #cfd5dc;
    color: #333941;
    font-size: 0.96rem;
    font-weight: 700;
    text-transform: uppercase;
}

.hero-submenu-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.hero-submenu-list li + li {
    margin-top: 0.16rem;
}

.hero-submenu-list a {
    text-decoration: none;
    color: #666f7b;
    font-size: 0.95rem;
    line-height: 1.35;
}

.hero-submenu-list a:hover {
    color: #293140;
}

.hero-mega.is-expanded .hero-slider-area {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.hero-mega.is-expanded .hero-submenu-area {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.hero-card {
    color: #fff;
    min-height: 360px;
    padding: 3rem;
    border-radius: 1.2rem;
    position: relative;
    overflow: hidden;
    background: linear-gradient(125deg, #0071dc 0%, #0055aa 62%, #003f82 100%);
}

.hero-card::before {
    content: "";
    position: absolute;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    top: -70px;
    right: -50px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.22) 0%, rgba(255, 255, 255, 0) 70%);
    pointer-events: none;
}

.hero-card.alt {
    background: linear-gradient(125deg, #11806f 0%, #0a5f8f 62%, #0b467e 100%);
}

.hero-card.third {
    background: linear-gradient(125deg, #006f9c 0%, #0058b1 55%, #123f7a 100%);
}

.hero-card--with-image {
    padding: 0;
    min-height: 0;
    background: none;
}

.hero-card--with-image::before {
    display: none;
}

.hero-card__img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 1.2rem;
}

.hero-card__content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 3rem;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.65) 0%, transparent 100%);
    border-radius: 0 0 1.2rem 1.2rem;
}

.hero-card--clickable {
    cursor: pointer;
}

.carousel-indicators {
    margin-bottom: 1rem;
}

.promo-tile {
    background: #fff;
    border: 1px solid var(--border);
    transition: transform 220ms ease, box-shadow 220ms ease;
}

.promo-tile:hover {
    transform: translateY(-3px);
    box-shadow: var(--card-shadow-soft);
}

.tile-kicker {
    color: var(--wm-blue);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.74rem;
    letter-spacing: 0.4px;
}

.promo-tile h3 {
    font-size: 1.05rem;
    line-height: 1.35;
    font-weight: 700;
}

.tile-link {
    text-decoration: none;
    font-weight: 700;
    color: var(--wm-blue);
}

.trust-item {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 0.85rem;
    padding: 0.8rem;
    font-weight: 600;
    font-size: 0.92rem;
    box-shadow: 0 1px 0 rgba(15, 56, 102, 0.03);
    transition: transform 180ms ease, box-shadow 180ms ease;
}

.trust-item i {
    margin-right: 0.4rem;
    color: var(--wm-blue);
}

.trust-item:hover {
    transform: translateY(-2px);
    box-shadow: var(--card-shadow-soft);
}

.cat-pill {
    display: block;
    text-decoration: none;
    color: var(--ink);
    background: #fff;
    border: 1px solid #cce1f9;
    border-radius: 999px;
    padding: 0.75rem 1rem;
    font-weight: 700;
    transition: all 180ms ease;
}

.cat-pill:hover {
    color: #0f3866;
    border-color: #a9d0f7;
    transform: translateY(-2px);
}

.flash-banner {
    color: #fff;
    box-shadow: var(--card-shadow);
    background: linear-gradient(120deg, #0057af, #0087cf 65%, #117f6d);
}

.countdown span {
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 0.7rem;
    min-width: 76px;
    text-align: center;
    padding: 0.45rem 0.7rem;
}

.countdown b {
    display: block;
    font-size: 1.3rem;
    line-height: 1;
}

.countdown small {
    text-transform: uppercase;
    font-size: 0.66rem;
}

.intel-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 1rem;
    box-shadow: 0 8px 16px rgba(14, 54, 100, 0.05);
}

.progress.soft {
    height: 0.45rem;
    border-radius: 999px;
    background: #edf4fc;
}

.progress.soft .progress-bar {
    background: linear-gradient(90deg, #0071dc, #00a3d8);
}

.mini {
    font-size: 0.82rem;
    color: var(--muted);
}

.last-piece-section {
    position: relative;
}

.last-piece-shell {
    --lp-cut: 28px;
    --lp-frame: rgba(255, 183, 72, 0.48);
    --lp-ink: #e8f7ff;
    position: relative;
    overflow: hidden;
    padding: 1.35rem;
    border: 1px solid var(--lp-frame);
    background:
        linear-gradient(126deg, rgba(255, 173, 82, 0.2), rgba(255, 173, 82, 0) 42%),
        linear-gradient(26deg, rgba(130, 236, 255, 0.14), rgba(130, 236, 255, 0) 55%),
        linear-gradient(152deg, #021325 0%, #08325e 50%, #061a34 100%);
    color: var(--lp-ink);
    box-shadow: 0 20px 42px rgba(2, 11, 24, 0.42);
    clip-path: polygon(
        var(--lp-cut) 0,
        100% 0,
        100% calc(100% - var(--lp-cut)),
        calc(100% - var(--lp-cut)) 100%,
        0 100%,
        0 var(--lp-cut)
    );
}

.last-piece-shell::before,
.last-piece-shell::after {
    content: "";
    position: absolute;
    pointer-events: none;
}

.last-piece-shell::before {
    inset: -110% auto auto -38%;
    width: 54%;
    height: 265%;
    transform: rotate(18deg);
    background: linear-gradient(
        110deg,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.2) 52%,
        rgba(255, 255, 255, 0) 100%
    );
    animation: lpBladeSweep 8.5s linear infinite;
}

.last-piece-shell::after {
    inset: 0;
    background:
        linear-gradient(90deg, transparent 0 7%, rgba(144, 231, 255, 0.18) 7% 7.45%, transparent 7.45% 100%),
        linear-gradient(0deg, transparent 0 84%, rgba(255, 194, 91, 0.18) 84% 84.45%, transparent 84.45% 100%);
    opacity: 0.8;
}

.last-piece-head {
    position: relative;
    z-index: 1;
    padding-bottom: 0.95rem;
    border-bottom: 1px solid rgba(153, 224, 255, 0.24);
}

.last-piece-kicker {
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    font-size: 0.68rem;
    font-weight: 700;
    font-family: "Space Grotesk", "Barlow", sans-serif;
    color: #ffd286;
}

.last-piece-head .section-title {
    color: #f5fbff;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    font-family: "Space Grotesk", "Barlow", sans-serif;
}

.last-piece-copy {
    max-width: 560px;
    color: rgba(216, 242, 255, 0.86);
    font-size: 0.94rem;
}

.last-piece-link {
    display: inline-flex;
    align-items: center;
    gap: 0.48rem;
    text-decoration: none;
    color: #ebf8ff;
    font-family: "Space Grotesk", "Barlow", sans-serif;
    font-weight: 700;
    background: rgba(8, 32, 58, 0.78);
    border: 1px solid rgba(150, 226, 255, 0.46);
    padding: 0.52rem 0.95rem;
    clip-path: polygon(12px 0, 100% 0, 100% calc(100% - 12px), calc(100% - 12px) 100%, 0 100%, 0 12px);
    transition: transform 220ms ease, background-color 220ms ease, border-color 220ms ease;
}

.last-piece-link:hover {
    color: #041d38;
    background: #d7f3ff;
    border-color: #d7f3ff;
    transform: translateY(-2px);
}

.last-piece-head-actions {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    flex-wrap: wrap;
}

.last-piece-product-slider {
    position: relative;
    z-index: 1;
    display: flex;
    gap: 1rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: 0.2rem 0.2rem 0.42rem;
}

.last-piece-product-slider::-webkit-scrollbar {
    display: none;
}

.last-piece-slide-item {
    flex: 0 0 calc((100% - 3rem) / 4);
    min-width: 248px;
    scroll-snap-align: start;
}

.last-piece-feature,
.last-piece-item {
    --lp-card-cut: 18px;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(155, 229, 255, 0.34);
    background: linear-gradient(152deg, rgba(3, 24, 48, 0.76), rgba(7, 40, 73, 0.88));
    box-shadow: 0 12px 24px rgba(2, 11, 24, 0.36);
    clip-path: polygon(
        var(--lp-card-cut) 0,
        100% 0,
        100% calc(100% - var(--lp-card-cut)),
        calc(100% - var(--lp-card-cut)) 100%,
        0 100%,
        0 var(--lp-card-cut)
    );
    transition: transform 240ms ease, box-shadow 240ms ease, border-color 240ms ease;
}

.last-piece-feature::before,
.last-piece-item::before {
    content: "";
    position: absolute;
    inset: auto 0 0 0;
    height: 1px;
    background: linear-gradient(90deg, rgba(161, 228, 255, 0), rgba(161, 228, 255, 0.78), rgba(161, 228, 255, 0));
    pointer-events: none;
    animation: lpEdgePulse 2.8s ease-in-out infinite;
}

.last-piece-feature:hover,
.last-piece-item:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 198, 90, 0.72);
    box-shadow:
        0 20px 30px rgba(1, 10, 22, 0.5),
        0 0 0 1px rgba(255, 198, 90, 0.2);
}

.last-piece-chip,
.last-piece-item-chip {
    position: absolute;
    top: 0.72rem;
    left: 0.72rem;
    z-index: 2;
    font-size: 0.66rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 700;
    color: #2d1800;
    background: linear-gradient(120deg, #ffd689, #ffc164);
    border: 1px solid rgba(255, 238, 200, 0.56);
    padding: 0.22rem 0.55rem;
    clip-path: polygon(10px 0, 100% 0, 100% calc(100% - 10px), calc(100% - 10px) 100%, 0 100%, 0 10px);
}

.last-piece-feature-media,
.last-piece-item-media {
    position: relative;
    display: block;
    overflow: hidden;
    background: #03162a;
    clip-path: polygon(0 0, 100% 0, 100% calc(100% - 16px), calc(100% - 16px) 100%, 0 100%);
}

.last-piece-feature-media img:not(.condition-badge),
.last-piece-item-media img:not(.condition-badge) {
    width: 100%;
    display: block;
    object-fit: cover;
    transition: transform 320ms ease;
}

.last-piece-feature-media img:not(.condition-badge) {
    height: 256px;
}

.last-piece-item-media img:not(.condition-badge) {
    height: 170px;
}

.last-piece-feature:hover img:not(.condition-badge),
.last-piece-item:hover img:not(.condition-badge) {
    transform: scale(1.06);
}

.last-piece-feature-body,
.last-piece-item-body {
    padding: 0.92rem;
}

.last-piece-item-actions {
    display: flex;
    gap: 0.4rem;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.last-piece-meta {
    color: #9eddff;
    text-transform: uppercase;
    font-size: 0.68rem;
    letter-spacing: 0.11em;
    font-weight: 700;
}

.last-piece-section .product-link {
    color: #f3fbff;
    text-decoration: none;
}

.last-piece-section .product-link:hover {
    color: #ffd48d;
}

.last-piece-section .price {
    color: #ffd88a;
    font-weight: 900;
    font-size: 1.12rem;
    text-shadow: 0 1px 8px rgba(1, 10, 20, 0.45);
}

.last-piece-section .old-price {
    color: rgba(225, 241, 255, 0.78);
    text-decoration-thickness: 2px;
}

.last-piece-note,
.last-piece-item-copy {
    color: rgba(213, 236, 255, 0.84);
    line-height: 1.35;
}

.last-piece-note {
    font-size: 0.86rem;
}

.last-piece-item-copy {
    font-size: 0.82rem;
}

.last-piece-progress {
    height: 0.44rem;
    background: rgba(157, 228, 255, 0.2);
    overflow: hidden;
    clip-path: polygon(10px 0, 100% 0, calc(100% - 10px) 100%, 0 100%);
}

.last-piece-progress span {
    display: block;
    height: 100%;
    background: linear-gradient(90deg, #ffd687 0%, #ffa742 46%, #ff6b3b 100%);
}

.last-piece-section .btn-warning {
    font-weight: 700;
    color: #2a1700;
    border: 1px solid rgba(255, 231, 186, 0.5);
    background: linear-gradient(128deg, #ffd486 0%, #ffbc57 100%);
    border-radius: 0;
    clip-path: polygon(10px 0, 100% 0, 100% calc(100% - 10px), calc(100% - 10px) 100%, 0 100%, 0 10px);
}

.last-piece-section .btn-warning:hover {
    color: #2a1700;
    transform: translateY(-1px);
    box-shadow: 0 8px 14px rgba(255, 176, 56, 0.32);
}

.last-piece-section .btn-outline-warning {
    font-weight: 700;
    color: #ffd28a;
    border-color: rgba(255, 209, 132, 0.62);
    border-radius: 0;
    clip-path: polygon(10px 0, 100% 0, 100% calc(100% - 10px), calc(100% - 10px) 100%, 0 100%, 0 10px);
}

.last-piece-section .btn-outline-warning:hover {
    color: #13233d;
    background: #ffd28a;
    border-color: #ffd28a;
}

.last-piece-section .btn-outline-light {
    border-color: rgba(222, 243, 255, 0.56);
    color: #ffffff;
    border-radius: 0;
    clip-path: polygon(10px 0, 100% 0, 100% calc(100% - 10px), calc(100% - 10px) 100%, 0 100%, 0 10px);
}

.last-piece-section .btn-outline-light:hover {
    color: #0d2442;
    background: #dff3ff;
    border-color: #dff3ff;
}

.last-piece-item.wide {
    display: grid;
    grid-template-columns: 230px minmax(0, 1fr);
}

.last-piece-item.wide .last-piece-item-media,
.last-piece-item.wide .last-piece-item-media img:not(.condition-badge) {
    height: 100%;
}

@keyframes lpBladeSweep {
    0%,
    100% {
        transform: translateX(0) rotate(18deg);
        opacity: 0;
    }
    50% {
        transform: translateX(235%) rotate(18deg);
        opacity: 1;
    }
}

@keyframes lpEdgePulse {
    0%,
    100% {
        opacity: 0.35;
    }
    50% {
        opacity: 1;
    }
}

@media (max-width: 991px) {
    .last-piece-shell {
        padding: 1rem;
        --lp-cut: 20px;
    }

    .last-piece-head-actions {
        width: 100%;
        justify-content: space-between;
    }

    .last-piece-slide-item {
        flex-basis: calc((100% - 1rem) / 2);
        min-width: 226px;
    }

    .last-piece-item.wide {
        display: block;
    }

    .last-piece-item.wide .last-piece-item-media img:not(.condition-badge) {
        height: 180px;
    }

    .last-piece-feature,
    .last-piece-item {
        --lp-card-cut: 14px;
    }
}

@media (max-width: 575px) {
    .last-piece-head .section-title {
        font-size: 1.6rem;
    }

    .last-piece-copy {
        font-size: 0.9rem;
    }

    .last-piece-slide-item {
        flex-basis: 84%;
        min-width: 84%;
    }

    .last-piece-item-actions {
        justify-content: flex-start;
    }

    .last-piece-feature-media img {
        height: 214px;
    }

    .last-piece-item-media img:not(.condition-badge) {
        height: 160px;
    }

    .last-piece-feature-body,
    .last-piece-item-body {
        padding: 0.78rem;
    }

    .last-piece-shell {
        --lp-cut: 15px;
    }

    .last-piece-feature,
    .last-piece-item {
        --lp-card-cut: 12px;
    }
}

/* Sharp-angle geometry for product sliders and display cards */
.category-slider,
.akwa-product-slider {
    padding-inline: 0.22rem;
}

.category-slider .category-card,
.akwa-product-slider .product-card {
    border-radius: 0;
    clip-path: polygon(16px 0, 100% 0, 100% calc(100% - 16px), calc(100% - 16px) 100%, 0 100%, 0 16px);
}

.category-slider .category-card-grid img:not(.condition-badge) {
    border-radius: 0;
    clip-path: polygon(10px 0, 100% 0, 100% calc(100% - 10px), calc(100% - 10px) 100%, 0 100%, 0 10px);
}

.akwa-product-slider .product-image-wrap {
    border-radius: 0;
    clip-path: polygon(12px 0, 100% 0, 100% calc(100% - 12px), calc(100% - 12px) 100%, 0 100%, 0 12px);
}

.akwa-product-slider .product-card img {
    border-radius: 0;
}

.category-slider-btn,
.akwa-section .category-slider-btn {
    border-radius: 0;
    clip-path: polygon(10px 0, 100% 0, 100% calc(100% - 10px), calc(100% - 10px) 100%, 0 100%, 0 10px);
}

.section-title {
    font-weight: 800;
}

.ramadan-helal {
    color: #d4a017;
    margin-inline-end: 0.35rem;
}

.season-title-icon {
    width: 22px;
    height: 22px;
    max-width: 22px;
    max-height: 22px;
    object-fit: contain;
    margin-inline-end: 0.35rem;
    vertical-align: middle;
}

.ramadan-section .container {
    position: relative;
    overflow: hidden;
    border-radius: 1.1rem;
    border: 1px solid rgba(212, 160, 23, 0.35);
    background:
        radial-gradient(circle at 12% 20%, rgba(212, 160, 23, 0.18), transparent 40%),
        radial-gradient(circle at 90% 15%, rgba(255, 226, 149, 0.22), transparent 42%),
        linear-gradient(145deg, #fffdf5 0%, #fff8de 52%, #fff3c7 100%);
    padding-top: 1.2rem;
    padding-bottom: 1.2rem;
}

.ramadan-moons {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
}

.ramadan-section .section-head,
.ramadan-section .row {
    position: relative;
    z-index: 1;
}

.ramadan-moon {
    position: absolute;
    color: #d4a017;
    opacity: 0.78;
    filter: drop-shadow(0 0 10px rgba(212, 160, 23, 0.45));
    animation: ramadanMoonFloat 3.4s ease-in-out infinite;
}

.ramadan-moon.moon-1 {
    top: 20px;
    left: 28px;
    font-size: 1.9rem;
}

.ramadan-moon.moon-2 {
    top: 56px;
    right: 72px;
    font-size: 2.5rem;
    animation-delay: 0.5s;
}

.ramadan-moon.moon-3 {
    top: 132px;
    right: 22px;
    font-size: 1.7rem;
    animation-delay: 1s;
}

.ramadan-moon.moon-4 {
    top: 146px;
    left: 42%;
    font-size: 1.55rem;
    animation-delay: 1.4s;
}

@keyframes ramadanMoonFloat {
    0%,
    100% {
        transform: translateY(0) scale(1) rotate(0deg);
        opacity: 0.62;
    }
    50% {
        transform: translateY(-18px) scale(1.18) rotate(6deg);
        opacity: 1;
    }
}

.section-link {
    text-decoration: none;
    font-weight: 700;
}

.section-head {
    position: relative;
}

.section-head::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -0.55rem;
    width: 92px;
    height: 3px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--wm-blue), rgba(0, 166, 220, 0.3));
}

.reels-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 340px;
    gap: 1rem;
}

.reels-player,
.reels-feed {
    border-radius: 1rem;
    padding: 0.85rem;
}

.reels-video-wrap {
    position: relative;
    border-radius: 0.9rem;
    overflow: hidden;
    background: #091a2d;
    aspect-ratio: 9 / 16;
}

.reels-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.reels-overlay {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 1rem;
    color: #fff;
    background: linear-gradient(180deg, rgba(6, 21, 38, 0) 5%, rgba(6, 21, 38, 0.85) 100%);
    display: flex;
    justify-content: space-between;
    align-items: end;
    gap: 0.75rem;
}

.reels-meta {
    text-transform: uppercase;
    font-size: 0.7rem;
    letter-spacing: 0.08em;
    opacity: 0.9;
}

.reels-actions {
    display: grid;
    gap: 0.4rem;
}

.reels-icon-btn {
    border: 1px solid rgba(255, 255, 255, 0.35);
    background: rgba(255, 255, 255, 0.12);
    width: 2rem;
    height: 2rem;
    border-radius: 999px;
    color: #fff;
}

.reels-controls {
    display: grid;
    grid-template-columns: auto auto auto 1fr;
    gap: 0.45rem;
    margin-top: 0.7rem;
    align-items: center;
}

.reels-seek {
    margin: 0;
}

.reels-feed {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.65rem;
    max-height: 76vh;
    overflow: auto;
}

.reel-item {
    border: 1px solid var(--border);
    border-radius: 0.8rem;
    background: #fff;
    padding: 0.55rem;
    display: block;
    gap: 0.45rem;
    text-align: left;
    width: 100%;
}

.reel-item img {
    width: 100%;
    height: 130px;
    border-radius: 0.65rem;
    object-fit: cover;
    margin-bottom: 0.45rem;
}

.reel-item.active {
    border-color: #8abaf0;
    box-shadow: 0 8px 20px rgba(12, 56, 102, 0.1);
}

@media (max-width: 992px) {
    .reels-layout {
        grid-template-columns: 1fr;
    }

    .reels-feed {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        max-height: none;
    }
}

@media (max-width: 768px) {
    .reels-feed {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 520px) {
    .reels-feed {
        grid-template-columns: 1fr;
    }
}

.ugc-reels-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0.65rem;
}

.ugc-reel-card {
    border: 1.5px solid #41208d;
    border-radius: 0;
    background: rgba(255, 255, 255, 0.88);
    padding: 0.65rem;
}

.ugc-reel-tag {
    font-size: 0.8rem;
    font-weight: 700;
    margin: 0 0 0.35rem;
}

.ugc-reel-head {
    color: #37167f;
    font-weight: 900;
    letter-spacing: 0.01em;
    line-height: 0.92;
    font-size: clamp(2rem, 2.4vw, 3rem);
    text-align: center;
    margin: 0 0 0.55rem;
}

.ugc-reel-media {
    border-radius: 0.35rem;
    overflow: hidden;
    background: #0d1e35;
    aspect-ratio: 9 / 16;
}

.ugc-reel-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.ugc-reel-product {
    border-top: 1px solid #e4e9f1;
    margin-top: 0.45rem;
    padding-top: 0.45rem;
    display: flex;
    align-items: center;
    gap: 0.55rem;
    text-decoration: none;
    color: inherit;
}

.ugc-reel-product-thumb {
    width: 46px;
    height: 46px;
    border-radius: 0.55rem;
    object-fit: cover;
    flex: 0 0 46px;
    border: 1px solid #d9e2ee;
}

.ugc-reel-product-copy {
    min-width: 0;
}

.ugc-reel-product-name {
    margin: 0;
    color: var(--ink);
    font-size: 0.82rem;
    line-height: 1.2;
    font-weight: 700;
}

.ugc-reel-product-price {
    margin: 0.1rem 0 0;
    color: var(--wm-blue-900);
    font-weight: 800;
    font-size: 0.88rem;
}

@media (max-width: 1100px) {
    .ugc-reels-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 640px) {
    .ugc-reels-grid {
        grid-template-columns: 1fr;
    }
}

.quality-grades-title {
    color: #7b12f0;
    font-weight: 800;
}

.quality-grades-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
}

.quality-grade-card {
    background: #d1d1d4;
    border-radius: 0.55rem;
    padding: 1.35rem 1.15rem 1.15rem;
    display: flex;
    flex-direction: column;
    min-height: 560px;
}

.quality-grade-name {
    font-size: 2rem;
    line-height: 1.1;
    font-weight: 800;
    color: #333;
    margin: 0;
    min-height: 4.4rem;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.quality-grade-image-wrap {
    margin-top: 0.9rem;
    border-radius: 0.45rem;
    overflow: hidden;
    background: #b8b8bc;
}

.quality-grade-image {
    width: 100%;
    height: 150px;
    object-fit: cover;
    display: block;
}

.quality-grade-divider {
    height: 1px;
    background: #bbb;
    margin: 0.9rem 0 1rem;
}

.quality-save-line {
    font-size: 1.95rem;
    line-height: 1.1;
    color: #3d3d3d;
    margin: 0 0 0.2rem;
}

.quality-save-line span {
    color: #8c12ff;
    font-weight: 800;
}

.quality-subline {
    color: #4b4b4b;
    font-size: 1.35rem;
    margin-bottom: 1rem;
}

.quality-points {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 0.65rem;
    color: #404040;
    font-size: 1.22rem;
    line-height: 1.35;
}

.quality-points i {
    color: #8c12ff;
    margin-right: 0.45rem;
}

.quality-note {
    margin-top: auto;
    color: #000;
    font-style: italic;
    font-size: 1.05rem;
}

.quality-btn {
    margin-top: 0.5rem;
    border: 0;
    color: #fff;
    font-weight: 700;
    background: linear-gradient(180deg, #a113ff 0%, #6f00d7 100%);
    border-radius: 0.2rem;
    padding: 0.7rem 0.9rem;
    text-align: center;
}

.quality-btn:hover {
    color: #fff;
    background: linear-gradient(180deg, #8e0fe2 0%, #5f00ba 100%);
}

@media (max-width: 1200px) {
    .quality-grades-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 700px) {
    .quality-grades-grid {
        grid-template-columns: 1fr;
    }
}

.reviews-slider-section {
    background:
        radial-gradient(circle at 8% 18%, rgba(252, 212, 253, 0.42), transparent 28%),
        radial-gradient(circle at 92% 12%, rgba(89, 55, 191, 0.14), transparent 32%),
        linear-gradient(180deg, #ffffff 0%, #faf7ff 100%);
}

.reviews-slider-section .container {
    position: relative;
}

.reviews-slider-head {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1.4rem;
}

.reviews-slider-kicker {
    display: inline-flex;
    align-items: center;
    color: #5937bf;
    font-size: 0.78rem;
    font-weight: 900;
    text-transform: uppercase;
    margin-bottom: 0.25rem;
}

.reviews-slider-title {
    color: #2d185f;
    font-weight: 900;
    font-size: clamp(1.75rem, 3vw, 2.55rem);
}

.reviews-slider-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    color: #43208f;
    background: #fff;
    border: 1px solid rgba(89, 55, 191, 0.16);
    border-radius: 999px;
    padding: 0.55rem 0.82rem;
    font-size: 0.82rem;
    font-weight: 900;
    box-shadow: 0 10px 22px rgba(54, 25, 115, 0.1);
}

.reviews-slider-badge i {
    color: #f7b500;
}

.review-slide-card {
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 265px;
    height: 100%;
    overflow: hidden;
    color: #32156b;
    background: rgba(255, 255, 255, 0.88);
    border: 1px solid rgba(89, 55, 191, 0.16);
    border-radius: 0.95rem;
    padding: 1.15rem;
    box-shadow: 0 16px 35px rgba(54, 25, 115, 0.12);
}

.review-slide-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-top: 4px solid #5937bf;
    pointer-events: none;
}

.review-slide-quote {
    position: absolute;
    inset-inline-end: 1rem;
    top: 0.85rem;
    color: rgba(89, 55, 191, 0.12);
    font-size: 2.5rem;
    line-height: 1;
}

.review-slide-profile {
    position: relative;
    display: flex;
    align-items: center;
    gap: 0.85rem;
    margin-bottom: 1rem;
    padding-inline-end: 2.8rem;
}

.review-slide-image {
    flex: 0 0 auto;
    width: 64px;
    height: 64px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border: 3px solid #fff;
    border-radius: 50%;
    color: #fff;
    background: linear-gradient(135deg, #5937bf, #32156b);
    box-shadow: 0 10px 22px rgba(54, 25, 115, 0.18);
    font-weight: 900;
}

.review-slide-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.review-slide-name {
    margin: 0 0 0.28rem;
    color: #281257;
    font-size: 1rem;
    font-weight: 900;
}

.review-slide-stars {
    display: flex;
    gap: 0.13rem;
    color: #f7b500;
    font-size: 0.95rem;
    line-height: 1;
}

.review-slide-text {
    position: relative;
    margin: 0;
    color: #4d3b79;
    font-size: 0.98rem;
    line-height: 1.65;
}

.reviews-carousel-control {
    width: 42px;
}

.reviews-carousel-control .carousel-control-prev-icon,
.reviews-carousel-control .carousel-control-next-icon {
    background-color: rgba(67, 32, 143, 0.86);
    border-radius: 999px;
    background-size: 58% 58%;
    box-shadow: 0 8px 20px rgba(54, 25, 115, 0.24);
}

@media (max-width: 767px) {
    .reviews-slider-head {
        align-items: flex-start;
        flex-direction: column;
    }

    .review-slide-card {
        min-height: 240px;
    }
}

.product-card {
    position: relative;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 1rem;
    padding: 0.85rem;
    display: flex;
    flex-direction: column;
    height: 100%;
    box-shadow: 0 6px 14px rgba(12, 56, 102, 0.05);
    transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
    overflow: hidden;
}

.product-card img {
    transition: transform 250ms ease;
}

.product-image-wrap {
    width: 100%;
    aspect-ratio: 1 / 1;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: linear-gradient(180deg, #ffffff 0%, #ffffff 100%);
    /*background: linear-gradient(180deg, #f9fbff 0%, #eef5fd 100%);*/
    border: 1px solid #e2ecf8;
    border-radius: 1rem;
    padding: 0.85rem;
    margin-bottom: 0.75rem;
}

.product-image-wrap img:not(.condition-badge) {
    width: 100%;
    height: 100%;
    object-fit: contain;
    margin: 0 !important;
    display: block;
}

.product-card:hover {
    transform: translateY(-4px);
    border-color: #c5def9;
    box-shadow: var(--card-shadow);
}

.product-card:hover img {
    transform: scale(1.03);
}

.product-link {
    text-decoration: none;
    color: inherit;
    display: inline-block;
}

.product-link:hover {
    color: inherit;
}

.product-card > .small.text-muted {
    min-height: 1.25rem;
}

.product-title {
    min-height: 2.9rem;
}

.rating {
    min-height: 1.25rem;
}

.product-card-actions {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 0.45rem;
    margin-top: auto;
}

.product-card-actions .btn {
    width: 100%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.35rem;
    white-space: nowrap;
}

.product-card-actions .buy-now {
    grid-column: 1 / -1;
}

.product-details-btn {
    background: linear-gradient(135deg, var(--wm-blue), var(--wm-blue-700));
    border: none;
    color: #fff;
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    padding: 0.35rem 0.75rem;
    box-shadow: 0 6px 12px rgba(0, 88, 177, 0.25);
    transition: transform 180ms ease, box-shadow 180ms ease, filter 180ms ease;
}

.product-details-btn:hover {
    color: #fff;
    transform: translateY(-1px);
    box-shadow: 0 10px 18px rgba(0, 88, 177, 0.35);
    filter: brightness(1.02);
}

.wallet-balance {
    font-size: 1.6rem;
    font-weight: 700;
    color: #0d6efd;
}

.wallet-log-list,
.order-log-list {
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
}

.wallet-log-item {
    padding: 0.75rem;
    border-radius: 14px;
    background: #f8f9fb;
    border: 1px solid #edf0f5;
}

.wallet-log-meta {
    display: flex;
    justify-content: space-between;
    font-size: 0.8rem;
    color: #6c757d;
    margin-top: 0.35rem;
}

.wallet-log-amount {
    font-weight: 600;
    margin-left: 0.5rem;
    color: #1f2b3a;
}

.wallet-log-note {
    margin-top: 0.35rem;
    font-size: 0.85rem;
    color: #4f5b6b;
}

.order-accordion-head {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    align-items: center;
    width: 100%;
    justify-content: space-between;
}

.order-log-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.35rem 0;
    border-bottom: 1px dashed #e3e6ef;
    font-size: 0.9rem;
}

.order-log-item:last-child {
    border-bottom: none;
}

.order-log-status {
    font-weight: 600;
    color: #1f2b3a;
}

.order-log-date {
    color: #6c757d;
    font-size: 0.82rem;
}

.account-tabs {
    gap: 0.5rem;
}

.account-tabs .nav-link {
    border-radius: 999px;
    padding: 0.45rem 1rem;
    font-weight: 600;
    color: #1f2b3a;
    background: #f4f6fb;
    border: 1px solid #e3e7f1;
}

.account-tabs .nav-link.active {
    background: var(--wm-blue);
    border-color: var(--wm-blue);
    color: #fff;
}

.account-summary {
    display: grid;
    gap: 0.8rem;
}

.account-summary-item {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    font-size: 0.9rem;
    color: #1f2b3a;
}

.account-summary-item span {
    color: #6c757d;
    font-weight: 500;
}

.product-details-btn i {
    font-size: 0.9rem;
}

.icon-btn {
    border: 1px solid var(--border);
    background: #fff;
    border-radius: 999px;
    width: 30px;
    height: 30px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #98a8ba;
}

.icon-btn.active {
    color: #d22852;
    border-color: #f3bfd0;
    background: #fff4f7;
}

.icon-btn-mini {
    width: 26px;
    height: 26px;
}

.wishlist-float-btn {
    position: absolute;
    top: 0.7rem;
    right: 0.7rem;
    z-index: 2;
}

html[dir="rtl"] .wishlist-float-btn {
    right: auto;
    left: 0.7rem;
}

.product-image-wrap {
    position: relative;
    display: block;
}

.condition-badge {
    position: absolute;
    top: 6px;
    right: 6px;
    width: 28%;
    max-width: 72px;
    min-width: 42px;
    height: auto;
    pointer-events: none;
    z-index: 2;
}

.product-badge {
    display: inline-block;
    background: #eaf4ff;
    color: #11518a;
    border-radius: 999px;
    padding: 0.2rem 0.55rem;
    font-size: 0.72rem;
    font-weight: 700;
    margin-bottom: 0.55rem;
}

.product-title {
    min-height: 2.8rem;
}

.rating {
    color: #496684;
}

.card-soft {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 1.2rem;
    box-shadow: var(--card-shadow-soft);
}

.product-page .breadcrumb {
    font-size: 0.9rem;
}

.product-page .breadcrumb a {
    text-decoration: none;
}

.product-gallery {
    display: grid;
    gap: 1rem;
}

.product-gallery-main {
    background: #f6f9ff;
    border-radius: 1rem;
    padding: 1rem;
    min-height: 420px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.product-gallery-main img {
    width: 100%;
    max-width: 100%;
    min-width: min(320px, 100%);
    min-height: 320px;
    max-height: 420px;
    object-fit: contain;
}

.product-gallery-thumbs {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.5rem;
}

.thumb-btn {
    border: 1px solid var(--border);
    background: #fff;
    border-radius: 0.75rem;
    padding: 0.3rem;
    transition: border-color 150ms ease, box-shadow 150ms ease;
}

.thumb-btn img {
    width: 100%;
    border-radius: 0.6rem;
}

.thumb-btn.active,
.thumb-btn:hover {
    border-color: #97c1f5;
    box-shadow: 0 6px 14px rgba(12, 56, 102, 0.08);
}

.gallery-actions {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.product-main .product-title {
    font-size: 1.7rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.rating-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    background: #fff1c9;
    color: #5e3a00;
    border-radius: 999px;
    padding: 0.2rem 0.6rem;
    font-weight: 700;
}

.price-stack .price-row {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.product-condition-line {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.28rem 0.65rem;
    border-radius: 999px;
    background: #f6f9ff;
    border: 1px solid var(--border);
}

.product-condition-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--muted);
    font-weight: 700;
}

.product-condition-value {
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--wm-blue-900);
}

.delivery-box {
    display: grid;
    gap: 0.75rem;
    background: #f8fbff;
    border: 1px dashed #c6dbf3;
    border-radius: 1rem;
    padding: 1rem;
    margin-bottom: 1rem;
}

.delivery-icon {
    width: 36px;
    height: 36px;
    border-radius: 0.75rem;
    background: #eaf4ff;
    color: #0f4d89;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
}

.variant-box {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 1rem;
    padding: 0.9rem;
    margin-bottom: 1rem;
}

.variant-box .btn.active {
    background: #eaf4ff;
    border-color: #8abaf0;
}

.variant-option--condition {
    background-color: var(--variant-condition-color, #4caf50) !important;
    border-color: var(--variant-condition-color, #4caf50) !important;
    color: #fff !important;
}

.variant-option--condition:hover,
.variant-option--condition:focus,
.variant-option--condition.active {
    background-color: var(--variant-condition-color, #4caf50) !important;
    border-color: var(--variant-condition-color, #4caf50) !important;
    color: #fff !important;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
}

.product-gallery-main {
    position: relative;
}

.product-stock-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    z-index: 2;
    padding: 0.55rem 0.9rem;
    border-radius: 999px;
    background: rgba(130, 22, 22, 0.92);
    color: #fff;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    box-shadow: 0 12px 28px rgba(74, 10, 10, 0.22);
}

.product-actions {
    display: grid;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.product-usp {
    display: grid;
    gap: 0.4rem;
    font-size: 0.9rem;
    color: var(--muted);
}

.product-usp i {
    color: #0f4d89;
    margin-right: 0.35rem;
}

.buy-box {
    position: sticky;
    top: 110px;
    align-self: start;
}

.buy-box-header {
    padding: 1.1rem 1.1rem 0;
}

.buy-box-body {
    padding: 1rem 1.1rem 1.2rem;
    display: grid;
    gap: 0.8rem;
}

.price-block {
    display: flex;
    align-items: baseline;
    gap: 0.4rem;
}

.qty-picker {
    display: grid;
    grid-template-columns: 36px 1fr 36px;
    align-items: center;
    gap: 0.5rem;
    background: #f5f8ff;
    border-radius: 999px;
    padding: 0.3rem 0.5rem;
    text-align: center;
}

.qty-value {
    font-weight: 700;
}

.qty-picker--disabled {
    opacity: 0.55;
    pointer-events: none;
}

.buy-box-meta {
    display: grid;
    gap: 0.4rem;
    font-size: 0.88rem;
    color: var(--muted);
}

.buy-box-meta i {
    color: #0f4d89;
    margin-right: 0.35rem;
}

.product-detail-grid {
    display: grid;
    gap: 1rem;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.detail-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 1rem;
    padding: 1.2rem;
    box-shadow: var(--card-shadow-soft);
}

.detail-list {
    padding-left: 1.1rem;
    color: var(--muted);
}

.detail-tags {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin-top: 0.75rem;
}

.detail-tags span {
    background: #eaf4ff;
    color: #0f4d89;
    border-radius: 999px;
    padding: 0.25rem 0.6rem;
    font-size: 0.78rem;
    font-weight: 700;
}

.spec-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 0.6rem 1rem;
    font-size: 0.9rem;
}

.spec-grid span {
    display: block;
    color: var(--muted);
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.reviews-section {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 1.2rem;
    padding: 1.5rem;
    box-shadow: var(--card-shadow-soft);
}

.reviews-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 1.2rem;
}

.reviews-grid {
    display: grid;
    grid-template-columns: minmax(240px, 320px) 1fr;
    gap: 1.2rem;
}

.review-summary {
    padding: 1.2rem;
}

.review-score {
    font-size: 2.6rem;
    font-weight: 800;
}

.rating-stars i {
    color: #ffb400;
}

.star-rating-input {
    display: inline-flex;
    gap: 0.25rem;
    font-size: 1.6rem;
}

.star-rating-input .star-input {
    color: #ccc;
    cursor: pointer;
    transition: color 150ms ease;
}

.star-rating-input .star-input.active,
.star-rating-input .star-input.hovered {
    color: #ffb400;
}

.rating-bars {
    display: grid;
    gap: 0.35rem;
    font-size: 0.85rem;
    color: var(--muted);
}

.rating-bars .bar {
    height: 6px;
    border-radius: 999px;
    background: #edf1f8;
    overflow: hidden;
    margin: 0 0.4rem;
    flex: 1;
}

.rating-bars .bar div {
    height: 100%;
    background: linear-gradient(90deg, #0071dc, #00a6dc);
}

.rating-bars div {
    display: flex;
    align-items: center;
}

.review-list {
    display: grid;
    gap: 1rem;
}

.review-card {
    border: 1px solid var(--border);
    border-radius: 1rem;
    padding: 1rem;
    background: #fdfefe;
}

.product-carousel .mini-card {
    display: flex;
    gap: 0.75rem;
    align-items: center;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 1rem;
    padding: 0.6rem;
    box-shadow: var(--card-shadow-soft);
}

.product-carousel .mini-card img {
    width: 64px;
    height: 64px;
    object-fit: cover;
    border-radius: 0.75rem;
}

@media (max-width: 992px) {
    .buy-box {
        position: static;
    }

    .reviews-grid {
        grid-template-columns: 1fr;
    }
}

.cart-page .section-title {
    font-size: 1.8rem;
}

.cart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.pickup-toggle {
    background: #f5f8ff;
    border-color: #cfe0f5;
    color: #0f4d89;
}

.cart-delivery {
    padding: 1rem 1.2rem;
}

.pickup-options {
    padding: 1rem;
}

.pickup-options-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.9rem;
}

.pickup-icon {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: #eaf4ff;
    color: #0f4d89;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.pickup-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 0.8rem;
}

.pickup-card {
    border: 1px solid var(--border);
    background: #fff;
    border-radius: 0.9rem;
    padding: 1rem;
    text-align: center;
    display: grid;
    gap: 0.25rem;
    align-items: center;
    transition: border-color 150ms ease, box-shadow 150ms ease;
}

.pickup-card-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #f2f4f7;
    color: #7b8794;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 0.3rem;
    font-size: 1.2rem;
}

.pickup-card.active {
    border: 2px solid #111;
    box-shadow: 0 8px 18px rgba(17, 17, 17, 0.08);
}

.pickup-card.active .pickup-card-icon {
    background: #eaf4ff;
    color: #0f4d89;
}

.pickup-options.is-collapsed .pickup-grid {
    display: none;
}

.pickup-options.is-collapsed .pickup-options-head i {
    transform: rotate(180deg);
}

.pickup-options.is-collapsed {
    display: none;
}

.cart-items {
    display: grid;
    gap: 1rem;
    padding: 1rem;
}

.cart-line {
    display: grid;
    grid-template-columns: 110px 1fr;
    gap: 1rem;
    border: 1px solid var(--border);
    border-radius: 1rem;
    padding: 1rem;
    background: #fff;
}

.cart-line-media img {
    width: 100%;
    height: 100px;
    object-fit: contain;
    background: #f5f8ff;
    border-radius: 0.75rem;
    padding: 0.5rem;
}

.cart-line-meta {
    display: flex;
    gap: 0.4rem;
    flex-wrap: wrap;
    margin: 0.5rem 0 0.75rem;
}

.meta-pill {
    background: #eaf4ff;
    color: #0f4d89;
    font-size: 0.72rem;
    font-weight: 700;
    border-radius: 999px;
    padding: 0.2rem 0.5rem;
}

.cart-line-actions {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    flex-wrap: wrap;
}

.cart-line-actions .btn-link {
    text-decoration: none;
    padding: 0;
}

.qty-stepper {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: #f5f8ff;
    border-radius: 999px;
    padding: 0.25rem 0.5rem;
}

.line-total {
    font-weight: 700;
    margin-left: auto;
}

.checkout-card {
    padding: 1rem;
}

.checkout-header {
    display: grid;
    gap: 0.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border);
}

.checkout-body {
    padding: 1rem 0;
    border-bottom: 1px solid var(--border);
}

.checkout-perks {
    padding: 0.9rem 0;
    border-bottom: 1px solid var(--border);
    color: #0f4d89;
}

.checkout-perks i {
    font-size: 1.2rem;
    margin-top: 0.1rem;
}

.gift-box {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.8rem 0;
    border-bottom: 1px solid var(--border);
}

.checkout-card-banner {
    display: grid;
    grid-template-columns: 64px 1fr;
    gap: 0.75rem;
    align-items: center;
    padding: 0.9rem;
    background: #f5f8ff;
    border-radius: 0.9rem;
    margin-top: 0.8rem;
}

.checkout-card-banner-img {
    width: 64px;
    height: 64px;
    object-fit: contain;
    border-radius: 0.75rem;
    background: #fff;
    padding: 0.35rem;
    border: 1px solid var(--border);
}

.cart-reco {
    padding: 1rem;
}

.mini-reco {
    border: 1px solid var(--border);
    border-radius: 1rem;
    padding: 0.75rem;
    background: #fff;
    height: 100%;
}

.mini-reco img {
    width: 100%;
    height: 120px;
    object-fit: contain;
    background: #f5f8ff;
    border-radius: 0.75rem;
    margin: 0.5rem 0;
}

.mini-reco-desc {
    font-size: 0.78rem;
    color: var(--muted);
    margin: 0.35rem 0;
}

.ship-estimates {
    font-size: 0.78rem;
    color: #1b2c45;
    display: grid;
    gap: 0.15rem;
    margin: 0.35rem 0 0.6rem;
}

.ship-estimates span {
    font-weight: 700;
    color: #0f4d89;
    margin-right: 0.25rem;
}

.explore-picks .mini-reco {
    border: 1px solid #e3ecf7;
    box-shadow: 0 10px 18px rgba(12, 56, 102, 0.06);
}

.explore-picks .btn-primary {
    background: #3b2bff;
    border-color: #3b2bff;
}

.explore-picks .btn-primary:hover {
    background: #2f21d7;
    border-color: #2f21d7;
}

.save-with {
    color: #2f1db8;
    font-weight: 700;
    font-size: 0.8rem;
    margin-top: 0.25rem;
}

@media (max-width: 768px) {
    .cart-line {
        grid-template-columns: 1fr;
    }

    .cart-line-media img {
        height: 140px;
    }

    .line-total {
        margin-left: 0;
    }
}

.rating i {
    color: #ffc220;
}

.price {
    font-weight: 800;
    color: #0f3864;
}

.old-price {
    color: #7e92a8;
    text-decoration: line-through;
    margin-left: 0.25rem;
    font-size: 0.9rem;
}

.catalog-filters {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(244, 250, 255, 0.96));
    border: 1px solid #d2e5fb;
    box-shadow: var(--card-shadow-soft);
}

.catalog-filters .form-control,
.catalog-filters .form-select {
    border-color: #cfe1f6;
}

.catalog-filters .form-control:focus,
.catalog-filters .form-select:focus {
    border-color: #8abcf2;
    box-shadow: 0 0 0 0.2rem rgba(0, 113, 220, 0.12);
}

.catalog-section .form-control,
.catalog-section .form-select,
.catalog-section .btn,
.catalog-section .form-range {
    min-height: 44px;
}

.catalog-section .pagination .page-link {
    border-radius: 0.6rem;
    margin: 0 0.15rem;
    border-color: #d4e5f7;
    color: #184a79;
}

.catalog-section .pagination .page-item.active .page-link {
    background: linear-gradient(90deg, #0071dc, #0064c4);
    border-color: #0064c4;
}

.filter-row .filter-btn {
    border: 1px solid #c1daf6;
    background: #fff;
    color: #174776;
    border-radius: 999px;
    padding: 0.45rem 1rem;
    font-weight: 700;
}

.filter-row .filter-btn.active {
    color: #fff;
    background: var(--wm-blue);
    border-color: var(--wm-blue);
}

.reco-item.hidden {
    display: none;
}

.mini-product {
    border: 1px solid var(--border);
    border-radius: 0.9rem;
    padding: 0.85rem;
    background: #fff;
    font-weight: 600;
    display: flex;
    justify-content: space-between;
    gap: 0.5rem;
    box-shadow: 0 4px 10px rgba(12, 56, 102, 0.04);
}

.mini-product span {
    color: #0f3864;
    font-weight: 800;
}

.inline-promo {
    background: #fff;
    border: 1px solid var(--border);
    box-shadow: var(--card-shadow-soft);
}

.inline-promo.alt {
    background: linear-gradient(140deg, #ffffff, #eff7ff 60%);
}

.dept-card {
    text-decoration: none;
    color: var(--ink);
    border: 1px solid var(--border);
    border-radius: 0.95rem;
    padding: 1rem;
    background: linear-gradient(135deg, #ffffff 0, #f2f8ff 100%);
    font-weight: 700;
    transition: all 180ms ease;
}

.dept-card:hover {
    border-color: #b6d5f8;
    transform: translateY(-2px);
    box-shadow: var(--card-shadow-soft);
}

.brand-tile {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 1rem;
    padding: 1.2rem;
    text-align: center;
    font-weight: 800;
    color: #1c4f80;
    transition: transform 180ms ease, box-shadow 180ms ease;
}

.brand-tile:hover {
    transform: translateY(-3px);
    box-shadow: var(--card-shadow-soft);
}

.app-card {
    color: #fff;
    box-shadow: var(--card-shadow);
    background: linear-gradient(120deg, #117f6f, #0b5f8f 64%, #0b467e 100%);
}

.newsletter-wrap {
    background: #fff;
    border: 1px solid var(--border);
    box-shadow: var(--card-shadow-soft);
}

.newsletter .form-control,
.newsletter .btn {
    min-height: 48px;
}

.offcanvas .line-item,
.cart-summary {
    border: 1px solid var(--border);
    background: #fff;
}

.offcanvas-header {
    background: linear-gradient(180deg, #f6faff 0%, #ffffff 100%);
    border-bottom: 1px solid var(--border);
}

.offcanvas .offcanvas-body {
    background: #fbfdff;
}

.offcanvas .btn-light {
    border: 1px solid var(--border);
}

#cartCanvas {
    --bs-offcanvas-width: min(460px, 96vw);
}

.offcanvas-backdrop.show {
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.cart-canvas-head {
    background: #fff;
    border-bottom: 1px solid #e4e8f2;
}

.cart-canvas-head .offcanvas-title {
    color: #4f138f;
    font-size: 2rem;
    font-weight: 800;
}

.cart-canvas-body {
    background: #f8f8fd;
}

.cart-drawer-items .line-item {
    border: 1px solid #d7dbe7;
    border-radius: 0.7rem;
    box-shadow: none;
}

.cart-summary {
    border-radius: 0.9rem;
    border: 0;
    background: #fff;
}

.cart-subtotal-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #4f138f;
    font-size: 2rem;
    font-weight: 800;
}

.cart-subtotal-row b {
    font-size: 2rem;
}

.cart-tax-note {
    color: #5f6078;
    font-size: 0.95rem;
}

.cart-ship-free {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #4f138f;
    font-weight: 800;
    font-size: 1.05rem;
}

.cart-reco-title {
    color: #4f138f;
    font-size: 1.15rem;
    font-weight: 800;
}

.cart-reco-list {
    display: grid;
    gap: 0.65rem;
    max-height: 180px;
    overflow: auto;
}

.cart-reco-item {
    display: grid;
    grid-template-columns: 60px 1fr auto;
    align-items: center;
    gap: 0.6rem;
    border: 1px solid #d7dbe7;
    border-radius: 0.65rem;
    padding: 0.5rem;
    background: #fff;
}

.cart-reco-item img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 0.45rem;
}

.cart-reco-item-name {
    font-size: 0.82rem;
    font-weight: 700;
    line-height: 1.2;
    color: #22284a;
}

.cart-reco-item-price {
    font-size: 0.82rem;
    color: #4f138f;
    font-weight: 800;
}

.cart-reco-add {
    border: 0;
    border-radius: 0.5rem;
    background: #6d17c6;
    color: #fff;
    font-weight: 800;
    font-size: 0.74rem;
    padding: 0.38rem 0.55rem;
}

.cart-checkout-btn {
    background: linear-gradient(90deg, #6d17c6, #8b23de);
    border-color: #7e1dd1;
    font-size: 1rem;
    font-weight: 800;
    letter-spacing: 0.01em;
}

@media (max-width: 576px) {
    .cart-canvas-head .offcanvas-title {
        font-size: 1.45rem;
    }

    .cart-subtotal-row,
    .cart-subtotal-row b {
        font-size: 1.35rem;
    }
}

#appToast {
    background: #0e3c6c;
    color: #fff;
}

.modal .modal-content {
    border: 1px solid var(--border);
    border-radius: 1rem;
    box-shadow: 0 20px 36px rgba(12, 50, 92, 0.18);
}

.modal .modal-header {
    background: linear-gradient(180deg, #f6faff 0%, #ffffff 100%);
    border-bottom: 1px solid var(--border);
}

#newsletterMessage.success {
    color: #0f7a3f;
}

#newsletterMessage.error {
    color: #b02a37;
}

.page-content {
    line-height: 1.8;
    color: #333;
}

.page-content h2,
.page-content h3,
.page-content h4 {
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}

.page-content p {
    margin-bottom: 1rem;
}

.page-content ul,
.page-content ol {
    padding-left: 1.5rem;
    margin-bottom: 1rem;
}

.page-content table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 1rem;
}

.page-content table th,
.page-content table td {
    border: 1px solid #dee2e6;
    padding: 0.5rem 0.75rem;
}

.site-footer {
    background:
        radial-gradient(circle at 12% 18%, rgba(0, 166, 220, 0.2), transparent 36%),
        linear-gradient(135deg, #081a31 0%, #0a2446 55%, #0d2f59 100%);
    color: #dbeaff;
    border-top: 1px solid rgba(162, 204, 245, 0.24);
}

.footer-main {
    align-items: flex-start;
}

.footer-brand {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
}

.footer-logo {
    height: 52px;
    width: auto;
    object-fit: contain;
    display: block;
    max-width: 100%;
}

html[dir="rtl"] .footer-brand {
    direction: ltr;
}

html[dir="rtl"] .footer-logo {
    transform: none !important;
    filter: none !important;
}

.footer-tagline {
    max-width: 34ch;
    color: #bcd5ee;
    font-size: 0.95rem;
    line-height: 1.6;
    font-weight: 600;
}

.footer-title {
    font-family: "Quicksand", "Nunito", sans-serif;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #ffffff;
    margin: 0 0 0.85rem;
    font-weight: 800;
}

.footer-list,
.footer-contact {
    display: grid;
    gap: 0.5rem;
    font-size: 0.92rem;
}

.footer-list a,
.footer-contact a {
    font-weight: 600;
}

.site-footer a {
    color: #d4e7ff;
    text-decoration: none;
}

.site-footer a:hover {
    color: #fff;
}

.socials a {
    display: inline-flex;
    width: 36px;
    height: 36px;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 1px solid rgba(176, 212, 244, 0.46);
    background: rgba(255, 255, 255, 0.05);
    font-size: 0.95rem;
    transition: transform 170ms ease, border-color 170ms ease, background-color 170ms ease;
}

.socials a:hover {
    transform: translateY(-2px);
    border-color: #fff;
    background: rgba(255, 255, 255, 0.14);
}

.footer-contact li {
    display: flex;
    gap: 0.5rem;
    align-items: flex-start;
    line-height: 1.5;
}

.footer-contact i {
    color: #8bc8ff;
    margin-top: 0.1rem;
}

.footer-divider {
    border-color: rgba(192, 219, 244, 0.24);
}

.footer-legal a {
    color: #cfe4f8;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.02em;
}

.footer-legal {
    width: 100%;
    justify-content: center;
}

.footer-copy {
    color: #b9d3ec;
    font-size: 0.84rem;
    font-weight: 700;
    text-align: center;
    width: 100%;
}

@media (max-width: 991px) {
    .footer-tagline {
        max-width: none;
    }
}

@media (max-width: 575px) {
    .site-footer {
        padding-top: 2.4rem !important;
        padding-bottom: 2.2rem !important;
    }

    .footer-title {
        margin-top: 0.5rem;
    }

    .footer-legal {
        gap: 0.7rem !important;
    }
}

.back-to-top {
    position: fixed;
    right: 1.2rem;
    bottom: 1.2rem;
    width: 42px;
    height: 42px;
    border: 0;
    border-radius: 999px;
    background: linear-gradient(180deg, #0071dc, #005dbc);
    color: #fff;
    box-shadow: 0 10px 18px rgba(6, 53, 102, 0.25);
    z-index: 40;
    opacity: 0;
    pointer-events: none;
    transform: translateY(10px);
    transition: all 180ms ease;
}

.back-to-top.visible {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

#quickViewModal .modal-content {
    border: 1px solid var(--border);
    border-radius: 1rem;
}

#quickViewModal .modal-header {
    border-bottom: 1px solid var(--border);
}

.reveal {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 500ms ease, transform 500ms ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.pay-image-card {
    background: transparent;
    border: 0;
    border-radius: 0;
    padding: 0;
    box-shadow: none;
    text-align: center;
}

.pay-logo-wrap {
    width: 96px;
    height: 96px;
    border-radius: 50%;
    border: 0;
    margin: 0.2rem auto 0.35rem;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.pay-logo-link {
    width: 100%;
    height: 100%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.pay-image-card img {
    width: 72px;
    height: 72px;
    object-fit: contain;
    display: block;
}

.pay-carousel-control {
    width: 42px;
}

.pay-carousel-control .carousel-control-prev-icon,
.pay-carousel-control .carousel-control-next-icon {
    background-color: rgba(11, 51, 95, 0.75);
    border-radius: 999px;
    background-size: 60% 60%;
}

@media (max-width: 991px) {
    .store-header {
        position: static;
    }

    .hero-mega {
        grid-template-columns: 1fr;
        border: 0;
        border-radius: 0;
        box-shadow: none;
        background: transparent;
    }

    .hero-category-menu {
        flex-direction: row;
        align-items: center;
        gap: 0.45rem;
        border: 1px solid var(--border);
        border-radius: 0.85rem;
        padding: 0.45rem;
        margin-left: 0.75rem;
        margin-right: 0.75rem;
        margin-bottom: 0.85rem;
        overflow-x: auto;
        scrollbar-width: thin;
    }

    .hero-category-menu::-webkit-scrollbar {
        height: 6px;
    }

    .hero-category-link {
        border: 1px solid #d7e7f8;
        border-radius: 999px;
        white-space: nowrap;
        padding: 0.42rem 0.72rem;
        font-size: 0.87rem;
        gap: 0.36rem;
    }

    .hero-category-link:hover,
    .hero-category-link.is-active {
        border-color: var(--wm-cyan);
        box-shadow: inset 0 0 0 1px var(--wm-yellow);
    }

    .hero-display {
        min-height: auto;
        border-radius: 0.75rem;
        overflow: hidden;
    }

    .hero-submenu-area {
        display: none;
    }

    .hero-slider-area {
        height: auto;
        opacity: 1 !important;
        visibility: visible !important;
        pointer-events: auto !important;
    }

    .hero-slider-area,
    .hero-slider-area .carousel,
    .hero-slider-area .carousel-inner,
    .hero-slider-area .carousel-item,
    .hero-slider-area .carousel-item .hero-card {
        height: auto !important;
    }

    .hero-card {
        min-height: 260px;
        padding: 2rem;
        border-radius: 0.75rem;
        background: none;
    }

    .hero-card::before {
        display: none;
    }

    .hero-card:not(.hero-card--with-image) {
        display: none;
    }

    .hero-card--with-image {
        display: block;
        min-height: auto !important;
    }

    .hero-card__img {
        border-radius: 0.75rem;
    }

    .hero-card__content {
        padding: 1.5rem;
        border-radius: 0 0 0.75rem 0.75rem;
    }

    .countdown span {
        min-width: 64px;
    }
}

@media (max-width: 575px) {
    .safqa-header {
        padding: 0.75rem 0;
    }

    .safqa-header-inner {
        gap: 0.85rem;
    }

    .safqa-actions {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        align-items: stretch;
    }

    .language-switch-form,
    .safqa-cart-wrap {
        justify-self: center;
    }

    .safqa-action {
        justify-content: center;
        text-align: center;
        font-size: 0.8rem;
    }

    .safqa-action i {
        flex: 0 0 auto;
    }

    .safqa-cart {
        width: 100%;
    }

    .hero .container {
        padding-left: 0;
        padding-right: 0;
    }

    .hero-display {
        border-radius: 0;
    }

    .hero-card {
        min-height: 180px;
        padding: 1.2rem;
        border-radius: 0;
        background: none;
    }

    .hero-card::before {
        display: none;
    }

    .hero-card:not(.hero-card--with-image) {
        display: none;
    }

    .hero-card--with-image {
        display: block;
        min-height: auto !important;
    }

    .hero-card__img {
        border-radius: 0;
    }

    .hero-card__content {
        padding: 1.2rem;
        border-radius: 0;
    }

    .header-actions .action-pill {
        padding: 0.4rem 0.65rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    .reveal,
    .promo-tile,
    .product-card,
    .dept-card,
    .cat-pill,
    .back-to-top,
    .brand-tile,
    .trust-item,
    .last-piece-feature,
    .last-piece-item,
    .last-piece-link {
        transition: none;
    }

    .last-piece-shell::before,
    .last-piece-shell::after,
    .last-piece-feature::before,
    .last-piece-item::before {
        animation: none;
    }
}

.payment-method-grid {
    display: grid;
    gap: 0.75rem;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.payment-method-option {
    display: block;
    margin: 0;
}

.payment-method-option input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.payment-method-card {
    align-items: center;
    background: #fff;
    border: 1px solid rgba(15, 23, 42, 0.14);
    border-radius: 8px;
    cursor: pointer;
    display: grid;
    gap: 0.75rem;
    grid-template-columns: auto 1fr auto;
    min-height: 86px;
    padding: 0.9rem 1rem;
    transition: border-color 0.16s ease, box-shadow 0.16s ease, background-color 0.16s ease;
}

.payment-method-card:hover {
    border-color: rgba(13, 110, 253, 0.45);
    box-shadow: 0 8px 22px rgba(15, 23, 42, 0.08);
}

.payment-method-icon,
.payment-method-check {
    align-items: center;
    border-radius: 999px;
    display: inline-flex;
    height: 38px;
    justify-content: center;
    width: 38px;
}

.payment-method-icon {
    background: rgba(13, 110, 253, 0.08);
    color: #0d6efd;
    font-size: 1.1rem;
}

.payment-method-copy {
    display: grid;
    gap: 0.15rem;
    min-width: 0;
}

.payment-method-copy strong {
    color: #0f172a;
    font-size: 0.95rem;
    line-height: 1.2;
}

.payment-method-copy small {
    color: #64748b;
    line-height: 1.35;
}

.payment-method-check {
    background: rgba(13, 110, 253, 0.1);
    color: #0d6efd;
    opacity: 0;
    transform: scale(0.85);
    transition: opacity 0.16s ease, transform 0.16s ease;
}

.payment-method-option input:checked + .payment-method-card {
    background: rgba(13, 110, 253, 0.04);
    border-color: #0d6efd;
    box-shadow: 0 0 0 3px rgba(13, 110, 253, 0.12);
}

.payment-method-option input:checked + .payment-method-card .payment-method-check {
    opacity: 1;
    transform: scale(1);
}

.payment-method-option input:focus-visible + .payment-method-card {
    outline: 3px solid rgba(13, 110, 253, 0.25);
    outline-offset: 2px;
}

@media (max-width: 767px) {
    .payment-method-grid {
        grid-template-columns: 1fr;
    }
}

/* Premium order confirmation */
.thank-you-body {
    background: #f5f8fc;
}

.thank-you-page {
    color: #13263f;
    direction: inherit;
    text-align: start;
}

.thank-you-page h1,
.thank-you-page h2,
.thank-you-page h3 {
    letter-spacing: 0;
}

.thank-you-hero {
    background:
        linear-gradient(135deg, rgba(67, 32, 140, 0.94), rgba(0, 113, 220, 0.88)),
        url("/front/logo.png");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover, 220px;
    color: #fff;
    overflow: hidden;
    padding: clamp(3rem, 6vw, 5.8rem) 0 clamp(2.2rem, 4vw, 4rem);
}

.thank-you-hero-grid {
    align-items: center;
    display: grid;
    gap: clamp(1.2rem, 3vw, 2.2rem);
    grid-template-columns: minmax(0, 1fr) minmax(320px, 460px);
}

.thank-you-kicker {
    align-items: center;
    display: inline-flex;
    font-weight: 800;
    gap: 0.6rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.thank-you-check {
    align-items: center;
    background: #32d583;
    border: 3px solid rgba(255, 255, 255, 0.8);
    border-radius: 999px;
    box-shadow: 0 12px 30px rgba(12, 27, 54, 0.22);
    color: #062a18;
    display: inline-flex;
    height: 42px;
    justify-content: center;
    width: 42px;
}

.thank-you-hero h1 {
    color: #fff;
    font-size: clamp(2.2rem, 4.8vw, 5rem);
    font-weight: 900;
    line-height: 1.02;
    margin: 0 0 1rem;
    max-width: 760px;
}

.thank-you-lede {
    color: rgba(255, 255, 255, 0.86);
    font-size: clamp(1rem, 1.5vw, 1.22rem);
    font-weight: 600;
    line-height: 1.65;
    margin: 0;
    max-width: 660px;
}

.thank-you-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin-top: 1.5rem;
}

.thank-you-actions .btn {
    align-items: center;
    display: inline-flex;
    gap: 0.55rem;
    justify-content: center;
}

.thank-you-summary-card,
.thank-you-panel {
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid rgba(215, 229, 245, 0.95);
    border-radius: 24px;
    box-shadow: 0 24px 60px rgba(7, 31, 64, 0.16);
}

.thank-you-summary-card {
    color: #13263f;
    padding: clamp(1rem, 2vw, 1.35rem);
}

.thank-you-summary-top,
.thank-you-total-row,
.thank-you-panel-head {
    align-items: flex-start;
    display: flex;
    gap: 1rem;
    justify-content: space-between;
}

.thank-you-summary-top span,
.thank-you-total-row span {
    color: #5c708a;
    display: block;
    font-size: 0.82rem;
    font-weight: 800;
}

.thank-you-summary-top strong {
    color: #13263f;
    display: block;
    font-size: 1.35rem;
    font-weight: 900;
    margin-top: 0.1rem;
}

.thank-you-product-stack {
    align-items: center;
    display: flex;
    margin: 1.4rem 0;
    min-height: 86px;
}

.thank-you-product-stack img,
.thank-you-product-stack > span {
    background: #fff;
    border: 3px solid #fff;
    border-radius: 20px;
    box-shadow: 0 14px 28px rgba(12, 56, 102, 0.14);
    height: 82px;
    margin-right: -14px;
    object-fit: cover;
    width: 82px;
}

.thank-you-product-stack > span {
    align-items: center;
    color: #43208c;
    display: inline-flex;
    font-weight: 900;
    justify-content: center;
}

.thank-you-total-row {
    align-items: center;
    border-top: 1px solid #e3edf8;
    padding-top: 1rem;
}

.thank-you-total-row strong {
    color: #13263f;
    font-size: 1.45rem;
    font-weight: 900;
}

.thank-you-mini-grid {
    display: grid;
    gap: 0.7rem;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 1rem;
}

.thank-you-mini-grid > div {
    background: #f5f8ff;
    border: 1px solid #d7e5f5;
    border-radius: 18px;
    display: grid;
    gap: 0.18rem;
    min-height: 120px;
    padding: 0.85rem;
}

.thank-you-mini-grid i {
    color: #0071dc;
    font-size: 1.3rem;
}

.thank-you-mini-grid span {
    color: #5c708a;
    font-size: 0.78rem;
    font-weight: 800;
}

.thank-you-mini-grid strong {
    color: #13263f;
    font-size: 0.9rem;
    line-height: 1.35;
}

.thank-you-content {
    padding: clamp(1.4rem, 4vw, 3rem) 0 4rem;
}

.thank-you-content-grid {
    align-items: start;
    display: grid;
    gap: 1.2rem;
    grid-template-columns: minmax(0, 1fr) minmax(300px, 390px);
}

.thank-you-main,
.thank-you-side {
    display: grid;
    gap: 1.2rem;
}

.thank-you-panel {
    box-shadow: 0 14px 36px rgba(12, 56, 102, 0.08);
    overflow: hidden;
}

.thank-you-panel-head {
    border-bottom: 1px solid #e3edf8;
    padding: 1.15rem 1.2rem;
}

.thank-you-panel-head h2 {
    color: #13263f;
    font-size: 1.08rem;
    font-weight: 900;
    margin: 0;
}

.thank-you-panel-head p {
    color: #5c708a;
    font-size: 0.9rem;
    font-weight: 600;
    margin: 0.25rem 0 0;
}

.thank-you-steps {
    display: grid;
    gap: 0;
    padding: 0.5rem 1.2rem 1.2rem;
}

.thank-you-step {
    display: grid;
    gap: 0.9rem;
    grid-template-columns: 46px minmax(0, 1fr);
    padding: 0.75rem 0;
    position: relative;
}

.thank-you-step:not(:last-child)::after {
    background: #d7e5f5;
    bottom: -0.2rem;
    content: "";
    inset-inline-start: 22px;
    position: absolute;
    top: 3.55rem;
    width: 2px;
}

.thank-you-step.is-active:not(:last-child)::after {
    background: #32d583;
}

.thank-you-step > span {
    align-items: center;
    background: #eef4fb;
    border: 1px solid #d7e5f5;
    border-radius: 999px;
    color: #5c708a;
    display: inline-flex;
    height: 46px;
    justify-content: center;
    position: relative;
    width: 46px;
    z-index: 1;
}

.thank-you-step.is-active > span {
    background: #dff9ec;
    border-color: #a7efc6;
    color: #087443;
}

.thank-you-step strong {
    color: #13263f;
    display: block;
    font-weight: 900;
    margin-bottom: 0.12rem;
}

.thank-you-step p {
    color: #5c708a;
    font-weight: 600;
    line-height: 1.5;
    margin: 0;
}

.thank-you-items {
    display: grid;
}

.thank-you-item {
    align-items: center;
    border-bottom: 1px solid #e3edf8;
    display: grid;
    gap: 0.9rem;
    grid-template-columns: 68px minmax(0, 1fr) 54px minmax(112px, auto);
    padding: 1rem 1.2rem;
}

.thank-you-item:last-child {
    border-bottom: 0;
}

.thank-you-item img {
    background: #f5f8ff;
    border: 1px solid #d7e5f5;
    border-radius: 16px;
    height: 68px;
    object-fit: cover;
    width: 68px;
}

.thank-you-item strong {
    color: #13263f;
    display: -webkit-box;
    font-weight: 900;
    line-height: 1.3;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.thank-you-item span {
    color: #5c708a;
    display: block;
    font-size: 0.84rem;
    font-weight: 700;
    margin-top: 0.22rem;
}

.thank-you-item-qty,
.thank-you-item-total {
    color: #13263f;
    font-weight: 900;
    text-align: end;
    white-space: nowrap;
}

.thank-you-facts,
.thank-you-money,
.thank-you-address {
    display: grid;
    gap: 0.75rem;
    padding: 1.15rem 1.2rem;
}

.thank-you-facts > div,
.thank-you-money > div {
    align-items: center;
    display: flex;
    gap: 1rem;
    justify-content: space-between;
}

.thank-you-facts span,
.thank-you-money span,
.thank-you-address span {
    color: #5c708a;
    font-weight: 700;
}

.thank-you-facts strong,
.thank-you-money strong,
.thank-you-address strong {
    color: #13263f;
    font-weight: 900;
    text-align: end;
    word-break: break-word;
}

.thank-you-address {
    font-style: normal;
}

.thank-you-address strong,
.thank-you-address span {
    display: block;
    text-align: start;
}

.thank-you-money-total {
    border-top: 1px solid #e3edf8;
    margin-top: 0.2rem;
    padding-top: 0.85rem;
}

.thank-you-money-total strong {
    color: #43208c;
    font-size: 1.2rem;
}

.thank-you-pill {
    align-items: center;
    border-radius: 999px;
    display: inline-flex;
    font-size: 0.78rem;
    font-weight: 900;
    line-height: 1;
    min-height: 28px;
    padding: 0.42rem 0.72rem;
    white-space: nowrap;
}

.thank-you-pill-success {
    background: #dff9ec;
    color: #087443;
}

.thank-you-pill-warning {
    background: #fff3cf;
    color: #8a5600;
}

.thank-you-pill-danger {
    background: #ffe2df;
    color: #9f1f12;
}

.thank-you-pill-info,
.thank-you-pill-primary {
    background: #e0f0ff;
    color: #084e8a;
}

@media (max-width: 1100px) {
    .thank-you-hero-grid,
    .thank-you-content-grid {
        grid-template-columns: 1fr;
    }

    .thank-you-summary-card {
        max-width: 620px;
    }
}

@media (max-width: 768px) {
    .thank-you-hero {
        padding-top: 2.4rem;
    }

    .thank-you-actions .btn,
    .thank-you-summary-card {
        width: 100%;
    }

    .thank-you-mini-grid {
        grid-template-columns: 1fr;
    }

    .thank-you-summary-top,
    .thank-you-total-row,
    .thank-you-panel-head,
    .thank-you-facts > div,
    .thank-you-money > div {
        align-items: stretch;
        flex-direction: column;
    }

    .thank-you-facts strong,
    .thank-you-money strong {
        text-align: start;
    }

    .thank-you-item {
        align-items: start;
        grid-template-columns: 60px minmax(0, 1fr);
    }

    .thank-you-item img {
        height: 60px;
        width: 60px;
    }

    .thank-you-item-qty,
    .thank-you-item-total {
        grid-column: 2;
        text-align: start;
    }
}
