/**
 * Arabic typography: Cairo (body) + Alexandria (headings)
 */
html,
body {
    font-family: "Cairo", sans-serif;
}

body,
p,
a,
li,
td,
th,
label,
input,
textarea,
select,
button,
.btn,
.form-control,
.nav-link,
.breadcrumb,
.product-name,
.product-price,
.post-meta,
.rating-reviews,
.font-size-normal,
.text-default {
    font-family: "Cairo", sans-serif !important;
}

/* Wolmart star ratings use icon font glyphs — keep Cairo off these spans */
.ratings-full,
.ratings,
.ratings-full::before,
.ratings::before {
    font-family: "wolmart" !important;
    font-style: normal;
    font-weight: normal;
    letter-spacing: 0.2em;
}

h1,
h2,
h3,
h4,
h5,
h6,
.title,
.page-title,
.banner-title,
.banner-subtitle,
.icon-box-title,
.widget-title,
.product-title,
.post-title,
.category-name,
.coupon-title,
.cart-title,
.billing-title,
.page-header .page-title,
.title-sm,
.title-md,
.title-lg,
.title-underline,
.comment-author,
.card-header a {
    font-family: "Alexandria", sans-serif !important;
}

/* ── Store layout: wider content container (default theme: 1280px) ── */
.container {
    max-width: var(--store-container-max, 1400px);
}

/* Compact footer (legacy) */
.footer-compact .footer-newsletter {
    padding: 2rem 0;
}

/* ── Modern store footer ── */
.store-footer.footer {
    background: #0f172a !important;
}

.store-footer {
    margin-top: 2rem;
    background: #0f172a;
    color: #cbd5e1;
}

.store-footer__newsletter {
    position: relative;
    padding: 3.2rem 0;
    background: linear-gradient(135deg, var(--store-primary, #336699) 0%, var(--store-primary-darker, #1e4466) 55%, var(--store-primary-darkest, #0f2744) 100%);
    overflow: hidden;
}

.store-footer__newsletter::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 15% 20%, rgba(255, 255, 255, 0.12) 0%, transparent 42%),
        radial-gradient(circle at 85% 80%, rgba(249, 115, 22, 0.15) 0%, transparent 40%);
    pointer-events: none;
}

.store-footer__newsletter-inner {
    position: relative;
    z-index: 1;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1.8rem;
}

.store-footer__eyebrow {
    display: inline-block;
    margin-bottom: 0.5rem;
    padding: 0.35rem 1rem;
    font-size: 1.15rem;
    font-weight: 700;
    color: #fff;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 2rem;
    backdrop-filter: blur(4px);
}

.store-footer__newsletter-title {
    margin: 0 0 0.5rem;
    font-size: 2.2rem;
    font-weight: 800;
    color: #fff;
}

.store-footer__newsletter-desc {
    margin: 0;
    max-width: 42rem;
    font-size: 1.35rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.88);
}

.store-footer__newsletter-form {
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    gap: 0.75rem;
    flex: 1;
    min-width: min(100%, 34rem);
    max-width: 44rem;
}

.store-footer__newsletter-field {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex: 1;
    min-width: 16rem;
    padding: 0 1.2rem;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 1rem;
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.12);
}

.store-footer__newsletter-field i {
    font-size: 1.6rem;
    color: var(--store-primary, #336699);
}

.store-footer__newsletter-field .form-control {
    flex: 1;
    min-width: 0;
    padding: 1.1rem 0;
    font-size: 1.35rem;
    color: #222;
    background: transparent;
    border: none;
    box-shadow: none;
}

.store-footer__newsletter-field .form-control::placeholder {
    color: #94a3b8;
}

.store-footer__newsletter-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.55rem;
    padding: 1.1rem 1.6rem;
    font-family: inherit;
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--store-primary, #336699);
    background: #fff;
    border: none;
    border-radius: 1rem;
    cursor: pointer;
    white-space: nowrap;
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease, gap 0.3s ease;
}

.store-footer__newsletter-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(15, 23, 42, 0.2);
    gap: 0.85rem;
}

.store-footer__main {
    padding: 3.5rem 0 2.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.store-footer__logo {
    display: inline-block;
    margin-bottom: 1.2rem;
}

.store-footer__logo img {
    filter: brightness(0) invert(1);
    opacity: 0.95;
}

.store-footer__about {
    margin-bottom: 1.4rem;
    font-size: 1.35rem;
    line-height: 1.8;
    color: #94a3b8;
}

.store-footer__phone {
    display: inline-flex;
    align-items: center;
    gap: 0.9rem;
    margin-bottom: 1.4rem;
    padding: 0.75rem 1rem 0.75rem 0.75rem;
    text-decoration: none;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 1rem;
    transition: background 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
}

.store-footer__phone:hover {
    background: rgba(51, 102, 153, 0.2);
    border-color: rgba(51, 102, 153, 0.35);
    transform: translateX(-3px);
    text-decoration: none;
}

.store-footer__phone-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 4rem;
    height: 4rem;
    font-size: 1.8rem;
    color: #fff;
    background: linear-gradient(135deg, var(--store-primary, #336699), var(--store-primary-dark, #2a5580));
    border-radius: 0.9rem;
}

.store-footer__phone small {
    display: block;
    font-size: 1.1rem;
    color: #94a3b8;
}

.store-footer__phone strong {
    display: block;
    font-size: 1.5rem;
    font-weight: 800;
    color: #fff;
    letter-spacing: 0.02em;
}

.store-footer__social {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
}

.store-footer__social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 4rem;
    height: 4rem;
    font-size: 1.7rem;
    color: #cbd5e1;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    text-decoration: none;
    transition: transform 0.3s ease, background 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}

.store-footer__social-link:hover {
    color: #fff;
    background: var(--store-primary, #336699);
    border-color: var(--store-primary, #336699);
    transform: translateY(-3px);
}

.store-footer__widget-title {
    margin-bottom: 1.2rem;
    font-size: 1.55rem;
    font-weight: 800;
    color: #fff;
}

.store-footer__links {
    list-style: none;
    margin: 0;
    padding: 0;
}

.store-footer__links li {
    margin-bottom: 0.65rem;
}

.store-footer__links a {
    display: inline-flex;
    align-items: center;
    font-size: 1.3rem;
    font-weight: 500;
    color: #94a3b8;
    text-decoration: none;
    transition: color 0.25s ease, transform 0.25s ease;
}

.store-footer__links a:hover {
    color: #fff;
    transform: translateX(-4px);
}

.store-footer__categories {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.55rem 1rem;
    list-style: none;
    margin: 0 0 1rem;
    padding: 0;
}

.store-footer__categories a {
    display: block;
    padding: 0.55rem 0.85rem;
    font-size: 1.25rem;
    font-weight: 600;
    color: #94a3b8;
    text-decoration: none;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 0.75rem;
    transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

.store-footer__categories a:hover {
    color: #fff;
    background: rgba(51, 102, 153, 0.25);
    border-color: rgba(51, 102, 153, 0.35);
}

.store-footer__view-all {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.25rem;
    font-weight: 700;
    color: #60a5fa;
    text-decoration: none;
    transition: gap 0.3s ease, color 0.3s ease;
}

.store-footer__view-all:hover {
    color: #93c5fd;
    gap: 0.85rem;
    text-decoration: none;
}

.store-footer__bottom {
    padding: 1.5rem 0 2rem;
}

.store-footer__bottom-inner {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.store-footer__copyright {
    margin: 0;
    font-size: 1.25rem;
    color: #64748b;
}

.store-footer__payments {
    padding: 0.65rem 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 0.75rem;
}

.store-footer__payments img {
    display: block;
    opacity: 0.85;
    filter: brightness(1.1);
}

@media (max-width: 991px) {
    .store-footer__newsletter-inner {
        flex-direction: column;
        align-items: stretch;
    }

    .store-footer__newsletter-form {
        max-width: 100%;
    }

    .store-footer__newsletter-title {
        font-size: 1.9rem;
    }
}

@media (max-width: 767px) {
    .store-footer__main {
        padding-top: 2.5rem;
    }

    .store-footer__categories {
        grid-template-columns: 1fr;
    }

    .store-footer__bottom-inner {
        flex-direction: column;
        text-align: center;
    }

    .store-footer__newsletter-btn {
        width: 100%;
    }

    .store-footer__newsletter-field {
        width: 100%;
        min-width: 100%;
    }
}

/* Quick view quantity + cart button */
.mfp-product .product-form {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.5rem 1.5rem;
}

.mfp-product .product-qty-form {
    flex: 0 0 14rem;
    max-width: 14rem;
    margin-bottom: 1rem;
    margin-left: 2rem;
}

.mfp-product .product-qty-form .input-group {
    width: 100%;
}

/* Quantity: minus | number | plus */
.qty-input-group,
.mfp-product .product-qty-form .input-group.qty-input-group,
.product-single .product-qty-form .input-group.qty-input-group:not(.store-cart-item__qty-group) {
    display: grid !important;
    grid-template-columns: 2.4rem 1fr 2.4rem;
    align-items: center;
    gap: 0;
    padding: 0 0.4rem;
    height: 4.4rem;
    border: 1px solid #ccc;
    border-radius: 3px;
    background: #fff;
}

.qty-input-group .form-control,
.mfp-product .product-qty-form .input-group .form-control,
.product-single .input-group.qty-input-group:not(.store-cart-item__qty-group) .form-control {
    grid-column: 2;
    grid-row: 1;
    position: static !important;
    width: 100% !important;
    min-width: 0;
    height: 100%;
    border: none !important;
    padding: 0 0.25rem !important;
    margin: 0;
    text-align: center;
    color: #333 !important;
    font-family: "Cairo", sans-serif !important;
    font-size: 1.4rem !important;
    font-weight: 600;
    background: transparent;
    -moz-appearance: textfield;
    box-shadow: none !important;
    opacity: 1 !important;
    visibility: visible !important;
}

/* Override Wolmart huge padding that hides the number */
.product-single .input-group.qty-input-group:not(.store-cart-item__qty-group) .form-control {
    padding: 0 0.25rem !important;
}

.qty-input-group .form-control::-webkit-outer-spin-button,
.qty-input-group .form-control::-webkit-inner-spin-button,
.mfp-product .product-qty-form .input-group .form-control::-webkit-outer-spin-button,
.mfp-product .product-qty-form .input-group .form-control::-webkit-inner-spin-button,
.product-single .input-group.qty-input-group:not(.store-cart-item__qty-group) .form-control::-webkit-outer-spin-button,
.product-single .input-group.qty-input-group:not(.store-cart-item__qty-group) .form-control::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.qty-input-group button,
.mfp-product .product-qty-form .input-group button,
.product-single .input-group.qty-input-group:not(.store-cart-item__qty-group) button {
    position: static !important;
    top: auto !important;
    left: auto !important;
    right: auto !important;
    transform: none !important;
    margin: 0 !important;
    justify-self: center;
    z-index: 2;
    flex-shrink: 0;
}

.qty-input-group .quantity-minus,
.mfp-product .product-qty-form .input-group .quantity-minus,
.product-single .input-group.qty-input-group:not(.store-cart-item__qty-group) .quantity-minus {
    grid-column: 1;
    grid-row: 1;
}

.qty-input-group .quantity-plus,
.mfp-product .product-qty-form .input-group .quantity-plus,
.product-single .input-group.qty-input-group:not(.store-cart-item__qty-group) .quantity-plus {
    grid-column: 3;
    grid-row: 1;
}

/* Product page: qty + cart button row */
.product-single .product-form {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0 1.5rem;
}

.product-single .product-qty-form {
    flex: 0 0 14rem;
    max-width: 14rem;
    margin-bottom: 1rem;
    margin-left: 2rem;
}

.product-single .product-qty-form .input-group.qty-input-group:not(.store-cart-item__qty-group) {
    width: 100%;
}

.product-single .btn-cart,
.product-single .btn-add-cart {
    flex: 1;
    min-width: 14rem;
    margin-bottom: 1rem;
}

.mfp-product .btn-cart,
.mfp-product .btn-add-cart {
    flex: 1;
    min-width: 14rem;
    margin-bottom: 1rem;
}

.btn-product-icon.btn-add-cart {
    font-size: 1.6em;
    margin-bottom: 0.2rem;
}

.btn-add-cart:not(.btn-product-icon) i.w-icon-cart {
    margin-left: 0.7rem;
}

@media (max-width: 575px) {
    .mfp-product .product-qty-form {
        flex: 0 0 100%;
        max-width: 100%;
        margin-left: 0;
    }

    .mfp-product .btn-cart,
    .mfp-product .btn-add-cart {
        flex: 0 0 100%;
        width: 100%;
    }

    .product-single .product-qty-form {
        margin-left: 1rem;
    }
}

/* Cart page quantity */
.cart-table .input-group.qty-input-group,
.store-cart-item__qty-group {
    max-width: 12rem;
    margin: 0;
}

/* Account dashboard */
.my-account .account-welcome-banner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    padding: 2rem 2.4rem;
    border-radius: 1.2rem;
    background: linear-gradient(135deg, #f0f6fc 0%, #fff 55%, #f8fafc 100%);
    border: 1px solid #e8eef5;
}

.my-account .account-welcome-badge {
    display: inline-block;
    margin-bottom: 0.6rem;
    padding: 0.35rem 1rem;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--store-primary, #336699);
    background: rgba(51, 102, 153, 0.1);
    border-radius: 2rem;
}

.my-account .account-welcome-title {
    margin-bottom: 0.5rem;
    font-size: 2.2rem;
    font-weight: 700;
    color: #222;
}

.my-account .account-welcome-title span {
    color: var(--store-primary, #336699);
}

.my-account .account-welcome-desc {
    font-size: 1.4rem;
    color: #666;
    line-height: 1.7;
}

.my-account .account-quick-cards {
    margin-top: 0.5rem;
}

.my-account .account-quick-card {
    position: relative;
    display: block;
    height: 100%;
    padding: 0;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    background: #fff;
    border: 1px solid #eceff3;
    border-radius: 1.4rem;
    box-shadow: 0 4px 18px rgba(15, 23, 42, 0.04);
    transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
        box-shadow 0.35s cubic-bezier(0.22, 1, 0.36, 1),
        border-color 0.35s ease;
    animation: accountCardIn 0.55s cubic-bezier(0.22, 1, 0.36, 1) both;
    animation-delay: var(--card-delay, 0s);
}

.my-account button.account-quick-card {
    cursor: pointer;
    text-align: inherit;
}

.my-account .account-quick-card__glow {
    position: absolute;
    inset: 0;
    opacity: 0;
    background: radial-gradient(circle at 85% 15%, var(--card-accent-soft, rgba(51, 102, 153, 0.12)) 0%, transparent 55%);
    transition: opacity 0.35s ease;
    pointer-events: none;
}

.my-account .account-quick-card__inner {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    min-height: 16rem;
    padding: 2rem;
}

.my-account .account-quick-card__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 5.6rem;
    height: 5.6rem;
    margin-bottom: 1.4rem;
    font-size: 2.6rem;
    color: var(--card-accent, var(--store-primary, #336699));
    background: var(--card-accent-soft, rgba(51, 102, 153, 0.1));
    border-radius: 1.4rem;
    transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
        background 0.35s ease,
        color 0.35s ease,
        box-shadow 0.35s ease;
}

.my-account .account-quick-card__title {
    margin-bottom: 0.4rem;
    font-size: 1.7rem;
    font-weight: 700;
    color: #222;
    transition: color 0.3s ease;
}

.my-account .account-quick-card__desc {
    margin-bottom: 0;
    font-size: 1.3rem;
    color: #777;
    line-height: 1.6;
}

.my-account .account-quick-card__badge {
    position: absolute;
    top: 1.6rem;
    left: 1.6rem;
    padding: 0.35rem 0.9rem;
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--card-accent, var(--store-primary, #336699));
    background: var(--card-accent-soft, rgba(51, 102, 153, 0.1));
    border-radius: 2rem;
    transition: transform 0.35s ease, background 0.35s ease, color 0.35s ease;
}

.my-account .account-quick-card__arrow {
    position: absolute;
    bottom: 2rem;
    left: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 3.4rem;
    height: 3.4rem;
    font-size: 1.5rem;
    color: #999;
    background: #f3f5f8;
    border-radius: 50%;
    opacity: 0;
    transform: translateX(8px);
    transition: opacity 0.35s ease, transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
        background 0.35s ease, color 0.35s ease;
}

.my-account .account-quick-card:hover,
.my-account .account-quick-card:focus-visible {
    transform: translateY(-6px);
    border-color: var(--card-accent, var(--store-primary, #336699));
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.1);
    text-decoration: none;
    color: inherit;
    outline: none;
}

.my-account .account-quick-card:hover .account-quick-card__glow,
.my-account .account-quick-card:focus-visible .account-quick-card__glow {
    opacity: 1;
}

.my-account .account-quick-card:hover .account-quick-card__icon,
.my-account .account-quick-card:focus-visible .account-quick-card__icon {
    transform: scale(1.08) rotate(-4deg);
    color: #fff;
    background: var(--card-accent, var(--store-primary, #336699));
    box-shadow: 0 10px 24px var(--card-accent-soft, rgba(51, 102, 153, 0.25));
}

.my-account .account-quick-card:hover .account-quick-card__title,
.my-account .account-quick-card:focus-visible .account-quick-card__title {
    color: var(--card-accent, var(--store-primary, #336699));
}

.my-account .account-quick-card:hover .account-quick-card__badge,
.my-account .account-quick-card:focus-visible .account-quick-card__badge {
    transform: scale(1.05);
    color: #fff;
    background: var(--card-accent, var(--store-primary, #336699));
}

.my-account .account-quick-card:hover .account-quick-card__arrow,
.my-account .account-quick-card:focus-visible .account-quick-card__arrow {
    opacity: 1;
    transform: translateX(0);
    color: #fff;
    background: var(--card-accent, var(--store-primary, #336699));
}

.my-account .theme-orders {
    --card-accent: var(--store-primary, #336699);
    --card-accent-soft: rgba(51, 102, 153, 0.12);
}

.my-account .theme-dashboard {
    --card-accent: var(--store-primary, #336699);
    --card-accent-soft: rgba(51, 102, 153, 0.12);
}

.my-account .theme-downloads {
    --card-accent: #0ea5a4;
    --card-accent-soft: rgba(14, 165, 164, 0.12);
}

.my-account .theme-addresses {
    --card-accent: #7c3aed;
    --card-accent-soft: rgba(124, 58, 237, 0.12);
}

.my-account .theme-account {
    --card-accent: #2563eb;
    --card-accent-soft: rgba(37, 99, 235, 0.12);
}

.my-account .theme-wishlist {
    --card-accent: #e11d48;
    --card-accent-soft: rgba(225, 29, 72, 0.12);
}

.my-account .theme-logout {
    --card-accent: #64748b;
    --card-accent-soft: rgba(100, 116, 139, 0.12);
}

.my-account .theme-logout:hover,
.my-account .theme-logout:focus-visible {
    --card-accent: #dc2626;
    --card-accent-soft: rgba(220, 38, 38, 0.15);
}

@keyframes accountCardIn {
    from {
        opacity: 0;
        transform: translateY(18px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 767px) {
    .my-account .account-welcome-banner {
        flex-direction: column;
        align-items: flex-start;
        padding: 1.6rem;
    }

    .my-account .account-quick-card__inner {
        min-height: 14rem;
        padding: 1.6rem;
    }

    .my-account .account-quick-card__arrow {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Account sidebar navigation */
.my-account .account-sidebar-nav {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    width: 100%;
    padding: 0;
    border: none;
}

.my-account .account-sidebar-nav .nav-item {
    width: 100%;
    margin: 0;
}

.my-account .account-sidebar-link {
    position: relative;
    display: flex;
    align-items: center;
    gap: 1.2rem;
    width: 100%;
    padding: 1.4rem 1.6rem;
    overflow: hidden;
    text-decoration: none;
    color: #333;
    background: #fff;
    border: 1px solid #eceff3;
    border-radius: 1.2rem;
    box-shadow: 0 2px 12px rgba(15, 23, 42, 0.04);
    transition: transform 0.32s cubic-bezier(0.22, 1, 0.36, 1),
        box-shadow 0.32s cubic-bezier(0.22, 1, 0.36, 1),
        border-color 0.32s ease,
        color 0.32s ease;
    animation: accountCardIn 0.45s cubic-bezier(0.22, 1, 0.36, 1) both;
    animation-delay: var(--nav-delay, 0s);
}

.my-account button.account-sidebar-link {
    cursor: pointer;
    text-align: inherit;
    font: inherit;
}

.my-account .account-sidebar-link__glow {
    position: absolute;
    inset: 0;
    opacity: 0;
    background: radial-gradient(circle at 0% 50%, var(--card-accent-soft, rgba(51, 102, 153, 0.12)) 0%, transparent 70%);
    transition: opacity 0.32s ease;
    pointer-events: none;
}

.my-account .account-sidebar-link__icon {
    position: relative;
    z-index: 1;
    display: flex;
    flex-shrink: 0;
    align-items: center;
    justify-content: center;
    width: 4.2rem;
    height: 4.2rem;
    font-size: 2rem;
    color: var(--card-accent, var(--store-primary, #336699));
    background: var(--card-accent-soft, rgba(51, 102, 153, 0.1));
    border-radius: 1rem;
    transition: transform 0.32s cubic-bezier(0.22, 1, 0.36, 1),
        background 0.32s ease,
        color 0.32s ease,
        box-shadow 0.32s ease;
}

.my-account .account-sidebar-link__body {
    position: relative;
    z-index: 1;
    flex: 1;
    min-width: 0;
}

.my-account .account-sidebar-link__label {
    display: block;
    font-size: 1.5rem;
    font-weight: 600;
    line-height: 1.4;
    transition: color 0.3s ease;
}

.my-account .account-sidebar-link__badge {
    position: relative;
    z-index: 1;
    flex-shrink: 0;
    min-width: 2.4rem;
    padding: 0.25rem 0.7rem;
    font-size: 1.2rem;
    font-weight: 700;
    line-height: 1.4;
    text-align: center;
    color: var(--card-accent, var(--store-primary, #336699));
    background: var(--card-accent-soft, rgba(51, 102, 153, 0.1));
    border-radius: 2rem;
    transition: transform 0.32s ease, background 0.32s ease, color 0.32s ease;
}

.my-account .account-sidebar-link__arrow {
    position: relative;
    z-index: 1;
    display: flex;
    flex-shrink: 0;
    align-items: center;
    justify-content: center;
    width: 2.8rem;
    height: 2.8rem;
    font-size: 1.3rem;
    color: #aaa;
    background: #f3f5f8;
    border-radius: 50%;
    opacity: 0;
    transform: translateX(6px);
    transition: opacity 0.32s ease, transform 0.32s cubic-bezier(0.22, 1, 0.36, 1),
        background 0.32s ease, color 0.32s ease;
}

.my-account .account-sidebar-link:hover,
.my-account .account-sidebar-link:focus-visible {
    transform: translateX(-4px);
    border-color: var(--card-accent, var(--store-primary, #336699));
    box-shadow: 0 10px 28px rgba(15, 23, 42, 0.08);
    text-decoration: none;
    color: #222;
    outline: none;
}

.my-account .account-sidebar-link:hover .account-sidebar-link__glow,
.my-account .account-sidebar-link:focus-visible .account-sidebar-link__glow,
.my-account .account-sidebar-link.is-active .account-sidebar-link__glow {
    opacity: 1;
}

.my-account .account-sidebar-link:hover .account-sidebar-link__icon,
.my-account .account-sidebar-link:focus-visible .account-sidebar-link__icon {
    transform: scale(1.06);
    color: #fff;
    background: var(--card-accent, var(--store-primary, #336699));
    box-shadow: 0 6px 16px var(--card-accent-soft, rgba(51, 102, 153, 0.25));
}

.my-account .account-sidebar-link:hover .account-sidebar-link__label,
.my-account .account-sidebar-link:focus-visible .account-sidebar-link__label {
    color: var(--card-accent, var(--store-primary, #336699));
}

.my-account .account-sidebar-link:hover .account-sidebar-link__badge,
.my-account .account-sidebar-link:focus-visible .account-sidebar-link__badge,
.my-account .account-sidebar-link.is-active .account-sidebar-link__badge {
    color: #fff;
    background: var(--card-accent, var(--store-primary, #336699));
}

.my-account .account-sidebar-link:hover .account-sidebar-link__arrow,
.my-account .account-sidebar-link:focus-visible .account-sidebar-link__arrow {
    opacity: 1;
    transform: translateX(0);
    color: #fff;
    background: var(--card-accent, var(--store-primary, #336699));
}

.my-account .account-sidebar-link.is-active {
    transform: translateX(-4px);
    border-color: var(--card-accent, var(--store-primary, #336699));
    box-shadow: 0 10px 28px rgba(15, 23, 42, 0.08);
    background: linear-gradient(135deg, #fff 0%, var(--card-accent-soft, rgba(51, 102, 153, 0.06)) 100%);
}

.my-account .account-sidebar-link.is-active .account-sidebar-link__icon {
    color: #fff;
    background: var(--card-accent, var(--store-primary, #336699));
    box-shadow: 0 6px 16px var(--card-accent-soft, rgba(51, 102, 153, 0.25));
}

.my-account .account-sidebar-link.is-active .account-sidebar-link__label {
    color: var(--card-accent, var(--store-primary, #336699));
    font-weight: 700;
}

.my-account .account-sidebar-link.is-active .account-sidebar-link__arrow {
    opacity: 1;
    transform: translateX(0);
    color: #fff;
    background: var(--card-accent, var(--store-primary, #336699));
}

.my-account .account-sidebar-nav__logout {
    margin-top: 0.4rem;
    padding-top: 0.8rem;
    border-top: 1px dashed #e8eef5;
}

.my-account .account-sidebar-nav__logout .theme-logout:hover,
.my-account .account-sidebar-nav__logout .theme-logout:focus-visible {
    --card-accent: #dc2626;
    --card-accent-soft: rgba(220, 38, 38, 0.12);
}

.my-account .account-tabs.tab-vertical > .nav-tabs,
.my-account .account-tabs.tab-vertical > .account-sidebar-nav {
    width: 24.41%;
    border: none;
}

@media (max-width: 991px) {
    .my-account .account-tabs.tab-vertical > .account-sidebar-nav {
        width: 100%;
        margin-bottom: 2rem;
    }

    .my-account .account-sidebar-link__arrow {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Account content panels & tables */
.my-account .account-tab-content {
    width: 75.59%;
    padding-right: 1.5rem;
    border: none !important;
    padding-top: 0 !important;
}

.my-account .account-panel {
    background: #fff;
    border: 1px solid #eceff3;
    border-radius: 1.4rem;
    box-shadow: 0 4px 20px rgba(15, 23, 42, 0.04);
    overflow: hidden;
}

.my-account .account-section-header {
    display: flex;
    align-items: center;
    gap: 1.4rem;
    padding: 2rem 2.4rem;
    background: linear-gradient(135deg, var(--card-accent-soft, rgba(51, 102, 153, 0.08)) 0%, #fff 100%);
    border-bottom: 1px solid #eef2f6;
}

.my-account .account-section-header__icon {
    display: flex;
    flex-shrink: 0;
    align-items: center;
    justify-content: center;
    width: 5rem;
    height: 5rem;
    font-size: 2.4rem;
    color: var(--card-accent, var(--store-primary, #336699));
    background: #fff;
    border-radius: 1.2rem;
    box-shadow: 0 4px 14px var(--card-accent-soft, rgba(51, 102, 153, 0.15));
}

.my-account .account-section-header__title {
    margin-bottom: 0.3rem;
    font-size: 2rem;
    font-weight: 700;
    color: #222;
}

.my-account .account-section-header__subtitle {
    font-size: 1.35rem;
    color: #777;
    line-height: 1.6;
}

.my-account .account-panel__body {
    padding: 2rem 2.4rem 2.4rem;
}

.my-account .account-table-wrap {
    overflow: hidden;
    border: 1px solid #eef2f6;
    border-radius: 1.2rem;
}

.my-account .account-table {
    width: 100%;
    margin-bottom: 0;
    border-collapse: collapse;
}

.my-account .account-table thead th {
    padding: 1.4rem 1.6rem;
    font-size: 1.3rem;
    font-weight: 700;
    color: #444;
    text-align: right;
    background: #f8fafc;
    border-bottom: 1px solid #eef2f6;
}

.my-account .account-table tbody td {
    padding: 1.5rem 1.6rem;
    font-size: 1.4rem;
    color: #333;
    vertical-align: middle;
    border-bottom: 1px solid #f1f5f9;
    transition: background 0.25s ease;
}

.my-account .account-table tbody tr:last-child td {
    border-bottom: none;
}

.my-account .account-table tbody tr:hover td {
    background: #f8fbff;
}

.my-account .account-table tfoot th,
.my-account .account-table tfoot td {
    padding: 1.2rem 1.6rem;
    font-size: 1.4rem;
    border-top: 1px solid #eef2f6;
}

.my-account .account-table tfoot th {
    font-weight: 600;
    color: #555;
    text-align: right;
}

.my-account .account-table tfoot td {
    font-weight: 600;
    color: #222;
    text-align: left;
}

.my-account .account-table-total th,
.my-account .account-table-total td {
    font-size: 1.6rem !important;
    font-weight: 700 !important;
    color: var(--card-accent, var(--store-primary, #336699)) !important;
    background: var(--card-accent-soft, rgba(51, 102, 153, 0.06));
}

.my-account .account-order-id {
    font-weight: 700;
    color: var(--card-accent, var(--store-primary, #336699));
}

.my-account .account-order-total {
    display: block;
    font-weight: 700;
    color: #222;
}

.my-account .account-order-meta {
    display: block;
    margin-top: 0.2rem;
    font-size: 1.2rem;
    color: #888;
}

.my-account .account-product-link {
    font-weight: 600;
    color: #222;
    transition: color 0.25s ease;
}

.my-account .account-product-link:hover {
    color: var(--card-accent, var(--store-primary, #336699));
}

.my-account .account-status-badge {
    display: inline-block;
    padding: 0.35rem 1rem;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--card-accent, var(--store-primary, #336699));
    background: var(--card-accent-soft, rgba(51, 102, 153, 0.1));
    border-radius: 2rem;
}

.my-account .account-status-badge--muted {
    color: #888;
    background: #f1f5f9;
}

.my-account .account-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 1rem 1.8rem;
    font-size: 1.4rem;
    font-weight: 600;
    line-height: 1;
    text-decoration: none;
    color: #fff;
    background: #222;
    border: 2px solid #222;
    border-radius: 2.5rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease, border-color 0.3s ease, color 0.3s ease;
}

.my-account .account-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
    text-decoration: none;
    color: #fff;
}

.my-account .account-btn--primary {
    background: var(--card-accent, var(--store-primary, #336699));
    border-color: var(--card-accent, var(--store-primary, #336699));
}

.my-account .account-btn--primary:hover {
    color: #fff;
    filter: brightness(1.08);
}

.my-account .account-btn--outline {
    color: var(--card-accent, var(--store-primary, #336699));
    background: #fff;
    border-color: var(--card-accent, var(--store-primary, #336699));
}

.my-account .account-btn--outline:hover {
    color: #fff;
    background: var(--card-accent, var(--store-primary, #336699));
}

.my-account .account-btn--sm {
    padding: 0.7rem 1.4rem;
    font-size: 1.3rem;
}

.my-account .account-empty-state {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 3.5rem 2rem;
    text-align: center;
    background: linear-gradient(180deg, #f8fafc 0%, #fff 100%);
    border: 1px dashed #dce4ee;
    border-radius: 1.2rem;
}

.my-account .account-empty-state__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 7rem;
    height: 7rem;
    margin-bottom: 1.4rem;
    font-size: 3rem;
    color: var(--card-accent, var(--store-primary, #336699));
    background: var(--card-accent-soft, rgba(51, 102, 153, 0.1));
    border-radius: 50%;
}

.my-account .account-empty-state__title {
    margin-bottom: 0.6rem;
    font-size: 1.8rem;
    font-weight: 700;
    color: #222;
}

.my-account .account-empty-state__desc {
    max-width: 32rem;
    margin-bottom: 1.6rem;
    font-size: 1.4rem;
    color: #777;
    line-height: 1.7;
}

.my-account .account-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.my-account .account-list-item {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    padding: 1.4rem 1.6rem;
    background: #fff;
    border: 1px solid #eef2f6;
    border-radius: 1.2rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.my-account .account-list-item:hover {
    transform: translateX(-4px);
    border-color: var(--card-accent, var(--store-primary, #336699));
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.06);
}

.my-account .account-list-item__icon {
    display: flex;
    flex-shrink: 0;
    align-items: center;
    justify-content: center;
    width: 4.4rem;
    height: 4.4rem;
    font-size: 2rem;
    color: var(--card-accent, var(--store-primary, #336699));
    background: var(--card-accent-soft, rgba(51, 102, 153, 0.1));
    border-radius: 1rem;
}

.my-account .account-list-item__body {
    flex: 1;
    min-width: 0;
}

.my-account .account-list-item__title {
    margin-bottom: 0.2rem;
    font-size: 1.5rem;
    font-weight: 700;
    color: #222;
}

.my-account .account-list-item__meta {
    font-size: 1.25rem;
    color: #888;
}

.my-account .account-info-card {
    height: 100%;
    padding: 1.6rem;
    background: #fff;
    border: 1px solid #eef2f6;
    border-radius: 1.2rem;
    transition: box-shadow 0.3s ease, border-color 0.3s ease;
}

.my-account .account-info-card:hover {
    border-color: var(--card-accent, var(--store-primary, #336699));
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.06);
}

.my-account .account-info-card__head {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.4rem;
    padding-bottom: 1.2rem;
    border-bottom: 1px solid #f1f5f9;
}

.my-account .account-info-card__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 3.8rem;
    height: 3.8rem;
    font-size: 1.8rem;
    color: var(--card-accent, var(--store-primary, #336699));
    background: var(--card-accent-soft, rgba(51, 102, 153, 0.1));
    border-radius: 0.9rem;
}

.my-account .account-info-card__title {
    margin: 0;
    font-size: 1.6rem;
    font-weight: 700;
    color: #222;
}

.my-account .account-dl {
    margin: 0;
}

.my-account .account-dl > div {
    display: flex;
    gap: 1rem;
    padding: 0.7rem 0;
    border-bottom: 1px solid #f8fafc;
}

.my-account .account-dl > div:last-child {
    border-bottom: none;
}

.my-account .account-dl dt {
    flex: 0 0 9rem;
    margin: 0;
    font-size: 1.3rem;
    font-weight: 600;
    color: #888;
}

.my-account .account-dl dd {
    flex: 1;
    margin: 0;
    font-size: 1.4rem;
    color: #333;
}

.my-account .account-form-card {
    padding: 2rem;
    background: #f8fafc;
    border: 1px solid #eef2f6;
    border-radius: 1.2rem;
}

.my-account .account-form-card__title {
    margin-bottom: 1.6rem;
    padding-bottom: 1rem;
    font-size: 1.7rem;
    font-weight: 700;
    color: #222;
    border-bottom: 1px solid #e8eef5;
}

.my-account .account-form label {
    font-size: 1.35rem;
    font-weight: 600;
    color: #444;
}

.my-account .account-form .form-control {
    border-radius: 0.8rem;
    border-color: #dce4ee;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.my-account .account-form .form-control:focus {
    border-color: var(--card-accent, var(--store-primary, #336699));
    box-shadow: 0 0 0 3px var(--card-accent-soft, rgba(51, 102, 153, 0.15));
}

.my-account .account-field-error {
    margin-top: 0.4rem;
    margin-bottom: 0;
    font-size: 1.25rem;
    color: #dc2626;
}

.my-account .account-alert {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 1.6rem;
    padding: 1.2rem 1.6rem;
    font-size: 1.4rem;
    font-weight: 600;
    border-radius: 1rem;
}

.my-account .account-alert--success {
    color: #166534;
    background: #ecfdf5;
    border: 1px solid #bbf7d0;
}

.my-account .account-pagination {
    margin-top: 1.6rem;
}

@media (max-width: 991px) {
    .my-account .account-tab-content {
        width: 100%;
        padding-right: 0;
    }

    .my-account .account-panel__body,
    .my-account .account-section-header {
        padding: 1.6rem;
    }

    .my-account .account-table thead {
        display: none;
    }

    .my-account .account-table tbody tr {
        display: block;
        margin-bottom: 1rem;
        padding: 1rem;
        background: #f8fafc;
        border-radius: 1rem;
    }

    .my-account .account-table tbody td {
        display: flex;
        justify-content: space-between;
        gap: 1rem;
        padding: 0.6rem 0;
        border: none;
    }

    .my-account .account-table tbody td::before {
        content: attr(data-label);
        font-weight: 700;
        color: #666;
    }

    .my-account .account-table tbody td.text-center {
        justify-content: center;
    }
}

/* Home categories section */
.home-categories-section {
    position: relative;
    isolation: isolate;
    padding: 4rem 0 3.5rem;
    overflow: hidden;
    background: linear-gradient(165deg, #f8fafc 0%, #ffffff 42%, #f1f5f9 100%);
}

.home-categories-section .container {
    position: relative;
    z-index: 1;
}

.home-categories-section__decor {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
}

.home-categories-section__glow {
    position: absolute;
    top: 42%;
    left: 50%;
    width: min(42rem, 90vw);
    height: min(42rem, 90vw);
    border-radius: 50%;
    background: radial-gradient(circle, rgba(var(--store-primary-rgb, 51, 102, 153), 0.1) 0%, transparent 68%);
    transform: translate(-50%, -50%);
}

.home-categories-section__dots {
    position: absolute;
    width: 14rem;
    height: 14rem;
    background-image: radial-gradient(rgba(var(--store-primary-rgb, 51, 102, 153), 0.18) 1.5px, transparent 1.5px);
    background-size: 14px 14px;
    opacity: 0.45;
}

.home-categories-section__dots--right {
    top: 8%;
    right: 4%;
}

.home-categories-section__dots--left {
    bottom: 10%;
    left: 3%;
}

.home-categories-section__line {
    position: absolute;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(var(--store-primary-rgb, 51, 102, 153), 0.35), transparent);
    transform-origin: center;
    animation: homeCategoriesLineDrift 9s ease-in-out infinite;
}

.home-categories-section__line--1 {
    top: 22%;
    right: -4%;
    width: 58%;
    --line-rotate: -14deg;
    transform: rotate(-14deg);
    animation-delay: 0s;
}

.home-categories-section__line--2 {
    top: 48%;
    left: -6%;
    width: 52%;
    --line-rotate: 11deg;
    transform: rotate(11deg);
    animation-delay: -3s;
}

.home-categories-section__line--3 {
    bottom: 18%;
    right: 8%;
    width: 44%;
    --line-rotate: -8deg;
    transform: rotate(-8deg);
    opacity: 0.7;
    animation-delay: -6s;
}

.home-categories-section__ring {
    position: absolute;
    border: 1px solid rgba(var(--store-primary-rgb, 51, 102, 153), 0.14);
    border-radius: 50%;
    animation: homeCategoriesRingPulse 12s ease-in-out infinite;
}

.home-categories-section__ring--1 {
    top: 12%;
    left: 6%;
    width: 7rem;
    height: 7rem;
}

.home-categories-section__ring--2 {
    bottom: 14%;
    right: 10%;
    width: 5.5rem;
    height: 5.5rem;
    animation-delay: -4s;
}

.home-categories-section__head {
    max-width: 44rem;
    margin: 0 auto 2.5rem;
    text-align: center;
}

.home-categories-section__eyebrow {
    display: inline-block;
    margin-bottom: 0.65rem;
    padding: 0.35rem 1rem;
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--store-primary, #336699);
    background: rgba(var(--store-primary-rgb, 51, 102, 153), 0.1);
    border: 1px solid rgba(var(--store-primary-rgb, 51, 102, 153), 0.14);
    border-radius: 2rem;
}

.home-categories-section__title {
    margin: 0 0 0.75rem;
    font-size: 2.6rem;
    font-weight: 800;
    line-height: 1.25;
    color: #111;
}

.home-categories-section__subtitle {
    margin: 0;
    font-size: 1.45rem;
    line-height: 1.65;
    color: #64748b;
}

.home-categories-section__slider {
    position: relative;
    padding: 0.35rem 0.15rem;
}

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

.home-category-card {
    position: relative;
    display: block;
    height: 100%;
    overflow: hidden;
    text-decoration: none;
    border: 1px solid rgba(var(--store-primary-rgb, 51, 102, 153), 0.12);
    border-radius: 1.6rem;
    box-shadow:
        0 8px 28px rgba(var(--store-primary-rgb, 51, 102, 153), 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.65);
    transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1),
        box-shadow 0.4s cubic-bezier(0.22, 1, 0.36, 1),
        border-color 0.4s ease;
    animation: homeCategoryIn 0.6s cubic-bezier(0.22, 1, 0.36, 1) both;
    animation-delay: var(--cat-delay, 0s);
}

.home-category-card__media {
    position: relative;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    background: #e8eef5;
}

.home-category-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}

.home-category-card__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(15, 23, 42, 0.28) 0%,
        rgba(15, 23, 42, 0.06) 38%,
        transparent 72%
    );
    transition: opacity 0.4s ease;
}

.home-category-card__shine {
    position: absolute;
    inset: 0;
    opacity: 0;
    background: linear-gradient(
        120deg,
        transparent 30%,
        rgba(255, 255, 255, 0.35) 50%,
        transparent 70%
    );
    transform: translateX(100%);
    transition: transform 0.65s ease, opacity 0.4s ease;
    pointer-events: none;
}

.home-category-card__content {
    position: absolute;
    right: 0.85rem;
    bottom: 0.85rem;
    left: 0.85rem;
    z-index: 2;
    padding: 0.95rem 1rem;
    color: #1e293b;
    background: rgba(255, 255, 255, 0.88);
    border: 1px solid rgba(255, 255, 255, 0.72);
    border-radius: 1rem;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 8px 22px rgba(15, 23, 42, 0.1);
    transition: transform 0.35s ease, background 0.35s ease, box-shadow 0.35s ease;
}

.home-category-card__count {
    display: inline-block;
    margin-bottom: 0.55rem;
    padding: 0.3rem 0.85rem;
    font-size: 1.1rem;
    font-weight: 700;
    color: #fff;
    background: var(--cat-accent, var(--store-primary, #336699));
    border-radius: 2rem;
    box-shadow: 0 4px 12px rgba(15, 23, 42, 0.12);
    transition: transform 0.35s ease, background 0.35s ease;
}

.home-category-card__name {
    margin: 0 0 0.35rem;
    font-size: 1.55rem;
    font-weight: 800;
    line-height: 1.4;
    color: #111;
    transition: transform 0.35s ease, color 0.35s ease;
}

.home-category-card__cta {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--cat-accent, var(--store-primary, #336699));
    transform: translateY(4px);
    opacity: 0.85;
    transition: color 0.35s ease, transform 0.35s ease, opacity 0.35s ease, gap 0.35s ease;
}

.home-category-card:hover,
.home-category-card:focus-visible {
    transform: translateY(-8px) scale(1.02);
    border-color: rgba(var(--store-primary-rgb, 51, 102, 153), 0.28);
    box-shadow:
        0 22px 44px rgba(var(--store-primary-rgb, 51, 102, 153), 0.16),
        inset 0 1px 0 rgba(255, 255, 255, 0.85);
    text-decoration: none;
    outline: none;
}

.home-category-card:hover .home-category-card__media img,
.home-category-card:focus-visible .home-category-card__media img {
    transform: scale(1.1);
}

.home-category-card:hover .home-category-card__overlay,
.home-category-card:focus-visible .home-category-card__overlay {
    opacity: 0.55;
}

.home-category-card:hover .home-category-card__shine,
.home-category-card:focus-visible .home-category-card__shine {
    opacity: 1;
    transform: translateX(-100%);
}

.home-category-card:hover .home-category-card__content,
.home-category-card:focus-visible .home-category-card__content {
    transform: translateY(-3px);
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 12px 28px rgba(15, 23, 42, 0.14);
}

.home-category-card:hover .home-category-card__name,
.home-category-card:focus-visible .home-category-card__name {
    transform: translateY(-1px);
    color: var(--cat-accent, var(--store-primary, #336699));
}

.home-category-card:hover .home-category-card__count,
.home-category-card:focus-visible .home-category-card__count {
    transform: scale(1.05);
}

.home-category-card:hover .home-category-card__cta,
.home-category-card:focus-visible .home-category-card__cta {
    opacity: 1;
    transform: translateY(0);
    gap: 0.7rem;
}

.theme-cat-1 { --cat-accent: var(--store-primary, #336699); }
.theme-cat-2 { --cat-accent: #0ea5a4; }
.theme-cat-3 { --cat-accent: #7c3aed; }
.theme-cat-4 { --cat-accent: #e11d48; }
.theme-cat-5 { --cat-accent: #d97706; }
.theme-cat-6 { --cat-accent: #2563eb; }

@keyframes homeCategoriesLineDrift {
    0%, 100% {
        opacity: 0.45;
        transform: rotate(var(--line-rotate, -14deg)) translateX(0);
    }
    50% {
        opacity: 0.85;
        transform: rotate(var(--line-rotate, -14deg)) translateX(14px);
    }
}

@keyframes homeCategoriesRingPulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.55;
    }
    50% {
        transform: scale(1.08);
        opacity: 0.9;
    }
}

@keyframes homeCategoryIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 991px) {
    .home-categories-section {
        padding: 3.25rem 0 3rem;
    }

    .home-categories-section__title {
        font-size: 2.2rem;
    }

    .home-categories-section__line--1,
    .home-categories-section__line--2 {
        width: 70%;
    }
}

@media (max-width: 767px) {
    .home-categories-section__title {
        font-size: 2rem;
    }

    .home-categories-section__subtitle {
        font-size: 1.3rem;
    }

    .home-categories-section__dots,
    .home-categories-section__ring--2 {
        display: none;
    }

    .home-category-card__name {
        font-size: 1.35rem;
    }

    .home-category-card__content {
        right: 0.65rem;
        bottom: 0.65rem;
        left: 0.65rem;
        padding: 0.8rem 0.9rem;
    }

    .home-category-card__cta {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Store product card */
.store-product-card {
    margin-bottom: 2rem;
    height: 100%;
}

.store-product-card__inner {
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
    overflow: hidden;
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 1.4rem;
    box-shadow: 0 2px 12px rgba(15, 23, 42, 0.05);
    transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
        box-shadow 0.35s cubic-bezier(0.22, 1, 0.36, 1),
        border-color 0.35s ease;
}

.store-product-card__inner:hover {
    transform: translateY(-5px);
    border-color: rgba(51, 102, 153, 0.28);
    box-shadow: 0 16px 36px rgba(15, 23, 42, 0.1);
}

.store-product-card__media {
    position: relative;
    margin-bottom: 0 !important;
    overflow: hidden;
    border-radius: 1.4rem 1.4rem 0 0;
    background: #f8fafc;
}

.store-product-card__image-link {
    display: block;
    overflow: hidden;
}

.store-product-card__media img {
    transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.4s ease;
}

.store-product-card__inner:hover .store-product-card__media img:first-child {
    transform: scale(1.06);
}

.store-product-card__shine {
    position: absolute;
    inset: 0;
    z-index: 1;
    opacity: 0;
    background: linear-gradient(120deg, transparent 35%, rgba(255, 255, 255, 0.25) 50%, transparent 65%);
    transform: translateX(100%);
    transition: transform 0.65s ease, opacity 0.35s ease;
    pointer-events: none;
}

.store-product-card__inner:hover .store-product-card__shine {
    opacity: 1;
    transform: translateX(-100%);
}

.store-product-card__labels {
    z-index: 3;
}

.store-product-card__discount {
    padding: 0.45rem 1rem !important;
    font-size: 1.2rem !important;
    font-weight: 700;
    color: #fff !important;
    background: linear-gradient(135deg, #f97316 0%, #ef4444 100%) !important;
    border-radius: 2rem !important;
    box-shadow: 0 4px 12px rgba(239, 68, 68, 0.35);
}

.store-product-card__actions {
    z-index: 3;
    gap: 0.5rem;
}

.store-product-card__actions .btn-product-icon {
    width: 3.6rem;
    height: 3.6rem;
    font-size: 1.6rem;
    color: #444;
    background: #fff;
    border: none;
    border-radius: 50%;
    box-shadow: 0 4px 14px rgba(15, 23, 42, 0.12);
    transition: transform 0.3s ease, background 0.3s ease, color 0.3s ease, box-shadow 0.3s ease;
}

.store-product-card__actions .btn-product-icon:hover {
    color: #fff;
    background: var(--store-primary, #336699);
    transform: scale(1.08);
    box-shadow: 0 6px 18px rgba(51, 102, 153, 0.35);
}

.store-product-card__cart-form {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 4;
    padding: 1rem;
    transform: translateY(100%);
    transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.store-product-card__inner:hover .store-product-card__cart-form,
.store-product-card__inner:focus-within .store-product-card__cart-form {
    transform: translateY(0);
}

.store-product-card__cart-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    width: 100%;
    padding: 1rem 1.4rem;
    font-size: 1.35rem;
    font-weight: 700;
    color: #fff;
    background: linear-gradient(135deg, var(--store-primary, #336699) 0%, var(--store-primary-dark, #2a5580) 100%);
    border: none;
    border-radius: 1rem;
    box-shadow: 0 6px 18px rgba(51, 102, 153, 0.35);
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease, filter 0.3s ease;
}

.store-product-card__cart-btn:hover {
    filter: brightness(1.08);
    transform: translateY(-1px);
    box-shadow: 0 8px 22px rgba(51, 102, 153, 0.4);
}

.store-product-card__cart-btn.added {
    background: linear-gradient(135deg, #16a34a 0%, #15803d 100%);
}

.store-product-card__details {
    display: flex;
    flex-direction: column;
    flex: 1;
    gap: 0.55rem;
    padding: 1.25rem 1.4rem 1.5rem !important;
    text-align: right;
}

.store-product-card.text-center .ratings-container,
.store-product-card__inner.text-center .ratings-container {
    justify-content: flex-start !important;
}

.store-product-card__cat {
    margin: 0;
}

.store-product-card__cat a {
    display: inline-block;
    padding: 0.3rem 0.85rem;
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--store-primary, #336699);
    background: rgba(51, 102, 153, 0.1);
    border-radius: 2rem;
    transition: background 0.3s ease, color 0.3s ease;
}

.store-product-card__cat a:hover {
    color: #fff;
    background: var(--store-primary, #336699);
    text-decoration: none;
}

.store-product-card__name {
    margin: 0 !important;
    font-size: 1.45rem !important;
    font-weight: 700;
    line-height: 1.55;
    min-height: 4.5rem;
}

.store-product-card__name a {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    color: #1e293b;
    transition: color 0.3s ease;
}

.store-product-card__inner:hover .store-product-card__name a {
    color: var(--store-primary, #336699);
}

.store-product-card__rating {
    justify-content: flex-start !important;
    margin: 0 !important;
    gap: 0.45rem;
}

.store-product-card__rating .rating-reviews {
    font-size: 1.15rem;
    font-weight: 500;
    color: #64748b;
}

.store-product-card__price {
    display: flex !important;
    flex-wrap: wrap;
    align-items: baseline;
    gap: 0.55rem;
    margin-top: auto;
    padding-top: 0.35rem;
    white-space: normal !important;
}

.store-product-card__price .new-price {
    font-size: 1.65rem;
    font-weight: 800;
    color: #0f172a;
}

.store-product-card__price .old-price {
    font-size: 1.25rem;
    font-weight: 500;
    color: #94a3b8;
}

/* Shop grid — equal height cards */
.product-wrapper .store-product-card {
    display: flex;
    flex-direction: column;
}

.product-wrapper .store-product-card__inner {
    width: 100%;
}

/* ── Home product side banners ── */
.home-product-side-banner {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    min-height: 21rem;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    background: var(--banner-bg, #ebeced);
    border: 1px solid rgba(var(--store-primary-rgb, 51, 102, 153), 0.1);
    border-radius: 1.4rem;
    box-shadow: 0 8px 28px rgba(15, 23, 42, 0.08);
    transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1),
        box-shadow 0.45s ease,
        border-color 0.45s ease;
}

.home-product-side-banner__media {
    position: absolute;
    inset: 0;
}

.home-product-side-banner__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center bottom;
    transition: transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
}

.home-product-side-banner__content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin: 1.35rem;
    padding: 1.35rem 1.5rem;
    text-align: right;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.72);
    border-radius: 1.1rem;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.1);
    transition: transform 0.45s ease, background 0.45s ease, box-shadow 0.45s ease;
}

.home-product-side-banner__subtitle {
    display: block;
    margin-bottom: 0.55rem;
    font-size: 1.35rem;
    font-weight: 500;
    color: #555;
    line-height: 1.4;
}

.home-product-side-banner__divider {
    display: block;
    width: 3.5rem;
    height: 2px;
    margin-bottom: 0.8rem;
    background: #333;
}

.home-product-side-banner__title {
    display: block;
    margin-bottom: 1.2rem;
    font-size: 2rem;
    font-weight: 800;
    line-height: 1.15;
    color: #111;
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

.home-product-side-banner__title .font-weight-normal {
    font-weight: 500 !important;
}

.home-product-side-banner__cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.55rem 1.15rem;
    font-size: 1.2rem;
    font-weight: 700;
    color: #111;
    background: transparent;
    border: 2px solid #222;
    border-radius: 2rem;
    transition: gap 0.35s ease, background 0.35s ease, color 0.35s ease, border-color 0.35s ease, transform 0.35s ease;
}

.home-product-side-banner__shine {
    position: absolute;
    inset: 0;
    z-index: 3;
    background: linear-gradient(120deg, transparent 35%, rgba(255, 255, 255, 0.45) 50%, transparent 65%);
    transform: translateX(120%);
    transition: transform 0.8s ease;
    pointer-events: none;
}

.home-product-side-banner:hover,
.home-product-side-banner:focus-visible {
    transform: translateY(-6px);
    border-color: rgba(var(--store-primary-rgb, 51, 102, 153), 0.28);
    box-shadow: 0 18px 40px rgba(var(--store-primary-rgb, 51, 102, 153), 0.16);
    text-decoration: none;
    color: inherit;
    outline: none;
}

.home-product-side-banner:hover .home-product-side-banner__media img,
.home-product-side-banner:focus-visible .home-product-side-banner__media img {
    transform: scale(1.08);
}

.home-product-side-banner:hover .home-product-side-banner__content,
.home-product-side-banner:focus-visible .home-product-side-banner__content {
    transform: translateY(-3px);
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 12px 28px rgba(15, 23, 42, 0.14);
}

.home-product-side-banner:hover .home-product-side-banner__cta,
.home-product-side-banner:focus-visible .home-product-side-banner__cta {
    gap: 0.85rem;
    color: #fff;
    background: var(--store-primary, #336699);
    border-color: var(--store-primary, #336699);
    transform: translateX(-3px);
}

.home-product-side-banner:hover .home-product-side-banner__shine,
.home-product-side-banner:focus-visible .home-product-side-banner__shine {
    transform: translateX(-120%);
}

.home-product-side-banner:focus-visible {
    outline: 2px solid var(--store-primary, #336699);
    outline-offset: 3px;
}

@media (max-width: 991px) {
    .home-product-side-banner {
        display: flex;
        flex-direction: column;
        min-height: 0;
        padding: 0;
    }

    .home-product-side-banner__media {
        position: relative;
        inset: auto;
        flex: 0 0 auto;
        height: 14.5rem;
        width: 100%;
    }

    .home-product-side-banner__media img {
        object-position: center center;
    }

    .home-product-side-banner__content {
        width: 100%;
        margin: 0;
        padding: 1.15rem 1.25rem 1.35rem;
        border: none;
        border-top: 1px solid #e8eef5;
        border-radius: 0 0 1.4rem 1.4rem;
        background: #fff;
        box-shadow: none;
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
    }

    .home-product-side-banner__shine {
        display: none;
    }

    .home-product-side-banner__title {
        font-size: 1.65rem;
        margin-bottom: 1rem;
    }

    .home-product-side-banner__subtitle {
        font-size: 1.2rem;
    }
}

@media (max-width: 767px) {
    .home-product-side-banner {
        min-height: 0;
    }

    .home-product-side-banner__media {
        height: 13.5rem;
    }

    .home-product-side-banner__content {
        margin: 0;
        padding: 1rem 1.1rem 1.2rem;
    }

    .home-product-side-banner__title {
        font-size: 1.45rem;
    }

    .store-product-card__media {
        display: block;
        position: relative;
        overflow: hidden;
        padding-bottom: 0;
    }

    .store-product-card__image-link {
        display: block;
        position: relative;
        overflow: hidden;
    }

    .store-product-card__image-link img:last-child {
        opacity: 0 !important;
    }

    .store-product-card__inner:hover .store-product-card__image-link img:last-child,
    .store-product-card__inner:focus-within .store-product-card__image-link img:last-child {
        opacity: 1 !important;
    }

    .store-product-card__shine {
        display: none;
    }

    .store-product-card__actions,
    .store-product-card__labels {
        position: absolute;
        z-index: 3;
    }

    .store-product-card__actions {
        top: 0.75rem;
        left: 0.75rem;
    }

    .store-product-card__labels {
        top: 0.75rem;
        right: 0.75rem;
    }

    .store-product-card__cart-form {
        position: static;
        width: 100%;
        margin: 0;
        padding: 0.75rem 1rem 0 !important;
        transform: none;
        background: transparent;
    }

    .store-product-card__details {
        padding: 0.85rem 1.2rem 1.2rem !important;
        gap: 0.45rem;
    }

    .store-product-card__name {
        min-height: auto;
        font-size: 1.35rem !important;
    }

    .store-product-card__cart-btn {
        padding: 0.85rem 1.2rem;
        font-size: 1.25rem;
    }
}

/* Home product tabs / filters */
.home-product-tabs-section__subtitle {
    font-size: 1.5rem;
    color: #777;
}

.home-product-tabs__nav {
    display: inline-flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin: 0 auto 0.5rem;
    padding: 0.6rem;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    border: 1px solid #e8eef5;
    border-radius: 2rem;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.home-product-tabs__nav .nav-item {
    margin: 0 !important;
}

.home-product-tabs__link {
    display: inline-flex !important;
    align-items: center;
    gap: 0.6rem;
    padding: 1rem 1.8rem !important;
    font-size: 1.45rem !important;
    font-weight: 600 !important;
    color: #555 !important;
    background: transparent !important;
    border: 1px solid transparent !important;
    border-radius: 2rem !important;
    box-shadow: none !important;
    transition: transform 0.32s cubic-bezier(0.22, 1, 0.36, 1),
        background 0.32s ease,
        color 0.32s ease,
        border-color 0.32s ease,
        box-shadow 0.32s ease !important;
}

.home-product-tabs__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.8rem;
    height: 2.8rem;
    font-size: 1.5rem;
    color: var(--store-primary, #336699);
    background: rgba(51, 102, 153, 0.1);
    border-radius: 50%;
    transition: background 0.32s ease, color 0.32s ease, transform 0.32s ease;
}

.home-product-tabs__link:hover {
    color: var(--store-primary, #336699) !important;
    background: #fff !important;
    border-color: rgba(51, 102, 153, 0.2) !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(15, 23, 42, 0.06) !important;
}

.home-product-tabs__link:hover .home-product-tabs__icon {
    transform: scale(1.08);
    color: #fff;
    background: var(--store-primary, #336699);
}

.home-product-tabs__link.active {
    color: #fff !important;
    background: linear-gradient(135deg, var(--store-primary, #336699) 0%, var(--store-primary-dark, #2a5580) 100%) !important;
    border-color: transparent !important;
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(51, 102, 153, 0.35) !important;
}

.home-product-tabs__link.active .home-product-tabs__icon {
    color: var(--store-primary, #336699);
    background: #fff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.home-product-tabs__link.active::before,
.home-product-tabs__link::before {
    display: none !important;
}

.home-product-tabs__content .tab-pane {
    animation: homeTabFade 0.4s ease;
}

.home-product-tabs__empty {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    padding: 4rem 2rem;
    text-align: center;
    color: #777;
    background: linear-gradient(180deg, #f8fafc 0%, #fff 100%);
    border: 1px dashed #dce4ee;
    border-radius: 1.4rem;
}

.home-product-tabs__empty-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 6rem;
    height: 6rem;
    font-size: 2.4rem;
    color: var(--store-primary, #336699);
    background: rgba(51, 102, 153, 0.1);
    border-radius: 50%;
}

@keyframes homeTabFade {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 767px) {
    .home-product-tabs__nav {
        width: 100%;
        justify-content: center;
        border-radius: 1.4rem;
    }

    .home-product-tabs__link {
        padding: 0.8rem 1.2rem !important;
        font-size: 1.3rem !important;
    }

    .home-product-tabs__icon {
        width: 2.4rem;
        height: 2.4rem;
        font-size: 1.3rem;
    }

    .home-product-tabs__label {
        white-space: nowrap;
    }
}

@media (max-width: 575px) {
    .home-product-tabs__link {
        flex: 1 1 calc(50% - 0.4rem);
        justify-content: center;
        min-width: calc(50% - 0.4rem);
    }
}

/* Quick view modal */
.mfp-product.mfp-bg {
    background: rgba(15, 23, 42, 0.55);
    backdrop-filter: blur(4px);
}

.mfp-product .mfp-container {
    padding: 2rem 1.5rem;
}

.mfp-product .mfp-content {
    max-width: 96rem;
}

.mfp-product .mfp-close {
    top: 1.2rem !important;
    left: 1.2rem !important;
    right: auto !important;
    width: 4.2rem !important;
    height: 4.2rem !important;
    line-height: 4rem !important;
    padding: 0 !important;
    font-size: 2.8rem !important;
    font-weight: 300 !important;
    font-family: Arial, Helvetica, sans-serif !important;
    color: #333 !important;
    background: #fff !important;
    border: none !important;
    border-radius: 50% !important;
    box-shadow: 0 4px 18px rgba(15, 23, 42, 0.12) !important;
    opacity: 1 !important;
    transform: none !important;
    transition: transform 0.25s ease, background 0.25s ease, color 0.25s ease, box-shadow 0.25s ease;
}

.mfp-product .mfp-close::before,
.mfp-product .mfp-close::after {
    display: none !important;
    content: none !important;
}

.mfp-product .mfp-close:hover,
.mfp-product .mfp-close:focus {
    color: #fff !important;
    background: var(--store-primary, #336699) !important;
    transform: scale(1.06) !important;
    opacity: 1 !important;
}

.mfp-product .mfp-close:active {
    top: 1.2rem !important;
}

.mfp-product .product-popup.quick-view-modal {
    margin-bottom: 0;
    padding: 0;
    background: #fff;
    border-radius: 1.8rem;
    overflow: hidden;
    box-shadow: 0 24px 60px rgba(15, 23, 42, 0.18);
}

.mfp-product .quick-view-modal__gallery-wrap {
    position: relative;
    padding: 1.6rem;
    background: linear-gradient(180deg, #f8fafc 0%, #fff 100%);
    border-radius: 1.4rem;
}

.mfp-product .quick-view-modal__discount {
    position: absolute;
    top: 2.4rem;
    right: 2.4rem;
    z-index: 3;
    padding: 0.5rem 1.1rem;
    font-size: 1.25rem;
    font-weight: 700;
    color: #fff;
    background: linear-gradient(135deg, #f97316 0%, #ef4444 100%);
    border-radius: 2rem;
    box-shadow: 0 4px 14px rgba(239, 68, 68, 0.35);
}

.mfp-product .quick-view-modal__gallery {
    border-radius: 1.2rem;
    overflow: hidden;
}

.mfp-product .quick-view-modal__gallery .product-image img {
    border-radius: 1.2rem;
}

.mfp-product .quick-view-modal__thumbs {
    margin-top: 1rem;
}

.mfp-product .quick-view-modal__thumbs .product-thumb {
    border-radius: 0.8rem;
    overflow: hidden;
    border: 2px solid transparent;
    transition: border-color 0.3s ease, transform 0.3s ease;
}

.mfp-product .quick-view-modal__thumbs .swiper-slide-thumb-active .product-thumb,
.mfp-product .quick-view-modal__thumbs .product-thumb:hover {
    border-color: var(--store-primary, #336699);
    transform: translateY(-2px);
}

.mfp-product .quick-view-modal__details {
    position: static !important;
    top: auto !important;
    right: auto !important;
    width: auto !important;
    height: auto !important;
    padding: 2rem 2rem 2rem 0.5rem !important;
    max-height: min(78vh, 720px);
    overflow-x: hidden;
    overflow-y: auto;
}

@media (min-width: 768px) {
    .mfp-product .quick-view-modal > .row > .col-md-6:last-child {
        display: flex;
        flex-direction: column;
    }

    .mfp-product .quick-view-modal .quick-view-modal__details {
        flex: 1 1 auto;
    }
}

.mfp-product .quick-view-modal__eyebrow {
    display: inline-block;
    margin-bottom: 0.8rem;
    padding: 0.35rem 1rem;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--store-primary, #336699);
    background: rgba(51, 102, 153, 0.1);
    border-radius: 2rem;
}

.mfp-product .quick-view-modal__cat {
    display: inline-block;
    margin-bottom: 0.8rem;
    padding: 0.3rem 0.9rem;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--store-primary, #336699);
    background: rgba(51, 102, 153, 0.08);
    border-radius: 2rem;
    transition: background 0.3s ease, color 0.3s ease;
}

.mfp-product .quick-view-modal__cat:hover {
    color: #fff;
    background: var(--store-primary, #336699);
    text-decoration: none;
}

.mfp-product .quick-view-modal__title {
    margin-bottom: 1rem !important;
    font-size: 2.4rem !important;
    font-weight: 800;
    line-height: 1.45;
    color: #222;
}

.mfp-product .quick-view-modal__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    margin-bottom: 1.4rem;
}

.mfp-product .quick-view-modal__chip {
    display: inline-block;
    padding: 0.35rem 0.9rem;
    font-size: 1.2rem;
    font-weight: 600;
    color: #555;
    background: #f1f5f9;
    border-radius: 2rem;
}

.mfp-product .quick-view-modal__chip.is-success {
    color: #166534;
    background: #ecfdf5;
}

.mfp-product .quick-view-modal__chip.is-danger {
    color: #991b1b;
    background: #fef2f2;
}

.mfp-product .quick-view-modal__price-box {
    margin-bottom: 1.4rem;
    padding: 1.4rem 1.6rem;
    background: linear-gradient(135deg, #f8fafc 0%, #fff 100%);
    border: 1px solid #e8eef5;
    border-radius: 1.2rem;
}

.mfp-product .quick-view-modal__price {
    margin-bottom: 0.6rem;
}

.mfp-product .quick-view-modal__price .new-price {
    font-size: 2.2rem;
    font-weight: 800;
    color: #222;
}

.mfp-product .quick-view-modal__price .old-price {
    font-size: 1.5rem;
    color: #999;
}

.mfp-product .quick-view-modal__rating {
    justify-content: flex-start !important;
    margin-bottom: 0;
}

.mfp-product .quick-view-modal__desc {
    margin-bottom: 1.4rem;
    font-size: 1.4rem;
    line-height: 1.8;
    color: #666;
}

.mfp-product .quick-view-modal__actions {
    margin-bottom: 1.4rem;
    padding: 1.4rem;
    background: #f8fafc;
    border: 1px solid #eef2f6;
    border-radius: 1.2rem;
}

.mfp-product .quick-view-modal__form {
    display: grid !important;
    grid-template-columns: 14rem minmax(0, 1fr);
    column-gap: 2.4rem !important;
    row-gap: 1.2rem;
    align-items: end;
    margin-bottom: 0 !important;
}

.mfp-product .quick-view-modal__form .product-qty-form {
    grid-column: 1;
    grid-row: 1;
    flex: none !important;
    width: 14rem;
    max-width: 14rem;
    margin: 0 !important;
    position: relative;
    z-index: 2;
}

.mfp-product .quick-view-modal__form .quick-view-modal__cart-btn {
    grid-column: 2;
    grid-row: 1;
}

.mfp-product .quick-view-modal__qty-label {
    display: block;
    margin-bottom: 0.5rem;
    font-size: 1.25rem;
    font-weight: 600;
    color: #555;
}

.mfp-product .quick-view-modal__form .qty-input-group {
    display: grid !important;
    grid-template-columns: 3.6rem minmax(3.2rem, 1fr) 3.6rem !important;
    align-items: center;
    width: 100%;
    padding: 0 0.3rem;
    border-radius: 1rem !important;
    border: 1px solid #dce4ee !important;
    height: 4.8rem !important;
    background: #fff;
}

.mfp-product .quick-view-modal__form .qty-input-group .quantity.form-control {
    grid-column: 2;
    grid-row: 1;
    position: static !important;
    width: 100% !important;
    min-width: 3.2rem !important;
    height: 100% !important;
    padding: 0 0.4rem !important;
    margin: 0 !important;
    border: none !important;
    text-align: center !important;
    font-family: "Cairo", sans-serif !important;
    font-size: 1.5rem !important;
    font-weight: 700 !important;
    color: #222 !important;
    background: transparent !important;
    box-shadow: none !important;
    opacity: 1 !important;
    visibility: visible !important;
    -moz-appearance: textfield;
    flex: none !important;
}

.mfp-product .quick-view-modal__form .qty-input-group .quantity-minus {
    grid-column: 1;
    grid-row: 1;
}

.mfp-product .quick-view-modal__form .qty-input-group .quantity-plus {
    grid-column: 3;
    grid-row: 1;
}

.mfp-product .quick-view-modal__form .qty-input-group button {
    position: static !important;
    top: auto !important;
    left: auto !important;
    right: auto !important;
    transform: none !important;
    width: 3.2rem !important;
    height: 3.2rem !important;
    margin: 0 !important;
    border-radius: 0.8rem !important;
    background: #f1f5f9 !important;
    color: #444 !important;
    font-size: 1.2rem !important;
    cursor: pointer;
    z-index: 2;
}

.mfp-product .quick-view-modal__form .qty-input-group button:hover {
    background: var(--store-primary, #336699) !important;
    color: #fff !important;
}

.mfp-product .quick-view-modal__form .quick-view-modal__cart-btn,
.mfp-product .quick-view-modal__form .btn-add-cart {
    flex: none !important;
    width: 100% !important;
    min-width: 0 !important;
    margin: 0 !important;
    margin-bottom: 0 !important;
    padding: 1.2rem 1.8rem !important;
    font-size: 1.45rem !important;
    font-weight: 700 !important;
    border: none !important;
    border-radius: 1rem !important;
    background: linear-gradient(135deg, var(--store-primary, #336699) 0%, var(--store-primary-dark, #2a5580) 100%) !important;
    box-shadow: 0 6px 18px rgba(51, 102, 153, 0.28);
    transition: transform 0.3s ease, box-shadow 0.3s ease, filter 0.3s ease;
}

.mfp-product .quick-view-modal__cart-btn:hover {
    filter: brightness(1.06);
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(51, 102, 153, 0.4);
}

.mfp-product .quick-view-modal__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding-top: 1.2rem;
    border-top: 1px solid #eef2f6;
}

.mfp-product .quick-view-modal__details-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--store-primary, #336699);
    transition: gap 0.3s ease, color 0.3s ease;
}

.mfp-product .quick-view-modal__details-link:hover {
    color: var(--store-primary-dark, #2a5580);
    gap: 0.8rem;
    text-decoration: none;
}

.mfp-product .quick-view-modal__tools {
    display: flex;
    gap: 0.6rem;
}

.mfp-product .quick-view-modal__tool {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 3.8rem;
    height: 3.8rem;
    font-size: 1.7rem;
    color: #555;
    background: #fff;
    border: 1px solid #e8eef5;
    border-radius: 50%;
    transition: transform 0.3s ease, background 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}

.mfp-product .quick-view-modal__tool:hover {
    color: #fff;
    background: var(--store-primary, #336699);
    border-color: var(--store-primary, #336699);
    transform: scale(1.08);
    text-decoration: none;
}

.mfp-product button.quick-view-modal__tool {
    padding: 0;
    cursor: pointer;
}

.mfp-product .btn-add-wishlist.added {
    color: #e11d48;
    border-color: #fecdd3;
    background: #fff1f2;
}

/* Header top bar — primary brand strip */
.header-top {
    background: var(--store-primary, #336699);
    color: #fff;
    font-family: "Cairo", sans-serif !important;
}

.header-top .welcome-msg {
    color: #fff;
    font-family: "Cairo", sans-serif !important;
}

.header-top .header-top-link,
.header-top .header-top-link--static {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    font-family: "Cairo", sans-serif !important;
    font-size: 1.1rem;
    font-weight: 600;
    color: #fff;
    text-decoration: none;
    white-space: nowrap;
}

.header-top .header-top-link:hover {
    color: rgba(255, 255, 255, 0.88);
    text-decoration: none;
}

.header-top .header-top-link--static {
    cursor: default;
}

.header-top .header-right a.header-top-link,
.header-top .header-right .header-top-link--static {
    color: #fff;
}

.header-top .header-right i[class*="w-icon"] {
    font-family: "wolmart" !important;
    font-style: normal;
    font-size: 1.35rem;
    line-height: 1;
    color: #fff;
}

.header-top .header-right .delimiter {
    color: rgba(255, 255, 255, 0.65);
}

.header-top .header-right .divider {
    background-color: rgba(255, 255, 255, 0.35);
}

.header-middle .wishlist-count {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 1.6rem;
    height: 1.6rem;
    padding: 0 0.35rem;
    margin-right: -0.4rem;
    margin-top: -0.8rem;
    font-size: 1rem;
    font-weight: 700;
    line-height: 1;
    color: #fff;
    background: var(--store-primary, #336699);
    border-radius: 1rem;
}

/* Product attribute / variant swatches */
.store-product-variations {
    margin: 1.25rem 0 1rem;
    padding-top: 0.25rem;
}

.store-product-variation__label {
    display: block;
    margin-bottom: 0.5rem;
    font-family: "Cairo", sans-serif !important;
    font-size: 1.2rem;
    font-weight: 700;
    color: #334155;
}

.store-product-variation__hint {
    margin: 0.35rem 0 0;
    font-size: 1rem;
    font-weight: 600;
    color: var(--store-primary, #336699);
}

.store-product-variation__options {
    gap: 0.5rem;
}

.store-product-variation .store-variant-option.size {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 2.8rem;
    min-height: 2.8rem;
    padding: 0.35rem 0.85rem;
    font-family: "Cairo", sans-serif !important;
    font-size: 1.1rem;
    font-weight: 700;
    color: #475569;
    background: #f8fafc;
    border: 2px solid #e2e8f0;
    border-radius: 0.65rem;
    text-decoration: none;
    transition: border-color 0.2s ease, color 0.2s ease, background 0.2s ease;
}

.store-product-variation .store-variant-option.size:hover,
.store-product-variation .store-variant-option.size.active {
    color: var(--store-primary, #336699);
    background: #fff;
    border-color: var(--store-primary, #336699);
}

.store-product-variation .store-variant-option.color {
    width: 2.4rem;
    height: 2.4rem;
    border: 2px solid #e2e8f0;
    border-radius: 50%;
    box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.06);
}

.store-product-variation .store-variant-option.color.active {
    border-color: var(--store-primary, #336699);
    box-shadow: 0 0 0 3px rgba(51, 102, 153, 0.2);
}

.store-product-variation .store-variant-option.image {
    display: inline-flex;
    padding: 2px;
    border: 2px solid #e2e8f0;
    border-radius: 0.5rem;
    overflow: hidden;
}

.store-product-variation .store-variant-option.image img {
    display: block;
    width: 2.5rem;
    height: 2.5rem;
    object-fit: cover;
    border-radius: 0.35rem;
}

.store-product-variation .store-variant-option.image.active {
    border-color: var(--store-primary, #336699);
}

.mfp-product .product-divider {
    display: none;
}

@media (max-width: 991px) {
    .mfp-product .quick-view-modal__details {
        padding: 1.6rem !important;
        max-height: none;
    }

    .mfp-product .quick-view-modal__gallery-wrap {
        padding: 1.2rem;
    }

    .mfp-product .quick-view-modal__title {
        font-size: 2rem !important;
    }

    .mfp-product .quick-view-modal__form {
        grid-template-columns: 1fr;
        column-gap: 0 !important;
        row-gap: 1.2rem;
    }

    .mfp-product .quick-view-modal__form .quick-view-modal__cart-btn {
        grid-column: 1;
        grid-row: 1;
    }

    .mfp-product .quick-view-modal__form .product-qty-form {
        grid-column: 1;
        grid-row: 2;
        width: 100%;
        max-width: 100%;
    }
}

/* ── Home hero slider ── */
.home-hero .intro-slide {
    position: relative;
    overflow: hidden;
    min-height: clamp(420px, 52vh, 560px);
}

.home-hero__bg {
    position: absolute;
    inset: -4%;
    background-size: cover;
    background-position: center;
    animation: homeHeroKenBurns 14s ease-in-out infinite alternate;
    will-change: transform;
}

.home-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        105deg,
        rgba(255, 255, 255, 0.08) 0%,
        rgba(255, 255, 255, 0.55) 38%,
        rgba(248, 250, 252, 0.92) 62%,
        rgba(255, 255, 255, 0.98) 100%
    );
    pointer-events: none;
}

.home-hero__container {
    position: relative;
    z-index: 2;
    height: 100%;
}

.home-hero .slide-image {
    position: absolute !important;
    left: 4% !important;
    right: auto !important;
    top: 50% !important;
    width: auto !important;
    max-width: min(44%, 480px);
    margin: 0;
    transform: translateY(-50%);
    z-index: 2;
    filter: drop-shadow(0 24px 40px rgba(15, 23, 42, 0.18));
}

.home-hero__product-img {
    width: 100%;
    height: auto;
    animation: homeHeroFloat 5s ease-in-out infinite;
}

.home-hero .banner-content,
.home-hero__content {
    position: absolute !important;
    right: 5% !important;
    left: auto !important;
    top: 50% !important;
    transform: translateY(-50%);
    max-width: min(48%, 520px);
    margin: 0 !important;
    text-align: right;
}

.home-hero__badge {
    display: inline-block;
    margin-bottom: 1rem;
    padding: 0.45rem 1.2rem;
    font-size: 1.25rem;
    font-weight: 700;
    color: #fff;
    background: var(--hero-accent, var(--store-primary, #336699));
    border-radius: 2rem;
    box-shadow: 0 6px 18px color-mix(in srgb, var(--hero-accent, var(--store-primary, #336699)) 35%, transparent);
}

.home-hero__eyebrow {
    margin-bottom: 0.6rem;
    font-size: 1.5rem !important;
    font-weight: 600;
    color: #555;
    letter-spacing: 0;
}

.home-hero .banner-title,
.home-hero__title {
    margin-bottom: 1rem !important;
    font-size: clamp(2.8rem, 4.5vw, 4.8rem) !important;
    font-weight: 800 !important;
    line-height: 1.15 !important;
    letter-spacing: 0 !important;
    color: #111;
}

.home-hero__desc {
    margin-bottom: 1.8rem !important;
    font-size: 1.5rem !important;
    line-height: 1.7;
    color: #666;
}

.home-hero__btn {
    display: inline-flex !important;
    align-items: center;
    gap: 0.8rem;
    padding: 1.1rem 2rem !important;
    font-size: 1.45rem !important;
    font-weight: 700 !important;
    color: #fff !important;
    background: var(--hero-accent, var(--store-primary, #336699)) !important;
    border: none !important;
    border-radius: 1rem !important;
    box-shadow: 0 10px 28px color-mix(in srgb, var(--hero-accent, var(--store-primary, #336699)) 38%, transparent);
    transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
        box-shadow 0.35s ease,
        filter 0.35s ease;
}

.home-hero__btn:hover {
    color: #fff !important;
    filter: brightness(1.06);
    transform: translateY(-3px);
    box-shadow: 0 14px 32px color-mix(in srgb, var(--hero-accent, var(--store-primary, #336699)) 45%, transparent);
}

.home-hero__btn i {
    font-size: 1.2em !important;
    transition: transform 0.35s ease;
}

.home-hero__btn:hover i {
    transform: translateX(-4px);
}

.home-hero__pagination {
    bottom: 1.6rem !important;
}

.home-hero__pagination .swiper-pagination-bullet {
    width: 1rem;
    height: 1rem;
    margin: 0 0.35rem !important;
    background: #cbd5e1;
    opacity: 1;
    transition: transform 0.3s ease, background 0.3s ease, width 0.3s ease;
}

.home-hero__pagination .swiper-pagination-bullet-active {
    width: 2.4rem;
    border-radius: 1rem;
    background: var(--store-primary, #336699);
}

.home-hero__nav {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 4.2rem !important;
    height: 4.2rem !important;
    padding: 0 !important;
    margin: 0 !important;
    background: #fff !important;
    border: 1px solid rgba(226, 232, 240, 0.95) !important;
    border-radius: 5px !important;
    box-shadow: 0 6px 20px rgba(15, 23, 42, 0.1) !important;
    color: #334155 !important;
    font-size: 1.6rem !important;
    line-height: 1 !important;
    transform: translateY(-50%) !important;
    transition: background 0.3s ease, color 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease !important;
}

.home-hero__nav::before {
    position: static !important;
    display: block !important;
    font-size: 1.6rem !important;
    line-height: 1 !important;
    font-weight: 400 !important;
    transform: none !important;
    margin: 0 !important;
}

.home-hero .swiper-container:hover .home-hero__nav {
    opacity: 1;
}

.home-hero__nav:hover {
    background: var(--store-primary, #336699) !important;
    color: #fff !important;
    border-color: var(--store-primary, #336699) !important;
    transform: translateY(-50%) !important;
    box-shadow: 0 8px 22px rgba(var(--store-primary-rgb, 51, 102, 153), 0.24) !important;
}

.home-hero .nav-inner:hover > .swiper-button-prev.home-hero__nav {
    right: 2rem;
}

.home-hero .nav-inner:hover > .swiper-button-next.home-hero__nav {
    left: 2rem;
}

@media (min-width: 992px) {
    .home-hero .intro-slide1 .banner-content,
    .home-hero .intro-slide2 .banner-content,
    .home-hero .intro-slide3 .banner-content,
    .home-hero .intro-slide1 .home-hero__content,
    .home-hero .intro-slide2 .home-hero__content,
    .home-hero .intro-slide3 .home-hero__content {
        left: auto !important;
        right: 347px !important;
        text-align: right !important;
    }
}

.home-hero .intro-slide1 .slide-image,
.home-hero .intro-slide2 .slide-image,
.home-hero .intro-slide3 .slide-image {
    left: 4% !important;
    top: 50% !important;
}

/* ── Home features bar ── */
.home-features {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.4rem;
    margin: 2.4rem 0;
}

.home-feature-card {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    min-height: 11.5rem;
    padding: 1.85rem 1.5rem 1.65rem;
    text-align: center;
    background: linear-gradient(180deg, #fff 0%, #f8fafc 100%);
    border: 1px solid #e2e8f0;
    border-radius: 1.15rem;
    overflow: hidden;
    box-shadow: 0 6px 22px rgba(15, 23, 42, 0.05);
    transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1),
        box-shadow 0.4s ease,
        border-color 0.4s ease;
    animation: homeFeatureIn 0.65s cubic-bezier(0.22, 1, 0.36, 1) both;
    animation-delay: var(--feature-delay, 0s);
}

.home-feature-card::before {
    content: "";
    position: absolute;
    top: 0;
    right: 1.35rem;
    left: 1.35rem;
    height: 3px;
    border-radius: 0 0 0.35rem 0.35rem;
    background: linear-gradient(90deg, transparent 0%, var(--feature-accent, var(--store-primary, #336699)) 50%, transparent 100%);
    opacity: 0.9;
    pointer-events: none;
}

.home-feature-card::after {
    content: "";
    position: absolute;
    bottom: 0;
    right: 1.35rem;
    left: 1.35rem;
    height: 3px;
    border-radius: 0.35rem 0.35rem 0 0;
    background: linear-gradient(90deg, transparent 0%, var(--feature-accent, var(--store-primary, #336699)) 50%, transparent 100%);
    opacity: 0.9;
    pointer-events: none;
}

.home-feature-card--blue {
    --feature-accent: var(--store-primary, #336699);
    --feature-accent-rgb: var(--store-primary-rgb, 51, 102, 153);
}

.home-feature-card--teal {
    --feature-accent: #0f766e;
    --feature-accent-rgb: 15, 118, 110;
}

.home-feature-card--amber {
    --feature-accent: #d97706;
    --feature-accent-rgb: 217, 119, 6;
}

.home-feature-card--violet {
    --feature-accent: #7c3aed;
    --feature-accent-rgb: 124, 58, 237;
}

.home-feature-card__icon-wrap {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 4.75rem;
    height: 4.75rem;
    font-size: 2.15rem;
    border-radius: 1rem;
    border: 1px solid rgba(var(--feature-accent-rgb, 51, 102, 153), 0.14);
    background: #fff;
    box-shadow:
        0 4px 14px rgba(var(--feature-accent-rgb, 51, 102, 153), 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
    transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1),
        background 0.4s ease,
        color 0.4s ease,
        border-color 0.4s ease,
        box-shadow 0.4s ease;
}

.home-feature-card__icon-wrap::after {
    content: "";
    position: absolute;
    inset: -0.45rem;
    z-index: -1;
    border-radius: 1.2rem;
    background: radial-gradient(circle, rgba(var(--feature-accent-rgb, 51, 102, 153), 0.22) 0%, transparent 72%);
    opacity: 0.55;
    transition: opacity 0.4s ease, transform 0.4s ease;
    pointer-events: none;
}

.home-feature-card__body {
    position: relative;
    z-index: 1;
    width: 100%;
}

.home-feature-card--blue .home-feature-card__icon-wrap {
    color: var(--store-primary, #336699);
    background: rgba(var(--store-primary-rgb, 51, 102, 153), 0.08);
}

.home-feature-card--teal .home-feature-card__icon-wrap {
    color: #0f766e;
    background: rgba(15, 118, 110, 0.08);
}

.home-feature-card--amber .home-feature-card__icon-wrap {
    color: #d97706;
    background: rgba(217, 119, 6, 0.08);
}

.home-feature-card--violet .home-feature-card__icon-wrap {
    color: #7c3aed;
    background: rgba(124, 58, 237, 0.08);
}

.home-feature-card__title {
    margin: 0 0 0.45rem;
    font-size: 1.48rem;
    font-weight: 800;
    color: #1e293b;
}

.home-feature-card__desc {
    margin: 0;
    font-size: 1.22rem;
    font-weight: 600;
    color: #64748b;
    line-height: 1.55;
}

.home-feature-card__shine {
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, transparent 35%, rgba(255, 255, 255, 0.55) 50%, transparent 65%);
    transform: translateX(120%);
    transition: transform 0.7s ease;
    pointer-events: none;
}

.home-feature-card:hover,
.home-feature-card:focus-within {
    transform: translateY(-5px);
    border-color: rgba(var(--feature-accent-rgb, 51, 102, 153), 0.28);
    box-shadow:
        0 14px 32px rgba(15, 23, 42, 0.08),
        0 0 0 1px rgba(var(--feature-accent-rgb, 51, 102, 153), 0.06);
}

.home-feature-card:hover::before,
.home-feature-card:focus-within::before,
.home-feature-card:hover::after,
.home-feature-card:focus-within::after {
    opacity: 1;
}

.home-feature-card:hover .home-feature-card__icon-wrap,
.home-feature-card:focus-within .home-feature-card__icon-wrap {
    transform: scale(1.06);
    border-color: rgba(var(--feature-accent-rgb, 51, 102, 153), 0.22);
    box-shadow:
        0 8px 20px rgba(var(--feature-accent-rgb, 51, 102, 153), 0.18),
        inset 0 1px 0 rgba(255, 255, 255, 0.95);
}

.home-feature-card:hover .home-feature-card__icon-wrap::after,
.home-feature-card:focus-within .home-feature-card__icon-wrap::after {
    opacity: 0.85;
    transform: scale(1.08);
}

.home-feature-card--blue:hover .home-feature-card__icon-wrap,
.home-feature-card--blue:focus-within .home-feature-card__icon-wrap {
    color: #fff;
    background: var(--store-primary, #336699);
}

.home-feature-card--teal:hover .home-feature-card__icon-wrap,
.home-feature-card--teal:focus-within .home-feature-card__icon-wrap {
    color: #fff;
    background: #0f766e;
}

.home-feature-card--amber:hover .home-feature-card__icon-wrap,
.home-feature-card--amber:focus-within .home-feature-card__icon-wrap {
    color: #fff;
    background: #d97706;
}

.home-feature-card--violet:hover .home-feature-card__icon-wrap,
.home-feature-card--violet:focus-within .home-feature-card__icon-wrap {
    color: #fff;
    background: #7c3aed;
}

.home-feature-card:hover .home-feature-card__shine {
    transform: translateX(-120%);
}

/* ── Home promo banners ── */
.home-promo-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.6rem;
    margin-bottom: 3.2rem;
}

.home-promo-card {
    position: relative;
    display: flex;
    align-items: center;
    min-height: 22rem;
    overflow: hidden;
    text-decoration: none;
    border-radius: 1.6rem;
    box-shadow: 0 8px 30px rgba(15, 23, 42, 0.1);
    transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1),
        box-shadow 0.45s ease;
    animation: homePromoIn 0.7s cubic-bezier(0.22, 1, 0.36, 1) both;
    animation-delay: var(--promo-delay, 0s);
}

.home-promo-card__media {
    position: absolute;
    inset: 0;
}

.home-promo-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
}

.home-promo-card__overlay {
    display: none;
}

.home-promo-card__content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    width: fit-content;
    max-width: min(58%, 24rem);
    height: auto;
    min-height: 0;
    margin: 2rem;
    padding: 1.65rem 1.85rem;
    text-align: right;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.65);
    border-radius: 1.2rem;
    box-shadow: 0 10px 28px rgba(15, 23, 42, 0.12);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.home-promo-card--light .home-promo-card__content {
    background: rgba(255, 255, 255, 0.88);
    border-color: rgba(255, 255, 255, 0.55);
}

.home-promo-card__badge {
    display: inline-block;
    margin-bottom: 0.8rem;
    padding: 0.35rem 1rem;
    font-size: 1.2rem;
    font-weight: 700;
    color: #fff;
    background: #f97316;
    border-radius: 2rem;
}

.home-promo-card--light .home-promo-card__badge {
    color: #fff;
    background: var(--store-primary, #336699);
}

.home-promo-card__title {
    display: block;
    font-size: 2.6rem;
    font-weight: 800;
    line-height: 1.2;
    color: #111;
}

.home-promo-card--light .home-promo-card__title {
    color: #111;
}

.home-promo-card__subtitle {
    display: block;
    margin-bottom: 0.8rem;
    font-size: 1.5rem;
    font-weight: 500;
    color: #555;
}

.home-promo-card--light .home-promo-card__subtitle {
    color: #555;
}

.home-promo-card__price {
    display: block;
    margin-bottom: 1.2rem;
    font-size: 1.35rem;
    color: #666;
}

.home-promo-card--light .home-promo-card__price {
    color: #666;
}

.home-promo-card__price strong {
    font-size: 1.6rem;
    font-weight: 800;
    color: #fbbf24;
}

.home-promo-card--light .home-promo-card__price strong {
    color: var(--store-primary, #336699);
}

.home-promo-card__cta {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.65rem 1.2rem;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--store-primary, #336699);
    background: rgba(var(--store-primary-rgb, 51, 102, 153), 0.08);
    border: 1px solid rgba(var(--store-primary-rgb, 51, 102, 153), 0.2);
    border-radius: 2rem;
    backdrop-filter: blur(6px);
    transition: background 0.35s ease, gap 0.35s ease, transform 0.35s ease, color 0.35s ease, border-color 0.35s ease;
}

.home-promo-card--light .home-promo-card__cta {
    color: var(--store-primary, #336699);
    background: rgba(var(--store-primary-rgb, 51, 102, 153), 0.08);
    border-color: rgba(var(--store-primary-rgb, 51, 102, 153), 0.2);
}

.home-promo-card:hover,
.home-promo-card:focus-visible {
    transform: translateY(-6px);
    box-shadow: 0 18px 44px rgba(15, 23, 42, 0.16);
    text-decoration: none;
}

.home-promo-card:hover .home-promo-card__media img {
    transform: scale(1.08);
}

.home-promo-card:hover .home-promo-card__cta {
    gap: 1rem;
    background: var(--store-primary, #336699);
    color: #fff;
    border-color: var(--store-primary, #336699);
}

.home-promo-card--light:hover .home-promo-card__cta {
    background: var(--store-primary, #336699);
    color: #fff;
}

@keyframes homeHeroKenBurns {
    from { transform: scale(1); }
    to { transform: scale(1.07); }
}

@keyframes homeHeroFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
}

@keyframes homeFeatureIn {
    from {
        opacity: 0;
        transform: translateY(18px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes homePromoIn {
    from {
        opacity: 0;
        transform: translateY(24px) scale(0.98);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes homeFashionKenBurns {
    0% {
        background-position: 50% 50%;
    }
    100% {
        background-position: 56% 44%;
    }
}

@keyframes homeFashionIn {
    from {
        opacity: 0;
        transform: translateY(22px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ── Home wide fashion banner ── */
.home-fashion-banner {
    position: relative;
    overflow: hidden;
    min-height: clamp(18rem, 24vw, 26rem);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 1.35rem;
    background-color: var(--home-fashion-bg, #383839);
    box-shadow: 0 14px 40px rgba(15, 23, 42, 0.14);
}

.home-fashion-banner__media {
    position: absolute;
    inset: 0;
    background-color: var(--home-fashion-bg, #383839);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: 108%;
    transform: scale(1);
    transform-origin: center center;
    animation: homeFashionKenBurns 26s ease-in-out infinite alternate;
    transition: transform 2.4s cubic-bezier(0.25, 1, 0.5, 1),
        background-size 2.4s cubic-bezier(0.25, 1, 0.5, 1);
    will-change: transform, background-position;
}

.home-fashion-banner:hover .home-fashion-banner__media {
    transform: scale(1.035);
    background-size: 112%;
}

.home-fashion-banner__shade {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(15, 23, 42, 0.72) 0%, rgba(15, 23, 42, 0.28) 42%, rgba(15, 23, 42, 0.08) 100%),
        linear-gradient(180deg, rgba(15, 23, 42, 0.15) 0%, rgba(15, 23, 42, 0.45) 100%);
    pointer-events: none;
}

.home-fashion-banner__content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem 2rem;
    min-height: clamp(18rem, 24vw, 26rem);
    padding: clamp(1.75rem, 3vw, 3rem) clamp(1.5rem, 3.5vw, 3.5rem);
}

.home-fashion-banner__discount,
.home-fashion-banner__panel,
.home-fashion-banner__cta {
    animation: homeFashionIn 0.85s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.home-fashion-banner__discount {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    flex-shrink: 0;
    padding: 0.85rem 1.15rem;
    color: #fff;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 1rem;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.18);
}

.home-fashion-banner__discount-value {
    font-size: clamp(3.5rem, 6vw, 5.5rem);
    font-weight: 900;
    line-height: 0.9;
    letter-spacing: -0.04em;
    color: var(--store-primary, #f97316);
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.25);
}

.home-fashion-banner__discount-meta {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.1rem;
    line-height: 1.1;
}

.home-fashion-banner__discount-unit {
    font-size: clamp(1.35rem, 2vw, 1.75rem);
    font-weight: 800;
    color: #fff;
}

.home-fashion-banner__discount-label {
    font-size: clamp(0.95rem, 1.2vw, 1.1rem);
    font-weight: 700;
    color: rgba(255, 255, 255, 0.88);
    letter-spacing: 0.04em;
}

.home-fashion-banner__panel {
    flex: 1 1 18rem;
    max-width: min(100%, 36rem);
    padding: clamp(1.15rem, 2vw, 1.65rem) clamp(1.25rem, 2.2vw, 1.85rem);
    text-align: right;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.65);
    border-radius: 1.15rem;
    box-shadow: 0 12px 32px rgba(15, 23, 42, 0.16);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
}

.home-fashion-banner__title {
    margin: 0 0 0.55rem;
    font-size: clamp(1.65rem, 2.8vw, 2.45rem);
    font-weight: 900;
    line-height: 1.25;
    color: #0f172a;
    letter-spacing: -0.02em;
}

.home-fashion-banner__promo {
    margin: 0;
    font-size: clamp(1rem, 1.35vw, 1.2rem);
    font-weight: 500;
    line-height: 1.75;
    color: #475569;
}

.home-fashion-banner__code {
    display: inline-block;
    margin: 0 0.2rem;
    padding: 0.2rem 0.65rem;
    font-size: 0.95em;
    font-weight: 800;
    line-height: 1.4;
    color: var(--store-primary, #336699);
    background: rgba(var(--store-primary-rgb, 51, 102, 153), 0.1);
    border: 1px dashed rgba(var(--store-primary-rgb, 51, 102, 153), 0.35);
    border-radius: 0.45rem;
    letter-spacing: 0.06em;
}

.home-fashion-banner__cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.55rem;
    flex-shrink: 0;
    min-height: 3.5rem;
    padding: 0.85rem 1.65rem !important;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 0.65rem !important;
    box-shadow: 0 8px 22px rgba(var(--store-primary-rgb, 51, 102, 153), 0.28);
    transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.3s ease;
}

.home-fashion-banner__cta:hover,
.home-fashion-banner__cta:focus {
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(var(--store-primary-rgb, 51, 102, 153), 0.34);
}

@media (max-width: 991px) {
    .home-fashion-banner__content {
        flex-direction: column;
        align-items: stretch;
        justify-content: center;
    }

    .home-fashion-banner__discount {
        align-self: flex-start;
    }

    .home-fashion-banner__panel {
        max-width: 100%;
    }

    .home-fashion-banner__cta {
        width: 100%;
    }
}

@media (prefers-reduced-motion: reduce) {
    .home-fashion-banner__media {
        animation: none;
        background-size: cover;
        transition: none;
    }

    .home-fashion-banner:hover .home-fashion-banner__media {
        transform: none;
        background-size: cover;
    }

    .home-fashion-banner__discount,
    .home-fashion-banner__panel,
    .home-fashion-banner__cta {
        animation: none;
    }
}

@media (max-width: 1199px) {
    .home-features {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 991px) {
    .home-hero .slide-image {
        max-width: 38%;
        opacity: 0.95;
    }

    .home-hero .banner-content,
    .home-hero__content {
        max-width: 54%;
        right: 3% !important;
    }

    .home-hero .intro-slide1 .banner-content,
    .home-hero .intro-slide2 .banner-content,
    .home-hero .intro-slide3 .banner-content,
    .home-hero .intro-slide1 .home-hero__content,
    .home-hero .intro-slide2 .home-hero__content,
    .home-hero .intro-slide3 .home-hero__content {
        left: auto !important;
        right: 3% !important;
        text-align: right !important;
    }

    .home-promo-grid {
        grid-template-columns: 1fr;
    }

    .home-promo-card {
        flex-direction: column;
        align-items: stretch;
        min-height: 0;
    }

    .home-promo-card__media {
        position: relative;
        inset: auto;
        flex: 0 0 auto;
        height: 11.5rem;
    }

    .home-promo-card__media img {
        height: 100%;
        background-color: transparent !important;
    }

    .home-promo-card__content {
        width: 100%;
        max-width: 100%;
        margin: 0;
        padding: 1rem 1.1rem 1.15rem;
        background: #fff;
        border: none;
        border-top: 1px solid #eef2f7;
        border-radius: 0 0 1.6rem 1.6rem;
        box-shadow: none;
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
    }

    .home-promo-card__title {
        font-size: 1.85rem;
    }
}

@media (max-width: 767px) {
    .home-promo-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 0.85rem;
    }

    .home-promo-card__media {
        height: 9.5rem;
    }

    .home-promo-card__content {
        margin: 0;
        padding: 0.85rem 0.75rem 0.95rem;
    }

    .home-promo-card__title {
        font-size: 1.25rem;
        line-height: 1.35;
    }

    .home-promo-card__subtitle {
        margin-bottom: 0.45rem;
        font-size: 0.95rem;
    }

    .home-promo-card__badge {
        margin-bottom: 0.45rem;
        padding: 0.25rem 0.65rem;
        font-size: 0.95rem;
    }

    .home-promo-card__cta {
        padding: 0.45rem 0.75rem;
        font-size: 1rem;
    }
}

@media (max-width: 479px) {
    .home-promo-grid {
        grid-template-columns: 1fr;
    }

    .home-promo-card__media {
        height: 12rem;
    }
}

@media (max-width: 767px) {
    .home-hero .intro-slide {
        min-height: 480px;
    }

    .home-hero .slide-image {
        position: relative !important;
        left: auto !important;
        top: auto !important;
        transform: none !important;
        max-width: 70%;
        margin: 2rem auto 0;
        display: block;
    }

    .home-hero .banner-content,
    .home-hero__content {
        position: relative !important;
        right: auto !important;
        left: auto !important;
        top: auto !important;
        transform: none !important;
        max-width: 100%;
        padding: 2rem 1.5rem 3rem;
        text-align: center;
    }

    .home-hero .intro-slide1 .banner-content,
    .home-hero .intro-slide2 .banner-content,
    .home-hero .intro-slide3 .banner-content,
    .home-hero .intro-slide1 .home-hero__content,
    .home-hero .intro-slide2 .home-hero__content,
    .home-hero .intro-slide3 .home-hero__content {
        position: relative !important;
        right: auto !important;
        left: auto !important;
        top: auto !important;
        transform: none !important;
        text-align: center !important;
    }

    .home-hero .intro-slide1 .slide-image,
    .home-hero .intro-slide2 .slide-image,
    .home-hero .intro-slide3 .slide-image {
        position: relative !important;
        left: auto !important;
        right: auto !important;
        top: auto !important;
        transform: none !important;
    }

    .home-hero__badge,
    .home-hero__btn {
        margin-left: auto;
        margin-right: auto;
    }

    .home-features {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .home-feature-card {
        min-height: 10.5rem;
        padding: 1.55rem 1.25rem;
    }
}

/* ── Home deals + bestsellers ── */
.home-deals {
    position: relative;
    padding: 1.75rem;
    background: linear-gradient(165deg, #eef2f7 0%, #f8fafc 52%, #f1f5f9 100%);
    border: 1px solid #cbd5e1;
    border-radius: 2rem;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.85),
        0 10px 30px rgba(15, 23, 42, 0.05);
}

.home-deals-card,
.home-bestsellers-card {
    background: #fff;
    border: 1px solid #b8c5d6;
    border-radius: 1.8rem;
    box-shadow:
        0 16px 44px rgba(15, 23, 42, 0.12),
        0 4px 12px rgba(15, 23, 42, 0.06),
        inset 0 1px 0 rgba(255, 255, 255, 0.92);
    overflow: hidden;
}

.home-deals-card__header,
.home-bestsellers-card__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.6rem 1.8rem;
    border-bottom: 1px solid #cbd5e1;
    background: linear-gradient(180deg, #f1f5f9 0%, #fff 100%);
}

.home-deals-card__eyebrow,
.home-bestsellers-card__eyebrow {
    display: inline-block;
    margin-bottom: 0.35rem;
    padding: 0.3rem 0.9rem;
    font-size: 1.15rem;
    font-weight: 700;
    color: #fff;
    background: linear-gradient(135deg, #f97316 0%, #ef4444 100%);
    border-radius: 2rem;
}

.home-bestsellers-card__eyebrow {
    background: linear-gradient(135deg, var(--store-primary, #336699) 0%, var(--store-primary-dark, #2a5580) 100%);
}

.home-deals-card__title,
.home-bestsellers-card__title {
    margin: 0;
    font-size: 2rem;
    font-weight: 800;
    color: #111;
}

.home-deals-card__nav,
.home-bestsellers-card__nav {
    display: flex;
    gap: 0.6rem;
}

.home-deals-card__nav-btn,
.home-bestsellers-card__nav-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 3.8rem;
    height: 3.8rem;
    padding: 0;
    font-size: 1.5rem;
    color: #444;
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 50%;
    cursor: pointer;
    transition: transform 0.3s ease, background 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}

.home-deals-card__nav-btn:hover,
.home-bestsellers-card__nav-btn:hover {
    color: #fff;
    background: var(--store-primary, #336699);
    border-color: var(--store-primary, #336699);
    transform: scale(1.06);
}

.home-deals-card__swiper {
    padding: 1.6rem 1.8rem 1.8rem;
    background: #fff;
}

.home-deal-product {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
    gap: 2rem;
    align-items: center;
    padding: 1.25rem;
    background: linear-gradient(180deg, #fafbfc 0%, #fff 100%);
    border: 1px solid #dbe3ee;
    border-radius: 1.4rem;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.home-deal-product__gallery {
    position: relative;
    overflow: hidden;
    border: 1px solid #dbe3ee;
    border-radius: 1.4rem;
    background: #f1f5f9;
    aspect-ratio: 1 / 0.92;
    box-shadow: 0 8px 22px rgba(15, 23, 42, 0.08);
}

.home-deal-product__image-link {
    display: block;
    width: 100%;
    height: 100%;
}

.home-deal-product__gallery img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
}

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

.home-deal-product__badge {
    position: absolute;
    top: 1.2rem;
    right: 1.2rem;
    z-index: 2;
    padding: 0.45rem 1rem;
    font-size: 1.2rem;
    font-weight: 700;
    color: #fff;
    background: linear-gradient(135deg, #f97316 0%, #ef4444 100%);
    border-radius: 2rem;
    box-shadow: 0 4px 14px rgba(239, 68, 68, 0.35);
}

.home-deal-product__shine {
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, transparent 35%, rgba(255, 255, 255, 0.3) 50%, transparent 65%);
    transform: translateX(100%);
    transition: transform 0.7s ease;
    pointer-events: none;
}

.home-deal-product__gallery:hover .home-deal-product__shine {
    transform: translateX(-100%);
}

.home-deal-product__cat {
    display: inline-block;
    margin-bottom: 0.6rem;
    padding: 0.3rem 0.9rem;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--store-primary, #336699);
    background: rgba(51, 102, 153, 0.08);
    border-radius: 2rem;
    text-decoration: none;
    transition: background 0.3s ease, color 0.3s ease;
}

.home-deal-product__cat:hover {
    color: #fff;
    background: var(--store-primary, #336699);
}

.home-deal-product__name {
    margin: 0 0 1rem;
    font-size: 2.2rem;
    font-weight: 800;
    line-height: 1.35;
}

.home-deal-product__name a {
    color: #111;
    text-decoration: none;
    transition: color 0.3s ease;
}

.home-deal-product__name a:hover {
    color: var(--store-primary, #336699);
}

.home-deal-product__price-box {
    margin-bottom: 1rem;
    padding: 1.2rem 1.4rem;
    background: #f8fafc;
    border: 1px solid #cbd5e1;
    border-radius: 1.2rem;
}

.home-deal-product__price .new-price {
    font-size: 2rem;
    font-weight: 800;
    color: #111;
}

.home-deal-product__price .old-price {
    font-size: 1.4rem;
    color: #999;
}

.home-deal-product__rating {
    margin-top: 0.5rem;
    margin-bottom: 0 !important;
}

.home-deal-product__desc {
    margin-bottom: 1.2rem;
    font-size: 1.4rem;
    line-height: 1.75;
    color: #666;
}

.home-deal-product__actions {
    margin-bottom: 1rem;
    padding: 1.2rem;
    background: #f8fafc;
    border: 1px solid #cbd5e1;
    border-radius: 1.2rem;
}

.home-deal-product__form {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) 14rem;
    column-gap: 1.5rem !important;
    align-items: end;
    margin: 0 !important;
}

.home-deal-product__cart-btn {
    grid-column: 1;
    grid-row: 1;
    width: 100% !important;
    min-width: 0 !important;
    margin: 0 !important;
    padding: 1.1rem 1.6rem !important;
    font-size: 1.4rem !important;
    font-weight: 700 !important;
    border: none !important;
    border-radius: 1rem !important;
    background: linear-gradient(135deg, var(--store-primary, #336699) 0%, var(--store-primary-dark, #2a5580) 100%) !important;
    box-shadow: 0 6px 18px rgba(51, 102, 153, 0.28);
    transition: transform 0.3s ease, box-shadow 0.3s ease, filter 0.3s ease;
}

.home-deal-product__cart-btn:hover {
    filter: brightness(1.06);
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(51, 102, 153, 0.35);
}

.home-deal-product__qty {
    grid-column: 2;
    grid-row: 1;
    flex: none !important;
    width: 14rem;
    max-width: 14rem;
    margin: 0 !important;
}

.home-deal-product__qty-label {
    display: block;
    margin-bottom: 0.45rem;
    font-size: 1.2rem;
    font-weight: 600;
    color: #555;
}

.home-deal-product__form .qty-input-group {
    display: grid !important;
    grid-template-columns: 3.4rem minmax(3rem, 1fr) 3.4rem !important;
    align-items: center;
    width: 100%;
    height: 4.6rem !important;
    padding: 0 0.3rem;
    border: 1px solid #dce4ee !important;
    border-radius: 1rem !important;
    background: #fff;
}

.home-deal-product__form .qty-input-group .quantity.form-control {
    grid-column: 2;
    padding: 0 0.4rem !important;
    text-align: center !important;
    font-size: 1.45rem !important;
    font-weight: 700 !important;
    color: #222 !important;
    border: none !important;
    background: transparent !important;
    box-shadow: none !important;
}

.home-deal-product__form .qty-input-group .quantity-minus {
    grid-column: 1;
}

.home-deal-product__form .qty-input-group .quantity-plus {
    grid-column: 3;
}

.home-deal-product__form .qty-input-group button {
    position: static !important;
    width: 3rem !important;
    height: 3rem !important;
    margin: 0 !important;
    border-radius: 0.75rem !important;
    background: #f1f5f9 !important;
    color: #444 !important;
    transform: none !important;
}

.home-deal-product__form .qty-input-group button:hover {
    background: var(--store-primary, #336699) !important;
    color: #fff !important;
}

.home-deal-product__details-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--store-primary, #336699);
    text-decoration: none;
    transition: gap 0.3s ease, color 0.3s ease;
}

.home-deal-product__details-link:hover {
    color: var(--store-primary-dark, #2a5580);
    gap: 0.85rem;
}

.home-deals-card__empty {
    padding: 4rem 2rem;
    text-align: center;
    color: #777;
}

.home-deals-card__empty-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 5rem;
    height: 5rem;
    margin-bottom: 1rem;
    font-size: 2.4rem;
    color: var(--store-primary, #336699);
    background: rgba(51, 102, 153, 0.1);
    border-radius: 50%;
}

/* Bestsellers sidebar */
.home-bestsellers-card {
    display: flex;
    flex-direction: column;
}

.home-bestsellers-card__swiper {
    flex: 1;
    padding: 1.2rem 1.4rem;
    background: #fff;
}

.home-bestsellers-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.home-bestsellers-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    border: 1px solid transparent;
    border-radius: 1.2rem;
    transition: background 0.3s ease, transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.home-bestsellers-item + .home-bestsellers-item {
    margin-top: 0.55rem;
    border-top: 1px solid #dbe3ee;
    padding-top: 1.2rem;
}

.home-bestsellers-item:hover {
    background: #f8fafc;
    border-color: #cbd5e1;
    box-shadow: 0 6px 18px rgba(15, 23, 42, 0.06);
    transform: translateX(-4px);
}

.home-bestsellers-item__thumb {
    position: relative;
    flex-shrink: 0;
    width: 7.2rem;
    height: 7.2rem;
    overflow: hidden;
    border: 1px solid #dbe3ee;
    border-radius: 1rem;
    background: #f1f5f9;
    box-shadow: 0 4px 12px rgba(15, 23, 42, 0.06);
}

.home-bestsellers-item__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.45s ease;
}

.home-bestsellers-item:hover .home-bestsellers-item__thumb img {
    transform: scale(1.08);
}

.home-bestsellers-item__rank {
    position: absolute;
    top: 0.4rem;
    right: 0.4rem;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2rem;
    height: 2rem;
    font-size: 1.1rem;
    font-weight: 800;
    color: #fff;
    background: var(--store-primary, #336699);
    border-radius: 50%;
    box-shadow: 0 2px 8px rgba(51, 102, 153, 0.35);
}

.home-bestsellers-item__body {
    flex: 1;
    min-width: 0;
}

.home-bestsellers-item__name {
    margin: 0 0 0.35rem;
    font-size: 1.35rem;
    font-weight: 700;
    line-height: 1.4;
}

.home-bestsellers-item__name a {
    color: #222;
    text-decoration: none;
    transition: color 0.3s ease;
}

.home-bestsellers-item__name a:hover {
    color: var(--store-primary, #336699);
}

.home-bestsellers-item__rating {
    margin-bottom: 0.35rem !important;
}

.home-bestsellers-item__price ins {
    font-size: 1.4rem;
    font-weight: 800;
    color: #111;
    text-decoration: none;
}

.home-bestsellers-item__price del {
    margin-right: 0.5rem;
    font-size: 1.2rem;
    color: #999;
}

.home-bestsellers-card__nav {
    display: flex;
    justify-content: center;
    gap: 0.6rem;
    padding: 1rem 1.4rem 1.4rem;
    border-top: 1px solid #dbe3ee;
    background: linear-gradient(180deg, #fff 0%, #f8fafc 100%);
}

.home-bestsellers-card__empty {
    padding: 2rem 1.4rem;
    color: #777;
    text-align: center;
}

@media (max-width: 991px) {
    .home-deal-product {
        grid-template-columns: 1fr;
        gap: 1.4rem;
    }

    .home-deal-product__form {
        grid-template-columns: 1fr;
        row-gap: 1rem;
    }

    .home-deal-product__cart-btn,
    .home-deal-product__qty {
        grid-column: 1;
    }

    .home-deal-product__cart-btn {
        grid-row: 1;
    }

    .home-deal-product__qty {
        grid-row: 2;
        width: 100%;
        max-width: 100%;
    }
}

@media (max-width: 767px) {
    .home-deals {
        padding: 1.1rem;
        border-radius: 1.35rem;
    }

    .home-deals-card__header,
    .home-bestsellers-card__header {
        padding: 1.2rem 1.4rem;
    }

    .home-deals-card__swiper {
        padding: 1.2rem 1.4rem 1.4rem;
    }

    .home-deal-product__name {
        font-size: 1.8rem;
    }
}

/* ── Header navigation (categories + main menu) ── */
.store-header-bar {
    border-bottom: 1px solid #eef2f6;
    background: #fff;
    transition: box-shadow 0.35s ease, background 0.35s ease;
}

.store-header-bar.fixed,
.store-header-bar.sticky-header.fixed {
    box-shadow: 0 8px 28px rgba(15, 23, 42, 0.08);
}

.store-header-bar__inner {
    align-items: stretch;
}

/* Category sidebar */
.store-category-nav {
    position: relative;
    flex-shrink: 0;
    width: 30rem;
}

.store-category-nav > .store-category-nav__toggle {
    display: flex !important;
    align-items: center;
    gap: 0.9rem;
    width: 100% !important;
    min-width: 100% !important;
    max-width: 100% !important;
    padding: 1.35rem 1.4rem !important;
    font-size: 1.32rem !important;
    font-weight: 700 !important;
    letter-spacing: 0 !important;
    text-transform: none !important;
    white-space: nowrap;
    color: #fff !important;
    background: linear-gradient(135deg, var(--store-primary, #336699) 0%, var(--store-primary-dark, #2a5580) 100%) !important;
    border: none !important;
    border-radius: 0 !important;
    box-shadow: inset 0 -1px 0 rgba(255, 255, 255, 0.08);
    transition: filter 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

.store-category-nav > .store-category-nav__toggle.text-dark {
    color: #fff !important;
}

.store-category-nav__toggle-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 3.6rem;
    height: 3.6rem;
    font-size: 1.8rem;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 1rem;
    transition: transform 0.35s ease, background 0.35s ease;
}

.store-category-nav__toggle-text {
    flex: 1;
    min-width: 0;
    margin: 0 !important;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.store-category-nav > .store-category-nav__toggle::after {
    flex-shrink: 0;
    font-size: 1.1rem;
    opacity: 0.85;
    transition: transform 0.35s ease;
}

.store-category-nav:hover > .store-category-nav__toggle,
.store-category-nav.show > .store-category-nav__toggle {
    color: #fff !important;
    background: linear-gradient(135deg, var(--store-primary-dark, #2a5580) 0%, var(--store-primary-darker, #1e4466) 100%) !important;
    filter: brightness(1.03);
}

.store-category-nav:hover .store-category-nav__toggle-icon,
.store-category-nav.show .store-category-nav__toggle-icon {
    transform: scale(1.06);
    background: rgba(255, 255, 255, 0.22);
}

.store-category-nav.show > .store-category-nav__toggle::after {
    transform: rotate(180deg);
}

.store-category-nav__panel,
.store-category-nav .dropdown-box {
    width: 100% !important;
    min-width: 100% !important;
    max-width: 100% !important;
    right: 0 !important;
    left: auto !important;
    padding: 0 !important;
    overflow: hidden;
    border: 1px solid #e8eef5 !important;
    border-radius: 1.4rem !important;
    box-shadow: 0 18px 48px rgba(15, 23, 42, 0.14) !important;
    background: #fff !important;
}

.store-category-nav.show-dropdown .store-category-nav__panel::before {
    display: none;
}

.header-bottom:not(.fixed) .show-dropdown .store-category-nav__panel,
.header-bottom:not(.fixed) .show-dropdown .store-category-nav .dropdown-box {
    margin-top: 0 !important;
    border-top: none !important;
    border-radius: 0 0 1.4rem 1.4rem !important;
    box-shadow: 0 14px 36px rgba(15, 23, 42, 0.1) !important;
}

.header-bottom.show-dropdown:not(.fixed) .store-category-nav > .store-category-nav__toggle {
    color: #fff !important;
    background: linear-gradient(135deg, var(--store-primary, #336699) 0%, var(--store-primary-dark, #2a5580) 100%) !important;
    border-radius: 1.4rem 1.4rem 0 0 !important;
}

.header-bottom.show-dropdown:not(.fixed) .store-category-nav:hover > .store-category-nav__toggle,
.header-bottom.show-dropdown:not(.fixed) .store-category-nav.show > .store-category-nav__toggle {
    color: #fff !important;
    background: linear-gradient(135deg, var(--store-primary-dark, #2a5580) 0%, var(--store-primary-darker, #1e4466) 100%) !important;
}

.store-category-nav__panel-head {
    padding: 1.2rem 1.4rem;
    background: linear-gradient(135deg, #f8fafc 0%, #fff 100%);
    border-bottom: 1px solid #eef2f6;
}

.store-category-nav__panel-head strong {
    display: block;
    font-size: 1.45rem;
    font-weight: 800;
    color: #111;
}

.store-category-nav__panel-head span {
    display: block;
    margin-top: 0.2rem;
    font-size: 1.2rem;
    color: #777;
}

.store-category-nav__menu {
    min-width: 100% !important;
    padding: 0.6rem !important;
    background: #fff !important;
    border-radius: 0 !important;
}

.store-category-nav__menu > li {
    padding: 0 !important;
    margin: 0 !important;
}

.store-category-nav__link {
    display: flex !important;
    align-items: center;
    gap: 0.9rem;
    padding: 0.85rem 1rem !important;
    margin-bottom: 0.25rem;
    font-size: 1.35rem !important;
    font-weight: 600 !important;
    color: #333 !important;
    border-radius: 1rem;
    transition: background 0.3s ease, color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

.store-category-nav__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 3.6rem;
    height: 3.6rem;
    font-size: 1.6rem;
    color: var(--store-primary, #336699);
    background: rgba(51, 102, 153, 0.08);
    border-radius: 0.9rem;
    transition: background 0.3s ease, color 0.3s ease, transform 0.3s ease;
}

.store-category-nav__label {
    flex: 1;
    min-width: 0;
}

.store-category-nav__arrow {
    font-size: 1.1rem;
    color: #bbb;
    transition: transform 0.3s ease, color 0.3s ease;
}

.store-category-nav__link:hover,
.store-category-nav__link:focus {
    color: #fff !important;
    background: linear-gradient(135deg, var(--store-primary, #336699) 0%, var(--store-primary-dark, #2a5580) 100%) !important;
    transform: translateX(-4px);
    box-shadow: 0 6px 18px rgba(51, 102, 153, 0.22);
    text-decoration: none;
}

.store-category-nav__link:hover .store-category-nav__icon,
.store-category-nav__link:focus .store-category-nav__icon {
    color: var(--store-primary, #336699);
    background: #fff;
    transform: scale(1.05);
}

.store-category-nav__link:hover .store-category-nav__arrow,
.store-category-nav__link:focus .store-category-nav__arrow {
    color: #fff;
    transform: translateX(-3px);
}

.store-category-nav__footer {
    padding: 0.4rem 0.6rem 0.8rem !important;
    border-top: 1px solid #f1f5f9;
}

.store-category-nav__view-all {
    display: flex !important;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    padding: 0.9rem 1rem !important;
    font-size: 1.3rem !important;
    font-weight: 700 !important;
    color: var(--store-primary, #336699) !important;
    background: rgba(51, 102, 153, 0.08) !important;
    border-radius: 1rem !important;
    text-transform: none !important;
    letter-spacing: 0 !important;
    transition: background 0.3s ease, color 0.3s ease, gap 0.3s ease;
}

.store-category-nav__view-all:hover {
    color: #fff !important;
    background: var(--store-primary, #336699) !important;
    gap: 1rem;
    text-decoration: none;
}

/* Main navigation */
.store-main-nav {
    margin-right: 1.6rem !important;
}

.store-main-nav__menu {
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.store-main-nav__menu > li {
    margin: 0 !important;
}

.store-main-nav__menu > li > a {
    display: inline-flex !important;
    align-items: center;
    gap: 0.55rem;
    padding: 1.15rem 1.2rem !important;
    font-size: 1.35rem !important;
    font-weight: 600 !important;
    color: #444 !important;
    border-radius: 1rem;
    transition: color 0.3s ease, background 0.3s ease, transform 0.3s ease;
}

.store-main-nav__menu > li > a::before {
    display: none !important;
}

.store-main-nav__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.6rem;
    height: 2.6rem;
    font-size: 1.5rem;
    color: var(--store-primary, #336699);
    background: rgba(51, 102, 153, 0.08);
    border-radius: 0.75rem;
    transition: background 0.3s ease, color 0.3s ease, transform 0.3s ease;
}

.store-main-nav__menu > li:hover > a,
.store-main-nav__menu > li.active > a {
    color: var(--store-primary, #336699) !important;
    background: rgba(51, 102, 153, 0.08);
}

.store-main-nav__menu > li:hover > a .store-main-nav__icon,
.store-main-nav__menu > li.active > a .store-main-nav__icon {
    color: #fff;
    background: var(--store-primary, #336699);
    transform: scale(1.05);
}

.store-main-nav__menu > li.active > a {
    background: rgba(51, 102, 153, 0.12);
    box-shadow: inset 0 0 0 1px rgba(51, 102, 153, 0.15);
}

.store-main-nav__submenu,
.store-main-nav__menu > li > ul {
    min-width: 22rem;
    padding: 0.6rem !important;
    border: 1px solid #e8eef5 !important;
    border-radius: 1.2rem !important;
    box-shadow: 0 14px 36px rgba(15, 23, 42, 0.12) !important;
    background: #fff !important;
}

.store-main-nav__submenu li a,
.store-main-nav__menu > li > ul li a {
    padding: 0.75rem 1rem !important;
    font-size: 1.3rem !important;
    font-weight: 600;
    color: #444 !important;
    border-radius: 0.8rem;
    transition: background 0.25s ease, color 0.25s ease, padding 0.25s ease;
}

.store-main-nav__submenu li a:hover,
.store-main-nav__menu > li > ul li a:hover {
    color: var(--store-primary, #336699) !important;
    background: #f1f5f9 !important;
    padding-right: 1.2rem !important;
}

/* Header quick actions */
.store-header-actions {
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.store-header-actions__link {
    display: inline-flex !important;
    align-items: center;
    gap: 0.55rem;
    padding: 0.65rem 1rem !important;
    font-size: 1.3rem !important;
    font-weight: 600;
    color: #555 !important;
    background: #f8fafc;
    border: 1px solid #eef2f6;
    border-radius: 2rem;
    transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

.store-header-actions__link:first-child {
    margin-left: 0 !important;
}

.store-header-actions__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.8rem;
    height: 2.8rem;
    font-size: 1.6rem;
    color: var(--store-primary, #336699);
    background: rgba(51, 102, 153, 0.1);
    border-radius: 50%;
    transition: background 0.3s ease, color 0.3s ease;
}

.store-header-actions__link:hover {
    color: var(--store-primary, #336699) !important;
    background: #fff;
    border-color: rgba(51, 102, 153, 0.25);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(51, 102, 153, 0.12);
    text-decoration: none;
}

.store-header-actions__link:hover .store-header-actions__icon {
    color: #fff;
    background: var(--store-primary, #336699);
}

.store-header-actions__link--accent {
    color: #fff !important;
    background: linear-gradient(135deg, #f97316 0%, #ef4444 100%);
    border-color: transparent;
}

.store-header-actions__link--accent .store-header-actions__icon {
    color: #fff;
    background: rgba(255, 255, 255, 0.18);
}

.store-header-actions__link--accent:hover {
    color: #fff !important;
    background: linear-gradient(135deg, #ea580c 0%, #dc2626 100%);
    border-color: transparent;
    filter: none;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(239, 68, 68, 0.35);
}

.store-header-actions__link--accent:hover .store-header-actions__icon {
    color: #fff;
    background: rgba(255, 255, 255, 0.22);
}

/* Header tools: phone, wishlist, compare, cart */
.store-header-tools {
    display: flex;
    align-items: center;
    flex-wrap: nowrap;
    gap: 0.55rem;
}

.store-header-tools__item {
    display: inline-flex !important;
    align-items: center;
    justify-content: flex-start;
    gap: 0.6rem;
    min-height: 3.6rem;
    min-width: 0;
    padding-block: 0.45rem;
    padding-inline: 0.85rem;
    color: #475569 !important;
    text-decoration: none !important;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 2rem;
    box-shadow: none;
    overflow: visible;
    transition: color 0.25s ease, background 0.25s ease, border-color 0.25s ease;
}

.store-header-tools__item:hover,
.store-header-tools__item:focus-visible {
    color: var(--store-primary, #336699) !important;
    background: #fff;
    border-color: rgba(var(--store-primary-rgb, 51, 102, 153), 0.32);
    box-shadow: inset 0 0 0 1px rgba(var(--store-primary-rgb, 51, 102, 153), 0.08);
    transform: none;
    text-decoration: none !important;
    outline: none;
}

.store-header-tools .header-call {
    margin-left: 0 !important;
}

.store-header-tools .header-call::after {
    display: none !important;
}

.store-header-tools .header-call .w-icon-call {
    margin: 0 !important;
    font-size: inherit !important;
    line-height: 1 !important;
    color: inherit !important;
}

.store-header-tools .header-call:hover .w-icon-call,
.store-header-tools .header-call:hover .phone-number {
    color: inherit !important;
}

.store-header-tools__icon {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 2.75rem;
    height: 2.75rem;
    font-size: 1.45rem;
    color: var(--store-primary, #336699);
    background: rgba(var(--store-primary-rgb, 51, 102, 153), 0.1);
    border: 1px solid rgba(var(--store-primary-rgb, 51, 102, 153), 0.12);
    border-radius: 50%;
    transition: color 0.25s ease, background 0.25s ease, border-color 0.25s ease;
}

.store-header-tools__icon > i {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    margin: 0 !important;
    font-size: inherit !important;
    font-style: normal;
    color: inherit;
    line-height: 1 !important;
}

.store-header-tools__item:hover .store-header-tools__icon,
.store-header-tools__item:focus-visible .store-header-tools__icon {
    color: #fff !important;
    background: var(--store-primary, #336699);
    border-color: var(--store-primary, #336699);
}

.store-header-tools__item:hover .store-header-tools__icon > i,
.store-header-tools__item:focus-visible .store-header-tools__icon > i,
.store-header-tools__item:hover .store-header-tools__icon .w-icon-call,
.store-header-tools__item:focus-visible .store-header-tools__icon .w-icon-call {
    color: #fff !important;
}

.store-header-tools__label {
    display: block;
    margin: 0 !important;
    font-size: 1.12rem;
    font-weight: 600;
    line-height: 1.25;
    color: inherit;
    white-space: nowrap;
    letter-spacing: -0.01em;
}

.store-header-tools__text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 0.08rem;
    min-width: 0;
    line-height: 1.25;
}

.store-header-tools__text-sub {
    font-size: 0.95rem;
    font-weight: 500;
    color: #64748b;
    white-space: nowrap;
}

.store-header-tools__text-main {
    font-size: 1.12rem;
    font-weight: 700;
    color: #1e293b;
    white-space: nowrap;
    letter-spacing: 0.01em;
}

.store-header-tools__item:hover .store-header-tools__text-main,
.store-header-tools__item:focus-visible .store-header-tools__text-main {
    color: var(--store-primary, #336699);
}

.store-header-tools .wishlist-count,
.store-header-tools .compare-count,
.store-header-tools .cart-count {
    position: absolute;
    top: -0.2rem;
    inset-inline-end: -0.2rem;
    inset-inline-start: auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 1.35rem;
    height: 1.35rem;
    padding: 0 0.22rem;
    margin: 0 !important;
    font-size: 0.72rem;
    font-weight: 700;
    font-style: normal;
    line-height: 1;
    color: #fff !important;
    background: var(--store-primary, #336699);
    border: 1.5px solid #f8fafc;
    border-radius: 0.35rem !important;
    box-shadow: 0 1px 4px rgba(15, 23, 42, 0.12);
    z-index: 2;
    pointer-events: none;
    transition: border-color 0.25s ease, background 0.25s ease;
}

.store-header-tools__item:hover .wishlist-count,
.store-header-tools__item:hover .compare-count,
.store-header-tools__item:hover .cart-count,
.store-header-tools__item:focus-visible .wishlist-count,
.store-header-tools__item:focus-visible .compare-count,
.store-header-tools__item:focus-visible .cart-count {
    border-color: #fff;
    background: var(--store-primary-dark, #2a5580);
}

.store-header-tools__cart {
    color: inherit;
}

.store-header-tools__cart > .store-header-tools__item {
    height: 100%;
}

.store-header-tools .wishlist i,
.store-header-tools .compare i,
.store-header-tools .cart-toggle i,
.store-header-tools .header-call .w-icon-call {
    font-size: inherit !important;
    color: inherit !important;
}

.store-header-tools .cart-dropdown .cart-label {
    margin: 0 !important;
}

@media (max-width: 1199px) {
    .store-header-tools {
        gap: 0.45rem;
    }

    .store-header-tools__item {
        min-height: 3.35rem;
        padding-block: 0.4rem;
        padding-inline: 0.75rem;
    }

    .store-header-tools__icon {
        width: 2.55rem;
        height: 2.55rem;
        font-size: 1.35rem;
    }

    .store-header-tools__label,
    .store-header-tools__text-main {
        font-size: 1rem;
    }

    .store-header-tools__text-sub {
        font-size: 0.88rem;
    }
}

@media (max-width: 991px) {
    .header-middle .header-right.store-header-tools > *:not(:last-child) {
        margin-left: 0 !important;
    }

    .store-header-tools {
        gap: 0.35rem;
    }

    .store-header-tools__item {
        min-height: 3.25rem;
        min-width: 3.25rem;
        padding: 0.45rem;
        justify-content: center;
        border-radius: 0.75rem;
    }

    .store-header-tools__item--call,
    .store-header-tools .header-call {
        margin-left: 0 !important;
    }

    .store-header-tools__icon {
        width: 2.55rem;
        height: 2.55rem;
        font-size: 1.4rem;
    }
}

@media (max-width: 575px) {
    .store-header-tools {
        gap: 0.28rem;
    }

    .store-header-tools__item {
        min-height: 3rem;
        min-width: 3rem;
        padding: 0.28rem;
        border-radius: 0.65rem;
    }

    .store-header-tools__icon {
        width: 2.4rem;
        height: 2.4rem;
        font-size: 1.3rem;
    }

    .store-header-tools .wishlist-count,
    .store-header-tools .compare-count,
    .store-header-tools .cart-count {
        min-width: 1.15rem;
        height: 1.15rem;
        padding: 0 0.22rem;
        font-size: 0.68rem;
        top: 0;
        inset-inline-end: 0;
    }
}

@media (max-width: 479px) {
    .store-header-tools {
        gap: 0.2rem;
    }

    .store-header-tools__item {
        min-height: 2.85rem;
        min-width: 2.85rem;
    }

    .store-header-tools__icon {
        width: 2.25rem;
        height: 2.25rem;
        font-size: 1.2rem;
    }
}

@media (max-width: 1199px) {
    .store-category-nav {
        width: 26rem;
    }

    .store-category-nav > .store-category-nav__toggle {
        font-size: 1.25rem !important;
        padding: 1.25rem 1.2rem !important;
    }

    .store-main-nav__menu > li > a span {
        display: none;
    }

    .store-main-nav__menu > li > a {
        padding: 1rem !important;
    }
}

@media (max-width: 991px) {
    .store-header-actions__link span:not(.store-header-actions__icon) {
        display: none;
    }

    .store-header-actions__link {
        padding: 0.55rem !important;
        border-radius: 50%;
    }
}

/* ── Header search bar ── */
.header-middle {
    position: relative;
    z-index: 1001;
}

.header-middle.search-category-open {
    z-index: 1052;
}

.store-header-search {
    align-items: stretch;
    gap: 0;
    max-width: 58rem !important;
    margin: 0 1.5rem !important;
    padding: 0.35rem;
    background: linear-gradient(180deg, #fff 0%, #f8fafc 100%);
    border: 1px solid #dce4ee !important;
    border-radius: 1.2rem !important;
    box-shadow: 0 6px 22px rgba(15, 23, 42, 0.06);
    --store-search-inner-radius: calc(1.2rem - 0.35rem);
    transition: border-color 0.35s ease, box-shadow 0.35s ease, background 0.35s ease;
}

.store-header-search:focus-within {
    background: #fff;
    border-color: rgba(51, 102, 153, 0.45) !important;
    box-shadow: 0 10px 32px rgba(51, 102, 153, 0.14);
}

.store-header-search .select-box,
.store-header-search__category {
    position: relative;
    flex-shrink: 0;
    width: 15.5rem !important;
}

.store-header-search__category.is-open {
    z-index: 1002;
}

.store-header-search__category-toggle {
    display: flex;
    align-items: center;
    gap: 0.55rem;
    width: 100%;
    height: 100%;
    min-height: 4.4rem;
    padding: 0.85rem 1rem 0.85rem 1.1rem;
    font-family: inherit;
    font-size: 1.25rem;
    font-weight: 600;
    color: #444;
    text-align: right;
    background: transparent;
    border: none;
    border-radius: 0 var(--store-search-inner-radius, 0.85rem) var(--store-search-inner-radius, 0.85rem) 0;
    cursor: pointer;
    transition: background 0.3s ease, color 0.3s ease;
}

.store-header-search__category-toggle .w-icon-category {
    flex-shrink: 0;
    font-size: 1.45rem;
    color: var(--store-primary, #336699);
}

.store-header-search__category-label {
    flex: 1;
    min-width: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.store-header-search__category-chevron {
    flex-shrink: 0;
    font-size: 1.1rem;
    color: #94a3b8;
    transition: transform 0.3s ease, color 0.3s ease;
}

.store-header-search__category.is-open .store-header-search__category-chevron,
.store-header-search__category-toggle[aria-expanded="true"] .store-header-search__category-chevron {
    transform: rotate(180deg);
    color: var(--store-primary, #336699);
}

.store-header-search__category-toggle:hover,
.store-header-search__category.is-open .store-header-search__category-toggle {
    color: var(--store-primary, #336699);
    background: rgba(51, 102, 153, 0.06);
}

.store-header-search__category::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    width: 1px;
    height: 2.8rem;
    background: #e2e8f0;
    transform: translateY(-50%);
    pointer-events: none;
}

.store-header-search__category-menu {
    position: absolute;
    top: calc(100% + 0.55rem);
    right: 0;
    left: auto;
    z-index: 1002;
    min-width: 100%;
    width: max-content;
    max-width: 24rem;
    max-height: 28rem;
    padding: 0.5rem;
    overflow-x: hidden;
    overflow-y: auto;
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 1rem;
    box-shadow: 0 16px 40px rgba(15, 23, 42, 0.14);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
}

.store-header-search__category.is-open .store-header-search__category-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.store-header-search__category-option {
    display: block;
    width: 100%;
    padding: 0.75rem 1rem;
    font-family: inherit;
    font-size: 1.28rem;
    font-weight: 600;
    color: #444;
    text-align: right;
    background: transparent;
    border: none;
    border-radius: 0.75rem;
    cursor: pointer;
    transition: background 0.25s ease, color 0.25s ease;
}

.store-header-search__category-option:hover,
.store-header-search__category-option.is-active {
    color: var(--store-primary, #336699);
    background: rgba(51, 102, 153, 0.08);
}

.store-header-search__category-option.is-active {
    background: rgba(51, 102, 153, 0.12);
    box-shadow: inset 0 0 0 1px rgba(51, 102, 153, 0.12);
}

.store-header-search__input,
.store-header-search input.form-control {
    flex: 1;
    min-width: 0;
    padding: 0.95rem 1.2rem !important;
    font-size: 1.35rem !important;
    font-weight: 500;
    color: #222 !important;
    background: transparent !important;
    border: none !important;
    border-radius: 0 !important;
    box-shadow: none !important;
}

.store-header-search__input::placeholder,
.store-header-search input.form-control::placeholder {
    color: #94a3b8 !important;
    font-weight: 500;
}

.store-header-search__btn,
.store-header-search .btn-search {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    align-self: stretch;
    gap: 0.45rem;
    min-width: auto !important;
    min-height: 4.4rem;
    margin: 0 !important;
    padding: 0 1.5rem !important;
    font-size: 1.3rem !important;
    font-weight: 700 !important;
    color: #fff !important;
    background: linear-gradient(135deg, var(--store-primary, #336699) 0%, var(--store-primary-dark, #2a5580) 100%) !important;
    border: none !important;
    border-radius: var(--store-search-inner-radius, 0.85rem) 0 0 var(--store-search-inner-radius, 0.85rem) !important;
    box-shadow: none !important;
    transition: transform 0.3s ease, filter 0.3s ease, background 0.3s ease;
}

.store-header-search__btn i,
.store-header-search .btn-search i {
    font-size: 1.6rem !important;
    color: #fff !important;
}

.store-header-search__btn span {
    display: inline-block;
    letter-spacing: 0;
}

.store-header-search__btn:hover,
.store-header-search__btn:focus,
.store-header-search .btn-search:hover,
.store-header-search .btn-search:focus {
    color: #fff !important;
    background: linear-gradient(135deg, var(--store-primary-dark, #2a5580) 0%, var(--store-primary-darker, #1e4466) 100%) !important;
    filter: brightness(1.04);
    transform: none;
    box-shadow: none;
}

.store-header-search.hs-round .select-box,
.store-header-search.hs-round .form-control,
.store-header-search.hs-round .store-header-search__input {
    border-radius: 0 !important;
}

.store-header-search.hs-round .store-header-search__btn,
.store-header-search.hs-round .btn-search {
    border-radius: var(--store-search-inner-radius, 0.85rem) 0 0 var(--store-search-inner-radius, 0.85rem) !important;
}

.store-header-search .btn-search {
    border-radius: var(--store-search-inner-radius, 0.85rem) 0 0 var(--store-search-inner-radius, 0.85rem) !important;
}

@media (max-width: 1199px) {
    .store-header-search {
        max-width: 46rem !important;
        margin: 0 1rem !important;
    }

    .store-header-search .select-box,
    .store-header-search__category {
        width: 13rem !important;
    }

    .store-header-search__category-toggle {
        font-size: 1.15rem;
        padding-inline: 0.75rem;
    }

    .store-header-search__btn span {
        display: none;
    }

    .store-header-search__btn,
    .store-header-search .btn-search {
        padding: 0 1.1rem !important;
    }
}

/* ── Home brands ── */
.home-brands__header {
    margin-bottom: 1.6rem;
    text-align: right;
}

.home-brands__eyebrow {
    display: inline-block;
    margin-bottom: 0.45rem;
    padding: 0.3rem 0.9rem;
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--store-primary, #336699);
    background: rgba(51, 102, 153, 0.1);
    border-radius: 2rem;
}

.home-brands__title {
    margin: 0;
    font-size: 2.4rem;
    font-weight: 800;
    color: #111;
}

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

.home-brand-card {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    min-height: 9.5rem;
    padding: 1.5rem 1.6rem;
    background:
        linear-gradient(145deg, rgba(var(--store-primary-rgb, 51, 102, 153), 0.08) 0%, rgba(255, 255, 255, 0.92) 45%, rgba(255, 255, 255, 0.82) 100%);
    border: 1px solid rgba(var(--store-primary-rgb, 51, 102, 153), 0.14);
    border-radius: 1.2rem;
    box-shadow:
        0 8px 24px rgba(var(--store-primary-rgb, 51, 102, 153), 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
        box-shadow 0.35s ease,
        border-color 0.35s ease,
        background 0.35s ease;
}

.home-brand-card a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

.home-brand-card img {
    display: block;
    width: auto;
    max-width: 92%;
    height: auto;
    max-height: 6.2rem;
    object-fit: contain;
    filter: none;
    opacity: 1;
    transition: transform 0.35s ease, filter 0.35s ease;
}

@media (min-width: 992px) {
    .home-brand-card {
        min-height: 11.5rem;
        padding: 1.75rem 2rem;
    }

    .home-brand-card img {
        max-height: 7.75rem;
    }
}

.home-brand-card:hover {
    transform: translateY(-4px);
    background:
        linear-gradient(145deg, rgba(var(--store-primary-rgb, 51, 102, 153), 0.12) 0%, rgba(255, 255, 255, 0.96) 45%, rgba(255, 255, 255, 0.88) 100%);
    border-color: rgba(var(--store-primary-rgb, 51, 102, 153), 0.28);
    box-shadow:
        0 14px 32px rgba(var(--store-primary-rgb, 51, 102, 153), 0.12),
        inset 0 1px 0 rgba(255, 255, 255, 0.92);
}

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

/* ── Home blog ── */
.home-blog__header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1.6rem;
}

.home-blog__eyebrow {
    display: inline-block;
    margin-bottom: 0.45rem;
    padding: 0.3rem 0.9rem;
    font-size: 1.15rem;
    font-weight: 700;
    color: #fff;
    background: linear-gradient(135deg, var(--store-primary, #336699) 0%, var(--store-primary-dark, #2a5580) 100%);
    border-radius: 2rem;
}

.home-blog__title {
    margin: 0;
    font-size: 2.4rem;
    font-weight: 800;
    color: #111;
}

.home-blog__view-all {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.65rem 1.1rem;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--store-primary, #336699);
    background: rgba(51, 102, 153, 0.08);
    border-radius: 2rem;
    text-decoration: none;
    white-space: nowrap;
    transition: background 0.3s ease, color 0.3s ease, gap 0.3s ease;
}

.home-blog__view-all:hover {
    color: #fff;
    background: var(--store-primary, #336699);
    gap: 0.85rem;
    text-decoration: none;
}

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

.home-blog-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    overflow: hidden;
    background: #fff;
    border: 1px solid #eef2f6;
    border-radius: 1.4rem;
    box-shadow: 0 6px 22px rgba(15, 23, 42, 0.05);
    transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1),
        box-shadow 0.4s ease,
        border-color 0.4s ease;
}

.home-blog-card:hover {
    transform: translateY(-6px);
    border-color: rgba(51, 102, 153, 0.22);
    box-shadow: 0 16px 36px rgba(15, 23, 42, 0.1);
}

.home-blog-card__media {
    position: relative;
    display: block;
    overflow: hidden;
    aspect-ratio: 16 / 10;
    background: #f1f5f9;
}

.home-blog-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}

.home-blog-card:hover .home-blog-card__media img {
    transform: scale(1.06);
}

.home-blog-card__cat {
    position: absolute;
    top: 0.9rem;
    right: 0.9rem;
    padding: 0.35rem 0.85rem;
    font-size: 1.1rem;
    font-weight: 700;
    color: #fff;
    background: rgba(51, 102, 153, 0.88);
    border-radius: 2rem;
    backdrop-filter: blur(4px);
}

.home-blog-card__body {
    display: flex;
    flex-direction: column;
    flex: 1;
    padding: 1.2rem 1.3rem 1.4rem;
    text-align: right;
}

.home-blog-card__meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.35rem;
    margin-bottom: 0.65rem;
    font-size: 1.15rem;
    color: #888;
}

.home-blog-card__dot {
    color: #cbd5e1;
}

.home-blog-card__title {
    margin: 0 0 0.9rem;
    font-size: 1.55rem;
    font-weight: 800;
    line-height: 1.45;
}

.home-blog-card__title a {
    color: #111;
    text-decoration: none;
    transition: color 0.3s ease;
}

.home-blog-card__title a:hover {
    color: var(--store-primary, #336699);
}

.home-blog-card__link {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    margin-top: auto;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--store-primary, #336699);
    text-decoration: none;
    transition: gap 0.3s ease, color 0.3s ease;
}

.home-blog-card__link:hover {
    color: var(--store-primary-dark, #2a5580);
    gap: 0.75rem;
}

@media (max-width: 767px) {
    .home-brands__title,
    .home-blog__title {
        font-size: 2rem;
    }

    .home-blog__header {
        flex-direction: column;
        align-items: flex-start;
    }

    .home-brand-card {
        min-height: 8.5rem;
        padding: 1.25rem 1.15rem;
    }

    .home-brand-card img {
        max-height: 5.5rem;
    }
}

@media (max-width: 575px) {
    .home-blog__view-all {
        width: 100%;
        justify-content: center;
    }
}

/* ── Shop filter sidebar ── */
.store-shop-sidebar .sticky-sidebar {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.store-shop-sidebar .filter-actions:not(.store-shop-sidebar__header) {
    padding: 0;
    margin-bottom: 0.2rem;
}

.store-shop-sidebar__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.25rem 1.6rem !important;
    margin-bottom: 0;
    background: linear-gradient(135deg, var(--store-primary, #336699) 0%, var(--store-primary-dark, #2a5580) 100%);
    border-radius: 1.2rem;
    box-shadow: 0 8px 24px rgba(51, 102, 153, 0.22);
}

.store-shop-sidebar__header-title {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.store-shop-sidebar__header-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 3.6rem;
    height: 3.6rem;
    font-size: 1.7rem;
    color: #fff;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 0.9rem;
}

.store-shop-sidebar__header label {
    margin: 0;
    font-size: 1.45rem;
    font-weight: 800;
    color: #fff;
}

.store-shop-sidebar__clear {
    display: inline-flex;
    align-items: center;
    padding: 0.6rem 1.15rem;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--store-primary, #336699) !important;
    text-decoration: none;
    background: #fff;
    border-radius: 2rem;
    white-space: nowrap;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.store-shop-sidebar__clear:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(15, 23, 42, 0.12);
    text-decoration: none;
}

.store-shop-sidebar__widget {
    margin: 0 !important;
    padding: 0;
    background: #fff;
    border: 1px solid #e8eef5;
    border-radius: 1.2rem;
    box-shadow: 0 4px 18px rgba(15, 23, 42, 0.04);
    overflow: visible;
}

.store-shop-sidebar__widget .widget-body {
    margin-bottom: 0;
    padding: 0.9rem 1rem 1.15rem;
}

.store-shop-sidebar__widget-title {
    display: flex !important;
    align-items: center;
    gap: 0.65rem;
    margin: 0 !important;
    padding: 1rem 1.1rem !important;
    font-size: 1.35rem !important;
    font-weight: 800 !important;
    color: #1e293b !important;
    background: #f8fafc;
    border-bottom: 1px solid #e8eef5;
    cursor: pointer;
}

.store-shop-sidebar__widget-title label {
    margin: 0 !important;
    padding: 0 !important;
    font-size: inherit;
    font-weight: inherit;
    color: inherit;
    cursor: pointer;
}

.store-shop-sidebar__widget-title label::after {
    display: none !important;
}

.store-shop-sidebar__widget-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 3.2rem;
    height: 3.2rem;
    font-size: 1.5rem;
    color: var(--store-primary, #336699);
    background: rgba(51, 102, 153, 0.1);
    border-radius: 0.75rem;
    flex-shrink: 0;
}

.store-shop-sidebar .widget-collapsible .toggle-btn {
    left: 1.2rem;
    width: 1.2rem;
    height: 1.2rem;
    opacity: 0.7;
}

.store-shop-sidebar .widget-collapsible .toggle-btn::before,
.store-shop-sidebar .widget-collapsible .toggle-btn::after {
    border-top-color: var(--store-primary, #336699);
    width: 10px;
}

.store-shop-sidebar .filter-items {
    font-size: inherit;
}

/* Wolmart يجعل span داخل li مطلق الموضع — نعطّله هنا */
.store-shop-sidebar .filter-items li span {
    position: static;
    left: auto;
    color: inherit;
}

.store-shop-sidebar__list {
    display: block;
    margin: 0;
    padding: 0;
    list-style: none;
}

.store-shop-sidebar__list li {
    margin: 0;
    padding: 0;
    border-bottom: 1px solid #e8eef5;
}

.store-shop-sidebar__list li:last-child {
    border-bottom: none;
}

.store-shop-sidebar .filter-items a {
    position: relative;
    display: flex !important;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
    padding: 0.9rem 0.85rem !important;
    font-size: 1.3rem !important;
    font-weight: 600;
    line-height: 1.55;
    color: #1e293b !important;
    text-decoration: none;
    background: transparent;
    border: none;
    border-radius: 0.55rem;
    transition: background 0.2s ease, color 0.2s ease;
}

.store-shop-sidebar .filter-items a:hover {
    color: var(--store-primary, #336699) !important;
    background: #f1f5f9;
}

.store-shop-filter-link__arrow {
    flex-shrink: 0;
    font-size: 1rem;
    line-height: 1;
    opacity: 0;
    transition: opacity 0.2s ease;
}

.store-shop-sidebar .filter-items a:hover .store-shop-filter-link__arrow {
    opacity: 0.7;
}

.store-shop-sidebar .filter-items a.active {
    color: #fff !important;
    background: linear-gradient(135deg, var(--store-primary, #336699) 0%, var(--store-primary-dark, #2a5580) 100%);
    box-shadow: 0 3px 10px rgba(51, 102, 153, 0.2);
}

.store-shop-sidebar .filter-items a.active .store-shop-filter-link__arrow {
    opacity: 0.85;
    color: #fff;
}

.store-shop-sidebar__price-form {
    display: flex;
    flex-direction: column;
    gap: 1.1rem;
    margin: 0 !important;
}

.store-shop-sidebar .price-range {
    display: flex !important;
    flex-direction: column;
    align-items: stretch;
    margin: 0 !important;
    gap: 0.85rem;
}

.store-shop-sidebar .price-range .btn.store-shop-sidebar__price-btn,
.store-shop-sidebar__price-btn {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 0.55rem;
    width: 100% !important;
    max-width: 100%;
    min-height: 4rem;
    margin: 0 !important;
    padding: 0.75rem 1rem !important;
    font-size: 1.3rem !important;
    font-weight: 700 !important;
    line-height: 1.2 !important;
    text-align: center !important;
    border-radius: 0.85rem !important;
    transition: box-shadow 0.25s ease;
}

.store-shop-sidebar .price-range .btn.store-shop-sidebar__price-btn span,
.store-shop-sidebar .price-range .btn.store-shop-sidebar__price-btn i {
    display: inline-flex;
    align-items: center;
    line-height: 1;
    margin: 0 !important;
}

.store-shop-sidebar__price-fields {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: end;
    gap: 0.6rem;
}

.store-shop-sidebar__price-field {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.store-shop-sidebar__price-field small {
    font-size: 1.1rem;
    font-weight: 700;
    color: #64748b;
}

.store-shop-sidebar__price-field input {
    width: 100% !important;
    min-height: 4.2rem;
    padding: 0.6rem 0.8rem !important;
    font-size: 1.3rem;
    font-weight: 600;
    color: #1e293b;
    background: #f8fafc;
    border: 1px solid #e2e8f0 !important;
    border-radius: 0.85rem !important;
    transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.store-shop-sidebar__price-field input:focus {
    border-color: var(--store-primary, #336699) !important;
    box-shadow: 0 0 0 3px rgba(51, 102, 153, 0.12);
    outline: none;
}

.store-shop-sidebar__price-delimiter {
    align-self: center;
    padding-bottom: 1rem;
    font-size: 1.2rem;
    font-weight: 700;
    color: #94a3b8;
}

.store-shop-sidebar__price-btn:hover {
    box-shadow: 0 6px 16px rgba(51, 102, 153, 0.22);
}

.store-shop-sidebar__brands {
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
    margin: 0 !important;
    padding: 0;
    list-style: none;
}

.store-shop-sidebar .filter-items.item-check a {
    padding: 0 !important;
}

.store-shop-sidebar__brands li {
    margin: 0;
}

.store-shop-sidebar__brands a {
    display: flex !important;
    align-items: center;
    gap: 0.6rem;
    padding: 0.8rem 0.75rem 0.8rem 0.55rem !important;
    font-size: 1.3rem !important;
    font-weight: 600;
    line-height: 1.5;
    color: #1e293b !important;
    text-decoration: none;
    background: transparent;
    border: none;
    border-radius: 0.55rem;
    transition: background 0.2s ease, color 0.2s ease;
}

.store-shop-sidebar__brands a::before {
    flex-shrink: 0;
    position: static !important;
    transform: none !important;
    width: 1.6rem !important;
    height: 1.6rem !important;
    margin: 0 !important;
    border: 2px solid #94a3b8 !important;
    border-radius: 0.35rem !important;
    background: #fff !important;
    transition: background 0.2s ease, border-color 0.2s ease;
}

.store-shop-sidebar__brands a:hover {
    color: var(--store-primary, #336699) !important;
    background: #f1f5f9;
}

.store-shop-sidebar__brands li.active > a {
    color: var(--store-primary, #336699) !important;
    background: rgba(51, 102, 153, 0.08);
}

.store-shop-sidebar__brands li.active > a::before {
    background: var(--store-primary, #336699) !important;
    border-color: var(--store-primary, #336699) !important;
    box-shadow: inset 0 0 0 2px #fff;
}

@media (max-width: 991px) {
    .store-shop-sidebar .sidebar-content {
        background: #f1f5f9;
    }

    .store-shop-sidebar .sticky-sidebar {
        padding: 1.5rem 1.2rem 2rem;
        gap: 1.2rem;
    }

    .store-shop-sidebar__header {
        margin-top: 0.5rem;
        padding: 1.1rem 1.35rem !important;
    }
}

@media (max-width: 479px) {
    .store-shop-sidebar .sticky-sidebar {
        padding: 1.2rem 1rem 2rem;
    }

    .store-shop-sidebar__header {
        padding: 1rem 1.2rem !important;
        gap: 0.75rem;
    }

    .store-shop-sidebar__header label {
        font-size: 1.3rem;
    }

    .store-shop-sidebar__clear {
        font-size: 1.05rem;
        padding: 0.5rem 0.95rem;
    }
}

/* ── Shop toolbar ── */
.store-shop-toolbar {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding: 1rem 1.2rem !important;
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 1.2rem;
    box-shadow: 0 2px 12px rgba(15, 23, 42, 0.04);
}

.store-shop-toolbar__left,
.store-shop-toolbar__right {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.75rem;
}

.store-shop-toolbar__label {
    flex-shrink: 0;
    margin-left: 0.5rem !important;
    font-size: 1.25rem;
    font-weight: 700;
    color: #475569;
    white-space: nowrap;
}

.store-shop-toolbar__label--inline {
    margin-left: 0 !important;
    margin-right: 0.45rem;
}

.store-shop-toolbar__select {
    min-width: 14rem;
    padding: 0.65rem 1rem 0.65rem 2.4rem !important;
    font-size: 1.25rem !important;
    font-weight: 600;
    color: #1e293b !important;
    background: #f8fafc !important;
    border: 1px solid #e2e8f0 !important;
    border-radius: 0.75rem !important;
    cursor: pointer;
    transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.store-shop-toolbar__select:focus {
    border-color: var(--store-primary, #336699) !important;
    box-shadow: 0 0 0 3px rgba(51, 102, 153, 0.12);
    outline: none;
}

.store-shop-toolbar__filters-btn {
    font-size: 1.25rem !important;
    font-weight: 700 !important;
    border-radius: 0.75rem !important;
}

.store-shop-toolbar__per-page .store-shop-toolbar__select {
    min-width: 5.5rem;
    width: 5.5rem;
    padding-left: 1rem !important;
    text-align: center;
}

.store-shop-toolbar__layout .btn-layout {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 4rem;
    height: 4rem;
    font-size: 1.8rem;
    color: #475569;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 0.75rem;
    transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

.store-shop-toolbar__layout .btn-layout.active,
.store-shop-toolbar__layout .btn-layout:hover {
    color: #fff;
    background: var(--store-primary, #336699);
    border-color: var(--store-primary, #336699);
}

/* ── Shop pagination ── */
.store-shop-pagination {
    margin-top: 0.5rem;
    padding: 1.5rem 1.2rem !important;
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 1.2rem;
    box-shadow: 0 2px 12px rgba(15, 23, 42, 0.04);
    border-top: none !important;
}

.store-shop-pagination__info {
    margin: 0 !important;
    font-size: 1.3rem !important;
    font-weight: 500;
    color: #64748b !important;
}

.store-shop-pagination__info span {
    margin: 0 0.35rem !important;
    padding: 0.2rem 0.55rem;
    font-weight: 700;
    color: var(--store-primary, #336699) !important;
    background: rgba(51, 102, 153, 0.08);
    border-radius: 0.45rem;
}

.store-shop-pagination__info strong {
    margin: 0 0.25rem;
    font-weight: 800;
    color: #1e293b;
}

.store-shop-pagination__nav {
    gap: 0.4rem;
    margin: 0;
}

.store-shop-pagination__nav .prev a,
.store-shop-pagination__nav .next a {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    gap: 0.45rem;
    min-width: auto !important;
    height: auto !important;
    padding: 0.65rem 1.1rem !important;
    font-size: 1.25rem !important;
    font-weight: 700;
    color: #475569 !important;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 0.75rem;
    transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.store-shop-pagination__nav .prev a:hover,
.store-shop-pagination__nav .next a:hover {
    color: #fff !important;
    background: var(--store-primary, #336699);
    border-color: var(--store-primary, #336699);
    box-shadow: 0 4px 12px rgba(51, 102, 153, 0.25);
}

.store-shop-pagination__nav .prev.disabled a,
.store-shop-pagination__nav .next.disabled a {
    color: #cbd5e1 !important;
    background: #f8fafc;
    border-color: #e2e8f0;
    pointer-events: none;
    opacity: 0.7;
}

.store-shop-pagination__nav .prev i,
.store-shop-pagination__nav .next i {
    margin: 0 !important;
    font-size: 1.1rem;
}

.store-shop-pagination__nav .page-item {
    margin: 0 !important;
}

.store-shop-pagination__nav .page-link {
    min-width: 3.6rem !important;
    height: 3.6rem !important;
    font-size: 1.3rem !important;
    font-weight: 700;
    color: #475569 !important;
    background: #f8fafc !important;
    border: 1px solid #e2e8f0 !important;
    border-radius: 0.75rem !important;
    transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.store-shop-pagination__nav .page-item.active .page-link,
.store-shop-pagination__nav .page-item .page-link:hover {
    color: #fff !important;
    background: linear-gradient(135deg, var(--store-primary, #336699) 0%, var(--store-primary-dark, #2a5580) 100%) !important;
    border-color: transparent !important;
    box-shadow: 0 4px 12px rgba(51, 102, 153, 0.25);
}

@media (max-width: 767px) {
    .store-shop-toolbar {
        padding: 0.85rem 1rem !important;
    }

    .store-shop-toolbar__left,
    .store-shop-toolbar__right {
        width: 100%;
        justify-content: space-between;
    }

    .store-shop-toolbar__sort {
        flex: 1;
        min-width: 0;
    }

    .store-shop-toolbar__select {
        flex: 1;
        min-width: 0;
        width: auto !important;
    }

    .store-shop-pagination {
        flex-direction: column;
        align-items: stretch !important;
        gap: 1rem;
        text-align: center;
    }

    .store-shop-pagination__nav {
        justify-content: center;
    }

    .store-shop-pagination__nav .prev a span,
    .store-shop-pagination__nav .next a span {
        display: none;
    }

    .store-shop-pagination__nav .prev a,
    .store-shop-pagination__nav .next a {
        min-width: 3.6rem !important;
        padding: 0.65rem !important;
    }
}

/* ── Shop category circles ── */
.store-shop-categories {
    padding: 2rem 1.2rem 2.4rem;
    background: linear-gradient(180deg, #f8fafc 0%, #fff 55%);
    border: 1px solid #e8eef5;
    border-radius: 1.4rem;
    box-shadow: 0 4px 20px rgba(15, 23, 42, 0.04);
}

.store-shop-categories__head {
    margin-bottom: 1.6rem;
    text-align: center;
}

.store-shop-categories__title {
    margin: 0 0 0.4rem;
    font-size: 2rem;
    font-weight: 800;
    color: #1e293b;
}

.store-shop-categories__subtitle {
    margin: 0;
    font-size: 1.35rem;
    color: #64748b;
}

.store-shop-categories__swiper .swiper-slide {
    height: auto;
}

.store-shop-category-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.85rem;
    padding: 0.35rem 0.25rem 0.75rem;
    text-decoration: none;
    animation: shopCategoryIn 0.55s cubic-bezier(0.22, 1, 0.36, 1) both;
    animation-delay: var(--cat-delay, 0s);
}

@keyframes shopCategoryIn {
    from {
        opacity: 0;
        transform: translateY(14px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.store-shop-category-card__ring {
    position: relative;
    width: 100%;
    max-width: 10.5rem;
    aspect-ratio: 1;
    padding: 3px;
    background: linear-gradient(145deg, var(--cat-accent, var(--store-primary, #336699)), color-mix(in srgb, var(--cat-accent, var(--store-primary, #336699)) 65%, #fff));
    border-radius: 50%;
    box-shadow: 0 6px 18px rgba(15, 23, 42, 0.08);
    transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1),
        box-shadow 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.store-shop-category-card__media {
    width: 100%;
    height: 100%;
    overflow: hidden;
    border: 3px solid #fff;
    border-radius: 50%;
    background: #e8eef5;
}

.store-shop-category-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}

.store-shop-category-card__shine {
    position: absolute;
    inset: 3px;
    border-radius: 50%;
    opacity: 0;
    background: linear-gradient(120deg, transparent 35%, rgba(255, 255, 255, 0.35) 50%, transparent 65%);
    transform: translateX(100%);
    transition: transform 0.65s ease, opacity 0.35s ease;
    pointer-events: none;
}

.store-shop-category-card__badge {
    position: absolute;
    top: 0.15rem;
    right: 0.15rem;
    z-index: 2;
    min-width: 2.4rem;
    height: 2.4rem;
    padding: 0 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    font-weight: 800;
    color: #fff;
    background: var(--cat-accent, var(--store-primary, #336699));
    border: 2px solid #fff;
    border-radius: 50%;
    box-shadow: 0 4px 10px rgba(15, 23, 42, 0.15);
    transition: transform 0.35s ease;
}

.store-shop-category-card__content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.35rem;
    width: 100%;
    text-align: center;
}

.store-shop-category-card__name {
    margin: 0;
    font-size: 1.3rem;
    font-weight: 700;
    line-height: 1.45;
    color: #1e293b;
    transition: color 0.3s ease;
}

.store-shop-category-card__cta {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--cat-accent, var(--store-primary, #336699));
    opacity: 0;
    transform: translateY(4px);
    transition: opacity 0.3s ease, transform 0.3s ease, gap 0.3s ease;
}

.store-shop-category-card:hover,
.store-shop-category-card:focus-visible {
    text-decoration: none;
    transform: translateY(-5px);
}

.store-shop-category-card:hover .store-shop-category-card__ring,
.store-shop-category-card:focus-visible .store-shop-category-card__ring {
    transform: scale(1.06);
    box-shadow: 0 14px 32px color-mix(in srgb, var(--cat-accent, var(--store-primary, #336699)) 28%, transparent);
}

.store-shop-category-card:hover .store-shop-category-card__media img,
.store-shop-category-card:focus-visible .store-shop-category-card__media img {
    transform: scale(1.1);
}

.store-shop-category-card:hover .store-shop-category-card__shine,
.store-shop-category-card:focus-visible .store-shop-category-card__shine {
    opacity: 1;
    transform: translateX(-100%);
}

.store-shop-category-card:hover .store-shop-category-card__name,
.store-shop-category-card:focus-visible .store-shop-category-card__name {
    color: var(--cat-accent, var(--store-primary, #336699));
}

.store-shop-category-card:hover .store-shop-category-card__cta,
.store-shop-category-card:focus-visible .store-shop-category-card__cta {
    opacity: 1;
    transform: translateY(0);
    gap: 0.55rem;
}

.store-shop-category-card:hover .store-shop-category-card__badge,
.store-shop-category-card:focus-visible .store-shop-category-card__badge {
    transform: scale(1.08);
}

@media (max-width: 767px) {
    .store-shop-categories {
        padding: 1.5rem 0.85rem 1.8rem;
    }

    .store-shop-categories__title {
        font-size: 1.7rem;
    }

    .store-shop-category-card__ring {
        max-width: 9rem;
    }

    .store-shop-category-card__name {
        font-size: 1.2rem;
    }

    .store-shop-category-card__cta {
        opacity: 1;
        transform: none;
    }
}

/* ── Page head (unified — all inner pages except home) ── */
.store-page-head {
    padding: 2.25rem 0 2rem;
    margin-bottom: 0;
    background: linear-gradient(180deg, #f8fafc 0%, #fff 100%);
    border-bottom: 1px solid #e8eef5;
}

.store-page-head--embedded {
    padding: 0 0 1.5rem;
    margin-bottom: 1.25rem;
    background: transparent;
    border-bottom: 1px solid #e8eef5;
}

.store-shop-page > .container,
.store-contact-page__content > .container {
    padding-top: 2rem;
}

.store-page-head__breadcrumb-list {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.25rem;
    margin: 0 0 1rem;
    padding: 0;
    list-style: none;
}

.store-page-head__breadcrumb-item {
    display: inline-flex;
    align-items: center;
    font-size: 1.15rem;
    font-weight: 600;
    color: #94a3b8;
}

.store-page-head__breadcrumb-item:not(:last-child)::after {
    content: "/";
    margin: 0 0.5rem;
    color: #cbd5e1;
    font-weight: 500;
}

.store-page-head__breadcrumb-link {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    color: #64748b !important;
    text-decoration: none;
    transition: color 0.2s ease;
}

.store-page-head__breadcrumb-link i {
    font-size: 1.2rem;
    color: var(--store-primary, #336699);
}

.store-page-head__breadcrumb-link:hover {
    color: var(--store-primary, #336699) !important;
    text-decoration: none;
}

.store-page-head__breadcrumb-item--active {
    color: #334155;
    font-weight: 700;
}

.store-page-head__main {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 1rem;
}

.store-page-head__title {
    margin: 0;
    font-family: "Alexandria", sans-serif !important;
    font-size: clamp(2rem, 3vw, 2.75rem);
    font-weight: 800;
    line-height: 1.3;
    color: #0f172a;
    letter-spacing: -0.02em;
}

.store-page-head__title::after {
    content: "";
    display: block;
    width: 3rem;
    height: 3px;
    margin-top: 0.65rem;
    background: linear-gradient(90deg, var(--store-primary, #336699) 0%, rgba(var(--store-primary-rgb, 51, 102, 153), 0.35) 100%);
    border-radius: 2px;
}

.store-page-head__subtitle {
    margin: 0.65rem 0 0;
    max-width: 48rem;
    font-size: 1.25rem;
    font-weight: 500;
    line-height: 1.65;
    color: #64748b;
}

@media (max-width: 575px) {
    .store-page-head {
        padding: 1.5rem 0 1.35rem;
    }

    .store-page-head__breadcrumb-list {
        margin-bottom: 0.75rem;
    }

    .store-page-head__breadcrumb-item,
    .store-page-head__breadcrumb-link {
        font-size: 1.05rem;
    }

    .store-page-head__subtitle {
        font-size: 1.1rem;
    }
}

/* ── Shop page banner ── */
.store-shop-banner__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: stretch;
    overflow: hidden;
    min-height: 26rem;
    background: #fff;
    border: 1px solid #e8eef5;
    border-radius: 1.6rem;
    box-shadow: 0 8px 32px rgba(15, 23, 42, 0.08);
    transition: box-shadow 0.4s ease, transform 0.4s ease;
}

.store-shop-banner:hover .store-shop-banner__inner {
    box-shadow: 0 16px 44px rgba(15, 23, 42, 0.12);
}

.store-shop-banner__content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 0.65rem;
    padding: 2.8rem 3rem;
    text-align: right;
    background: linear-gradient(145deg, var(--banner-accent, var(--store-primary, #336699)) 0%, color-mix(in srgb, var(--banner-accent, var(--store-primary, #336699)) 75%, #0f172a) 100%);
    position: relative;
    overflow: hidden;
}

.store-shop-banner__content::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 85% 20%, rgba(255, 255, 255, 0.14) 0%, transparent 45%),
        radial-gradient(circle at 10% 90%, rgba(255, 255, 255, 0.08) 0%, transparent 40%);
    pointer-events: none;
}

.store-shop-banner__badge {
    position: relative;
    z-index: 1;
    align-self: flex-start;
    padding: 0.4rem 1rem;
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--banner-accent, var(--store-primary, #336699));
    background: #fff;
    border-radius: 2rem;
    box-shadow: 0 4px 12px rgba(15, 23, 42, 0.12);
}

.store-shop-banner__subtitle {
    position: relative;
    z-index: 1;
    margin: 0;
    font-size: 1.45rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.88);
}

.store-shop-banner__title {
    position: relative;
    z-index: 1;
    margin: 0;
    font-size: clamp(2rem, 3.2vw, 3.2rem);
    font-weight: 800;
    line-height: 1.25;
    color: #fff;
    text-transform: none;
    letter-spacing: 0;
}

.store-shop-banner__desc {
    position: relative;
    z-index: 1;
    margin: 0 0 0.5rem;
    max-width: 32rem;
    font-size: 1.3rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.82);
}

.store-shop-banner__btn {
    position: relative;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    align-self: flex-start;
    margin-top: 0.5rem;
    padding: 0.9rem 1.6rem;
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--banner-accent, var(--store-primary, #336699));
    text-decoration: none;
    background: #fff;
    border-radius: 2rem;
    box-shadow: 0 6px 20px rgba(15, 23, 42, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease, gap 0.3s ease;
}

.store-shop-banner__btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(15, 23, 42, 0.2);
    gap: 0.85rem;
    text-decoration: none;
    color: var(--banner-accent, var(--store-primary, #336699));
}

.store-shop-banner__btn i {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.store-shop-banner__btn:hover i {
    transform: translateX(-3px);
}

.store-shop-banner__media {
    position: relative;
    overflow: hidden;
    min-height: 22rem;
    background: #e8eef5;
}

.store-shop-banner__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
}

.store-shop-banner__media-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(15, 23, 42, 0.15) 0%, transparent 55%);
    pointer-events: none;
    transition: opacity 0.4s ease;
}

.store-shop-banner__shine {
    position: absolute;
    inset: 0;
    opacity: 0;
    background: linear-gradient(120deg, transparent 35%, rgba(255, 255, 255, 0.2) 50%, transparent 65%);
    transform: translateX(100%);
    transition: transform 0.7s ease, opacity 0.4s ease;
    pointer-events: none;
}

.store-shop-banner:hover .store-shop-banner__media img {
    transform: scale(1.06);
}

.store-shop-banner:hover .store-shop-banner__shine {
    opacity: 1;
    transform: translateX(-100%);
}

@media (max-width: 991px) {
    .store-shop-banner__inner {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .store-shop-banner__content {
        order: 1;
        padding: 2rem 1.8rem;
    }

    .store-shop-banner__media {
        order: 2;
        min-height: 18rem;
    }
}

@media (max-width: 575px) {
    .store-shop-banner__content {
        padding: 1.6rem 1.4rem;
    }

    .store-shop-banner__title {
        font-size: 1.9rem;
    }

    .store-shop-banner__desc {
        font-size: 1.2rem;
    }

    .store-shop-banner__btn {
        width: 100%;
        justify-content: center;
    }

    .store-shop-banner__media {
        min-height: 14rem;
    }
}

/* ── Shop breadcrumb ── */
.store-shop-breadcrumb {
    padding: 1rem 0 1.2rem;
}

.store-shop-breadcrumb__list {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.35rem;
    margin: 0;
    padding: 0.75rem 1.1rem;
    list-style: none;
    background: #f8fafc;
    border: 1px solid #e8eef5;
    border-radius: 1rem;
    border-bottom: 1px solid #e8eef5 !important;
}

.store-shop-breadcrumb__list li {
    display: inline-flex;
    align-items: center;
}

.store-shop-breadcrumb__link {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 1.25rem;
    font-weight: 600;
    color: #64748b !important;
    text-decoration: none;
    transition: color 0.25s ease;
}

.store-shop-breadcrumb__link i {
    font-size: 1.35rem;
    color: var(--store-primary, #336699);
}

.store-shop-breadcrumb__link:hover {
    color: var(--store-primary, #336699) !important;
    text-decoration: none;
}

.store-shop-breadcrumb__item:not(:last-child) {
    opacity: 1 !important;
    padding-left: 0 !important;
}

.store-shop-breadcrumb__item:not(:last-child)::after {
    margin-right: 0.45rem;
    margin-left: 0.45rem;
    color: #94a3b8;
    opacity: 0.85;
}

.store-shop-breadcrumb__item--active {
    font-size: 1.25rem;
    font-weight: 800;
    color: #1e293b;
}

@media (max-width: 575px) {
    .store-shop-breadcrumb__list {
        padding: 0.65rem 0.85rem;
    }

    .store-shop-breadcrumb__link,
    .store-shop-breadcrumb__item--active {
        font-size: 1.15rem;
    }
}

/* ── Cart page ── */
.store-cart-page {
    padding-top: 0.5rem;
}

.store-cart-breadcrumb {
    padding: 1.2rem 0 1.5rem;
    background: #f8fafc;
    border-bottom: 1px solid #e8eef5;
}

.store-cart-breadcrumb__steps {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    margin: 0;
    padding: 0;
    list-style: none;
}

.store-cart-breadcrumb__step {
    display: flex;
    align-items: center;
    gap: 0.55rem;
    padding: 0.65rem 1.2rem;
    font-size: 1.25rem;
    font-weight: 600;
    color: #94a3b8;
}

.store-cart-breadcrumb__step:not(:last-child)::after {
    content: "";
    display: inline-block;
    width: 2.5rem;
    height: 2px;
    margin-right: 0.5rem;
    background: #e2e8f0;
}

.store-cart-breadcrumb__num {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.6rem;
    height: 2.6rem;
    font-size: 1.15rem;
    font-weight: 800;
    color: #94a3b8;
    background: #fff;
    border: 2px solid #e2e8f0;
    border-radius: 50%;
    transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}

.store-cart-breadcrumb__step.is-active {
    color: var(--store-primary, #336699);
}

.store-cart-breadcrumb__step.is-active .store-cart-breadcrumb__num {
    color: #fff;
    background: var(--store-primary, #336699);
    border-color: var(--store-primary, #336699);
    box-shadow: 0 4px 12px rgba(51, 102, 153, 0.3);
}

.store-cart-alert {
    margin-bottom: 1.2rem;
    padding: 1rem 1.2rem;
    font-size: 1.25rem;
    font-weight: 600;
    border-radius: 0.85rem;
}

.store-cart-alert--success {
    color: #166534;
    background: #f0fdf4;
    border: 1px solid #bbf7d0;
}

.store-cart-alert--error {
    color: #991b1b;
    background: #fef2f2;
    border: 1px solid #fecaca;
}

.store-cart-main__head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1.2rem;
}

.store-cart-main__title {
    margin: 0 0 0.25rem;
    font-size: 2rem;
    font-weight: 800;
    color: #1e293b;
}

.store-cart-main__meta {
    margin: 0;
    font-size: 1.25rem;
    color: #64748b;
}

.store-cart-main__continue,
.store-cart-main__continue-mobile {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.65rem 1.1rem;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--store-primary, #336699);
    text-decoration: none;
    background: rgba(51, 102, 153, 0.08);
    border: 1px solid rgba(51, 102, 153, 0.15);
    border-radius: 2rem;
    transition: background 0.25s ease, gap 0.25s ease;
}

.store-cart-main__continue:hover,
.store-cart-main__continue-mobile:hover {
    background: rgba(51, 102, 153, 0.14);
    gap: 0.75rem;
    text-decoration: none;
    color: var(--store-primary, #336699);
}

.store-cart-main__continue-mobile {
    width: 100%;
    justify-content: center;
    margin-bottom: 1.2rem;
}

.store-cart-list {
    overflow: hidden;
    background: #fff;
    border: 1px solid #e8eef5;
    border-radius: 1.2rem;
    box-shadow: 0 4px 18px rgba(15, 23, 42, 0.04);
}

.store-cart-list__header {
    grid-template-columns: 1fr 9rem 11rem 9rem;
    gap: 1rem;
    padding: 1rem 1.2rem;
    font-size: 1.2rem;
    font-weight: 700;
    color: #64748b;
    background: #f8fafc;
    border-bottom: 1px solid #e8eef5;
}

.store-cart-item {
    display: grid;
    grid-template-columns: 1fr auto;
    grid-template-areas:
        "product remove"
        "qty total";
    gap: 0.75rem 1rem;
    align-items: center;
    padding: 1.2rem;
    border-bottom: 1px solid #f1f5f9;
}

.store-cart-item:last-child {
    border-bottom: none;
}

.store-cart-item__product {
    grid-area: product;
    display: flex;
    align-items: center;
    gap: 1rem;
    min-width: 0;
}

.store-cart-item__thumb {
    flex-shrink: 0;
    display: block;
    width: 5.5rem;
    height: 5.5rem;
    overflow: hidden;
    border-radius: 0.85rem;
    border: 1px solid #e8eef5;
    background: #f8fafc;
}

.store-cart-item__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.store-cart-item__info {
    min-width: 0;
}

.store-cart-item__name {
    display: block;
    margin-bottom: 0.35rem;
    font-size: 1.35rem;
    font-weight: 700;
    line-height: 1.45;
    color: #1e293b;
    text-decoration: none;
    transition: color 0.25s ease;
}

.store-cart-item__name:hover {
    color: var(--store-primary, #336699);
    text-decoration: none;
}

.store-cart-item__price-mobile {
    font-size: 1.2rem;
    font-weight: 600;
    color: #64748b;
}

.store-cart-item__price {
    align-items: center;
    font-size: 1.3rem;
    font-weight: 700;
    color: #475569;
}

.store-cart-item__qty {
    grid-area: qty;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.45rem;
}

.store-cart-item__qty-label {
    font-size: 1.05rem;
    font-weight: 700;
    color: #94a3b8;
}

.store-cart-item__qty-group {
    display: grid !important;
    grid-template-columns: 3.5rem minmax(3rem, 1fr) 3.5rem !important;
    align-items: center;
    width: 100%;
    max-width: 13rem;
    height: 4.65rem !important;
    margin: 0;
    padding: 0.35rem;
    border: 1px solid #cbd5e1 !important;
    border-radius: 0.65rem !important;
    background: linear-gradient(180deg, #f8fafc 0%, #fff 100%);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.9),
        0 4px 14px rgba(15, 23, 42, 0.06);
}

.store-cart-item__qty-group .quantity.form-control {
    grid-column: 2;
    grid-row: 1;
    height: 100% !important;
    padding: 0 0.35rem !important;
    font-size: 1.45rem !important;
    font-weight: 800 !important;
    color: #1e293b !important;
    border: none !important;
    background: transparent !important;
    box-shadow: none !important;
}

.store-cart-item__qty-group .quantity-minus {
    grid-column: 1;
    grid-row: 1;
}

.store-cart-item__qty-group .quantity-plus {
    grid-column: 3;
    grid-row: 1;
}

.store-cart-item__qty-group button {
    position: static !important;
    top: auto !important;
    left: auto !important;
    right: auto !important;
    width: 3.15rem !important;
    height: 3.15rem !important;
    margin: 0 !important;
    border: 1px solid #dbe3ee !important;
    border-radius: 0.45rem !important;
    background: #fff !important;
    color: #475569 !important;
    font-size: 1.15rem !important;
    cursor: pointer;
    transform: none !important;
    box-shadow: 0 2px 6px rgba(15, 23, 42, 0.05);
    transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}

.store-cart-item__qty-group button:hover,
.store-cart-item__qty-group button:focus {
    background: var(--store-primary, #336699) !important;
    border-color: var(--store-primary, #336699) !important;
    color: #fff !important;
    box-shadow: 0 4px 12px rgba(var(--store-primary-rgb, 51, 102, 153), 0.22);
    transform: translateY(-1px);
}

.store-cart-item__total {
    grid-area: total;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.15rem;
    padding: 0.55rem 0.75rem;
    background: #f8fafc;
    border: 1px solid #e8eef5;
    border-radius: 0.65rem;
}

.store-cart-item__total-label {
    font-size: 1.1rem;
    color: #94a3b8;
}

.store-cart-item__total strong {
    font-size: 1.45rem;
    font-weight: 800;
    color: #1e293b;
}

.store-cart-item__remove {
    grid-area: remove;
    margin: 0;
}

.store-cart-item__remove-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 3.2rem;
    height: 3.2rem;
    padding: 0;
    font-size: 1.2rem;
    color: #94a3b8;
    background: #f8fafc;
    border: 1px solid #e8eef5;
    border-radius: 0.45rem;
    cursor: pointer;
    transition: color 0.25s ease, background 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}

.store-cart-item__remove-btn:hover {
    color: #ef4444;
    background: #fef2f2;
    border-color: #fecaca;
    transform: translateY(-1px);
}

.store-cart-coupon {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
    padding: 1.4rem;
    background: #fff;
    border: 1px solid #e8eef5;
    border-radius: 1.2rem;
    box-shadow: 0 4px 18px rgba(15, 23, 42, 0.04);
}

.store-cart-coupon__icon {
    display: flex;
    flex-shrink: 0;
    align-items: center;
    justify-content: center;
    width: 4.5rem;
    height: 4.5rem;
    font-size: 2rem;
    color: var(--store-primary, #336699);
    background: rgba(51, 102, 153, 0.1);
    border-radius: 1rem;
}

.store-cart-coupon__body {
    flex: 1;
    min-width: 0;
}

.store-cart-coupon__title {
    margin: 0 0 0.25rem;
    font-size: 1.4rem;
    font-weight: 800;
    color: #1e293b;
}

.store-cart-coupon__desc {
    margin: 0 0 0.85rem;
    font-size: 1.2rem;
    color: #64748b;
}

.store-cart-coupon__form {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
}

.store-cart-coupon__input {
    flex: 1;
    min-width: 12rem;
    padding: 0.75rem 1rem !important;
    font-size: 1.25rem !important;
    border: 1px solid #e2e8f0 !important;
    border-radius: 0.75rem !important;
}

.store-cart-coupon__btn {
    padding: 0.75rem 1.4rem;
    font-family: inherit;
    font-size: 1.25rem;
    font-weight: 700;
    color: #fff;
    background: linear-gradient(135deg, var(--store-primary, #336699) 0%, var(--store-primary-dark, #2a5580) 100%);
    border: none;
    border-radius: 0.75rem;
    cursor: pointer;
    transition: box-shadow 0.25s ease;
}

.store-cart-coupon__btn:hover {
    box-shadow: 0 6px 16px rgba(51, 102, 153, 0.3);
}

.store-cart-coupon__note {
    margin: 0.65rem 0 0;
    font-size: 1.1rem;
    color: #94a3b8;
}

.store-cart-empty {
    padding: 4rem 2rem;
    text-align: center;
    background: #fff;
    border: 1px solid #e8eef5;
    border-radius: 1.4rem;
    box-shadow: 0 4px 18px rgba(15, 23, 42, 0.04);
}

.store-cart-empty__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 7rem;
    height: 7rem;
    margin-bottom: 1rem;
    font-size: 3rem;
    color: var(--store-primary, #336699);
    background: rgba(51, 102, 153, 0.1);
    border-radius: 50%;
}

.store-cart-empty__title {
    margin: 0 0 0.5rem;
    font-size: 2rem;
    font-weight: 800;
    color: #1e293b;
}

.store-cart-empty__desc {
    margin: 0 0 1.5rem;
    font-size: 1.3rem;
    color: #64748b;
}

.store-cart-empty__btn {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    padding: 0.9rem 1.6rem;
    font-size: 1.35rem;
    font-weight: 700;
    color: #fff;
    text-decoration: none;
    background: linear-gradient(135deg, var(--store-primary, #336699) 0%, var(--store-primary-dark, #2a5580) 100%);
    border-radius: 2rem;
    box-shadow: 0 6px 18px rgba(51, 102, 153, 0.3);
    transition: gap 0.3s ease, box-shadow 0.3s ease;
}

.store-cart-empty__btn:hover {
    gap: 0.85rem;
    box-shadow: 0 8px 22px rgba(51, 102, 153, 0.35);
    text-decoration: none;
    color: #fff;
}

/* Cart summary sidebar */
.store-cart-summary {
    padding: 1.5rem;
    background: #fff;
    border: 1px solid #e8eef5;
    border-radius: 1.2rem;
    box-shadow: 0 8px 28px rgba(15, 23, 42, 0.06);
}

.store-cart-summary__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    margin-bottom: 1.2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #f1f5f9;
}

.store-cart-summary__title {
    margin: 0;
    font-size: 1.55rem;
    font-weight: 800;
    color: #1e293b;
}

.store-cart-summary__count {
    padding: 0.3rem 0.75rem;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--store-primary, #336699);
    background: rgba(51, 102, 153, 0.1);
    border-radius: 2rem;
}

.store-cart-summary__rows {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.store-cart-summary__row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    font-size: 1.25rem;
    color: #64748b;
}

.store-cart-summary__row strong {
    font-weight: 700;
    color: #1e293b;
}

.store-cart-summary__row--discount strong {
    color: #16a34a;
}

.store-cart-summary__shipping-tip {
    display: flex;
    gap: 0.65rem;
    margin-bottom: 1rem;
    padding: 0.85rem 1rem;
    font-size: 1.15rem;
    line-height: 1.6;
    color: #475569;
    background: #f8fafc;
    border: 1px solid #e8eef5;
    border-radius: 0.85rem;
}

.store-cart-summary__shipping-tip i {
    flex-shrink: 0;
    margin-top: 0.15rem;
    font-size: 1.6rem;
    color: var(--store-primary, #336699);
}

.store-cart-summary__shipping-tip p {
    margin: 0;
}

.store-cart-summary__total {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.2rem;
    padding: 1rem 1.1rem;
    font-size: 1.35rem;
    font-weight: 700;
    color: #1e293b;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    border: 1px solid #e8eef5;
    border-radius: 0.85rem;
}

.store-cart-summary__total strong {
    font-size: 1.65rem;
    font-weight: 800;
    color: var(--store-primary, #336699);
}

.store-cart-summary__checkout {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.55rem;
    width: 100%;
    padding: 1rem 1.4rem;
    font-size: 1.35rem;
    font-weight: 700;
    color: #fff !important;
    text-decoration: none;
    background: linear-gradient(135deg, var(--store-primary, #336699) 0%, var(--store-primary-dark, #2a5580) 100%);
    border-radius: 0.85rem;
    box-shadow: 0 6px 18px rgba(51, 102, 153, 0.3);
    transition: box-shadow 0.25s ease, gap 0.25s ease;
}

.store-cart-summary__checkout:hover {
    gap: 0.85rem;
    box-shadow: 0 8px 22px rgba(51, 102, 153, 0.38);
    text-decoration: none;
    color: #fff !important;
}

.store-cart-summary__login-note {
    margin: 0.75rem 0 0;
    font-size: 1.15rem;
    text-align: center;
    color: #94a3b8;
}

.store-cart-summary__trust {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem 1.2rem;
    margin-top: 1.2rem;
    padding-top: 1rem;
    border-top: 1px solid #f1f5f9;
    font-size: 1.15rem;
    font-weight: 600;
    color: #64748b;
}

.store-cart-summary__trust span {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
}

.store-cart-summary__trust i {
    color: #16a34a;
}

@media (min-width: 768px) {
    .store-cart-item {
        grid-template-columns: 1fr 9rem 13rem 9rem auto;
        grid-template-areas: "product price qty total remove";
        gap: 1rem;
        align-items: center;
    }

    .store-cart-item__qty {
        align-items: center;
    }

    .store-cart-item__total {
        flex-direction: row;
        align-items: center;
        justify-content: flex-end;
        padding: 0.65rem 0.85rem;
        background: transparent;
        border: none;
        border-radius: 0;
    }
}

@media (max-width: 767px) {
    .store-cart-breadcrumb__step:not(:last-child)::after {
        width: 1.2rem;
    }

    .store-cart-breadcrumb__label {
        font-size: 1.1rem;
    }

    .store-cart-breadcrumb__step {
        padding: 0.5rem 0.65rem;
    }

    .store-cart-coupon {
        flex-direction: column;
    }

    .store-cart-item__qty {
        width: 100%;
    }

    .store-cart-item__qty-group {
        max-width: 100%;
    }

    .store-cart-coupon__form {
        flex-direction: column;
    }

    .store-cart-coupon__btn {
        width: 100%;
    }
}

@media (max-width: 575px) {
    .store-cart-breadcrumb__label {
        display: none;
    }

    .store-cart-breadcrumb__step:not(:last-child)::after {
        width: 0.8rem;
    }
}

/* Order steps — shared cart/checkout */
.store-order-steps__link {
    display: flex;
    align-items: center;
    gap: 0.55rem;
    color: inherit;
    text-decoration: none;
    transition: color 0.25s ease;
}

.store-order-steps__link:hover {
    color: var(--store-primary, #336699);
    text-decoration: none;
}

.store-cart-breadcrumb__step.is-done {
    color: #16a34a;
}

.store-cart-breadcrumb__step.is-done .store-cart-breadcrumb__num {
    color: #fff;
    background: #16a34a;
    border-color: #16a34a;
}

/* ── Checkout page ── */
.main.checkout .store-checkout-page .form-control {
    margin-bottom: 0;
}

.main.checkout .store-checkout-page textarea.form-control {
    min-height: 7rem;
    padding-top: 0.8rem !important;
}

.store-checkout-page {
    padding-top: 0.5rem;
    padding-bottom: 3rem;
}

.store-checkout-main__head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1.2rem;
}

.store-checkout-main__title {
    margin: 0 0 0.25rem;
    font-size: 2rem;
    font-weight: 800;
    color: #1e293b;
}

.store-checkout-main__meta {
    margin: 0;
    font-size: 1.25rem;
    color: #64748b;
}

.store-checkout-main__back {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.65rem 1.1rem;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--store-primary, #336699);
    text-decoration: none;
    background: rgba(51, 102, 153, 0.08);
    border: 1px solid rgba(51, 102, 153, 0.15);
    border-radius: 2rem;
    transition: background 0.25s ease, gap 0.25s ease;
}

.store-checkout-main__back:hover {
    gap: 0.75rem;
    background: rgba(51, 102, 153, 0.12);
    color: var(--store-primary, #336699);
    text-decoration: none;
}

.store-checkout-form__alert {
    margin-bottom: 1.5rem;
}

.store-checkout-coupon {
    margin-bottom: 1.2rem;
    overflow: hidden;
    background: #fff;
    border: 1px solid #e8eef5;
    border-radius: 1rem;
    box-shadow: 0 2px 12px rgba(15, 23, 42, 0.04);
}

.store-checkout-coupon__toggle {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    width: 100%;
    padding: 1rem 1.2rem;
    font-family: inherit;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--store-primary, #336699);
    text-align: right;
    background: #f8fafc;
    border: none;
    cursor: pointer;
    transition: background 0.25s ease;
}

.store-checkout-coupon__toggle:hover {
    background: #f1f5f9;
}

.store-checkout-coupon__chevron {
    margin-right: auto;
    font-size: 1.1rem;
    transition: transform 0.3s ease;
}

.store-checkout-coupon__toggle.is-open .store-checkout-coupon__chevron {
    transform: rotate(180deg);
}

.store-checkout-coupon__panel {
    padding: 0 1.2rem 1.2rem;
    border-top: 1px solid #f1f5f9;
}

.store-checkout-coupon__hint {
    margin: 1rem 0 0.75rem;
    font-size: 1.15rem;
    color: #64748b;
}

.store-checkout-coupon__form {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
}

.store-checkout-coupon__input {
    flex: 1;
    min-width: 12rem;
    padding: 0.75rem 1rem !important;
    font-size: 1.25rem !important;
    border: 1px solid #e2e8f0 !important;
    border-radius: 0.75rem !important;
}

.store-checkout-coupon__btn {
    padding: 0.75rem 1.4rem;
    font-family: inherit;
    font-size: 1.25rem;
    font-weight: 700;
    color: #fff;
    background: var(--store-primary, #336699);
    border: none;
    border-radius: 0.75rem;
    cursor: pointer;
}

.store-checkout-card {
    background: #fff;
    border: 1px solid #e8eef5;
    border-radius: 1.2rem;
    box-shadow: 0 4px 20px rgba(15, 23, 42, 0.05);
    overflow: hidden;
}

.store-checkout-card__head {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.4rem 1.5rem;
    background: linear-gradient(135deg, #f8fafc 0%, #fff 100%);
    border-bottom: 1px solid #f1f5f9;
}

.store-checkout-card__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 4.2rem;
    height: 4.2rem;
    font-size: 2rem;
    color: var(--store-primary, #336699);
    background: rgba(51, 102, 153, 0.1);
    border-radius: 1rem;
    flex-shrink: 0;
}

.store-checkout-card__title {
    margin: 0 0 0.2rem;
    font-size: 1.55rem;
    font-weight: 800;
    color: #1e293b;
}

.store-checkout-card__subtitle {
    margin: 0;
    font-size: 1.15rem;
    color: #64748b;
}

.store-checkout-card__body {
    padding: 1.5rem;
}

.store-checkout-field {
    margin-bottom: 1.1rem;
}

.store-checkout-field label {
    display: block;
    margin-bottom: 0.4rem;
    font-size: 1.2rem;
    font-weight: 700;
    color: #475569;
}

.store-checkout-input {
    padding: 0.8rem 1rem !important;
    font-size: 1.3rem !important;
    color: #1e293b !important;
    background: #f8fafc !important;
    border: 1px solid #e2e8f0 !important;
    border-radius: 0.75rem !important;
    transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.store-checkout-input:focus {
    border-color: var(--store-primary, #336699) !important;
    box-shadow: 0 0 0 3px rgba(51, 102, 153, 0.12);
    outline: none;
    background: #fff !important;
}

.store-checkout-textarea {
    min-height: 7rem;
    resize: vertical;
}

.store-checkout-order {
    padding: 1.5rem;
    background: #fff;
    border: 1px solid #e8eef5;
    border-radius: 1.2rem;
    box-shadow: 0 8px 28px rgba(15, 23, 42, 0.07);
}

.store-checkout-order__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #f1f5f9;
}

.store-checkout-order__title {
    margin: 0;
    font-size: 1.55rem;
    font-weight: 800;
    color: #1e293b;
}

.store-checkout-order__count {
    padding: 0.3rem 0.75rem;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--store-primary, #336699);
    background: rgba(51, 102, 153, 0.1);
    border-radius: 2rem;
}

.store-checkout-order__items {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin: 0 0 1.25rem;
    padding: 0;
}

.store-checkout-order__item {
    margin: 0;
    padding: 0;
}

.store-checkout-order__item-card {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 0.9rem;
    padding: 0.85rem 0.95rem;
    color: inherit;
    text-decoration: none !important;
    background: linear-gradient(180deg, #fff 0%, #f8fafc 100%);
    border: 1px solid #e8eef5;
    border-radius: 5px;
    box-shadow: 0 2px 10px rgba(15, 23, 42, 0.03);
    transition:
        transform 0.28s cubic-bezier(0.22, 1, 0.36, 1),
        border-color 0.28s ease,
        box-shadow 0.28s ease,
        background 0.28s ease;
}

.store-checkout-order__item-card:hover {
    transform: translateY(-2px);
    background: #fff;
    border-color: rgba(var(--store-primary-rgb, 51, 102, 153), 0.35);
    box-shadow:
        0 10px 28px rgba(var(--store-primary-rgb, 51, 102, 153), 0.1),
        inset 0 0 0 1px rgba(var(--store-primary-rgb, 51, 102, 153), 0.06);
}

.store-checkout-order__item-card:focus-visible {
    outline: none;
    border-color: var(--store-primary, #336699);
    box-shadow: 0 0 0 3px rgba(var(--store-primary-rgb, 51, 102, 153), 0.18);
}

.store-checkout-order__item-thumb {
    display: flex;
    flex-shrink: 0;
    align-items: center;
    justify-content: center;
    width: 4.25rem;
    height: 4.25rem;
    overflow: hidden;
    background: #fff;
    border: 1px solid #e8eef5;
    border-radius: 5px;
    transition: border-color 0.28s ease, transform 0.28s ease;
}

.store-checkout-order__item-card:hover .store-checkout-order__item-thumb {
    border-color: rgba(var(--store-primary-rgb, 51, 102, 153), 0.25);
    transform: scale(1.04);
}

.store-checkout-order__item-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.35s ease;
}

.store-checkout-order__item-card:hover .store-checkout-order__item-thumb img {
    transform: scale(1.06);
}

.store-checkout-order__item-body {
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
    min-width: 0;
}

.store-checkout-order__item-name {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    font-size: 1.22rem;
    font-weight: 700;
    line-height: 1.5;
    color: #1e293b;
    transition: color 0.25s ease;
}

.store-checkout-order__item-card:hover .store-checkout-order__item-name {
    color: var(--store-primary, #336699);
}

.store-checkout-order__item-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
}

.store-checkout-order__item-qty {
    display: inline-flex;
    align-items: center;
    padding: 0.2rem 0.55rem;
    font-size: 1.05rem;
    font-weight: 700;
    color: #64748b;
    background: #f1f5f9;
    border-radius: 5px;
    transition: background 0.25s ease, color 0.25s ease;
}

.store-checkout-order__item-card:hover .store-checkout-order__item-qty {
    color: var(--store-primary, #336699);
    background: rgba(var(--store-primary-rgb, 51, 102, 153), 0.1);
}

.store-checkout-order__item-price {
    font-size: 1.28rem;
    font-weight: 800;
    color: #1e293b;
    white-space: nowrap;
    transition: color 0.25s ease;
}

.store-checkout-order__item-card:hover .store-checkout-order__item-price {
    color: var(--store-primary, #336699);
}

.store-checkout-order__item-arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 2rem;
    height: 2rem;
    font-size: 1.1rem;
    color: #94a3b8;
    background: #f8fafc;
    border: 1px solid #e8eef5;
    border-radius: 5px;
    opacity: 0;
    transform: translateX(6px);
    transition:
        opacity 0.28s ease,
        transform 0.28s ease,
        color 0.25s ease,
        background 0.25s ease,
        border-color 0.25s ease;
}

.store-checkout-order__item-card:hover .store-checkout-order__item-arrow {
    opacity: 1;
    transform: translateX(0);
    color: #fff;
    background: var(--store-primary, #336699);
    border-color: var(--store-primary, #336699);
}

.store-checkout-order__item:not(:has(.store-checkout-order__item-card)) {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.85rem 0.95rem;
    background: linear-gradient(180deg, #fff 0%, #f8fafc 100%);
    border: 1px solid #e8eef5;
    border-radius: 5px;
    box-shadow: 0 2px 10px rgba(15, 23, 42, 0.03);
}

@media (hover: none) {
    .store-checkout-order__item-arrow {
        opacity: 1;
        transform: translateX(0);
    }
}

.store-checkout-order__item-product {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    flex: 1;
    min-width: 0;
}

.store-checkout-order__item:last-child {
    border-bottom: none;
}

.store-checkout-order__item-name small {
    display: block;
    margin-top: 0.15rem;
    font-size: 1.05rem;
    font-weight: 600;
    color: #94a3b8;
}

.store-checkout-order__item strong {
    flex-shrink: 0;
    font-size: 1.25rem;
    font-weight: 800;
    color: #1e293b;
}

.store-checkout-order__rows {
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
    margin-bottom: 1rem;
    padding-top: 1rem;
    border-top: 1px dashed #e2e8f0;
}

.store-checkout-order__row {
    display: flex;
    justify-content: space-between;
    font-size: 1.2rem;
    color: #64748b;
}

.store-checkout-order__row strong {
    color: #1e293b;
}

.store-checkout-order__row--discount strong {
    color: #16a34a;
}

.store-checkout-order__total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.2rem;
    padding: 1rem 1.1rem;
    font-size: 1.35rem;
    font-weight: 700;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    border: 1px solid #e8eef5;
    border-radius: 0.85rem;
}

.store-checkout-order__total strong {
    font-size: 1.65rem;
    font-weight: 800;
    color: var(--store-primary, #336699);
}

.store-checkout-payments {
    margin-bottom: 1.2rem;
}

.store-checkout-payments__title {
    margin: 0 0 0.85rem;
    font-size: 1.35rem;
    font-weight: 800;
    color: #1e293b;
}

.store-checkout-payment {
    display: block;
    position: relative;
    margin-bottom: 0.65rem;
    cursor: pointer;
}

.store-checkout-payment input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.store-checkout-payment__box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.85rem;
    padding: 0.9rem 1rem;
    border: 2px solid #e8eef5;
    border-radius: 0.85rem;
    background: #f8fafc;
    transition: border-color 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
}

.store-checkout-payment__check {
    display: flex;
    flex-shrink: 0;
    align-items: center;
    justify-content: center;
    width: 2.4rem;
    height: 2.4rem;
    margin-right: auto;
    font-size: 1.1rem;
    color: transparent;
    background: #fff;
    border: 2px solid #e2e8f0;
    border-radius: 50%;
    transition: color 0.25s ease, background 0.25s ease, border-color 0.25s ease;
}

.store-checkout-payment.is-selected .store-checkout-payment__check {
    color: #fff;
    background: var(--store-primary, #336699);
    border-color: var(--store-primary, #336699);
}

.store-checkout-payment__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 3.6rem;
    height: 3.6rem;
    font-size: 1.6rem;
    color: var(--store-primary, #336699);
    background: rgba(51, 102, 153, 0.1);
    border-radius: 0.75rem;
    flex-shrink: 0;
}

.store-checkout-payment__text {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
    min-width: 0;
}

.store-checkout-payment__text strong {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1e293b;
}

.store-checkout-payment__text small {
    font-size: 1.1rem;
    color: #64748b;
    line-height: 1.4;
}

.store-checkout-payment__stripe {
    flex-shrink: 0;
    padding: 0.35rem 0.65rem;
    font-size: 0.95rem;
    font-weight: 800;
    letter-spacing: 0.02em;
    color: #635bff;
    background: #f5f3ff;
    border: 1px solid #e0e7ff;
    border-radius: 0.5rem;
}

.store-checkout-payment.is-selected .store-checkout-payment__box,
.store-checkout-payment:hover .store-checkout-payment__box {
    border-color: rgba(51, 102, 153, 0.45);
    background: #fff;
}

.store-checkout-payment.is-selected .store-checkout-payment__box {
    border-color: var(--store-primary, #336699);
    box-shadow: 0 4px 14px rgba(51, 102, 153, 0.12);
}

.store-checkout-submit {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.55rem;
    width: 100%;
    padding: 1.05rem 1.4rem;
    font-family: inherit;
    font-size: 1.4rem;
    font-weight: 800;
    color: #fff;
    background: linear-gradient(135deg, var(--store-primary, #336699) 0%, var(--store-primary-dark, #2a5580) 100%);
    border: none;
    border-radius: 0.85rem;
    box-shadow: 0 8px 22px rgba(51, 102, 153, 0.32);
    cursor: pointer;
    transition: box-shadow 0.25s ease, gap 0.25s ease, transform 0.25s ease;
}

.store-checkout-submit:hover {
    gap: 0.85rem;
    box-shadow: 0 10px 28px rgba(51, 102, 153, 0.38);
    transform: translateY(-1px);
}

.store-checkout-order__trust {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem 1.2rem;
    margin-top: 1.2rem;
    padding-top: 1rem;
    border-top: 1px solid #f1f5f9;
    font-size: 1.15rem;
    font-weight: 600;
    color: #64748b;
}

.store-checkout-order__trust span {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
}

.store-checkout-order__trust i {
    color: #16a34a;
}

@media (max-width: 767px) {
    .store-checkout-page {
        padding-bottom: 2rem;
    }

    .store-checkout-page > .container {
        padding-right: 1.2rem;
        padding-left: 1.2rem;
    }

    .store-checkout-main__title {
        font-size: 1.75rem;
    }

    .store-checkout-card__body {
        padding: 1.2rem;
    }

    .store-checkout-order {
        padding: 1.2rem;
    }

    .store-checkout-coupon__form {
        flex-direction: column;
    }

    .store-checkout-coupon__btn {
        width: 100%;
    }
}

/* ── Checkout success page ── */
.store-checkout-success-page {
    padding-top: 0.5rem;
    padding-bottom: 3rem;
}

.store-checkout-success-alert {
    margin-bottom: 1.25rem;
}

.store-checkout-success-hero {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: clamp(1rem, 2.5vw, 1.75rem);
    margin-bottom: 1.75rem;
    padding: clamp(1.25rem, 3vw, 2rem);
    background: linear-gradient(135deg, #ecfdf5 0%, #f0fdf4 45%, #fff 100%);
    border: 1px solid #bbf7d0;
    border-radius: 1.25rem;
    box-shadow: 0 8px 32px rgba(22, 163, 74, 0.08);
}

.store-checkout-success-hero__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 5.5rem;
    height: 5.5rem;
    font-size: 2.4rem;
    color: #fff;
    background: linear-gradient(135deg, #22c55e, #16a34a);
    border-radius: 50%;
    box-shadow: 0 8px 24px rgba(22, 163, 74, 0.35);
}

.store-checkout-success-hero__eyebrow {
    margin: 0 0 0.35rem;
    font-size: 1.15rem;
    font-weight: 700;
    color: #16a34a;
    letter-spacing: 0.02em;
}

.store-checkout-success-hero__title {
    margin: 0 0 0.5rem;
    font-size: clamp(1.65rem, 3vw, 2.2rem);
    font-weight: 800;
    color: #14532d;
    line-height: 1.35;
}

.store-checkout-success-hero__meta {
    margin: 0;
    font-size: 1.2rem;
    color: #475569;
    line-height: 1.6;
}

.store-checkout-success-hero__badge {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.25rem;
    min-width: 12rem;
    padding: 1rem 1.25rem;
    text-align: left;
    background: #fff;
    border: 1px solid #dcfce7;
    border-radius: 1rem;
    box-shadow: 0 4px 16px rgba(15, 23, 42, 0.05);
}

.store-checkout-success-hero__badge-label {
    font-size: 1.05rem;
    font-weight: 600;
    color: #64748b;
}

.store-checkout-success-hero__badge-value {
    font-size: 1.45rem;
    font-weight: 800;
    color: #1e293b;
    letter-spacing: 0.02em;
}

.store-checkout-success-hero__badge-date {
    font-size: 1.05rem;
    color: #94a3b8;
}

.store-checkout-success-card {
    margin-bottom: 1.25rem;
}

.store-checkout-success-card__body {
    padding-top: 0.25rem;
}

.store-checkout-success-items {
    margin: 0;
    padding: 0;
}

.store-checkout-success-item__link {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s ease;
}

.store-checkout-success-item__link:hover {
    color: var(--store-primary, #336699);
}

.store-checkout-success-item__variant,
.store-checkout-success-item__sku {
    display: block;
    margin-top: 0.15rem;
    color: #94a3b8;
}

.store-checkout-success-address__name {
    margin: 0 0 0.35rem;
    font-size: 1.35rem;
    font-weight: 800;
    color: #1e293b;
}

.store-checkout-success-address__line {
    margin: 0 0 0.75rem;
    font-size: 1.2rem;
    color: #475569;
    line-height: 1.7;
}

.store-checkout-success-address__meta {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin: 0 0 0.35rem;
    font-size: 1.15rem;
    color: #64748b;
}

.store-checkout-success-note {
    font-size: 1.2rem;
    color: #475569;
    line-height: 1.7;
}

.store-checkout-success-downloads {
    margin: 0;
    padding: 0;
    list-style: none;
}

.store-checkout-success-download + .store-checkout-success-download {
    margin-top: 0.65rem;
}

.store-checkout-success-download__link,
.store-checkout-success-download__disabled {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    padding: 0.75rem 1rem;
    font-size: 1.15rem;
    font-weight: 700;
    border-radius: 0.85rem;
}

.store-checkout-success-download__link {
    color: var(--store-primary, #336699);
    text-decoration: none;
    background: rgba(51, 102, 153, 0.08);
    border: 1px solid rgba(51, 102, 153, 0.15);
    transition: background 0.2s ease, gap 0.2s ease;
}

.store-checkout-success-download__link:hover {
    gap: 0.75rem;
    background: rgba(51, 102, 153, 0.12);
    color: var(--store-primary, #336699);
}

.store-checkout-success-download__disabled {
    color: #94a3b8;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
}

.store-checkout-success-notice {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-top: 1.25rem;
    padding: 1.15rem 1.25rem;
    border-radius: 1rem;
}

.store-checkout-success-notice--info {
    color: #1e40af;
    background: #eff6ff;
    border: 1px solid #bfdbfe;
}

.store-checkout-success-notice__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 2.75rem;
    height: 2.75rem;
    font-size: 1.35rem;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 50%;
}

.store-checkout-success-notice strong {
    display: block;
    margin-bottom: 0.35rem;
    font-size: 1.25rem;
}

.store-checkout-success-notice p {
    font-size: 1.15rem;
    line-height: 1.65;
}

.store-checkout-success-summary {
    position: sticky;
    top: 1.5rem;
}

.store-checkout-success-status {
    color: #16a34a !important;
    background: #f0fdf4 !important;
    border: 1px solid #bbf7d0 !important;
}

.store-checkout-success-summary__rows {
    margin-top: 0.5rem;
}

.store-checkout-success-meta {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px dashed #e2e8f0;
}

.store-checkout-success-meta__row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    padding: 0.45rem 0;
    font-size: 1.15rem;
    color: #64748b;
}

.store-checkout-success-meta__row strong {
    color: #1e293b;
    font-weight: 700;
}

.store-checkout-success-meta__status--completed {
    color: #16a34a;
}

.store-checkout-success-meta__status--pending {
    color: #d97706;
}

.store-checkout-success-meta__status--failed {
    color: #dc2626;
}

.store-checkout-success-actions {
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
    margin-top: 1.25rem;
}

.store-checkout-success-actions__primary {
    text-decoration: none;
}

.store-checkout-success-actions__secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.85rem 1rem;
    font-size: 1.15rem;
    font-weight: 700;
    color: #475569;
    text-decoration: none;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 0.85rem;
    transition: color 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.store-checkout-success-actions__secondary:hover {
    color: var(--store-primary, #336699);
    background: #fff;
    border-color: rgba(51, 102, 153, 0.25);
    text-decoration: none;
}

.store-checkout-success-trust {
    margin-top: 1rem;
}

.store-cart-breadcrumb__step.is-active.is-done .store-cart-breadcrumb__num i {
    font-size: 1.1rem;
    line-height: 1;
}

@media (max-width: 991px) {
    .store-checkout-success-hero {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .store-checkout-success-hero__icon {
        margin: 0 auto;
    }

    .store-checkout-success-hero__badge {
        align-items: center;
        text-align: center;
    }

    .store-checkout-success-summary {
        position: static;
    }
}

@media (max-width: 767px) {
    .store-checkout-success-hero__title {
        font-size: 1.55rem;
    }
}

/* ── Order invoice / receipt ── */
.store-invoice-page {
    margin: 0;
    padding: 0;
    background: #eef2f7;
    font-family: inherit;
    font-size: 1.45rem;
    color: #1e293b;
    line-height: 1.65;
}

.store-invoice-toolbar {
    position: sticky;
    top: 0;
    z-index: 20;
    padding: 0.85rem 1rem;
    background: #fff;
    border-bottom: 1px solid #e2e8f0;
    box-shadow: 0 2px 12px rgba(15, 23, 42, 0.06);
}

.store-invoice-toolbar__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    max-width: 920px;
    margin: 0 auto;
}

.store-invoice-toolbar__back,
.store-invoice-toolbar__print {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.25rem;
    font-size: 1.35rem;
    font-weight: 700;
    font-family: inherit;
    border-radius: 0.75rem;
    cursor: pointer;
    text-decoration: none;
    transition: background 0.2s ease, color 0.2s ease;
}

.store-invoice-toolbar__back {
    color: #475569;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
}

.store-invoice-toolbar__back:hover {
    color: var(--store-primary, #336699);
    text-decoration: none;
}

.store-invoice-toolbar__print {
    color: #fff;
    background: var(--store-primary, #336699);
    border: none;
}

.store-invoice-toolbar__print:hover {
    filter: brightness(1.05);
}

.store-invoice {
    max-width: 920px;
    margin: 1.5rem auto 2.5rem;
    padding: clamp(1.25rem, 3vw, 2rem);
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 1rem;
    box-shadow: 0 8px 32px rgba(15, 23, 42, 0.08);
}

.store-invoice__header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1.5rem;
    padding-bottom: 1.25rem;
    border-bottom: 2px solid #f1f5f9;
}

.store-invoice__brand {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.store-invoice__logo {
    width: 88px;
    height: 88px;
    object-fit: contain;
    border-radius: 0.75rem;
    border: 1px solid #e2e8f0;
    padding: 0.35rem;
    background: #fff;
}

.store-invoice__store-name {
    margin: 0 0 0.25rem;
    font-size: 2.2rem;
    font-weight: 800;
    color: #0f172a;
}

.store-invoice__store-meta {
    margin: 0;
    font-size: 1.35rem;
    color: #64748b;
    line-height: 1.6;
}

.store-invoice__doc {
    text-align: left;
}

.store-invoice__doc-label {
    margin: 0 0 0.25rem;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--store-primary, #336699);
    letter-spacing: 0.02em;
}

.store-invoice__doc-number {
    margin: 0 0 0.35rem;
    font-size: 1.85rem;
    font-weight: 800;
    color: #0f172a;
}

.store-invoice__doc-date {
    margin: 0;
    font-size: 1.3rem;
    color: #64748b;
}

.store-invoice__contacts {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem 1.25rem;
    margin-top: 1rem;
    padding: 1rem 1.15rem;
    font-size: 1.3rem;
    color: #475569;
    background: #f8fafc;
    border: 1px solid #e8eef5;
    border-radius: 0.75rem;
}

.store-invoice__contacts span {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
}

.store-invoice__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
    margin-top: 1.25rem;
}

.store-invoice__panel {
    padding: 1.15rem 1.25rem;
    background: #fafbfc;
    border: 1px solid #e8eef5;
    border-radius: 0.85rem;
}

.store-invoice__panel-title {
    margin: 0 0 0.85rem;
    font-size: 1.55rem;
    font-weight: 800;
    color: #1e293b;
}

.store-invoice__line {
    margin: 0 0 0.5rem;
    font-size: 1.35rem;
    color: #475569;
    line-height: 1.7;
}

.store-invoice__line strong {
    color: #1e293b;
}

.store-invoice__table-wrap {
    margin-top: 1.35rem;
}

.store-invoice__table {
    width: 100%;
    border-collapse: collapse;
    font-size: 1.35rem;
}

.store-invoice__table th,
.store-invoice__table td {
    padding: 0.9rem 0.75rem;
    text-align: right;
    border-bottom: 1px solid #e8eef5;
}

.store-invoice__table th {
    font-size: 1.25rem;
    font-weight: 800;
    color: #64748b;
    background: #f8fafc;
}

.store-invoice__table tbody tr:last-child td {
    border-bottom: none;
}

.store-invoice__variant {
    display: block;
    margin-top: 0.2rem;
    color: #94a3b8;
    font-size: 1.15rem;
}

.store-invoice__summary {
    display: flex;
    justify-content: flex-end;
    margin-top: 1.25rem;
}

.store-invoice__summary-rows {
    width: min(100%, 26rem);
    padding: 1.15rem 1.25rem;
    background: #f8fafc;
    border: 1px solid #e8eef5;
    border-radius: 0.85rem;
}

.store-invoice__summary-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.5rem 0;
    font-size: 1.35rem;
    color: #64748b;
}

.store-invoice__summary-row strong {
    color: #1e293b;
    font-weight: 700;
}

.store-invoice__summary-row--discount strong {
    color: #16a34a;
}

.store-invoice__summary-row--total {
    margin-top: 0.5rem;
    padding-top: 0.75rem;
    border-top: 2px dashed #e2e8f0;
    font-size: 1.55rem;
    font-weight: 800;
    color: #0f172a;
}

.store-invoice__summary-row--total strong {
    color: var(--store-primary, #336699);
    font-size: 1.9rem;
}

.store-invoice__note {
    margin-top: 1.25rem;
    padding: 1.15rem 1.25rem;
    background: #fffbeb;
    border: 1px solid #fde68a;
    border-radius: 0.85rem;
}

.store-invoice__note p {
    margin: 0;
    font-size: 1.35rem;
    color: #475569;
    line-height: 1.7;
}

.store-invoice__footer {
    margin-top: 1.75rem;
    padding-top: 1rem;
    text-align: center;
    border-top: 1px solid #e8eef5;
}

.store-invoice__footer p {
    margin: 0 0 0.35rem;
    font-size: 1.35rem;
    color: #475569;
}

.store-invoice__footer-meta {
    font-size: 1.2rem !important;
    color: #94a3b8 !important;
}

@media (max-width: 767px) {
    .store-invoice__header {
        flex-direction: column;
    }

    .store-invoice__doc {
        text-align: right;
    }

    .store-invoice__grid {
        grid-template-columns: 1fr;
    }

    .store-invoice__table {
        display: block;
        overflow-x: auto;
        white-space: nowrap;
    }
}

@media print {
    .no-print {
        display: none !important;
    }

    .store-invoice-page {
        background: #fff;
    }

    .store-invoice {
        max-width: none;
        margin: 0;
        padding: 0;
        border: none;
        border-radius: 0;
        box-shadow: none;
        font-size: 12pt;
    }

    .store-invoice__store-name { font-size: 18pt; }
    .store-invoice__panel-title { font-size: 13pt; }
    .store-invoice__line,
    .store-invoice__table,
    .store-invoice__summary-row,
    .store-invoice__note p,
    .store-invoice__footer p { font-size: 11pt; }
    .store-invoice__summary-row--total strong { font-size: 14pt; }

    .store-invoice__contacts,
    .store-invoice__panel,
    .store-invoice__summary-rows {
        break-inside: avoid;
    }
}

/* ── Wishlist page ── */
.store-wishlist-page {
    padding-top: 0.5rem;
    padding-bottom: 3rem;
}

.store-wishlist-page__alert {
    margin-bottom: 1.2rem;
}

.store-wishlist-main__head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.store-wishlist-main__title {
    margin: 0 0 0.25rem;
    font-size: 2rem;
    font-weight: 800;
    color: #1e293b;
}

.store-wishlist-main__meta {
    margin: 0;
    font-size: 1.25rem;
    color: #64748b;
}

.store-wishlist-main__shop,
.store-wishlist-main__shop-mobile {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.65rem 1.1rem;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--store-primary, #336699);
    text-decoration: none;
    background: rgba(51, 102, 153, 0.08);
    border: 1px solid rgba(51, 102, 153, 0.15);
    border-radius: 2rem;
    transition: background 0.25s ease, gap 0.25s ease;
}

.store-wishlist-main__shop:hover,
.store-wishlist-main__shop-mobile:hover {
    gap: 0.75rem;
    background: rgba(51, 102, 153, 0.12);
    color: var(--store-primary, #336699);
    text-decoration: none;
}

.store-wishlist-main__shop-mobile {
    width: 100%;
    justify-content: center;
    margin-top: 1.2rem;
}

.store-wishlist-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.store-wishlist-item {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    padding: 1.2rem;
    background: #fff;
    border: 1px solid #e8eef5;
    border-radius: 1.2rem;
    box-shadow: 0 4px 18px rgba(15, 23, 42, 0.04);
    transition: box-shadow 0.25s ease, border-color 0.25s ease;
}

.store-wishlist-item:hover {
    border-color: rgba(51, 102, 153, 0.2);
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.07);
}

.store-wishlist-item__thumb {
    display: block;
    flex-shrink: 0;
    width: 9rem;
    height: 9rem;
    overflow: hidden;
    background: #f8fafc;
    border: 1px solid #e8eef5;
    border-radius: 1rem;
}

.store-wishlist-item__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.35s ease;
}

.store-wishlist-item__thumb:hover img {
    transform: scale(1.05);
}

.store-wishlist-item__body {
    flex: 1;
    min-width: 0;
}

.store-wishlist-item__cat {
    display: inline-block;
    margin-bottom: 0.35rem;
    padding: 0.2rem 0.65rem;
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--store-primary, #336699);
    text-decoration: none;
    background: rgba(51, 102, 153, 0.08);
    border-radius: 2rem;
}

.store-wishlist-item__cat:hover {
    color: var(--store-primary-dark, #2a5580);
    text-decoration: none;
}

.store-wishlist-item__name {
    margin: 0 0 0.45rem;
    font-size: 1.45rem;
    font-weight: 800;
    line-height: 1.4;
}

.store-wishlist-item__name a {
    color: #1e293b;
    text-decoration: none;
    transition: color 0.25s ease;
}

.store-wishlist-item__name a:hover {
    color: var(--store-primary, #336699);
}

.store-wishlist-item__rating {
    margin-bottom: 0.5rem;
}

.store-wishlist-item__rating .ratings-full {
    font-size: 1.2rem;
}

.store-wishlist-item__meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.75rem 1rem;
    margin-top: 0.5rem;
}

.store-wishlist-item__price ins.new-price {
    font-size: 1.45rem;
    font-weight: 800;
    color: #1e293b;
    text-decoration: none;
}

.store-wishlist-item__price del.old-price {
    margin-right: 0.5rem;
    font-size: 1.15rem;
    color: #94a3b8;
}

.store-wishlist-item__price-col {
    flex-direction: column;
    align-items: flex-end;
    justify-content: center;
    gap: 0.15rem;
}

.store-wishlist-item__price-col ins.new-price {
    font-size: 1.45rem;
    font-weight: 800;
    color: #1e293b;
    text-decoration: none;
}

.store-wishlist-item__price-col del.old-price {
    font-size: 1.15rem;
    color: #94a3b8;
}

.store-wishlist-item__stock {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.35rem 0.75rem;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 2rem;
}

.store-wishlist-item__stock--in {
    color: #16a34a;
    background: #f0fdf4;
}

.store-wishlist-item__stock--out {
    color: #dc2626;
    background: #fef2f2;
}

.store-wishlist-item__stock-col {
    align-items: center;
    justify-content: center;
}

.store-wishlist-item__actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.65rem;
}

.store-wishlist-item__cart {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.45rem;
    padding: 0.75rem 1.2rem;
    font-family: inherit;
    font-size: 1.2rem;
    font-weight: 700;
    color: #fff;
    background: linear-gradient(135deg, var(--store-primary, #336699) 0%, var(--store-primary-dark, #2a5580) 100%);
    border: none;
    border-radius: 0.75rem;
    box-shadow: 0 4px 14px rgba(51, 102, 153, 0.25);
    cursor: pointer;
    transition: box-shadow 0.25s ease, transform 0.25s ease;
}

.store-wishlist-item__cart:hover:not(:disabled) {
    box-shadow: 0 6px 18px rgba(51, 102, 153, 0.32);
    transform: translateY(-1px);
}

.store-wishlist-item__cart:disabled {
    opacity: 0.55;
    cursor: not-allowed;
}

.store-wishlist-item__quick {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    padding: 0.75rem 1rem;
    font-size: 1.2rem;
    font-weight: 700;
    color: #475569;
    text-decoration: none;
    background: #f8fafc;
    border: 1px solid #e8eef5;
    border-radius: 0.75rem;
    transition: color 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

.store-wishlist-item__quick:hover {
    color: var(--store-primary, #336699);
    background: #fff;
    border-color: rgba(51, 102, 153, 0.3);
    text-decoration: none;
}

.store-wishlist-item__remove {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 3.4rem;
    height: 3.4rem;
    padding: 0;
    font-size: 1.3rem;
    color: #94a3b8;
    background: #f8fafc;
    border: 1px solid #e8eef5;
    border-radius: 50%;
    cursor: pointer;
    transition: color 0.25s ease, background 0.25s ease, border-color 0.25s ease;
}

.store-wishlist-item__remove:hover {
    color: #ef4444;
    background: #fef2f2;
    border-color: #fecaca;
}

.store-wishlist-summary {
    padding: 1.5rem;
    background: #fff;
    border: 1px solid #e8eef5;
    border-radius: 1.2rem;
    box-shadow: 0 8px 28px rgba(15, 23, 42, 0.07);
}

.store-wishlist-summary__head {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.2rem;
    padding-bottom: 1.2rem;
    border-bottom: 1px solid #f1f5f9;
}

.store-wishlist-summary__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 4.2rem;
    height: 4.2rem;
    font-size: 2rem;
    color: #e11d48;
    background: #fff1f2;
    border-radius: 1rem;
    flex-shrink: 0;
}

.store-wishlist-summary__title {
    margin: 0 0 0.2rem;
    font-size: 1.55rem;
    font-weight: 800;
    color: #1e293b;
}

.store-wishlist-summary__subtitle {
    margin: 0;
    font-size: 1.15rem;
    color: #64748b;
}

.store-wishlist-summary__rows {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 1.2rem;
}

.store-wishlist-summary__row {
    display: flex;
    justify-content: space-between;
    font-size: 1.2rem;
    color: #64748b;
}

.store-wishlist-summary__row strong {
    font-size: 1.35rem;
    font-weight: 800;
    color: #1e293b;
}

.store-wishlist-summary__cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.55rem;
    width: 100%;
    padding: 1rem 1.4rem;
    font-size: 1.35rem;
    font-weight: 800;
    color: #fff;
    text-decoration: none;
    background: linear-gradient(135deg, var(--store-primary, #336699) 0%, var(--store-primary-dark, #2a5580) 100%);
    border-radius: 0.85rem;
    box-shadow: 0 8px 22px rgba(51, 102, 153, 0.32);
    transition: box-shadow 0.25s ease, gap 0.25s ease, transform 0.25s ease;
}

.store-wishlist-summary__cta:hover {
    gap: 0.85rem;
    box-shadow: 0 10px 28px rgba(51, 102, 153, 0.38);
    transform: translateY(-1px);
    color: #fff;
    text-decoration: none;
}

.store-wishlist-summary__trust {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem 1.2rem;
    margin-top: 1.2rem;
    padding-top: 1rem;
    border-top: 1px solid #f1f5f9;
    font-size: 1.15rem;
    font-weight: 600;
    color: #64748b;
}

.store-wishlist-summary__trust span {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
}

.store-wishlist-summary__trust i {
    color: #16a34a;
}

.store-wishlist-empty {
    max-width: 36rem;
    margin: 2rem auto 3rem;
    padding: 3rem 2rem;
    text-align: center;
    background: #fff;
    border: 1px solid #e8eef5;
    border-radius: 1.5rem;
    box-shadow: 0 8px 28px rgba(15, 23, 42, 0.06);
}

.store-wishlist-empty__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 7rem;
    height: 7rem;
    margin: 0 auto 1.5rem;
    font-size: 3rem;
    color: #e11d48;
    background: linear-gradient(135deg, #fff1f2 0%, #ffe4e6 100%);
    border-radius: 50%;
}

.store-wishlist-empty__title {
    margin: 0 0 0.75rem;
    font-size: 1.85rem;
    font-weight: 800;
    color: #1e293b;
}

.store-wishlist-empty__text {
    margin: 0 0 1.5rem;
    font-size: 1.25rem;
    line-height: 1.7;
    color: #64748b;
}

.store-wishlist-empty__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.55rem;
    padding: 1rem 1.8rem;
    font-size: 1.35rem;
    font-weight: 800;
    color: #fff;
    text-decoration: none;
    background: linear-gradient(135deg, var(--store-primary, #336699) 0%, var(--store-primary-dark, #2a5580) 100%);
    border-radius: 2rem;
    box-shadow: 0 8px 22px rgba(51, 102, 153, 0.32);
    transition: box-shadow 0.25s ease, gap 0.25s ease, transform 0.25s ease;
}

.store-wishlist-empty__btn:hover {
    gap: 0.85rem;
    box-shadow: 0 10px 28px rgba(51, 102, 153, 0.38);
    transform: translateY(-1px);
    color: #fff;
    text-decoration: none;
}

@media (min-width: 768px) {
    .store-wishlist-item {
        grid-template-columns: 9rem 1fr 10rem 8rem auto;
        grid-template-areas: "thumb body price stock actions";
        align-items: center;
        gap: 1.2rem;
    }

    .store-wishlist-item__thumb {
        grid-area: thumb;
    }

    .store-wishlist-item__body {
        grid-area: body;
    }

    .store-wishlist-item__price-col {
        grid-area: price;
        display: flex;
    }

    .store-wishlist-item__stock-col {
        grid-area: stock;
        display: flex;
    }

    .store-wishlist-item__actions {
        grid-area: actions;
        justify-content: flex-end;
    }
}

@media (max-width: 767px) {
    .store-wishlist-page > .container {
        padding-right: 1.2rem;
        padding-left: 1.2rem;
    }

    .store-wishlist-main__title {
        font-size: 1.75rem;
    }

    .store-wishlist-item {
        display: flex;
        flex-wrap: wrap;
        align-items: flex-start;
        padding: 1rem;
    }

    .store-wishlist-item__thumb {
        width: 7.5rem;
        height: 7.5rem;
    }

    .store-wishlist-item__body {
        flex: 1;
        min-width: calc(100% - 8.5rem);
    }

    .store-wishlist-item__name {
        font-size: 1.3rem;
    }

    .store-wishlist-item__actions {
        width: 100%;
        margin-top: 0.25rem;
    }

    .store-wishlist-item__cart {
        flex: 1;
    }
}

/* Hide Wolmart client-only compare popup */
.compare-popup,
.compare-popup-overlay {
    display: none !important;
}

/* ── Compare bar ── */
.store-compare-bar {
    position: fixed;
    right: 0;
    left: 0;
    bottom: 0;
    z-index: 2499;
    padding: 0.85rem 0 calc(0.85rem + env(safe-area-inset-bottom, 0px));
    background: rgba(255, 255, 255, 0.97);
    border-top: 1px solid #e8eef5;
    box-shadow: 0 -8px 32px rgba(15, 23, 42, 0.12);
    transform: translateY(110%);
    opacity: 0;
    visibility: hidden;
    transition: transform 0.35s ease, opacity 0.35s ease, visibility 0.35s ease;
}

.store-compare-bar.is-visible {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
}

.store-compare-bar__inner {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1rem 1.5rem;
}

.store-compare-bar__head {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    flex-shrink: 0;
}

.store-compare-bar__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 4rem;
    height: 4rem;
    font-size: 1.8rem;
    color: var(--store-primary, #336699);
    background: rgba(51, 102, 153, 0.1);
    border-radius: 1rem;
}

.store-compare-bar__title {
    margin: 0 0 0.15rem;
    font-size: 1.45rem;
    font-weight: 800;
    color: #1e293b;
    white-space: nowrap;
}

.store-compare-bar__count {
    margin: 0;
    font-size: 1.15rem;
    font-weight: 600;
    color: #64748b;
}

.store-compare-bar__list {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex: 1;
    min-width: 0;
    margin: 0;
    padding: 0;
    list-style: none;
}

.store-compare-bar__item {
    position: relative;
    flex-shrink: 0;
}

.store-compare-bar__thumb {
    display: block;
    width: 7.2rem;
    height: 7.2rem;
    overflow: hidden;
    background: #f8fafc;
    border: 2px solid #e8eef5;
    border-radius: 0.85rem;
    transition: border-color 0.25s ease, transform 0.25s ease;
}

.store-compare-bar__thumb:hover {
    border-color: rgba(51, 102, 153, 0.35);
    transform: translateY(-2px);
}

.store-compare-bar__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.store-compare-bar__remove {
    position: absolute;
    top: -0.45rem;
    left: -0.45rem;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.2rem;
    height: 2.2rem;
    padding: 0;
    font-size: 0.95rem;
    color: #fff;
    background: #ef4444;
    border: 2px solid #fff;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(239, 68, 68, 0.35);
    transition: transform 0.2s ease, background 0.2s ease;
}

.store-compare-bar__remove:hover {
    background: #dc2626;
    transform: scale(1.08);
}

.store-compare-bar__item--empty {
    pointer-events: none;
}

.store-compare-bar__placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 7.2rem;
    height: 7.2rem;
    font-size: 1.5rem;
    color: #cbd5e1;
    background: #f8fafc;
    border: 2px dashed #e2e8f0;
    border-radius: 0.85rem;
}

.store-compare-bar__actions {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-shrink: 0;
    margin-right: auto;
}

.store-compare-bar__clear {
    padding: 0.7rem 1.1rem;
    font-family: inherit;
    font-size: 1.15rem;
    font-weight: 700;
    color: #64748b;
    background: transparent;
    border: none;
    cursor: pointer;
    transition: color 0.25s ease;
}

.store-compare-bar__clear:hover {
    color: #ef4444;
}

.store-compare-bar__start {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.85rem 1.5rem;
    font-size: 1.25rem;
    font-weight: 800;
    color: #fff;
    text-decoration: none;
    background: linear-gradient(135deg, var(--store-primary, #336699) 0%, var(--store-primary-dark, #2a5580) 100%);
    border-radius: 0.85rem;
    box-shadow: 0 6px 18px rgba(51, 102, 153, 0.32);
    transition: box-shadow 0.25s ease, gap 0.25s ease, transform 0.25s ease, opacity 0.25s ease;
}

.store-compare-bar__start:hover {
    gap: 0.75rem;
    box-shadow: 0 8px 22px rgba(51, 102, 153, 0.38);
    transform: translateY(-1px);
    color: #fff;
    text-decoration: none;
}

.store-compare-bar__start.is-disabled {
    opacity: 0.55;
    pointer-events: none;
    cursor: not-allowed;
    box-shadow: none;
}

.header-middle .compare-count {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 1.6rem;
    height: 1.6rem;
    padding: 0 0.35rem;
    margin-right: -0.4rem;
    margin-top: -0.8rem;
    font-size: 1rem;
    font-weight: 700;
    line-height: 1;
    color: #fff;
    background: var(--store-primary, #336699);
    border-radius: 1rem;
}

.mfp-product button.quick-view-modal__tool.btn-add-compare.added {
    color: var(--store-primary, #336699);
    border-color: rgba(51, 102, 153, 0.35);
    background: rgba(51, 102, 153, 0.08);
}

@media (max-width: 991px) {
    .store-compare-bar__inner {
        justify-content: center;
    }

    .store-compare-bar__head {
        width: 100%;
        justify-content: center;
        text-align: center;
    }

    .store-compare-bar__list {
        justify-content: center;
        flex-wrap: wrap;
    }

    .store-compare-bar__actions {
        width: 100%;
        justify-content: center;
        margin-right: 0;
    }

    .store-compare-bar__start {
        flex: 1;
        max-width: 16rem;
    }
}

@media (max-width: 575px) {
    .store-compare-bar__thumb,
    .store-compare-bar__placeholder {
        width: 5.8rem;
        height: 5.8rem;
    }

    .store-compare-bar__title {
        font-size: 1.3rem;
    }

    .store-compare-bar__actions {
        flex-direction: column;
        width: 100%;
    }

    .store-compare-bar__start {
        width: 100%;
        max-width: none;
    }
}

/* ── Compare page ── */
.store-compare-page {
    padding-top: 0.5rem;
    padding-bottom: calc(3rem + 8rem);
}

.store-compare-main__head {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.store-compare-main__actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.65rem;
}

.store-compare-main__title {
    margin: 0 0 0.25rem;
    font-size: 2rem;
    font-weight: 800;
    color: #1e293b;
}

.store-compare-main__meta {
    margin: 0;
    font-size: 1.25rem;
    color: #64748b;
}

.store-compare-main__shop,
.store-compare-main__shop-mobile,
.store-compare-main__clear {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.65rem 1.1rem;
    font-family: inherit;
    font-size: 1.2rem;
    font-weight: 700;
    text-decoration: none;
    border-radius: 2rem;
    transition: background 0.25s ease, gap 0.25s ease, color 0.25s ease;
}

.store-compare-main__shop,
.store-compare-main__shop-mobile {
    color: var(--store-primary, #336699);
    background: rgba(51, 102, 153, 0.08);
    border: 1px solid rgba(51, 102, 153, 0.15);
}

.store-compare-main__shop:hover,
.store-compare-main__shop-mobile:hover {
    gap: 0.75rem;
    background: rgba(51, 102, 153, 0.12);
    color: var(--store-primary, #336699);
    text-decoration: none;
}

.store-compare-main__clear {
    color: #64748b;
    background: #f8fafc;
    border: 1px solid #e8eef5;
    cursor: pointer;
}

.store-compare-main__clear:hover {
    color: #ef4444;
    background: #fef2f2;
    border-color: #fecaca;
}

.store-compare-table-wrap {
    overflow-x: auto;
    margin-bottom: 1.5rem;
    background: #fff;
    border: 1px solid #dbe3ed;
    border-radius: 1.2rem;
    box-shadow: 0 10px 36px rgba(15, 23, 42, 0.08);
    -webkit-overflow-scrolling: touch;
}

.store-compare-table__top {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    padding: 1rem 1.25rem;
    background: linear-gradient(135deg, #f8fafc 0%, #fff 100%);
    border-bottom: 1px solid #dbe3ed;
}

.store-compare-table__top-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 3.6rem;
    height: 3.6rem;
    font-size: 1.6rem;
    color: var(--store-primary, #336699);
    background: rgba(51, 102, 153, 0.1);
    border-radius: 0.85rem;
    flex-shrink: 0;
}

.store-compare-table__top-title {
    display: block;
    font-size: 1.35rem;
    font-weight: 800;
    color: #1e293b;
}

.store-compare-table__top-hint {
    display: block;
    margin-top: 0.15rem;
    font-size: 1.1rem;
    color: #94a3b8;
}

.store-compare-table {
    width: 100%;
    min-width: 56rem;
    border-collapse: separate;
    border-spacing: 0;
}

.store-compare-table__label-col,
.store-compare-table__label {
    position: sticky;
    right: 0;
    z-index: 3;
    width: 12rem;
    min-width: 12rem;
    padding: 1.1rem 1.25rem;
    text-align: right;
    vertical-align: middle;
    background: #eef2f7;
    border-left: 2px solid #dbe3ed;
    box-shadow: -6px 0 12px rgba(15, 23, 42, 0.04);
}

.store-compare-table__label-col {
    vertical-align: bottom;
    background: linear-gradient(180deg, #e8eef5 0%, #eef2f7 100%);
    border-bottom: 2px solid #dbe3ed;
}

.store-compare-table__label-inner {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    font-size: 1.2rem;
    font-weight: 800;
    color: #334155;
    white-space: nowrap;
}

.store-compare-table__label-inner i {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.4rem;
    height: 2.4rem;
    font-size: 1.25rem;
    color: var(--store-primary, #336699);
    background: #fff;
    border: 1px solid #dbe3ed;
    border-radius: 0.55rem;
    flex-shrink: 0;
}

.store-compare-table__label-inner--head i {
    background: rgba(51, 102, 153, 0.12);
    border-color: rgba(51, 102, 153, 0.2);
}

.store-compare-table__product-col,
.store-compare-table__value {
    padding: 1.15rem 1.2rem;
    text-align: center;
    vertical-align: middle;
    border-left: 1px solid #dbe3ed;
    border-top: 1px solid #dbe3ed;
    min-width: 14rem;
}

.store-compare-table__product-col {
    padding: 1.4rem 1.2rem 1.2rem;
    vertical-align: top;
    background: linear-gradient(180deg, rgba(51, 102, 153, 0.04) 0%, #fff 100%);
    border-bottom: 2px solid #dbe3ed;
    transition: background 0.25s ease;
}

.store-compare-table__product-col:hover {
    background: linear-gradient(180deg, rgba(51, 102, 153, 0.07) 0%, #fff 100%);
}

.store-compare-table__row .store-compare-table__value {
    background: #fff;
}

.store-compare-table__row--alt .store-compare-table__value {
    background: #f8fafc;
}

.store-compare-table__row--alt .store-compare-table__label {
    background: #e4eaf2;
}

.store-compare-table__row:hover .store-compare-table__value {
    background: #f1f5f9;
}

.store-compare-table__row:hover .store-compare-table__label {
    background: #dde4ee;
}

.store-compare-table tbody tr:last-child .store-compare-table__value {
    border-bottom: none;
}

.store-compare-product {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.85rem;
    min-width: 13rem;
    padding: 0.25rem;
}

.store-compare-product__media {
    position: relative;
    width: 100%;
    max-width: 13.5rem;
}

.store-compare-product__thumb {
    display: block;
    overflow: hidden;
    background: #fff;
    border: 2px solid #e2e8f0;
    border-radius: 1rem;
    box-shadow: 0 4px 14px rgba(15, 23, 42, 0.06);
}

.store-compare-product__thumb img {
    width: 100%;
    height: auto;
    aspect-ratio: 1;
    object-fit: cover;
    transition: transform 0.35s ease;
}

.store-compare-product__thumb:hover img {
    transform: scale(1.06);
}

.store-compare-product__remove {
    position: absolute;
    top: -0.5rem;
    left: -0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.3rem;
    height: 2.3rem;
    padding: 0;
    font-size: 0.95rem;
    color: #fff;
    background: #ef4444;
    border: 2px solid #fff;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 3px 10px rgba(239, 68, 68, 0.4);
    transition: transform 0.2s ease;
}

.store-compare-product__remove:hover {
    transform: scale(1.1);
}

.store-compare-product__name {
    margin: 0;
    font-size: 1.35rem;
    font-weight: 800;
    line-height: 1.5;
    min-height: 3.9rem;
}

.store-compare-product__name a {
    color: #1e293b;
    text-decoration: none;
    transition: color 0.25s ease;
}

.store-compare-product__name a:hover {
    color: var(--store-primary, #336699);
}

.store-compare-product__actions {
    display: flex;
    align-items: stretch;
    justify-content: center;
    gap: 0.55rem;
    width: 100%;
}

.store-compare-product__cart {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.45rem;
    flex: 1;
    min-height: 3.4rem;
    padding: 0.7rem 1rem;
    font-family: inherit;
    font-size: 1.15rem;
    font-weight: 700;
    color: #fff;
    background: linear-gradient(135deg, var(--store-primary, #336699) 0%, var(--store-primary-dark, #2a5580) 100%);
    border: none;
    border-radius: 0.75rem;
    box-shadow: 0 4px 14px rgba(51, 102, 153, 0.28);
    cursor: pointer;
    transition: box-shadow 0.25s ease, transform 0.25s ease;
}

.store-compare-product__cart:hover:not(:disabled) {
    box-shadow: 0 6px 18px rgba(51, 102, 153, 0.35);
    transform: translateY(-1px);
}

.store-compare-product__cart:disabled {
    opacity: 0.55;
    cursor: not-allowed;
}

.store-compare-product__wishlist.btn-add-wishlist {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    width: 3.4rem;
    min-width: 3.4rem;
    height: 3.4rem;
    font-size: 1.45rem;
    color: #64748b;
    background: #fff;
    border: 1px solid #dbe3ed;
    border-radius: 0.75rem;
    transition: color 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

.store-compare-product__wishlist.btn-add-wishlist:hover,
.store-compare-product__wishlist.btn-add-wishlist.added {
    color: #e11d48;
    background: #fff1f2;
    border-color: #fecdd3;
}

.store-compare-table__price {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.2rem;
}

.store-compare-table__price ins.new-price {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--store-primary, #336699);
    text-decoration: none;
    line-height: 1.2;
}

.store-compare-table__price del.old-price {
    font-size: 1.1rem;
    color: #94a3b8;
}

.store-compare-table__stock {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.45rem 0.9rem;
    font-size: 1.15rem;
    font-weight: 700;
    border-radius: 2rem;
    border: 1px solid transparent;
}

.store-compare-table__stock--in {
    color: #15803d;
    background: #f0fdf4;
    border-color: #bbf7d0;
}

.store-compare-table__stock--out {
    color: #b91c1c;
    background: #fef2f2;
    border-color: #fecaca;
}

.store-compare-table__desc {
    font-size: 1.15rem;
    line-height: 1.7;
    color: #475569;
    text-align: center;
    max-width: 16rem;
    margin: 0 auto;
}

.store-compare-table__rating {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.4rem;
}

.store-compare-table__rating .ratings-full {
    font-size: 1.25rem;
}

.store-compare-table__rating .rating-reviews {
    font-size: 1.1rem;
    font-weight: 600;
    color: #64748b;
}

.store-compare-table__cat {
    display: inline-block;
    padding: 0.35rem 0.85rem;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--store-primary, #336699);
    text-decoration: none;
    background: rgba(51, 102, 153, 0.1);
    border: 1px solid rgba(51, 102, 153, 0.15);
    border-radius: 2rem;
}

.store-compare-table__cat:hover {
    color: var(--store-primary-dark, #2a5580);
    text-decoration: none;
}

.store-compare-table__sku {
    display: inline-block;
    padding: 0.4rem 0.75rem;
    font-size: 1.05rem;
    font-weight: 700;
    color: #475569;
    background: #fff;
    border: 1px solid #dbe3ed;
    border-radius: 0.55rem;
    letter-spacing: 0.02em;
}

.store-compare-page__foot {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.store-compare-main__clear--mobile,
.store-compare-main__shop-mobile {
    width: 100%;
    justify-content: center;
}

.store-compare-empty {
    max-width: 36rem;
    margin: 2rem auto 3rem;
    padding: 3rem 2rem;
    text-align: center;
    background: #fff;
    border: 1px solid #e8eef5;
    border-radius: 1.5rem;
    box-shadow: 0 8px 28px rgba(15, 23, 42, 0.06);
}

.store-compare-empty__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 7rem;
    height: 7rem;
    margin: 0 auto 1.5rem;
    font-size: 3rem;
    color: var(--store-primary, #336699);
    background: linear-gradient(135deg, rgba(51, 102, 153, 0.1) 0%, rgba(51, 102, 153, 0.05) 100%);
    border-radius: 50%;
}

.store-compare-empty__title {
    margin: 0 0 0.75rem;
    font-size: 1.85rem;
    font-weight: 800;
    color: #1e293b;
}

.store-compare-empty__text {
    margin: 0 0 1.5rem;
    font-size: 1.25rem;
    line-height: 1.7;
    color: #64748b;
}

.store-compare-empty__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.55rem;
    padding: 1rem 1.8rem;
    font-size: 1.35rem;
    font-weight: 800;
    color: #fff;
    text-decoration: none;
    background: linear-gradient(135deg, var(--store-primary, #336699) 0%, var(--store-primary-dark, #2a5580) 100%);
    border-radius: 2rem;
    box-shadow: 0 8px 22px rgba(51, 102, 153, 0.32);
    transition: box-shadow 0.25s ease, gap 0.25s ease, transform 0.25s ease;
}

.store-compare-empty__btn:hover {
    gap: 0.85rem;
    box-shadow: 0 10px 28px rgba(51, 102, 153, 0.38);
    transform: translateY(-1px);
    color: #fff;
    text-decoration: none;
}

@media (max-width: 767px) {
    .store-compare-page > .container {
        padding-right: 1.2rem;
        padding-left: 1.2rem;
    }

    .store-compare-main__title {
        font-size: 1.75rem;
    }

    .store-compare-main__actions {
        width: 100%;
    }

    .store-compare-main__clear,
    .store-compare-main__shop {
        flex: 1;
        justify-content: center;
    }

    .store-compare-table {
        min-width: 48rem;
    }

    .store-compare-table__label-col,
    .store-compare-table__label {
        width: 10rem;
        min-width: 10rem;
        padding: 0.9rem;
    }

    .store-compare-table__label-inner {
        font-size: 1.05rem;
    }

    .store-compare-table__label-inner i {
        width: 2.1rem;
        height: 2.1rem;
        font-size: 1.1rem;
    }

    .store-compare-table__top-hint {
        display: none;
    }
}

/* ── Track Order Page ─────────────────────────────────────────────── */

.store-track-order-page {
    padding-top: 0.5rem;
    padding-bottom: 3rem;
}

.store-track-order-main__head {
    margin-bottom: 1.5rem;
}

.store-track-order-main__title {
    margin: 0 0 0.25rem;
    font-size: 2rem;
    font-weight: 800;
    color: #1e293b;
}

.store-track-order-main__meta {
    margin: 0;
    font-size: 1.25rem;
    color: #64748b;
}

.store-track-order-layout {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.store-track-order-form {
    display: flex;
    gap: 1.75rem;
    padding: 2.25rem 2.5rem;
    background:
        linear-gradient(145deg, rgba(var(--store-primary-rgb, 51, 102, 153), 0.05) 0%, rgba(255, 255, 255, 0.98) 42%, #fff 100%);
    border: 1px solid rgba(var(--store-primary-rgb, 51, 102, 153), 0.12);
    border-radius: 1.35rem;
    box-shadow:
        0 10px 32px rgba(var(--store-primary-rgb, 51, 102, 153), 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.85);
}

.store-track-order-form__icon {
    display: flex;
    flex-shrink: 0;
    align-items: center;
    justify-content: center;
    width: 5.75rem;
    height: 5.75rem;
    font-size: 2.45rem;
    color: var(--store-primary, #336699);
    background: rgba(var(--store-primary-rgb, 51, 102, 153), 0.1);
    border: 1px solid rgba(var(--store-primary-rgb, 51, 102, 153), 0.14);
    border-radius: 1.2rem;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.65);
}

.store-track-order-form__body {
    flex: 1;
    min-width: 0;
}

.store-track-order-form__title {
    margin: 0 0 0.5rem;
    font-size: 1.9rem;
    font-weight: 800;
    color: #1e293b;
}

.store-track-order-form__hint {
    margin: 0 0 1.5rem;
    font-size: 1.35rem;
    line-height: 1.65;
    color: #64748b;
}

.store-track-order-form__alert {
    margin-bottom: 1.25rem;
    font-size: 1.15rem;
}

.store-track-order-form__fields {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.35rem 1.6rem;
    align-items: end;
}

.store-track-order-field label {
    display: block;
    margin-bottom: 0.55rem;
    font-size: 1.25rem;
    font-weight: 700;
    color: #334155;
}

.store-track-order-input {
    height: 4.85rem;
    padding: 0 1.2rem !important;
    font-size: 1.25rem !important;
    border: 1px solid #cbd5e1 !important;
    border-radius: 0.9rem !important;
    background: #fff !important;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.store-track-order-input::placeholder {
    color: #94a3b8;
    font-size: 1.15rem;
}

.store-track-order-input:focus {
    border-color: var(--store-primary, #336699) !important;
    box-shadow: 0 0 0 4px rgba(var(--store-primary-rgb, 51, 102, 153), 0.14) !important;
}

.store-track-order-form__submit {
    grid-column: 1 / -1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.65rem;
    width: 100%;
    height: 4.85rem;
    margin-top: 0.35rem;
    padding: 0 1.75rem;
    font-family: inherit;
    font-size: 1.35rem;
    font-weight: 700;
    color: #fff;
    background: var(--store-primary, #336699);
    border: none;
    border-radius: 0.9rem;
    cursor: pointer;
    transition: background 0.25s ease, transform 0.2s ease, box-shadow 0.25s ease;
    box-shadow: 0 8px 22px rgba(var(--store-primary-rgb, 51, 102, 153), 0.22);
}

.store-track-order-form__submit i {
    font-size: 1.45rem;
}

.store-track-order-form__submit:hover {
    background: var(--store-primary-dark, #285580);
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(var(--store-primary-rgb, 51, 102, 153), 0.28);
}

.store-track-order-result {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.store-track-order-summary {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(12rem, 1fr));
    gap: 0.75rem;
    padding: 1.25rem;
    background: #fff;
    border: 1px solid #e8eef5;
    border-radius: 1rem;
    box-shadow: 0 2px 12px rgba(15, 23, 42, 0.04);
}

.store-track-order-summary__item {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    padding: 0.75rem 1rem;
    background: #f8fafc;
    border-radius: 0.75rem;
}

.store-track-order-summary__label {
    font-size: 1.05rem;
    color: #64748b;
}

.store-track-order-summary__value {
    font-size: 1.25rem;
    font-weight: 800;
    color: #1e293b;
}

.store-track-order-summary__value--status {
    color: var(--status-color, var(--store-primary, #336699));
}

.store-track-order-summary__value--total {
    color: var(--store-primary, #336699);
}

.store-track-order-timeline {
    padding: 1.25rem 1.5rem;
    background: #fff;
    border: 1px solid #e8eef5;
    border-radius: 1rem;
    box-shadow: 0 2px 12px rgba(15, 23, 42, 0.04);
    overflow: hidden;
}

.store-track-order-timeline__title {
    margin: 0 0 1rem;
    font-size: 1.35rem;
    font-weight: 800;
    color: #1e293b;
}

.store-track-order-timeline__steps {
    display: flex;
    flex-wrap: nowrap;
    gap: 0;
    margin: 0;
    padding: 0;
    list-style: none;
    overflow: hidden;
}

.store-track-order-timeline__step {
    position: relative;
    display: flex;
    flex: 1;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    min-width: 7rem;
    padding: 0 0.5rem;
    text-align: center;
}

.store-track-order-timeline__step:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 0.85rem;
    inset-inline-start: calc(50% + 0.85rem);
    width: calc(100% - 1.7rem);
    height: 2px;
    background: #dbe3ee;
}

.store-track-order-timeline__step.is-done:not(:last-child)::after {
    background: var(--store-primary, #336699);
}

.store-track-order-timeline__dot {
    position: relative;
    z-index: 1;
    width: 1.7rem;
    height: 1.7rem;
    background: #fff;
    border: 2px solid #dbe3ee;
    border-radius: 50%;
}

.store-track-order-timeline__step.is-done .store-track-order-timeline__dot {
    background: var(--store-primary, #336699);
    border-color: var(--store-primary, #336699);
}

.store-track-order-timeline__step.is-current .store-track-order-timeline__dot {
    box-shadow: 0 0 0 4px rgba(51, 102, 153, 0.18);
}

.store-track-order-timeline__label {
    font-size: 1.05rem;
    font-weight: 600;
    color: #94a3b8;
}

.store-track-order-timeline__step.is-done .store-track-order-timeline__label {
    color: #334155;
}

.store-track-order-timeline__step.is-current .store-track-order-timeline__label {
    color: var(--store-primary, #336699);
    font-weight: 800;
}

.store-track-order-notice {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    padding: 1rem 1.25rem;
    font-size: 1.15rem;
    font-weight: 600;
    border-radius: 0.75rem;
}

.store-track-order-notice--muted {
    color: #64748b;
    background: #f8fafc;
    border: 1px solid #e8eef5;
}

.store-track-order-detail {
    overflow: hidden;
    background: #fff;
    border: 1px solid #e8eef5;
    border-radius: 1rem;
    box-shadow: 0 2px 12px rgba(15, 23, 42, 0.04);
}

/* Shared order detail (track-order + future reuse) */

.store-order-detail {
    padding: 1.25rem 1.5rem 1.5rem;
}

.store-order-detail__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid #e8eef5;
}

.store-order-detail__title {
    margin: 0;
    font-size: 1.35rem;
    font-weight: 800;
    color: #1e293b;
}

.store-order-detail__count {
    font-size: 1.05rem;
    font-weight: 600;
    color: #64748b;
}

.store-order-detail__table-wrap {
    overflow-x: auto;
    margin-bottom: 1rem;
}

.store-order-detail__table {
    width: 100%;
    border-collapse: collapse;
}

.store-order-detail__table th,
.store-order-detail__table td {
    padding: 0.85rem 1rem;
    font-size: 1.1rem;
    text-align: right;
    border-bottom: 1px solid #eef2f7;
}

.store-order-detail__table thead th {
    font-weight: 700;
    color: #64748b;
    background: #f8fafc;
}

.store-order-detail__product-link {
    font-weight: 700;
    color: #1e293b;
    text-decoration: none;
}

.store-order-detail__product-link:hover {
    color: var(--store-primary, #336699);
}

.store-order-detail__meta {
    display: block;
    margin-top: 0.2rem;
    font-size: 0.95rem;
    color: #94a3b8;
}

.store-order-detail__discount {
    color: #15803d;
}

.store-order-detail__total-row th,
.store-order-detail__total-row td {
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--store-primary, #336699);
    border-bottom: none;
}

.store-order-detail__addresses {
    margin-top: 0.5rem;
}

.store-order-detail__address {
    display: flex;
    gap: 0.75rem;
    height: 100%;
    padding: 1rem;
    background: #f8fafc;
    border: 1px solid #e8eef5;
    border-radius: 0.75rem;
}

.store-order-detail__address-icon {
    display: flex;
    flex-shrink: 0;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    font-size: 1.25rem;
    color: var(--store-primary, #336699);
    background: rgba(51, 102, 153, 0.08);
    border-radius: 0.65rem;
}

.store-order-detail__address-title {
    margin: 0 0 0.35rem;
    font-size: 1.1rem;
    font-weight: 800;
    color: #1e293b;
}

.store-order-detail__address-text {
    font-size: 1.05rem;
    color: #64748b;
}

.store-order-detail__back {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 0.5rem;
    padding: 0.65rem 1.1rem;
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--store-primary, #336699);
    text-decoration: none;
    background: rgba(51, 102, 153, 0.08);
    border: 1px solid rgba(51, 102, 153, 0.15);
    border-radius: 2rem;
    transition: background 0.25s ease, gap 0.25s ease;
}

.store-order-detail__back:hover {
    gap: 0.75rem;
    background: rgba(51, 102, 153, 0.12);
    color: var(--store-primary, #336699);
    text-decoration: none;
}

@media (max-width: 767px) {
    .store-track-order-form {
        flex-direction: column;
        gap: 1.25rem;
        padding: 1.65rem 1.35rem;
    }

    .store-track-order-form__icon {
        width: 4.5rem;
        height: 4.5rem;
        font-size: 2rem;
    }

    .store-track-order-form__title {
        font-size: 1.6rem;
    }

    .store-track-order-form__hint {
        font-size: 1.2rem;
        margin-bottom: 1.25rem;
    }

    .store-track-order-field label {
        font-size: 1.15rem;
    }

    .store-track-order-input {
        height: 4.5rem;
        font-size: 1.15rem !important;
    }

    .store-track-order-form__fields {
        grid-template-columns: 1fr;
        gap: 1.1rem;
    }

    .store-track-order-form__submit {
        height: 4.5rem;
        font-size: 1.25rem;
        margin-top: 0.15rem;
    }

    .store-track-order-timeline__steps {
        flex-direction: column;
        align-items: stretch;
    }

    .store-track-order-timeline__step {
        flex-direction: row;
        align-items: center;
        min-width: 0;
        padding: 0.5rem 0;
        text-align: right;
    }

    .store-track-order-timeline__step:not(:last-child)::after {
        top: auto;
        bottom: -0.25rem;
        left: 0.85rem;
        width: 2px;
        height: calc(100% - 0.5rem);
    }

    .store-order-detail__table thead {
        display: none;
    }

    .store-order-detail__table tr {
        display: block;
        margin-bottom: 0.75rem;
        padding-bottom: 0.75rem;
        border-bottom: 1px solid #eef2f7;
    }

    .store-order-detail__table td,
    .store-order-detail__table tfoot th,
    .store-order-detail__table tfoot td {
        display: flex;
        justify-content: space-between;
        gap: 1rem;
        padding: 0.45rem 0;
        border-bottom: none;
    }

    .store-order-detail__table td::before,
    .store-order-detail__table tfoot th::before {
        content: attr(data-label);
        font-weight: 700;
        color: #64748b;
    }

    .store-order-detail__table tfoot th::before {
        content: attr(data-label, none);
    }

    .store-order-detail__table tfoot th:not([data-label])::before {
        content: none;
    }
}

/* ── Cart Dropdown / Offcanvas ───────────────────────────────────── */

.cart-dropdown.cart-offcanvas .dropdown-box.store-cart-dropdown-panel {
    display: flex;
    flex-direction: column;
    padding: 0;
    background: #fff;
    border-left: 1px solid #e8eef5;
    box-shadow: -8px 0 32px rgba(15, 23, 42, 0.12);
    left: 0 !important;
    right: auto !important;
    transform: translateX(-100%);
    transition: transform 0.3s ease !important;
    pointer-events: none;
}

.cart-dropdown.cart-offcanvas.opened .dropdown-box.store-cart-dropdown-panel {
    transform: translateX(0);
    pointer-events: auto;
}

.store-cart-dropdown-panel__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.5rem 1.75rem;
    border-bottom: 2px solid #e8eef5;
    background: linear-gradient(180deg, #fff 0%, #f8fafc 100%);
}

.store-cart-dropdown-panel__headline {
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
}

.store-cart-dropdown-panel__title-row {
    display: flex;
    align-items: center;
    gap: 0.65rem;
}

.store-cart-dropdown-panel__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 2.6rem;
    height: 2.6rem;
    font-size: 1.2rem;
    color: var(--store-primary, #336699);
    background: rgba(51, 102, 153, 0.1);
    border-radius: 0.7rem;
}

.store-cart-dropdown-panel__title {
    font-size: 1.5rem;
    font-weight: 800;
    color: #1e293b;
    line-height: 1.2;
    letter-spacing: -0.01em;
}

.store-cart-dropdown-panel__count {
    display: inline-flex;
    align-self: flex-start;
    padding: 0.25rem 0.75rem;
    font-size: 0.95rem;
    font-weight: 700;
    color: #475569;
    background: #e8eef5;
    border-radius: 2rem;
}

.store-cart-dropdown-panel__close {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.45rem 0.75rem;
    font-size: 1.05rem;
    font-weight: 600;
    color: #64748b;
    text-decoration: none;
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 2rem;
    transition: color 0.2s ease, border-color 0.2s ease;
}

.store-cart-dropdown-panel__close:hover {
    color: var(--store-primary, #336699);
    border-color: rgba(51, 102, 153, 0.35);
    text-decoration: none;
}

.store-cart-dropdown-panel__close i {
    font-size: 1.2rem;
}

[data-cart-dropdown-root] {
    display: flex;
    flex: 1;
    flex-direction: column;
    min-height: 0;
    padding: 1.15rem 1.5rem 1.5rem;
    overflow: hidden;
}

.store-cart-dropdown {
    display: flex;
    flex: 1;
    flex-direction: column;
    min-height: 0;
}

.store-cart-dropdown__items {
    flex: 1;
    max-height: calc(100vh - 18rem);
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
    margin: 0 -0.25rem;
    padding: 0 0.25rem;
    overflow-y: auto;
}

.store-cart-dropdown__item {
    display: grid;
    grid-template-columns: 6rem 1fr auto;
    gap: 1rem;
    align-items: center;
    padding: 0.9rem 1rem;
    border: 1px solid #e8eef5;
    border-radius: 0.85rem;
    background: #fff;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.store-cart-dropdown__item:hover {
    border-color: #dbe3ee;
    box-shadow: 0 2px 8px rgba(15, 23, 42, 0.05);
}

.store-cart-dropdown__thumb {
    display: block;
    overflow: hidden;
    flex-shrink: 0;
    width: 6rem;
    height: 6rem;
    border: 1px solid #e8eef5;
    border-radius: 0.75rem;
    background: #f8fafc;
}

.store-cart-dropdown__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.store-cart-dropdown__body {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    min-width: 0;
}

.store-cart-dropdown__name {
    display: -webkit-box;
    overflow: hidden;
    margin: 0;
    font-size: 1.12rem;
    font-weight: 700;
    line-height: 1.4;
    color: #1e293b;
    text-decoration: none;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.store-cart-dropdown__name:hover {
    color: var(--store-primary, #336699);
}

.store-cart-dropdown__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.35rem;
    align-items: baseline;
}

.store-cart-dropdown__qty {
    font-size: 0.95rem;
    font-weight: 600;
    color: #94a3b8;
}

.store-cart-dropdown__price {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--store-primary, #336699);
}

.store-cart-dropdown__line-total {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    align-items: baseline;
    margin-top: 0.1rem;
}

.store-cart-dropdown__line-total-label {
    font-size: 0.88rem;
    font-weight: 600;
    color: #94a3b8;
}

.store-cart-dropdown__subtotal {
    font-size: 1.05rem;
    font-weight: 800;
    color: #1e293b;
}

.store-cart-dropdown__remove {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 2.15rem;
    height: 2.15rem;
    padding: 0;
    font-size: 0.95rem;
    color: #94a3b8;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 50%;
    cursor: pointer;
    transition: color 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.store-cart-dropdown__remove:hover,
.store-cart-dropdown__remove.is-loading {
    color: #b91c1c;
    background: #fef2f2;
    border-color: #fecaca;
}

.store-cart-dropdown__empty {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 2rem 1rem;
    text-align: center;
}

.store-cart-dropdown__empty-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 4rem;
    height: 4rem;
    margin-bottom: 0.75rem;
    font-size: 1.8rem;
    color: var(--store-primary, #336699);
    background: rgba(51, 102, 153, 0.08);
    border-radius: 50%;
}

.store-cart-dropdown__empty-title {
    margin: 0 0 0.35rem;
    font-size: 1.25rem;
    font-weight: 800;
    color: #1e293b;
}

.store-cart-dropdown__empty-desc {
    margin: 0 0 1rem;
    font-size: 1.05rem;
    color: #64748b;
}

.store-cart-dropdown__empty-btn {
    display: inline-flex;
    align-items: center;
    padding: 0.55rem 1.1rem;
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--store-primary, #336699);
    text-decoration: none;
    background: rgba(51, 102, 153, 0.08);
    border: 1px solid rgba(51, 102, 153, 0.15);
    border-radius: 2rem;
}

.store-cart-dropdown__empty-btn:hover {
    background: rgba(51, 102, 153, 0.12);
    color: var(--store-primary, #336699);
    text-decoration: none;
}

.store-cart-dropdown__footer {
    margin-top: auto;
    padding-top: 1rem;
    border-top: 1px solid #e8eef5;
}

.store-cart-dropdown__total {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.85rem;
    padding: 0.75rem 0.85rem;
    background: #f8fafc;
    border-radius: 0.75rem;
}

.store-cart-dropdown__total-label {
    font-size: 1.1rem;
    font-weight: 600;
    color: #64748b;
}

.store-cart-dropdown__total-value {
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--store-primary, #336699);
}

.store-cart-dropdown__actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.65rem;
}

.store-cart-dropdown__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 3.4rem;
    padding: 0.65rem 0.75rem;
    font-size: 1.05rem;
    font-weight: 700;
    text-align: center;
    text-decoration: none;
    border-radius: 0.75rem;
    transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.store-cart-dropdown__btn--outline {
    color: #334155;
    background: #fff;
    border: 1px solid #dbe3ee;
}

.store-cart-dropdown__btn--outline:hover {
    color: var(--store-primary, #336699);
    border-color: rgba(51, 102, 153, 0.35);
    text-decoration: none;
}

.store-cart-dropdown__btn--primary {
    color: #fff;
    background: var(--store-primary, #336699);
    border: 1px solid var(--store-primary, #336699);
}

.store-cart-dropdown__btn--primary:hover {
    background: #285580;
    border-color: #285580;
    color: #fff;
    text-decoration: none;
}

/* Sticky footer mini dropdown */
.sticky-footer .store-cart-dropdown-panel--sticky {
    min-width: 22rem;
    padding: 0.75rem;
    border-radius: 0.85rem;
    box-shadow: 0 12px 32px rgba(15, 23, 42, 0.15);
}

.sticky-footer [data-cart-dropdown-root] {
    padding: 0;
}

.sticky-footer .store-cart-dropdown__items {
    max-height: 16rem;
}

.sticky-footer .store-cart-dropdown__footer {
    padding-top: 0.75rem;
}

/* Minipopup (add to cart toast) */
.minipopup-box .store-minipopup__message {
    margin: 0 0 0.15rem;
    font-size: 1.35rem;
    font-weight: 700;
    line-height: 1.5;
    color: #15803d;
}

.minipopup-box .product-action {
    display: flex;
    gap: 0.65rem;
}

.minipopup-box .product-action .store-minipopup__btn {
    flex: 1;
    justify-content: center;
    min-height: 3.15rem;
    padding: 0.65rem 1rem !important;
    font-size: 1.12rem !important;
    font-weight: 700;
    border-radius: 0.4rem !important;
}

.minipopup-box .product-action .store-minipopup__btn--dark {
    background: #1e293b !important;
    border-color: #1e293b !important;
    color: #fff !important;
}

.minipopup-box .product-action .store-minipopup__btn--dark:hover,
.minipopup-box .product-action .store-minipopup__btn--dark:focus {
    background: #0f172a !important;
    border-color: #0f172a !important;
    color: #fff !important;
}

.minipopup-box .product-action .store-minipopup__btn:not(.store-minipopup__btn--dark) {
    background: #f1f5f9 !important;
    border-color: #dbe3ee !important;
    color: #334155 !important;
}

.minipopup-box .product-action .store-minipopup__btn:not(.store-minipopup__btn--dark):hover,
.minipopup-box .product-action .store-minipopup__btn:not(.store-minipopup__btn--dark):focus {
    background: var(--store-primary, #336699) !important;
    border-color: var(--store-primary, #336699) !important;
    color: #fff !important;
}

.minipopup-area {
    left: auto !important;
    right: 1.5rem;
    bottom: 1.5rem;
}

.minipopup-box {
    width: min(30rem, calc(100vw - 2rem));
    padding: 1.65rem 1.75rem;
    border: 1px solid #cbd5e1;
    border-radius: 0.75rem;
    box-shadow: 0 16px 40px rgba(15, 23, 42, 0.14);
}

.minipopup-box .product.product-cart {
    margin-bottom: 1.15rem;
    padding-top: 0;
}

.minipopup-box .product.product-cart .product-media {
    max-width: 9.5rem;
    flex: 0 0 9.5rem;
}

.minipopup-box .product.product-cart .product-media img {
    border-radius: 0.5rem;
}

.minipopup-box .product.product-cart .product-name {
    font-size: 1.3rem;
    font-weight: 800;
    line-height: 1.45;
    color: #1e293b;
}

.minipopup-box .product.product-cart .product-details {
    padding: 0 1.25rem 0 0;
}

.minipopup-box .product-action .btn {
    flex: 1;
    justify-content: center;
    min-height: 3.15rem;
    font-size: 1.12rem;
    border-radius: 0.4rem !important;
}

@media (max-width: 767px) {
    .cart-dropdown.cart-offcanvas .dropdown-box.store-cart-dropdown-panel {
        max-width: min(100%, 28rem);
        width: min(100%, 28rem);
    }

    .cart-dropdown.cart-offcanvas.opened .cart-overlay {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }

    .cart-dropdown.cart-offcanvas:not(.opened) .cart-overlay {
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
    }

    body:has(.cart-offcanvas.opened) {
        overflow: hidden;
    }

    .store-cart-dropdown-panel__header {
        padding: 1rem 1.1rem;
    }

    [data-cart-dropdown-root] {
        padding: 0.75rem 1rem 1rem;
    }

    .store-cart-dropdown__actions {
        grid-template-columns: 1fr;
    }

    .minipopup-area {
        right: 0.75rem;
        bottom: 5.5rem;
    }

    .minipopup-box {
        width: min(100%, calc(100vw - 1.5rem));
        padding: 1.35rem 1.25rem;
    }

    .minipopup-box .product.product-cart .product-media {
        max-width: 8rem;
        flex: 0 0 8rem;
    }

    .minipopup-box .product.product-cart .product-name {
        font-size: 1.15rem;
    }

    .minipopup-box .store-minipopup__message {
        font-size: 1.2rem;
    }
}

/* ── Shop layout modes ─────────────────────────────────────────────── */

.store-shop-layout--right-sidebar {
    flex-direction: row-reverse;
}

.store-shop-layout--offcanvas .main-content {
    width: 100%;
    flex: 0 0 100%;
    max-width: 100%;
}

.store-shop-layout--offcanvas .shop-sidebar.left-sidebar {
    position: fixed;
    top: 0;
    right: 0;
    z-index: 2400;
    width: min(100%, 34rem);
    height: 100vh;
    transform: translateX(100%);
    transition: transform 0.3s ease;
}

.store-shop-layout--offcanvas .shop-sidebar.left-sidebar.active {
    transform: translateX(0);
}

@media (min-width: 992px) {
    .store-shop-layout--offcanvas .shop-sidebar.left-sidebar:not(.active) {
        visibility: hidden;
        pointer-events: none;
    }
}

.store-shop-toolbar__row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    width: 100%;
}

.store-shop-toolbar__cols {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
}

.store-shop-toolbar__col-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 2rem;
    height: 2rem;
    padding: 0 0.45rem;
    font-size: 1rem;
    font-weight: 700;
    color: #64748b;
    text-decoration: none;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 0.45rem;
}

.store-shop-toolbar__col-btn.is-active,
.store-shop-toolbar__col-btn:hover {
    color: var(--store-primary, #336699);
    border-color: rgba(51, 102, 153, 0.35);
    background: rgba(51, 102, 153, 0.08);
}

.store-shop-toolbar__options {
    position: relative;
}

.store-shop-toolbar__options-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.6rem;
    height: 2.6rem;
    padding: 0;
    font-size: 1.2rem;
    color: #64748b;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 0.55rem;
    cursor: pointer;
}

.store-shop-toolbar__options-menu {
    position: absolute;
    top: calc(100% + 0.5rem);
    left: 0;
    z-index: 50;
    display: none;
    min-width: 16rem;
    padding: 0.85rem;
    background: #fff;
    border: 1px solid #e8eef5;
    border-radius: 0.75rem;
    box-shadow: 0 12px 32px rgba(15, 23, 42, 0.12);
}

.store-shop-toolbar__options.show .store-shop-toolbar__options-menu {
    display: block;
}

.store-shop-toolbar__options-title {
    display: block;
    margin-bottom: 0.65rem;
    font-size: 1.05rem;
    font-weight: 800;
    color: #1e293b;
}

.store-shop-toolbar__options-group {
    display: flex;
    flex-wrap: wrap;
    gap: 0.35rem;
    align-items: center;
    margin-bottom: 0.65rem;
    padding-bottom: 0.65rem;
    border-bottom: 1px solid #eef2f7;
}

.store-shop-toolbar__options-group:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.store-shop-toolbar__options-group > span {
    width: 100%;
    font-size: 0.95rem;
    font-weight: 700;
    color: #64748b;
}

.store-shop-toolbar__options-group a {
    padding: 0.25rem 0.55rem;
    font-size: 0.95rem;
    font-weight: 600;
    color: #475569;
    text-decoration: none;
    background: #f8fafc;
    border-radius: 0.45rem;
}

.store-shop-toolbar__options-group a.is-active,
.store-shop-toolbar__options-group a:hover {
    color: var(--store-primary, #336699);
    background: rgba(51, 102, 153, 0.1);
}

.store-shop-toolbar--horizontal {
    flex-direction: column;
    align-items: stretch;
}

.store-shop-horizontal-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
    align-items: center;
    width: 100%;
    margin-bottom: 0.75rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid #e8eef5;
}

.store-shop-horizontal-filters__item {
    position: relative;
}

.store-shop-horizontal-filters__menu {
    position: absolute;
    top: calc(100% + 0.35rem);
    right: 0;
    z-index: 40;
    display: none;
    min-width: 12rem;
    max-height: 16rem;
    overflow-y: auto;
    padding: 0.5rem 0;
    background: #fff;
    border: 1px solid #e8eef5;
    border-radius: 0.65rem;
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.1);
}

.store-shop-horizontal-filters__item.opened .store-shop-horizontal-filters__menu {
    display: block;
}

.store-shop-horizontal-filters__clear {
    margin-right: auto;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
}

.store-shop-list-item {
    margin-bottom: 0.75rem;
    padding: 0;
    border-bottom: none;
}

.store-shop-page .product-wrapper .store-shop-list-item {
    flex: 0 0 100%;
    max-width: 100%;
}

.store-shop-list-item.product-list {
    display: block !important;
    align-items: stretch;
    padding-bottom: 0;
}

.store-shop-list-item__card {
    display: grid;
    grid-template-columns: 9.5rem 1fr;
    align-items: center;
    gap: 1rem;
    padding: 0.85rem 1rem;
    background: #fff;
    border: 1px solid #e8eef5;
    border-radius: 1rem;
    box-shadow: 0 2px 12px rgba(15, 23, 42, 0.04);
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.store-shop-list-item:hover .store-shop-list-item__card {
    border-color: rgba(var(--store-primary-rgb, 51, 102, 153), 0.2);
    box-shadow: 0 6px 20px rgba(15, 23, 42, 0.07);
    transform: none;
}

.store-shop-list-item__media {
    position: relative;
    flex: none !important;
    width: 9.5rem;
    height: 9.5rem;
    max-width: 9.5rem !important;
    margin: 0 !important;
    overflow: hidden;
    background: linear-gradient(180deg, #f8fafc 0%, #f1f5f9 100%);
    border-radius: 0.75rem;
}

.store-shop-list-item__image-link {
    display: block;
    width: 100%;
    height: 100%;
}

.store-shop-list-item__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.45s ease;
}

.store-shop-list-item:hover .store-shop-list-item__media img {
    transform: scale(1.05);
}

.store-shop-list-item__badge {
    position: absolute;
    top: 0.45rem;
    right: 0.45rem;
    z-index: 2;
    padding: 0.2rem 0.55rem;
    font-size: 0.9rem;
    font-weight: 700;
    color: #fff;
    background: linear-gradient(135deg, #f97316 0%, #ef4444 100%);
    border-radius: 2rem;
    box-shadow: 0 4px 12px rgba(239, 68, 68, 0.3);
}

.store-shop-list-item__quick {
    opacity: 0;
    transition: opacity 0.3s ease;
}

.store-shop-list-item:hover .store-shop-list-item__quick {
    opacity: 1;
}

.store-shop-list-item__quick .btn-product-icon {
    width: 2.5rem;
    height: 2.5rem;
    font-size: 1.2rem;
    color: #334155;
    background: #fff;
    border-radius: 50%;
    box-shadow: 0 4px 14px rgba(15, 23, 42, 0.12);
}

.store-shop-list-item__body {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    min-width: 0;
    padding: 0 !important;
    text-align: right;
}

.store-shop-list-item__head {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.store-shop-list-item__cat {
    align-self: flex-start;
    padding: 0.15rem 0.55rem;
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--store-primary, #336699);
    text-decoration: none;
    background: rgba(var(--store-primary-rgb, 51, 102, 153), 0.08);
    border-radius: 2rem;
    transition: background 0.2s ease, color 0.2s ease;
}

.store-shop-list-item__cat:hover {
    color: var(--store-primary-dark, #2a5580);
    background: rgba(var(--store-primary-rgb, 51, 102, 153), 0.14);
    text-decoration: none;
}

.store-shop-list-item__name {
    margin: 0 !important;
    font-size: 1.25rem !important;
    font-weight: 800 !important;
    line-height: 1.4;
}

.store-shop-list-item__name a {
    color: #0f172a;
    text-decoration: none;
    transition: color 0.2s ease;
}

.store-shop-list-item__name a:hover {
    color: var(--store-primary, #336699);
}

.store-shop-list-item__meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.5rem 1rem;
}

.store-shop-list-item__rating .rating-reviews {
    font-size: 0.95rem;
    color: #94a3b8;
}

.store-shop-list-item__price {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    gap: 0.4rem;
    margin: 0 !important;
    font-size: 1.2rem !important;
}

.store-shop-list-item__price .new-price {
    font-weight: 800;
    color: #0f172a;
    text-decoration: none;
}

.store-shop-list-item__price .old-price {
    font-size: 1rem;
    color: #94a3b8;
}

.store-shop-list-item__desc {
    margin: 0;
    font-size: 1rem;
    line-height: 1.55;
    color: #64748b;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.store-shop-list-item__actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.45rem;
    margin-top: 0.15rem;
    position: static !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.store-shop-list-item__cart-form {
    margin: 0;
}

.store-shop-list-item__cart-btn {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    min-width: auto;
    max-width: none !important;
    padding: 0.55rem 1rem !important;
    font-size: 1.05rem !important;
    font-weight: 700 !important;
    color: #fff !important;
    background: linear-gradient(135deg, var(--store-primary, #336699) 0%, var(--store-primary-dark, #2a5580) 100%) !important;
    border: none !important;
    border-radius: 0.75rem !important;
    box-shadow: 0 4px 14px rgba(var(--store-primary-rgb, 51, 102, 153), 0.28);
    transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

.store-shop-list-item__cart-btn:hover {
    color: #fff !important;
    filter: brightness(1.05);
    box-shadow: 0 6px 18px rgba(var(--store-primary-rgb, 51, 102, 153), 0.35);
    transform: translateY(-1px);
}

.store-shop-list-item__icon-actions {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
}

.store-shop-list-item__icon-actions .btn-product-icon {
    width: 2.6rem;
    height: 2.6rem;
    font-size: 1.25rem;
    color: #475569;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 0.75rem;
    transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.store-shop-list-item__icon-actions .btn-product-icon:hover {
    color: var(--store-primary, #336699);
    background: #fff;
    border-color: rgba(var(--store-primary-rgb, 51, 102, 153), 0.3);
}

@media (max-width: 767px) {
    .store-shop-list-item__card {
        grid-template-columns: 7.5rem 1fr;
        gap: 0.85rem;
        padding: 0.75rem;
    }

    .store-shop-list-item__media {
        width: 7.5rem;
        height: 7.5rem;
        max-width: 7.5rem !important;
    }

    .store-shop-list-item__name {
        font-size: 1.15rem !important;
    }

    .store-shop-list-item__actions {
        width: 100%;
    }

    .store-shop-list-item__cart-form {
        flex: 1;
        min-width: 0;
    }

    .store-shop-list-item__cart-btn {
        width: 100%;
    }
}

.store-shop-banner--boxed {
    min-height: 14rem;
    padding: 2rem;
    background-size: cover;
    background-position: center;
    border-radius: 1rem;
}

.store-shop-banner--fullwidth {
    min-height: 18rem;
    background-size: cover;
    background-position: center;
}

.store-shop-banner--fullwidth__content,
.store-shop-banner--boxed__content {
    max-width: 36rem;
}

.store-shop-infinite-status__loading,
.store-shop-infinite-status__done,
.store-shop-infinite-status__error {
    display: none;
    font-size: 1.05rem;
    color: #64748b;
}

.store-shop-infinite-status.is-loading .store-shop-infinite-status__loading,
.store-shop-infinite-status.is-done .store-shop-infinite-status__done,
.store-shop-infinite-status.is-error .store-shop-infinite-status__error {
    display: block;
}

.store-shop-infinite-status.is-error {
    color: #b91c1c;
}

/* Prevent Wolmart theme scroll-load overlay from appearing on our infinite grid */
.store-shop-products--infinite + .load-more-overlay {
    display: none !important;
}

.store-product-layout-switcher {
    display: flex;
    flex-wrap: wrap;
    gap: 0.55rem;
    align-items: center;
    padding: 0.85rem 1.15rem;
    background: #f8fafc;
    border: 1px solid #e8eef5;
    border-radius: 1rem;
    box-shadow: 0 2px 12px rgba(15, 23, 42, 0.03);
}

.store-product-layout-switcher__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2rem;
    height: 2rem;
    color: var(--store-primary, #336699);
    background: rgba(51, 102, 153, 0.1);
    border-radius: 0.55rem;
}

.store-product-layout-switcher__label {
    font-weight: 700;
    color: #64748b;
}

.store-product-layout-switcher__link {
    padding: 0.4rem 0.9rem;
    font-weight: 600;
    color: #475569;
    text-decoration: none;
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 2rem;
    transition: color 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.store-product-layout-switcher__link.is-active,
.store-product-layout-switcher__link:hover {
    color: var(--store-primary, #336699);
    background: rgba(51, 102, 153, 0.06);
    border-color: rgba(51, 102, 153, 0.35);
}

/* ── Product page ──────────────────────────────────────────────────── */

.store-product-page .store-product-page__content {
    padding-top: 1rem;
}

.store-product-page .store-page-head--embedded {
    padding: 1.75rem 0 2.5rem;
    margin-bottom: 1.75rem;
    background: linear-gradient(180deg, #f8fafc 0%, #fff 100%);
    border-bottom: 1px solid #e8eef5;
}

.store-product-page .store-page-head--embedded .store-page-head__breadcrumb-list {
    margin-bottom: 1.25rem;
}

.store-product-page .store-page-head--embedded .store-page-head__title {
    font-size: clamp(2.15rem, 3.2vw, 3rem);
}

.store-product-page .store-page-head--embedded .store-page-head__title::after {
    width: 3.5rem;
    margin-top: 0.85rem;
}

@media (max-width: 767px) {
    .store-product-page .store-page-head--embedded {
        padding: 1.25rem 0 1.85rem;
        margin-bottom: 1.35rem;
    }

    .store-product-page .store-page-head--embedded .store-page-head__title {
        font-size: 1.85rem;
    }
}

.store-product-body {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.store-product-hero {
    margin-bottom: 1.75rem;
    padding: clamp(1rem, 2vw, 1.5rem);
    background: #fff;
    border: 1px solid #e8eef5;
    border-radius: 1.25rem;
    box-shadow: 0 4px 24px rgba(15, 23, 42, 0.04);
}

.store-product-hero .product-single.row {
    margin: 0;
}

.store-product-gallery {
    height: 100%;
}

.store-product-gallery__frame {
    overflow: hidden;
    margin: 0;
    background: #f8fafc;
    border-radius: 1rem;
}

.store-product-gallery__frame img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

.store-product-gallery .product-single-swiper {
    overflow: hidden;
    border-radius: 1rem;
}

.store-product-gallery__thumbs {
    margin-top: 0.85rem;
}

.store-product-gallery .product-thumb {
    overflow: hidden;
    border: 2px solid transparent;
    border-radius: 0.65rem;
    transition: border-color 0.2s ease;
}

.store-product-gallery .product-thumb.swiper-slide-thumb-active,
.store-product-gallery .product-thumb:hover {
    border-color: var(--store-primary, #336699);
}

.store-product-info {
    height: 100%;
}

.store-product-info .product-details {
    padding: 0.25rem 0;
}

.store-product-info__head {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: space-between;
    gap: 0.75rem 1rem;
    margin-bottom: 0.75rem;
}

.store-product-info__head .product-title {
    flex: 1;
    min-width: 0;
    margin-bottom: 0;
}

.store-product-info__admin-edit {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    flex-shrink: 0;
    padding: 0.55rem 1rem;
    font-family: "Cairo", sans-serif !important;
    font-size: 1.05rem;
    font-weight: 700;
    color: #fff !important;
    text-decoration: none;
    white-space: nowrap;
    background: linear-gradient(135deg, var(--store-primary, #336699) 0%, var(--store-primary-dark, #2a5580) 100%);
    border-radius: 0.65rem;
    box-shadow: 0 4px 14px rgba(var(--store-primary-rgb, 51, 102, 153), 0.25);
    transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

.store-product-info__admin-edit:hover {
    color: #fff !important;
    text-decoration: none;
    filter: brightness(1.05);
    transform: translateY(-1px);
    box-shadow: 0 6px 18px rgba(var(--store-primary-rgb, 51, 102, 153), 0.32);
}

.store-product-info__meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.5rem;
}

.store-product-info__brand {
    margin: 0;
}

.store-product-info__chips {
    display: flex;
    flex-wrap: wrap;
    gap: 0.45rem;
}

.store-product-info__chip {
    display: inline-flex;
    align-items: center;
    padding: 0.3rem 0.75rem;
    font-weight: 600;
    color: #64748b;
    background: #f8fafc;
    border: 1px solid #e8eef5;
    border-radius: 2rem;
}

.store-product-info__chip a {
    color: inherit;
    text-decoration: none;
}

.store-product-info__chip a:hover {
    color: var(--store-primary, #336699);
}

.store-product-info__chip--success {
    color: #15803d;
    background: #f0fdf4;
    border-color: #bbf7d0;
}

.store-product-info__chip--danger {
    color: #dc2626;
    background: #fef2f2;
    border-color: #fecaca;
}

.store-product-info__chip--sale {
    color: var(--store-primary, #336699);
    background: rgba(51, 102, 153, 0.1);
    border-color: rgba(51, 102, 153, 0.25);
}

.store-product-info__price {
    margin-bottom: 0.5rem;
}

.store-product-info__rating {
    margin-bottom: 0.85rem;
}

.store-product-purchase__row {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-end;
    gap: 0.85rem;
    margin-top: 0.5rem;
}

.store-product-purchase__qty {
    flex: 0 0 auto;
}

.store-product-purchase__qty label {
    display: block;
    margin-bottom: 0.5rem;
    font-size: 1.15rem;
    font-weight: 700;
    color: #64748b;
}

.store-product-purchase__qty .product-qty-form {
    flex: none;
    max-width: none;
    width: auto;
    margin: 0 !important;
}

.store-product-purchase__qty .store-cart-item__qty-group {
    width: 13rem;
    max-width: 100%;
}

.store-product-purchase__submit {
    flex: 1 1 12rem;
    min-height: 4.65rem;
    padding-top: 0.85rem !important;
    padding-bottom: 0.85rem !important;
    border-radius: 0.65rem !important;
    align-self: flex-end;
}

.store-product-info__actions {
    margin-top: 1.25rem;
    padding-top: 1rem;
    border-top: 1px solid #eef2f7;
}

.store-product-info__actions .social-icons {
    gap: 0.45rem;
}

.store-product-info__actions .social-icon,
.store-product-info__actions .btn-product-icon {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    width: 3.2rem !important;
    height: 3.2rem !important;
    margin: 0 !important;
    font-size: 1.25rem !important;
    line-height: 1 !important;
    color: #475569 !important;
    background: #f8fafc !important;
    border: 1px solid #dbe3ee !important;
    border-radius: 0.45rem !important;
    transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}

.store-product-info__actions .social-icon:hover,
.store-product-info__actions .btn-product-icon:hover {
    color: var(--store-primary, #336699) !important;
    background: #fff !important;
    border-color: rgba(var(--store-primary-rgb, 51, 102, 153), 0.28) !important;
    transform: translateY(-1px);
}

.store-product-info__actions .btn-product-icon.added {
    color: #fff !important;
    background: var(--store-primary, #336699) !important;
    border-color: var(--store-primary, #336699) !important;
}

.store-product-info__actions .product-link-wrapper {
    gap: 0.45rem;
}

.store-product-tabs {
    margin-bottom: 1.75rem;
    padding: clamp(1rem, 2vw, 1.35rem);
    background: #fff;
    border: 1px solid #e8eef5;
    border-radius: 1.25rem;
    box-shadow: 0 4px 24px rgba(15, 23, 42, 0.04);
}

.store-product-page .store-product-tabs .nav-tabs {
    flex-wrap: nowrap;
    overflow-x: auto;
    gap: 0.35rem;
    margin-bottom: 1.25rem;
    padding-bottom: 0.35rem;
    border-bottom: 1px solid #eef2f7;
    scrollbar-width: thin;
}

.store-product-page .store-product-tabs .nav-link {
    white-space: nowrap;
    border: none;
    border-radius: 0.65rem 0.65rem 0 0;
    transition: color 0.2s ease, background 0.2s ease;
}

.store-product-page .store-product-tabs .nav-link.active,
.store-product-page .store-product-tabs .nav-link:hover {
    color: var(--store-primary, #336699);
    background: rgba(51, 102, 153, 0.06);
}

.store-product-page .store-product-tabs .tab-content {
    padding-top: 0.25rem;
}

.store-product-desc__main {
    margin-bottom: 1.5rem;
}

.store-product-desc__content {
    height: 100%;
    padding: 1.15rem 1.25rem;
    background: #f8fafc;
    border: 1px solid #e8eef5;
    border-radius: 1rem;
}

.store-product-desc__eyebrow {
    display: inline-block;
    margin-bottom: 0.5rem;
    padding: 0.3rem 0.75rem;
    font-weight: 700;
    color: var(--store-primary, #336699);
    background: rgba(51, 102, 153, 0.1);
    border-radius: 2rem;
}

.store-product-desc__title {
    margin: 0 0 0.85rem;
    font-weight: 800;
    color: #1e293b;
    line-height: 1.45;
}

.store-product-desc__text {
    margin: 0;
    color: #475569;
    line-height: 1.9;
}

.store-product-desc__text--muted {
    color: #94a3b8;
}

.store-product-desc__media {
    height: 100%;
}

.store-product-desc__video {
    overflow: hidden;
    margin: 0;
    border-radius: 1rem;
    box-shadow: 0 8px 28px rgba(15, 23, 42, 0.08);
}

.store-product-desc__video .banner-media img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.store-product-desc__video-note {
    margin: 0.65rem 0 0;
    color: #94a3b8;
    text-align: center;
}

.store-product-desc__features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.85rem;
    padding-top: 1.25rem;
    border-top: 1px solid #eef2f7;
}

.store-product-desc__feature {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 1rem;
    background: #fff;
    border: 1px solid #e8eef5;
    border-radius: 0.85rem;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.store-product-desc__feature:hover {
    border-color: rgba(51, 102, 153, 0.28);
    box-shadow: 0 4px 16px rgba(15, 23, 42, 0.05);
}

.store-product-desc__feature-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 2.75rem;
    height: 2.75rem;
    color: var(--store-primary, #336699);
    background: rgba(51, 102, 153, 0.1);
    border-radius: 0.75rem;
}

.store-product-desc__feature-icon i {
    font-size: 1.35rem;
}

.store-product-desc__feature-title {
    margin: 0 0 0.35rem;
    font-weight: 800;
    color: #1e293b;
    line-height: 1.4;
}

.store-product-desc__feature-text {
    margin: 0;
    color: #64748b;
    line-height: 1.75;
}

@media (max-width: 991px) {
    .store-product-desc__features {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 767px) {
    .store-product-desc__content {
        padding: 1rem;
    }
}

.store-product-specs {
    margin: 0;
    padding: 0;
    list-style: none;
    overflow: hidden;
    border: 1px solid #e8eef5;
    border-radius: 0.85rem;
}

.store-product-specs li {
    display: grid;
    grid-template-columns: minmax(8rem, 1fr) 2fr;
    gap: 0.75rem;
    padding: 0.85rem 1rem;
    border-bottom: 1px solid #eef2f7;
}

.store-product-specs li:nth-child(even) {
    background: #f8fafc;
}

.store-product-specs li:last-child {
    border-bottom: none;
}

.store-product-specs label {
    margin: 0;
    font-weight: 700;
    color: #64748b;
}

.store-product-specs p {
    margin: 0;
    color: #1e293b;
}

.store-product-reviews__summary {
    padding: 1.25rem;
    background: #f8fafc;
    border: 1px solid #e8eef5;
    border-radius: 1rem;
}

.store-product-section {
    margin-bottom: 1.75rem;
    padding: clamp(1rem, 2vw, 1.35rem);
    background: #fff;
    border: 1px solid #e8eef5;
    border-radius: 1.25rem;
    box-shadow: 0 4px 24px rgba(15, 23, 42, 0.04);
}

.store-product-section__head {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.store-product-section__title {
    margin: 0;
    color: #1e293b;
}

.store-product-section--bundle .bought-together-products {
    display: flex;
    flex-wrap: nowrap;
    align-items: stretch;
    gap: 2.75rem;
    margin-right: 0;
    margin-left: 0;
}

.store-product-section--bundle .bought-together-products > * {
    width: auto;
}

.store-product-section--bundle .bought-together-products .product-wrap {
    flex: 1 1 0;
    min-width: 0;
    max-width: none !important;
    width: auto !important;
    padding: 1.15rem 1rem 1.25rem;
    background: #f8fafc;
    border: 1px solid #e8eef5;
    border-radius: 0.85rem;
}

.store-product-section--bundle .bought-together-products .product-wrap:not(:first-child) {
    margin-right: 0 !important;
    margin-left: 0 !important;
}

.store-product-section--bundle .bought-together-products .product-media {
    width: 100%;
    max-width: none;
    margin: 0 auto;
}

.store-product-section--bundle .bought-together-products .product-media img {
    width: 100%;
    max-width: 100%;
    height: auto;
    aspect-ratio: 1;
    object-fit: cover;
    border-radius: 0.55rem;
}

.store-product-section--bundle .bought-together-products .product-wrap:not(:first-child) .product-media::before,
.store-product-section--bundle .bought-together-products .product-wrap:not(:first-child) .product-media::after {
    right: -1.45rem;
    background-color: #94a3b8;
}

.store-product-section--bundle .bought-together-products .product-details {
    padding: 1rem 0.35rem 0;
}

.store-product-section--bundle .bought-together-products .product-name {
    margin-bottom: 0.45rem;
    font-size: clamp(1.05rem, 1.35vw, 1.25rem);
    line-height: 1.5;
}

.store-product-section--bundle .bought-together-products .product-name a {
    color: #1e293b;
}

.store-product-section--bundle .bought-together-products .product-price {
    font-size: clamp(1.1rem, 1.4vw, 1.3rem);
    font-weight: 800;
    color: var(--store-primary, #336699);
}

.store-product-section--bundle .bought-together-products .product-button {
    flex: 0 0 auto;
    align-self: center;
    min-width: 13.5rem;
    margin: 0 !important;
    padding: 0.85rem 1rem;
    text-align: center;
    background: #f8fafc;
    border: 1px solid #e8eef5;
    border-radius: 0.85rem;
}

.store-product-section--bundle .bought-together-products .product-button::before,
.store-product-section--bundle .bought-together-products .product-button::after {
    right: -2.35rem;
    background-color: #94a3b8;
}

.store-product-section--bundle .bought-together-products .bought-price {
    font-size: clamp(1.65rem, 2.2vw, 2.1rem);
    line-height: 1.2;
}

.store-product-section--bundle .bought-together-products .bought-count {
    margin-bottom: 0.85rem;
    font-size: 1.05rem;
    color: #64748b;
}

.store-product-section--bundle .product-button .store-bundle-add-all {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 11rem;
    min-height: 3.35rem;
    margin-top: 0.65rem;
    padding: 0.75rem 1.5rem !important;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 0.65rem !important;
    background-color: var(--store-primary, #336699) !important;
    border-color: var(--store-primary, #336699) !important;
    color: #fff !important;
}

.store-product-section--bundle .product-button .store-bundle-add-all:hover,
.store-product-section--bundle .product-button .store-bundle-add-all:focus {
    background-color: var(--store-primary-dark, #285580) !important;
    border-color: var(--store-primary-dark, #285580) !important;
    color: #fff !important;
}

@media (max-width: 991px) {
    .store-product-section--bundle .bought-together-products {
        flex-wrap: wrap;
        gap: 1.75rem;
    }

    .store-product-section--bundle .bought-together-products .product-wrap {
        flex: 1 1 calc(50% - 0.875rem);
    }

    .store-product-section--bundle .bought-together-products .product-wrap:not(:first-child) .product-media::before,
    .store-product-section--bundle .bought-together-products .product-wrap:not(:first-child) .product-media::after {
        display: none;
    }

    .store-product-section--bundle .bought-together-products .product-button {
        flex: 1 1 100%;
    }

    .store-product-section--bundle .bought-together-products .product-button::before,
    .store-product-section--bundle .bought-together-products .product-button::after {
        display: none;
    }
}

@media (max-width: 575px) {
    .store-product-section--bundle .bought-together-products .product-wrap {
        flex: 1 1 100%;
    }
}

/* Carousel & sidebar cards on product page */
.store-product-page .store-product-section .swiper-container {
    padding: 0.25rem 0.15rem 0.5rem;
}

.store-product-page .store-product-slide {
    height: auto;
}

.store-product-page .store-product-section .store-product-card {
    margin-bottom: 0;
    height: 100%;
}

.store-product-page .store-product-section .store-product-card__inner {
    height: 100%;
}

.store-product-sidebar .product-widget {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.65rem;
    margin-bottom: 0.65rem;
    background: #f8fafc;
    border: 1px solid #e8eef5;
    border-radius: 0.75rem;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.store-product-sidebar .product-widget:last-child {
    margin-bottom: 0;
}

.store-product-sidebar .product-widget:hover {
    border-color: rgba(51, 102, 153, 0.28);
    box-shadow: 0 4px 14px rgba(15, 23, 42, 0.05);
}

.store-product-sidebar .product-widget .product-media {
    flex-shrink: 0;
    overflow: hidden;
    width: 4.5rem;
    margin: 0;
    border-radius: 0.55rem;
    background: #fff;
}

.store-product-sidebar .product-widget .product-media img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.store-product-sidebar .product-widget .product-details {
    flex: 1;
    min-width: 0;
    padding: 0;
    text-align: right;
}

.store-product-sidebar .product-widget .product-name {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-bottom: 0.25rem;
}

.store-product-sidebar .product-widget .product-name a {
    color: #1e293b;
    text-decoration: none;
}

.store-product-sidebar .product-widget .product-name a:hover {
    color: var(--store-primary, #336699);
}

.store-product-sidebar .product-widget .product-price {
    font-weight: 700;
    color: var(--store-primary, #336699);
}

.store-product-gallery-grid__hero img {
    width: 100%;
    border-radius: 1rem;
}

.store-product-sidebar .widget-icon-box,
.store-product-sidebar .widget-banner,
.store-product-sidebar .widget-products {
    padding: 1rem;
    background: #fff;
    border: 1px solid #e8eef5;
    border-radius: 1rem;
    box-shadow: 0 2px 12px rgba(15, 23, 42, 0.03);
}

.store-product-sidebar__features .icon-box {
    padding: 0.65rem 0;
    border-bottom: 1px solid #eef2f7;
}

.store-product-sidebar__features .icon-box:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.store-product-gallery-grid__thumbs {
    margin-top: 0.85rem;
    gap: 0.5rem;
}

.store-product-gallery-grid__thumb {
    padding: 0;
    overflow: hidden;
    background: #fff;
    border: 2px solid transparent;
    border-radius: 0.65rem;
    cursor: pointer;
    transition: border-color 0.2s ease;
}

.store-product-gallery-grid__thumb.is-active {
    border-color: var(--store-primary, #336699);
}

.store-product-gallery-grid__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (max-width: 991px) {
    .store-product-hero .product-single.row > [class*="col-"] {
        flex: 0 0 100%;
        max-width: 100%;
    }
}

@media (max-width: 767px) {
    .store-product-purchase__row {
        flex-direction: column;
        align-items: stretch;
    }

    .store-product-purchase__qty .store-cart-item__qty-group {
        width: 100%;
    }

    .store-product-purchase__submit {
        width: 100%;
        align-self: stretch;
    }

    .store-product-specs li {
        grid-template-columns: 1fr;
        gap: 0.25rem;
    }
}

@media (max-width: 575px) {
    .store-product-layout-switcher {
        padding: 0.75rem;
    }

    .store-product-hero,
    .store-product-tabs,
    .store-product-section {
        padding: 0.85rem;
        border-radius: 1rem;
    }
}

@media (max-width: 767px) {
    .store-shop-toolbar__row {
        flex-direction: column;
        align-items: stretch;
    }

    .store-shop-toolbar__right {
        flex-wrap: wrap;
        justify-content: space-between;
    }

    .store-shop-layout--right-sidebar {
        flex-direction: column;
    }
}

/* ── Contact page ──────────────────────────────────────────────────── */

.store-contact-page__content {
    padding-top: 0;
    padding-bottom: 3.5rem;
    background: #f8fafc;
}

.store-contact-info {
    margin-bottom: 2.25rem;
}

.store-contact-info__grid {
    display: grid;
    grid-template-columns: repeat(1, minmax(0, 1fr));
    gap: 1.35rem;
}

@media (min-width: 768px) {
    .store-contact-info__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (min-width: 1200px) {
    .store-contact-info__grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}

.store-contact-info__card {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    min-height: 11.5rem;
    padding: 1.85rem 1.5rem 1.65rem;
    text-align: center;
    text-decoration: none;
    overflow: hidden;
    background:
        linear-gradient(145deg, rgba(var(--store-primary-rgb, 51, 102, 153), 0.1) 0%, rgba(255, 255, 255, 0.78) 42%, rgba(255, 255, 255, 0.62) 100%);
    border: 1px solid rgba(var(--store-primary-rgb, 51, 102, 153), 0.16);
    border-radius: 1.25rem;
    box-shadow:
        0 8px 28px rgba(var(--store-primary-rgb, 51, 102, 153), 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease, background 0.3s ease;
}

.store-contact-info__card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 0%, rgba(var(--store-primary-rgb, 51, 102, 153), 0.12) 0%, transparent 58%);
    pointer-events: none;
}

.store-contact-info__card--link {
    cursor: pointer;
    color: inherit;
    padding-bottom: 2.35rem;
}

.store-contact-info__card--link:hover,
.store-contact-info__card--link:focus-visible {
    transform: translateY(-5px);
    background:
        linear-gradient(145deg, rgba(var(--store-primary-rgb, 51, 102, 153), 0.16) 0%, rgba(255, 255, 255, 0.88) 45%, rgba(255, 255, 255, 0.72) 100%);
    border-color: rgba(var(--store-primary-rgb, 51, 102, 153), 0.32);
    box-shadow:
        0 16px 36px rgba(var(--store-primary-rgb, 51, 102, 153), 0.14),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
    outline: none;
}

.store-contact-info__card--link:hover .store-contact-info__icon,
.store-contact-info__card--link:focus-visible .store-contact-info__icon {
    transform: scale(1.08);
    background: rgba(var(--store-primary-rgb, 51, 102, 153), 0.2);
    border-color: rgba(var(--store-primary-rgb, 51, 102, 153), 0.28);
}

.store-contact-info__card--link:hover .store-contact-info__arrow,
.store-contact-info__card--link:focus-visible .store-contact-info__arrow {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

.store-contact-info__icon {
    position: relative;
    z-index: 1;
    display: inline-flex;
    flex-shrink: 0;
    align-items: center;
    justify-content: center;
    width: 4.25rem;
    height: 4.25rem;
    font-size: 1.85rem;
    color: var(--store-primary, #336699);
    background: rgba(var(--store-primary-rgb, 51, 102, 153), 0.12);
    border: 1px solid rgba(var(--store-primary-rgb, 51, 102, 153), 0.14);
    border-radius: 1.1rem;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.55);
    transition: transform 0.3s ease, background 0.3s ease, border-color 0.3s ease;
}

.store-contact-info__card-body {
    position: relative;
    z-index: 1;
    flex: 0 1 auto;
    width: 100%;
    min-width: 0;
    padding: 0;
}

.store-contact-info__card-title {
    margin: 0 0 0.55rem;
    font-size: 1.32rem;
    font-weight: 800;
    color: #1e293b;
}

.store-contact-info__card-value {
    margin: 0;
    font-size: 1.18rem;
    font-weight: 600;
    line-height: 1.65;
    color: #64748b;
    word-break: break-word;
}

.store-contact-info__arrow {
    position: absolute;
    bottom: 0.9rem;
    left: 50%;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.1rem;
    height: 2.1rem;
    font-size: 1.1rem;
    color: var(--store-primary, #336699);
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(var(--store-primary-rgb, 51, 102, 153), 0.16);
    border-radius: 50%;
    opacity: 0;
    transform: translateX(-50%) translateY(6px);
    transition: opacity 0.3s ease, transform 0.3s ease, background 0.3s ease;
}

.store-contact-main {
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
}

.store-contact-panel {
    height: 100%;
    padding: 1.75rem;
    background: #fff;
    border: 1px solid #e8eef5;
    border-radius: 1.25rem;
    box-shadow: 0 4px 22px rgba(15, 23, 42, 0.05);
}

.store-contact-panel--form {
    background: #fff;
}

.store-contact-panel__head {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.store-contact-panel__badge {
    display: inline-flex;
    flex-shrink: 0;
    align-items: center;
    justify-content: center;
    width: 3.25rem;
    height: 3.25rem;
    font-size: 1.45rem;
    color: #475569;
    background: #f1f5f9;
    border-radius: 0.95rem;
}

.store-contact-panel__badge--primary {
    color: #fff;
    background: var(--store-primary, #336699);
}

.store-contact-panel__title {
    margin: 0 0 0.35rem;
    font-size: 1.65rem;
    font-weight: 800;
    color: #1e293b;
}

.store-contact-panel__subtitle {
    margin: 0;
    font-size: 1.2rem;
    color: #64748b;
    line-height: 1.55;
}

.store-contact-panel__footer {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 1.5rem;
    padding-top: 1.25rem;
    border-top: 1px solid #eef2f7;
}

.store-contact-panel__link {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--store-primary, #336699);
    text-decoration: none;
    transition: gap 0.2s ease;
}

.store-contact-panel__link:hover {
    gap: 0.65rem;
    color: #285580;
}

.store-contact-faq .card {
    border-radius: 0.85rem !important;
    overflow: hidden;
    margin-bottom: 0.65rem !important;
}

.store-contact-faq .card-header a {
    padding: 1.1rem 1.25rem !important;
    font-size: 1.25rem !important;
    font-weight: 700;
    line-height: 1.5;
}

.store-contact-faq .card-body {
    padding: 1rem 1.25rem 1.25rem !important;
}

.store-contact-faq .card-body p {
    font-size: 1.15rem;
    line-height: 1.8;
    color: #64748b;
}

.store-contact-alert {
    margin-bottom: 1.25rem;
    padding: 1rem 1.15rem;
    font-size: 1.2rem;
    font-weight: 600;
    border-radius: 0.85rem;
}

.store-contact-alert--success {
    color: #15803d;
    background: #f0fdf4;
    border: 1px solid #bbf7d0;
}

.store-contact-alert--error {
    color: #b91c1c;
    background: #fef2f2;
    border: 1px solid #fecaca;
}

.store-contact-form__row {
    margin-bottom: 0;
}

.store-contact-form__group {
    margin-bottom: 1.25rem;
}

.store-contact-form__group label {
    display: block;
    margin-bottom: 0.55rem;
    font-size: 1.2rem;
    font-weight: 700;
    color: #334155;
}

.store-contact-form__group label span {
    color: #dc2626;
}

.store-contact-form__input {
    height: 3.85rem;
    padding: 0.75rem 1.1rem !important;
    font-size: 1.2rem !important;
    border: 1px solid #dbe3ee !important;
    border-radius: 0.85rem !important;
    background: #fff !important;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.store-contact-form__textarea {
    height: auto !important;
    min-height: 11rem;
    resize: vertical;
}

.store-contact-form__input:focus {
    border-color: var(--store-primary, #336699) !important;
    box-shadow: 0 0 0 3px rgba(51, 102, 153, 0.12) !important;
}

.store-contact-form__error {
    margin: 0.4rem 0 0;
    font-size: 1.1rem;
    color: #b91c1c;
}

.store-contact-form__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem;
    align-items: center;
    margin-top: 0.5rem;
}

.store-contact-form__submit {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    padding: 0.95rem 1.75rem;
    font-family: inherit;
    font-size: 1.2rem;
    font-weight: 700;
    color: #fff;
    background: var(--store-primary, #336699);
    border: none;
    border-radius: 2rem;
    cursor: pointer;
    transition: background 0.2s ease, transform 0.2s ease, gap 0.2s ease;
}

.store-contact-form__submit:hover {
    background: #285580;
    gap: 0.7rem;
}

.store-contact-form__whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.95rem 1.5rem;
    font-size: 1.2rem;
    font-weight: 700;
    color: #15803d;
    text-decoration: none;
    background: #f0fdf4;
    border: 1px solid #bbf7d0;
    border-radius: 2rem;
    transition: background 0.2s ease, gap 0.2s ease;
}

.store-contact-form__whatsapp:hover {
    background: #dcfce7;
    gap: 0.65rem;
    color: #166534;
}

@media (max-width: 991px) {
    .store-contact-info {
        margin-bottom: 1.75rem;
    }

    .store-contact-info__card {
        min-height: 10.5rem;
        padding: 1.6rem 1.25rem 1.4rem;
    }

    .store-contact-info__card--link {
        padding-bottom: 2.1rem;
    }

    .store-contact-panel {
        padding: 1.35rem 1.25rem 1.5rem;
    }
}

@media (max-width: 767px) {
    .store-contact-info__icon {
        width: 3.85rem;
        height: 3.85rem;
        font-size: 1.65rem;
    }

    .store-contact-info__card-title {
        font-size: 1.22rem;
    }

    .store-contact-info__card-value {
        font-size: 1.1rem;
    }

    .store-contact-form__actions {
        flex-direction: column;
        align-items: stretch;
    }

    .store-contact-form__submit,
    .store-contact-form__whatsapp {
        justify-content: center;
        width: 100%;
    }
}

/* ── FAQ page ──────────────────────────────────────────────────────── */

.store-faq-page__content {
    padding-top: 0.25rem;
}

.store-faq-intro {
    max-width: 42rem;
    margin: 0 auto 2.75rem;
    text-align: center;
}

.store-faq-intro__eyebrow {
    display: inline-block;
    margin: 0 0 0.65rem;
    padding: 0.35rem 0.9rem;
    font-weight: 700;
    color: var(--store-primary, #336699);
    background: rgba(51, 102, 153, 0.1);
    border-radius: 2rem;
}

.store-faq-intro__title {
    margin: 0 0 0.75rem;
    font-weight: 800;
    color: #1e293b;
    line-height: 1.4;
}

.store-faq-intro__text {
    margin: 0;
    color: #64748b;
    line-height: 1.85;
}

.store-faq-section {
    margin-bottom: 2.25rem;
    padding: clamp(1.15rem, 2vw, 1.5rem);
    background: #fff;
    border: 1px solid #e8eef5;
    border-radius: 1.25rem;
    box-shadow: 0 4px 24px rgba(15, 23, 42, 0.04);
}

.store-faq-section__head {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 0.85rem;
    margin-bottom: 1.35rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #eef2f7;
}

.store-faq-section__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.85rem;
    height: 2.85rem;
    color: var(--store-primary, #336699);
    background: rgba(var(--store-primary-rgb, 51, 102, 153), 0.1);
    border-radius: 5px;
}

.store-faq-section__icon i {
    font-size: 1.4rem;
}

.store-faq-section__title {
    margin: 0;
    font-size: 1.55rem;
    font-weight: 800;
    color: #1e293b;
}

.store-faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin: 0;
    overflow: visible;
}

.store-faq-accordion .card.store-faq-accordion__item {
    margin: 0 !important;
    border: none !important;
    background: transparent;
}

.store-faq-accordion__item {
    overflow: hidden;
    background: #fff;
    border: 1px solid #e8eef5 !important;
    border-radius: 5px !important;
    box-shadow: 0 2px 10px rgba(15, 23, 42, 0.03);
    transition:
        border-color 0.3s ease,
        box-shadow 0.3s ease,
        background 0.3s ease,
        transform 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}

.store-faq-accordion__item:hover {
    border-color: rgba(var(--store-primary-rgb, 51, 102, 153), 0.22) !important;
    box-shadow: 0 6px 20px rgba(15, 23, 42, 0.05);
}

.store-faq-accordion__item:has(.expanded) {
    background: #fff;
    border-color: rgba(var(--store-primary-rgb, 51, 102, 153), 0.32) !important;
    box-shadow: 0 8px 24px rgba(var(--store-primary-rgb, 51, 102, 153), 0.08);
}

.store-faq-accordion__header {
    padding: 0 !important;
    background: transparent !important;
    border: none !important;
}

.store-faq-accordion__trigger {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    width: 100%;
    padding: 1.05rem 1.2rem !important;
    font-size: 1.28rem;
    font-weight: 700;
    line-height: 1.55;
    color: #1e293b !important;
    text-decoration: none !important;
    background: transparent !important;
    transition: color 0.28s ease;
}

.store-faq-accordion__trigger::before,
.store-faq-accordion__trigger::after {
    display: none !important;
    content: none !important;
}

.store-faq-accordion__trigger:hover {
    color: var(--store-primary, #336699) !important;
}

.store-faq-accordion__trigger.collapse {
    color: var(--store-primary, #336699) !important;
}

.store-faq-accordion__question {
    flex: 1;
    min-width: 0;
    text-align: right;
}

.store-faq-accordion__chevron-wrap {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 2.15rem;
    height: 2.15rem;
    background: #f1f5f9;
    border: 1px solid #e2e8f0;
    border-radius: 5px;
    transition:
        background 0.28s ease,
        border-color 0.28s ease,
        transform 0.28s ease;
}

.store-faq-accordion__chevron {
    flex-shrink: 0;
    font-size: 1rem;
    color: #64748b;
    transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), color 0.28s ease;
}

.store-faq-accordion__trigger:hover .store-faq-accordion__chevron-wrap {
    border-color: rgba(var(--store-primary-rgb, 51, 102, 153), 0.25);
    background: rgba(var(--store-primary-rgb, 51, 102, 153), 0.08);
}

.store-faq-accordion__trigger.collapse .store-faq-accordion__chevron-wrap {
    background: var(--store-primary, #336699);
    border-color: var(--store-primary, #336699);
}

.store-faq-accordion__trigger.collapse .store-faq-accordion__chevron {
    transform: rotate(180deg);
    color: #fff;
}

.store-faq-accordion__body {
    padding: 0 1.2rem !important;
    border-top: 1px solid transparent;
    transition: border-color 0.28s ease;
}

.store-faq-accordion__item:has(.expanded) .store-faq-accordion__body {
    border-top-color: #eef2f7;
}

.store-faq-accordion__body p {
    margin: 0;
    padding: 0.95rem 0 1.15rem;
    font-size: 1.22rem;
    font-weight: 500;
    color: #64748b;
    line-height: 1.9;
}

.store-faq-accordion__body.collapsed {
    display: none;
}

.store-faq-accordion__body.expanded {
    display: block;
}

.store-faq-accordion__body.expanding,
.store-faq-accordion__body.collapsing {
    display: block;
    overflow: hidden;
}

.store-faq-cta {
    margin-top: 0.5rem;
}

.store-faq-cta__inner {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1.25rem;
    padding: clamp(1.25rem, 2.5vw, 1.75rem);
    background: var(--store-primary, #336699);
    border-radius: 1.25rem;
    color: #fff;
}

.store-faq-cta__title {
    margin: 0 0 0.35rem;
    font-weight: 800;
    color: #fff;
}

.store-faq-cta__text {
    margin: 0;
    opacity: 0.9;
    line-height: 1.7;
}

.store-faq-cta__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
}

.store-faq-cta__btn {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.75rem 1.25rem;
    font-weight: 700;
    text-decoration: none;
    border-radius: 2rem;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.store-faq-cta__btn--primary {
    color: var(--store-primary, #336699);
    background: #fff;
}

.store-faq-cta__btn--primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    color: #285580;
}

.store-faq-cta__btn--outline {
    color: #fff;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.35);
}

.store-faq-cta__btn--outline:hover {
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
}

@media (max-width: 767px) {
    .store-faq-section__head {
        flex-direction: column;
        text-align: center;
    }

    .store-faq-cta__inner {
        flex-direction: column;
        align-items: stretch;
        text-align: center;
    }

    .store-faq-cta__actions {
        flex-direction: column;
    }

    .store-faq-cta__btn {
        justify-content: center;
    }
}

.store-blog-sidebar__admin {
    padding-top: 1.35rem;
    padding-bottom: 1.35rem;
}

.store-blog-sidebar__admin-edit {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    width: 100%;
    padding: 0.95rem 1.1rem;
    color: #fff;
    text-decoration: none;
    background: linear-gradient(135deg, var(--store-primary, #336699) 0%, var(--store-primary-dark, #2a5580) 100%);
    border-radius: var(--store-radius, 5px);
    box-shadow: 0 8px 22px rgba(var(--store-primary-rgb, 51, 102, 153), 0.28);
    transition: transform 0.25s ease, box-shadow 0.25s ease, filter 0.25s ease;
}

.store-blog-sidebar__admin-edit:hover {
    color: #fff;
    text-decoration: none;
    filter: brightness(1.06);
    transform: translateY(-1px);
    box-shadow: 0 12px 28px rgba(var(--store-primary-rgb, 51, 102, 153), 0.34);
}

.store-blog-sidebar__admin-edit-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 2.5rem;
    height: 2.5rem;
    font-size: 1.15rem;
    background: rgba(255, 255, 255, 0.16);
    border-radius: var(--store-radius, 5px);
}

.store-blog-sidebar__admin-edit-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.15rem;
    flex: 1;
    min-width: 0;
}

.store-blog-sidebar__admin-edit-text strong {
    font-size: 1.25rem;
    font-weight: 800;
    line-height: 1.3;
}

.store-blog-sidebar__admin-edit-text small {
    font-size: 0.95rem;
    font-weight: 500;
    opacity: 0.88;
}

.store-blog-sidebar__admin-edit-arrow {
    flex-shrink: 0;
    font-size: 1.1rem;
    opacity: 0.9;
    transition: transform 0.25s ease;
}

.store-blog-sidebar__admin-edit:hover .store-blog-sidebar__admin-edit-arrow {
    transform: translateX(-4px);
}

.store-blog-grid {
    display: grid;
    grid-template-columns: repeat(1, minmax(0, 1fr));
    gap: 1.5rem;
}

@media (min-width: 576px) {
    .store-blog-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (min-width: 992px) {
    .store-blog-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 1.35rem;
    }
}

@media (min-width: 1200px) {
    .store-blog-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 1.25rem;
    }
}

.store-blog-grid__item {
    display: flex;
    flex-direction: column;
    height: 100%;
    margin-bottom: 0;
    padding: 1.15rem 1.15rem 0;
    background: #fff;
    border: 1px solid #e8eef5;
    border-radius: 1.15rem;
    box-shadow: 0 4px 22px rgba(15, 23, 42, 0.05);
    overflow: hidden;
    transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
        box-shadow 0.35s ease,
        border-color 0.35s ease;
}

.store-blog-grid__item:hover {
    transform: translateY(-6px);
    border-color: rgba(51, 102, 153, 0.22);
    box-shadow: 0 16px 36px rgba(15, 23, 42, 0.1);
}

.store-blog-grid__media {
    margin: 0;
    flex-shrink: 0;
    aspect-ratio: 6 / 4.2;
    overflow: hidden;
    border-radius: 0.85rem;
}

.store-blog-grid__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0.85rem;
    transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}

.store-blog-grid__item:hover .store-blog-grid__media img {
    transform: scale(1.06);
}

.store-blog-grid__body {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 1.15rem 0 1.35rem !important;
}

.store-blog-grid__cats {
    margin-bottom: 0.45rem !important;
}

.store-blog-grid__cats a {
    display: inline-block;
    padding: 0.2rem 0.65rem;
    font-size: 1.05rem;
    font-weight: 700;
    text-decoration: none;
    background: rgba(51, 102, 153, 0.08);
    border-radius: 2rem;
}

.store-blog-grid__title {
    margin: 0 0 0.65rem;
    font-size: 1.28rem;
    font-weight: 800;
    line-height: 1.45;
}

.store-blog-grid__title a {
    color: #1e293b;
    text-decoration: none;
    transition: color 0.2s ease;
}

.store-blog-grid__title a:hover {
    color: var(--store-primary, #336699);
}

.store-blog-grid__excerpt {
    margin-bottom: 1rem !important;
    font-size: 1.08rem;
    line-height: 1.75;
    color: #64748b;
}

.store-blog-grid__excerpt p {
    display: -webkit-box !important;
    margin: 0 0 0.5rem !important;
    margin-left: 0 !important;
    overflow: hidden;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}

.store-blog-grid__read-more {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    margin-top: 0.25rem;
    padding: 0;
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--store-primary, #336699);
    text-decoration: none;
    transition: gap 0.3s ease, color 0.3s ease;
}

.store-blog-grid__read-more:hover {
    color: var(--store-primary-dark, #2a5580);
    gap: 0.7rem;
    text-decoration: none;
}

.store-blog-grid-filters-panel {
    margin-bottom: 1.75rem;
    padding: 1.15rem 1.25rem;
    background: linear-gradient(165deg, #f1f5f9 0%, #f8fafc 55%, #fff 100%);
    border: 1px solid #cbd5e1;
    border-radius: 1.25rem;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.85),
        0 6px 20px rgba(15, 23, 42, 0.05);
}

.store-blog-grid-filters {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.65rem;
    margin: 0;
    padding: 0;
    list-style: none;
}

.store-blog-grid-filters__item {
    flex-shrink: 0;
}

.store-blog-grid-filters__link {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    padding: 0.55rem 1rem;
    font-size: 1.1rem;
    font-weight: 700;
    line-height: 1.35;
    color: #475569;
    text-decoration: none;
    background: #fff;
    border: 1px solid #dbe3ee;
    border-radius: 2rem;
    box-shadow: 0 2px 8px rgba(15, 23, 42, 0.04);
    transition: color 0.25s ease, background 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}

.store-blog-grid-filters__link:hover {
    color: var(--store-primary, #336699);
    border-color: rgba(var(--store-primary-rgb, 51, 102, 153), 0.28);
    box-shadow: 0 6px 16px rgba(var(--store-primary-rgb, 51, 102, 153), 0.1);
    transform: translateY(-1px);
    text-decoration: none;
}

.store-blog-grid-filters__link.is-active {
    color: #fff;
    background: var(--store-primary, #336699);
    border-color: var(--store-primary, #336699);
    box-shadow: 0 8px 20px rgba(var(--store-primary-rgb, 51, 102, 153), 0.22);
}

.store-blog-grid-filters__link.is-active:hover {
    color: #fff;
    background: var(--store-primary-dark, #2a5580);
    border-color: var(--store-primary-dark, #2a5580);
}

.store-blog-grid-filters__count {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 1.65rem;
    padding: 0.1rem 0.45rem;
    font-size: 0.95rem;
    font-weight: 800;
    line-height: 1.2;
    color: #64748b;
    background: #f1f5f9;
    border-radius: 2rem;
}

.store-blog-grid-filters__link.is-active .store-blog-grid-filters__count {
    color: var(--store-primary, #336699);
    background: #fff;
}

.store-blog-grid__meta {
    margin-top: auto;
    padding-top: 0.85rem;
    border-top: 1px solid #eef2f7;
    font-size: 1rem;
    color: #94a3b8;
}

.store-blog-grid__meta-by {
    margin-left: 0.25rem;
}

.store-blog-grid__meta-sep {
    margin: 0 0.35rem;
}

.store-blog-grid__meta .post-author {
    font-weight: 700;
    color: #475569;
}

.store-blog-grid__empty {
    grid-column: 1 / -1;
    max-width: 100%;
}

.store-blog-grid__empty-inner {
    padding: 3.5rem 1.5rem;
    text-align: center;
    background: #f8fafc;
    border: 1px dashed #dbe3ee;
    border-radius: 1.25rem;
}

.store-blog-grid__empty-inner i {
    display: block;
    margin-bottom: 0.75rem;
    font-size: 2.5rem;
    color: #cbd5e1;
}

.store-blog-grid__empty-inner p {
    margin-bottom: 1rem;
    font-size: 1.15rem;
    color: #64748b;
}

@media (max-width: 991px) {
    .store-blog-grid__title {
        font-size: 1.2rem;
    }

    .store-blog-grid__excerpt {
        font-size: 1.02rem;
    }
}

@media (max-width: 767px) {
    .store-blog-grid {
        gap: 1.25rem;
    }

    .store-blog-grid__item {
        padding: 1rem 1rem 0;
    }

    .store-blog-grid-filters-panel {
        margin-right: -0.35rem;
        margin-left: -0.35rem;
        padding: 1rem;
        border-radius: 1.1rem;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    .store-blog-grid-filters {
        flex-wrap: nowrap;
        width: max-content;
        min-width: 100%;
        padding-bottom: 0.15rem;
    }

    .store-blog-grid-filters__link {
        font-size: 1.02rem;
        padding: 0.5rem 0.85rem;
    }
}

/* ── Blog pagination ── */
.store-blog-pagination {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-top: 2rem;
    margin-bottom: 2.5rem;
    padding: 1.35rem 1.5rem;
    background: linear-gradient(165deg, #f8fafc 0%, #fff 55%, #f1f5f9 100%);
    border: 1px solid #cbd5e1;
    border-radius: 1.25rem;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.85),
        0 8px 24px rgba(15, 23, 42, 0.06);
}

.store-blog-pagination__info {
    margin: 0;
    font-size: 1.2rem;
    font-weight: 500;
    color: #64748b;
}

.store-blog-pagination__info span {
    margin: 0 0.35rem;
    padding: 0.2rem 0.55rem;
    font-weight: 700;
    color: var(--store-primary, #336699);
    background: rgba(var(--store-primary-rgb, 51, 102, 153), 0.08);
    border-radius: 0.45rem;
}

.store-blog-pagination__info strong {
    margin: 0 0.25rem;
    font-weight: 800;
    color: #1e293b;
}

.store-blog-pagination__nav {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 0.45rem;
    margin: 0;
    padding: 0;
    list-style: none;
}

.store-blog-pagination__nav .prev,
.store-blog-pagination__nav .next,
.store-blog-pagination__nav .page-item {
    margin: 0;
}

.store-blog-pagination__nav .prev a,
.store-blog-pagination__nav .next a {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    gap: 0.45rem;
    min-width: auto !important;
    height: auto !important;
    padding: 0.65rem 1.1rem !important;
    font-size: 1.15rem !important;
    font-weight: 700;
    line-height: 1;
    color: #475569 !important;
    text-decoration: none;
    background: #fff !important;
    border: 1px solid #dbe3ee !important;
    border-radius: 0.85rem !important;
    box-shadow: 0 2px 8px rgba(15, 23, 42, 0.04);
    transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}

.store-blog-pagination__nav .prev a:hover,
.store-blog-pagination__nav .next a:hover {
    color: #fff !important;
    background: var(--store-primary, #336699) !important;
    border-color: var(--store-primary, #336699) !important;
    box-shadow: 0 6px 16px rgba(var(--store-primary-rgb, 51, 102, 153), 0.22);
    transform: translateY(-1px);
    text-decoration: none;
}

.store-blog-pagination__nav .prev.disabled a,
.store-blog-pagination__nav .next.disabled a {
    color: #cbd5e1 !important;
    background: #f8fafc !important;
    border-color: #e2e8f0 !important;
    box-shadow: none;
    pointer-events: none;
    opacity: 0.75;
    transform: none;
}

.store-blog-pagination__nav .prev i,
.store-blog-pagination__nav .next i {
    margin: 0 !important;
    font-size: 1.05rem;
}

.store-blog-pagination__nav .page-item {
    margin: 0 !important;
}

.store-blog-pagination__nav .page-link {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    min-width: 3.35rem !important;
    height: 3.35rem !important;
    padding: 0 0.5rem !important;
    font-size: 1.2rem !important;
    font-weight: 700;
    line-height: 1;
    color: #475569 !important;
    text-decoration: none;
    background: #fff !important;
    border: 1px solid #dbe3ee !important;
    border-radius: 0.85rem !important;
    box-shadow: 0 2px 8px rgba(15, 23, 42, 0.04);
    transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}

.store-blog-pagination__nav .page-item .page-link:hover {
    color: var(--store-primary, #336699) !important;
    background: #fff !important;
    border-color: rgba(var(--store-primary-rgb, 51, 102, 153), 0.28) !important;
    box-shadow: 0 6px 16px rgba(var(--store-primary-rgb, 51, 102, 153), 0.12);
    transform: translateY(-1px);
}

.store-blog-pagination__nav .page-item.active .page-link {
    color: #fff !important;
    background: linear-gradient(135deg, var(--store-primary, #336699) 0%, var(--store-primary-dark, #2a5580) 100%) !important;
    border-color: transparent !important;
    box-shadow: 0 8px 20px rgba(var(--store-primary-rgb, 51, 102, 153), 0.25);
    transform: translateY(-1px);
}

@media (max-width: 767px) {
    .store-blog-pagination {
        flex-direction: column;
        align-items: stretch;
        padding: 1.15rem 1rem;
    }

    .store-blog-pagination__info {
        text-align: center;
        font-size: 1.1rem;
    }

    .store-blog-pagination__nav {
        justify-content: center;
    }

    .store-blog-pagination__nav .prev a span,
    .store-blog-pagination__nav .next a span {
        display: none;
    }

    .store-blog-pagination__nav .prev a,
    .store-blog-pagination__nav .next a {
        min-width: 3.1rem;
        padding: 0.65rem 0.85rem;
    }

    .store-blog-pagination__nav .page-link {
        min-width: 3rem;
        height: 3rem;
        font-size: 1.1rem;
    }
}

/* ── Blog show page ────────────────────────────────────────────────── */

.store-blog-breadcrumb {
    padding: 0.85rem 0;
    background: #f8fafc;
    border-bottom: 1px solid #e8eef5;
}

.store-blog-breadcrumb__list {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.35rem;
    margin: 0;
    padding: 0;
    list-style: none;
}

.store-blog-breadcrumb__item {
    display: inline-flex;
    align-items: center;
    font-size: 1.15rem;
    color: #64748b;
}

.store-blog-breadcrumb__item:not(:last-child)::after {
    content: "‹";
    margin: 0 0.45rem;
    color: #94a3b8;
    font-size: 1.3rem;
}

.store-blog-breadcrumb__link {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    color: #64748b;
    text-decoration: none;
    transition: color 0.2s ease;
}

.store-blog-breadcrumb__link:hover {
    color: var(--store-primary, #336699);
}

.store-blog-breadcrumb__item--active {
    max-width: min(100%, 28rem);
    overflow: hidden;
    font-weight: 700;
    color: #1e293b;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.store-blog-show-page {
    padding: clamp(1rem, 2.5vw, 1.5rem) 0 3rem;
}

.store-blog-show-page__container {
    width: 100%;
}

.store-blog-show-layout {
    align-items: flex-start;
    margin-left: 0;
    margin-right: 0;
}

.store-blog-show-layout > * {
    padding-left: 0;
    padding-right: 0;
}

.store-blog-show-main {
    min-width: 0;
}

@media (min-width: 992px) {
    .store-blog-show-layout {
        display: grid;
        grid-template-columns: minmax(0, 2fr) minmax(0, 1fr);
        gap: clamp(1.25rem, 2.5vw, 1.75rem);
    }

    .store-blog-show-layout .store-blog-show-main {
        flex: none;
        max-width: none;
        width: auto;
    }

    .store-blog-show-layout .store-blog-sidebar {
        flex: none;
        max-width: none;
        width: 100%;
        order: unset;
    }
}

.store-blog-show {
    width: 100%;
    background: #fff;
    border: 1px solid #e8eef5;
    border-radius: 1.25rem;
    box-shadow: 0 4px 24px rgba(15, 23, 42, 0.05);
    overflow: hidden;
}

.store-blog-show__hero {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16 / 8.5;
    background: #e2e8f0;
}

.store-blog-show__hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.store-blog-show__hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(15, 23, 42, 0.05) 40%, rgba(15, 23, 42, 0.45) 100%);
    pointer-events: none;
}

.store-blog-show__category {
    position: absolute;
    bottom: 1rem;
    right: 1rem;
    z-index: 1;
    padding: 0.4rem 0.95rem;
    font-size: 1.15rem;
    font-weight: 700;
    color: #fff;
    text-decoration: none;
    background: rgba(51, 102, 153, 0.92);
    border-radius: 2rem;
    backdrop-filter: blur(6px);
    transition: background 0.2s ease;
}

.store-blog-show__category:hover {
    background: #285580;
    color: #fff;
}

.store-blog-show__head {
    padding: 1.5rem 1.75rem 0;
}

.store-blog-show__meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.35rem;
    margin-bottom: 0.85rem;
}

.store-blog-show__meta-item {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.35rem 0.7rem;
    font-size: 1.1rem;
    font-weight: 600;
    color: #64748b;
    background: #f8fafc;
    border: 1px solid #e8eef5;
    border-radius: 2rem;
}

.store-blog-show__meta-item i {
    font-size: 1.15rem;
    color: var(--store-primary, #336699);
}

.store-blog-show__meta-link {
    text-decoration: none;
    transition: border-color 0.2s ease, color 0.2s ease;
}

.store-blog-show__meta-link:hover {
    color: var(--store-primary, #336699);
    border-color: rgba(51, 102, 153, 0.25);
}

.store-blog-show__meta-dot {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: #cbd5e1;
}

.store-blog-show__title {
    margin: 0 0 0.75rem;
    font-size: clamp(1.85rem, 3.3vw, 2.5rem);
    font-weight: 800;
    line-height: 1.45;
    color: #1e293b;
}

.store-blog-show__excerpt {
    margin: 0 0 0.5rem;
    font-size: 1.32rem;
    line-height: 1.75;
    color: #64748b;
}

.store-blog-show__content {
    padding: 1.25rem 1.75rem 1.75rem;
    font-size: 1.28rem;
    line-height: 1.9;
    color: #334155;
}

.store-blog-show__content h2,
.store-blog-show__content h3,
.store-blog-show__content h4 {
    margin: 1.75rem 0 0.85rem;
    font-weight: 800;
    line-height: 1.45;
    color: #1e293b;
}

.store-blog-show__content h2 { font-size: 1.7rem; }
.store-blog-show__content h3 { font-size: 1.5rem; }
.store-blog-show__content h4 { font-size: 1.35rem; }
.store-blog-show__content p {
    margin-bottom: 1.1rem;
}

.store-blog-show__content ul,
.store-blog-show__content ol {
    margin: 0 0 1.25rem;
    padding-right: 1.35rem;
}

.store-blog-show__content li {
    margin-bottom: 0.45rem;
}

.store-blog-show__content img {
    max-width: 100%;
    height: auto;
    margin: 1rem 0;
    border-radius: 0.75rem;
}

.store-blog-show__content blockquote {
    margin: 1.25rem 0;
    padding: 1rem 1.25rem;
    font-style: italic;
    color: #475569;
    background: #f8fafc;
    border-right: 4px solid var(--store-primary, #336699);
    border-radius: 0 0.65rem 0.65rem 0;
}

.store-blog-show__content a {
    color: var(--store-primary, #336699);
    font-weight: 600;
}

.store-blog-show__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
    align-items: center;
    margin: 0 1.75rem;
    padding: 1rem 0;
    border-top: 1px solid #eef2f7;
}

.store-blog-show__tags-label {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 1.15rem;
    font-weight: 700;
    color: #64748b;
}

.store-blog-show__tags-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.45rem;
}

.store-blog-show__tag {
    padding: 0.35rem 0.85rem;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--store-primary, #336699);
    text-decoration: none;
    background: rgba(51, 102, 153, 0.08);
    border: 1px solid rgba(51, 102, 153, 0.15);
    border-radius: 2rem;
    transition: background 0.2s ease;
}

.store-blog-show__tag:hover {
    background: rgba(51, 102, 153, 0.14);
    color: #285580;
}

.store-blog-show__share {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    align-items: center;
    margin: 0 1.75rem 1.5rem;
    padding: 1rem 1.15rem;
    background: #f8fafc;
    border: 1px solid #e8eef5;
    border-radius: 0.85rem;
}

.store-blog-show__share-label {
    font-size: 1.15rem;
    font-weight: 700;
    color: #475569;
}

.store-blog-show__share-links {
    display: flex;
    flex-wrap: wrap;
    gap: 0.45rem;
}

.store-blog-show__share-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    padding: 0;
    font-size: 1.15rem;
    color: #64748b;
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 50%;
    cursor: pointer;
    transition: color 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.store-blog-show__share-btn:hover {
    color: var(--store-primary, #336699);
    border-color: rgba(51, 102, 153, 0.35);
    background: rgba(51, 102, 153, 0.06);
}

.store-blog-show__related {
    padding: 1.5rem 1.75rem 1.75rem;
    border-top: 1px solid #eef2f7;
}

.store-blog-show__related-head {
    margin-bottom: 1.15rem;
}

.store-blog-show__related-title {
    margin: 0 0 0.25rem;
    font-size: 1.6rem;
    font-weight: 800;
    color: #1e293b;
}

.store-blog-show__related-meta {
    margin: 0;
    font-size: 1.15rem;
    color: #64748b;
}

.store-blog-show__related-col {
    margin-bottom: 1rem;
}

.store-blog-show__related-card {
    height: 100%;
}

.store-blog-show__related .home-blog-card__cat {
    font-size: 1.2rem;
}

.store-blog-show__related .home-blog-card__meta {
    font-size: 1.25rem;
}

.store-blog-show__related .home-blog-card__title {
    font-size: 1.7rem;
}

.store-blog-show__related .home-blog-card__link {
    font-size: 1.35rem;
}

.store-blog-show__comments {
    padding: 1.5rem 1.75rem 1.75rem;
    background: #f8fafc;
    border-top: 1px solid #eef2f7;
}

.store-blog-show__comments-title {
    margin: 0 0 1rem;
    font-size: 1.5rem;
    font-weight: 800;
    color: #1e293b;
}

.store-blog-show__alert {
    margin-bottom: 1rem;
    padding: 0.85rem 1rem;
    font-size: 1.15rem;
    font-weight: 600;
    border-radius: 0.65rem;
}

.store-blog-show__alert--success {
    color: #15803d;
    background: #f0fdf4;
    border: 1px solid #bbf7d0;
}

.store-blog-show__comments-list {
    margin: 0 0 1.5rem;
    padding: 0;
    list-style: none;
}

.store-blog-show__comment {
    display: flex;
    gap: 0.85rem;
    padding: 1rem 0;
    border-bottom: 1px solid #e8eef5;
}

.store-blog-show__comment:last-child {
    border-bottom: none;
}

.store-blog-show__comment-avatar {
    display: flex;
    flex-shrink: 0;
    align-items: center;
    justify-content: center;
    width: 2.75rem;
    height: 2.75rem;
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--store-primary, #336699);
    background: rgba(51, 102, 153, 0.1);
    border-radius: 50%;
}

.store-blog-show__comment-body {
    flex: 1;
    min-width: 0;
}

.store-blog-show__comment-top {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    align-items: baseline;
    justify-content: space-between;
    margin-bottom: 0.35rem;
}

.store-blog-show__comment-author {
    font-size: 1.15rem;
    color: #1e293b;
}

.store-blog-show__comment-date {
    font-size: 1.05rem;
    color: #94a3b8;
}

.store-blog-show__comment-text {
    margin: 0;
    font-size: 1.17rem;
    line-height: 1.7;
    color: #475569;
}

.store-blog-show__comments-empty {
    padding: 2rem 1rem;
    text-align: center;
    font-size: 1.1rem;
    color: #64748b;
    list-style: none;
}

.store-blog-show__comments-empty i {
    display: block;
    margin-bottom: 0.5rem;
    font-size: 2rem;
    color: #cbd5e1;
}

.store-blog-show__reply {
    padding: 1.25rem;
    background: #fff;
    border: 1px solid #e8eef5;
    border-radius: 0.85rem;
}

.store-blog-show__reply-title {
    margin: 0 0 0.35rem;
    font-size: 1.32rem;
    font-weight: 800;
    color: #1e293b;
}

.store-blog-show__reply-hint,
.store-blog-show__reply-login {
    margin: 0 0 1rem;
    font-size: 1.15rem;
    color: #64748b;
}

.store-blog-show__reply-login a {
    font-weight: 700;
    color: var(--store-primary, #336699);
}

.store-blog-show__reply-error {
    margin: 0 0 0.65rem;
    font-size: 1.1rem;
    color: #b91c1c;
}

.store-blog-show__reply-input {
    min-height: 8rem;
    margin-bottom: 0.85rem;
    padding: 0.85rem 1rem !important;
    font-size: 1.15rem;
    border: 1px solid #dbe3ee !important;
    border-radius: 0.75rem !important;
    resize: vertical;
}

.store-blog-show__reply-input:focus {
    border-color: var(--store-primary, #336699) !important;
    box-shadow: 0 0 0 3px rgba(51, 102, 153, 0.12) !important;
}

.store-blog-show__reply-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.7rem 1.35rem;
    font-family: inherit;
    font-size: 1.15rem;
    font-weight: 700;
    color: #fff;
    background: var(--store-primary, #336699);
    border: none;
    border-radius: 2rem;
    cursor: pointer;
    transition: background 0.2s ease, gap 0.2s ease;
}

.store-blog-show__reply-btn:hover {
    background: #285580;
    gap: 0.75rem;
}

/* Blog sidebar (show + index) */

.store-blog-sidebar {
    width: 100%;
    border: 1px solid #e8eef5;
    border-radius: 1.15rem;
    background: #fff;
    box-shadow: 0 4px 20px rgba(15, 23, 42, 0.04);
    font-size: 1.125rem;
}

.store-blog-sidebar .sidebar-content {
    font-size: inherit;
    padding: 0.35rem 0;
}

.store-blog-sidebar--show .sidebar-content {
    padding: 0.35rem 0;
}

.store-blog-sidebar__widget {
    padding: 1.65rem 1.5rem;
    border-bottom: 1px solid #eef2f7;
}

.store-blog-sidebar__widget:last-child {
    border-bottom: none;
}

.store-blog-sidebar__title {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    margin: 0 0 1.15rem;
    font-size: 1.48rem;
    font-weight: 800;
    color: #1e293b;
    line-height: 1.4;
}

.store-blog-sidebar__title-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    font-size: 1.25rem;
    color: var(--store-primary, #336699);
    background: rgba(51, 102, 153, 0.1);
    border-radius: 5px;
}

.store-blog-sidebar__search-form {
    position: relative;
}

.store-blog-sidebar__search-input {
    height: 3.65rem;
    padding-left: 3.35rem !important;
    font-size: 1.28rem !important;
    border: 1px solid #dbe3ee !important;
    border-radius: 0.75rem !important;
}

.store-blog-sidebar__search-btn {
    position: absolute;
    left: 0.45rem;
    top: 50%;
    transform: translateY(-50%);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.65rem;
    height: 2.65rem;
    padding: 0;
    font-size: 1.25rem;
    color: #fff;
    background: var(--store-primary, #336699);
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.store-blog-sidebar__categories {
    margin: 0;
    padding: 0;
    list-style: none;
}

.store-blog-sidebar__categories li + li {
    margin-top: 0.4rem;
}

.store-blog-sidebar__cat-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.85rem;
    padding: 0.85rem 0.9rem;
    font-size: 1.28rem;
    font-weight: 600;
    line-height: 1.45;
    color: #475569;
    text-decoration: none;
    border-radius: 5px;
    transition: background 0.2s ease, color 0.2s ease;
}

.store-blog-sidebar__cat-link:hover,
.store-blog-sidebar__cat-link.is-active {
    color: var(--store-primary, #336699);
    background: rgba(51, 102, 153, 0.08);
}

.store-blog-sidebar__cat-count {
    min-width: 2rem;
    padding: 0.25rem 0.6rem;
    font-size: 1.12rem;
    font-weight: 700;
    line-height: 1.3;
    color: #64748b;
    text-align: center;
    background: #f1f5f9;
    border-radius: 5px;
}

.store-blog-sidebar__posts {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
}

.store-blog-sidebar__post {
    display: grid;
    grid-template-columns: 5.25rem 1fr;
    gap: 1rem;
    align-items: start;
    padding: 1rem 0;
    border-bottom: 1px solid #f1f5f9;
}

.store-blog-sidebar__post:last-child {
    border-bottom: none;
    padding-bottom: 0.25rem;
}

.store-blog-sidebar__post:first-child {
    padding-top: 0.25rem;
}

.store-blog-sidebar__post-thumb {
    display: block;
    overflow: hidden;
    width: 5.25rem;
    height: 5.25rem;
    border-radius: 5px;
}

.store-blog-sidebar__post-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.store-blog-sidebar__post-thumb:hover img {
    transform: scale(1.06);
}

.store-blog-sidebar__post-body {
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
    min-width: 0;
}

.store-blog-sidebar__post-date {
    display: block;
    font-size: 1.15rem;
    line-height: 1.4;
    color: #94a3b8;
}

.store-blog-sidebar__post-title {
    margin: 0;
    font-size: 1.3rem;
    font-weight: 700;
    line-height: 1.55;
}

.store-blog-sidebar__post-title a {
    color: #1e293b;
    text-decoration: none;
    transition: color 0.2s ease;
}

.store-blog-sidebar__post-title a:hover {
    color: var(--store-primary, #336699);
}

.store-blog-sidebar__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.55rem;
}

.store-blog-sidebar__tag {
    padding: 0.5rem 1rem;
    font-size: 1.18rem;
    font-weight: 600;
    line-height: 1.35;
    color: #475569;
    text-decoration: none;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 5px;
    transition: color 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.store-blog-sidebar__tag:hover {
    color: var(--store-primary, #336699);
    border-color: rgba(51, 102, 153, 0.3);
    background: rgba(51, 102, 153, 0.05);
}

@media (min-width: 992px) {
    .store-blog-sidebar.sidebar-fixed .sidebar-content {
        position: relative;
        overflow: visible;
        opacity: 1;
        visibility: visible;
        transform: none !important;
        width: auto;
        right: auto;
        left: auto;
    }

    .store-blog-sidebar.sidebar-fixed .sidebar-toggle,
    .store-blog-sidebar.sidebar-fixed .sidebar-overlay,
    .store-blog-sidebar.sidebar-fixed .sidebar-close {
        display: none !important;
    }
}

@media (max-width: 991px) {
    .store-blog-show-layout .store-blog-show-main {
        margin-bottom: 1.25rem;
    }

    .store-blog-sidebar {
        position: static !important;
        width: 100% !important;
        transform: none !important;
    }

    .store-blog-sidebar .sidebar-content {
        position: static !important;
        transform: none !important;
        width: 100% !important;
        opacity: 1 !important;
        visibility: visible !important;
        padding: 0 !important;
    }

    .store-blog-sidebar .sidebar-toggle {
        display: none !important;
    }
}

@media (max-width: 767px) {
    .store-blog-show__head,
    .store-blog-show__content,
    .store-blog-show__related,
    .store-blog-show__comments {
        padding-right: 1.1rem;
        padding-left: 1.1rem;
    }

    .store-blog-show__tags,
    .store-blog-show__share {
        margin-right: 1.1rem;
        margin-left: 1.1rem;
    }

    .store-blog-show__hero {
        aspect-ratio: 16 / 10;
        border-radius: 1.25rem 1.25rem 0 0;
    }

    .store-blog-show__meta-item {
        font-size: 1.05rem;
    }

    .store-blog-show-page .store-shop-breadcrumb__item--active {
        max-width: 100%;
        white-space: normal;
    }
}

/* ── Legal pages (terms, privacy) ──────────────────────────────────── */

.store-legal-page {
    scroll-behavior: smooth;
}

.store-legal-page__content {
    padding: 2rem 0 3.5rem;
}

.store-legal-intro {
    margin-bottom: 2.25rem;
}

.store-legal-intro__inner {
    position: relative;
    padding: 1.65rem 1.85rem;
    background: linear-gradient(135deg, rgba(var(--store-primary-rgb, 51, 102, 153), 0.06) 0%, #fff 55%);
    border: 1px solid rgba(var(--store-primary-rgb, 51, 102, 153), 0.12);
    border-radius: 1.15rem;
    box-shadow: 0 8px 28px rgba(15, 23, 42, 0.04);
    overflow: hidden;
}

.store-legal-intro__inner::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, var(--store-primary, #336699) 0%, rgba(var(--store-primary-rgb, 51, 102, 153), 0.45) 100%);
    border-radius: 0 1.15rem 1.15rem 0;
}

.store-legal-intro__eyebrow {
    display: inline-block;
    margin: 0 0 0.65rem;
    padding: 0.35rem 0.85rem;
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--store-primary, #336699);
    background: rgba(var(--store-primary-rgb, 51, 102, 153), 0.1);
    border-radius: 5px;
}

.store-legal-intro__text {
    margin: 0;
    max-width: 52rem;
    font-size: 1.28rem;
    font-weight: 500;
    line-height: 1.85;
    color: #475569;
}

.store-legal-intro__updated {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    margin: 1rem 0 0;
    font-size: 1.05rem;
    font-weight: 600;
    color: #94a3b8;
}

.store-legal-intro__updated i {
    font-size: 1.15rem;
    color: var(--store-primary, #336699);
}

.store-legal-layout {
    align-items: flex-start;
}

.store-legal-nav {
    position: sticky;
    top: 9rem;
    padding: 1.35rem 1.25rem;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid #e8eef5;
    border-radius: 1.15rem;
    box-shadow: 0 8px 28px rgba(15, 23, 42, 0.05);
    backdrop-filter: blur(8px);
}

.store-legal-nav__label {
    margin: 0 0 1rem;
    padding-bottom: 0.85rem;
    font-size: 1.15rem;
    font-weight: 800;
    color: #1e293b;
    border-bottom: 1px solid #eef2f7;
}

.store-legal-nav__list {
    margin: 0;
    padding: 0;
    list-style: none;
}

.store-legal-nav__list li + li {
    margin-top: 0.35rem;
}

.store-legal-nav__link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 0.85rem;
    font-size: 1.15rem;
    font-weight: 600;
    color: #64748b !important;
    text-decoration: none !important;
    border: 1px solid transparent;
    border-radius: 5px;
    transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.store-legal-nav__link:hover {
    color: var(--store-primary, #336699) !important;
    background: rgba(var(--store-primary-rgb, 51, 102, 153), 0.06);
    border-color: rgba(var(--store-primary-rgb, 51, 102, 153), 0.12);
}

.store-legal-nav__link.is-active {
    color: var(--store-primary, #336699) !important;
    background: rgba(var(--store-primary-rgb, 51, 102, 153), 0.1);
    border-color: rgba(var(--store-primary-rgb, 51, 102, 153), 0.2);
    box-shadow: inset 3px 0 0 var(--store-primary, #336699);
}

.store-legal-nav__num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 2rem;
    height: 2rem;
    font-size: 0.95rem;
    font-weight: 800;
    color: var(--store-primary, #336699);
    background: rgba(var(--store-primary-rgb, 51, 102, 153), 0.1);
    border-radius: 5px;
}

.store-legal-nav__link.is-active .store-legal-nav__num {
    color: #fff;
    background: var(--store-primary, #336699);
}

.store-legal-body {
    display: grid;
    gap: 1.25rem;
}

.store-legal-block {
    scroll-margin-top: 10rem;
    padding: 1.5rem 1.65rem;
    background: #fff;
    border: 1px solid #e8eef5;
    border-radius: 1.15rem;
    box-shadow: 0 4px 22px rgba(15, 23, 42, 0.04);
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.store-legal-block:target {
    border-color: rgba(var(--store-primary-rgb, 51, 102, 153), 0.35);
    box-shadow: 0 10px 32px rgba(var(--store-primary-rgb, 51, 102, 153), 0.1);
}

.store-legal-block__head {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    margin-bottom: 1.15rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #eef2f7;
}

.store-legal-block__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 3rem;
    height: 3rem;
    color: var(--store-primary, #336699);
    background: rgba(var(--store-primary-rgb, 51, 102, 153), 0.1);
    border-radius: 5px;
}

.store-legal-block__icon i {
    font-size: 1.45rem;
}

.store-legal-block__title {
    margin: 0;
    font-size: 1.55rem;
    font-weight: 800;
    line-height: 1.45;
    color: #1e293b;
}

.store-legal-block__content p {
    margin: 0 0 1rem;
    font-size: 1.25rem;
    font-weight: 500;
    line-height: 1.9;
    color: #475569;
}

.store-legal-block__content p:last-child {
    margin-bottom: 0;
}

.store-legal-footer {
    margin-top: 2.5rem;
    padding: 1.65rem 1.85rem;
    text-align: center;
    background: linear-gradient(180deg, #f8fafc 0%, #fff 100%);
    border: 1px solid #e8eef5;
    border-radius: 1.15rem;
    box-shadow: 0 6px 24px rgba(15, 23, 42, 0.04);
}

.store-legal-footer__note {
    margin: 0 0 1.15rem;
    font-size: 1.2rem;
    font-weight: 500;
    line-height: 1.75;
    color: #64748b;
}

.store-legal-footer__links {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 0.65rem;
}

.store-legal-footer__link {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.65rem 1.1rem;
    font-size: 1.1rem;
    font-weight: 700;
    color: #475569 !important;
    text-decoration: none !important;
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 5px;
    transition: color 0.25s ease, border-color 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
}

.store-legal-footer__link i {
    font-size: 1.2rem;
    color: var(--store-primary, #336699);
}

.store-legal-footer__link:hover {
    color: var(--store-primary, #336699) !important;
    border-color: rgba(var(--store-primary-rgb, 51, 102, 153), 0.3);
    background: rgba(var(--store-primary-rgb, 51, 102, 153), 0.05);
    box-shadow: 0 4px 14px rgba(15, 23, 42, 0.06);
}

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

    .store-legal-nav__list {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 0.35rem;
    }

    .store-legal-nav__list li + li {
        margin-top: 0;
    }
}

@media (max-width: 575px) {
    .store-legal-page__content {
        padding: 1.35rem 0 2.5rem;
    }

    .store-legal-intro__inner {
        padding: 1.35rem 1.25rem;
    }

    .store-legal-block {
        padding: 1.25rem 1.15rem;
    }

    .store-legal-nav__list {
        grid-template-columns: 1fr;
    }

    .store-legal-footer__links {
        flex-direction: column;
    }

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