﻿:root {
    --store-primary: #73BCB1;
    --store-primary-dark: #5aa89c;
    --store-primary-rgb: 115, 188, 177;
    --store-primary-soft: rgba(var(--store-primary-rgb), 0.14);
    --store-secondary: #EF9E5C;
    --store-secondary-dark: #e0893f;
    --store-secondary-rgb: 239, 158, 92;
    --store-secondary-soft: rgba(var(--store-secondary-rgb), 0.16);
    --store-pink: #F1D1E6;
    --store-pink-rgb: 241, 209, 230;
    --store-gray: #EDEDED;
    --store-mint-bg: #DCEDE1;
    --store-mint-bg-rgb: 220, 237, 225;
    --store-blue: #2C70B9;
    --store-blue-rgb: 44, 112, 185;
    --store-ink: #113237;
    --store-muted: #6b7c83;
    --store-line: var(--store-gray);
    --store-mint: var(--store-primary);
    --store-mint-dark: var(--store-primary-dark);
    --store-sand: var(--store-mint-bg);
    --store-cream: #fbf7f1;
    --store-whatsapp: #25d366;
    --store-font-ar: "Thmanyah Sans", sans-serif;
    --store-font-en: "Carlito", "Calibri", sans-serif;
}

.store-body {
    --primary-color: var(--store-primary);
    --secondary-color: var(--store-ink);
    --store-accent: var(--store-secondary);
    --heading-font: var(--store-font-ar);
    --body-font: var(--store-font-ar);
    accent-color: var(--store-primary);
    font-family: var(--store-font-ar);
    background:
        radial-gradient(circle at top left, rgba(var(--store-primary-rgb), 0.16), transparent 42%),
        linear-gradient(180deg, #f7fbf8 0%, var(--store-mint-bg) 100%);
    color: var(--store-ink);
    min-height: 100vh;
    overflow-x: hidden;
}

html[lang="en"] .store-body {
    --heading-font: var(--store-font-en);
    --body-font: var(--store-font-en);
    font-family: var(--store-font-en);
}

.store-body,
.store-body button,
.store-body input,
.store-body select,
.store-body textarea,
.store-body .btn,
.store-body .nav-link,
.store-body .dropdown-menu {
    font-family: inherit;
}

.store-header {
    position: sticky;
    top: 0;
    z-index: 1100;
    background: #fff;
    border-bottom: 1px solid #eee;
    overflow: visible;
    transition: box-shadow 0.25s ease;
}

.store-header.is-scrolled {
    box-shadow: 0 4px 18px rgba(17, 50, 55, 0.07);
}

@media (max-width: 991.98px) {
    :root {
        --store-mobile-header-h: 66px;
    }

    .store-header {
        position: fixed;
        inset-inline: 0;
        top: 0;
        width: 100%;
        z-index: 1100;
    }

    html.has-pc-top-ticker .store-header {
        top: var(--pc-top-ticker-h);
    }

    body.store-body {
        padding-top: var(--store-mobile-header-h);
    }

    html.has-pc-top-ticker body.store-body {
        padding-top: calc(var(--pc-top-ticker-h) + var(--store-mobile-header-h));
    }
}

.store-header .container {
    overflow: visible;
}

.store-topbar {
    border-bottom: 1px solid #f0f0f0;
    background: #fff;
}

.store-topbar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    min-height: 38px;
    padding-top: 0.35rem;
    padding-bottom: 0.35rem;
}

.store-topbar-links {
    display: flex;
    align-items: center;
    gap: 0;
    flex-wrap: wrap;
}

.store-topbar-link {
    color: #374151;
    text-decoration: none;
    font-size: 0.84rem;
    font-weight: 600;
    white-space: nowrap;
    padding-inline: 0.85rem;
}

.store-topbar-link + .store-topbar-link {
    border-inline-start: 1px solid #e5e7eb;
}

.store-topbar-link:first-child {
    padding-inline-start: 0;
}

.store-topbar-link:hover {
    color: var(--store-mint-dark);
}

.store-lang-switch {
    display: inline-flex;
    align-items: center;
    gap: 0.2rem;
    padding: 0.15rem;
    border-radius: 999px;
    background: #f3f4f6;
}

.store-lang-code {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 2.1rem;
    height: 1.7rem;
    padding: 0 0.7rem;
    border-radius: 999px;
    color: #6b7280;
    text-decoration: none;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0;
    line-height: 1;
    white-space: nowrap;
    transition: background 0.15s ease, color 0.15s ease;
}

.store-lang-code:hover {
    color: var(--store-ink);
    background: rgba(255, 255, 255, 0.8);
}

.store-lang-code.active {
    background: #fff;
    color: var(--store-mint-dark);
    box-shadow: 0 1px 3px rgba(17, 50, 55, 0.1);
}

.store-drawer-langs .store-lang-switch {
    background: #f3f4f6;
}

.store-navbar {
    background: transparent !important;
    padding: 0.55rem 0;
}

.store-navbar-row {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-wrap: nowrap;
}

.store-header-start {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    flex: 0 0 auto;
    min-width: 0;
}

.store-menu-toggle {
    display: none;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    padding: 0;
    border: 0;
    background: transparent;
    color: #111827;
    font-size: 1.45rem;
    flex: 0 0 auto;
}

.store-menu-toggle:hover {
    color: var(--store-mint-dark);
}

.store-navbar .navbar-brand {
    margin: 0;
    padding: 0;
    flex: 0 0 auto;
    line-height: 0;
}

.store-navbar .navbar-brand img {
    display: block;
    width: auto;
    height: 40px;
    max-width: 60px;
    max-height: 40px;
    object-fit: contain;
}

.store-main-menu {
    display: flex;
    align-items: center;
    gap: 0.05rem;
    flex: 1 1 auto;
    min-width: 0;
    overflow-x: auto;
    overflow-y: visible;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
    padding: 0.1rem 0;
    margin-inline-start: 0.5rem;
}

.store-main-menu::-webkit-scrollbar {
    display: none;
}

.store-header-actions {
    margin-inline-start: auto;
    flex: 0 0 auto;
}

.store-book-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 40px;
    padding: 0 0.95rem;
    border-radius: 999px;
    background: var(--store-mint);
    color: #fff;
    text-decoration: none;
    font-size: 0.82rem;
    font-weight: 700;
    white-space: nowrap;
    line-height: 1;
    transition: background 0.15s ease, color 0.15s ease;
}

.store-book-btn:hover,
.store-book-btn:focus {
    background: var(--store-mint-dark);
    color: #fff;
    outline: 0;
}

.store-navbar .language-menu {
    min-width: 10rem;
    border: 0;
    border-radius: 12px;
    box-shadow: 0 12px 28px rgba(17, 50, 55, 0.12);
    padding: 0.4rem;
}

.store-navbar .language-menu .dropdown-item,
.store-topbar .language-menu .dropdown-item {
    border-radius: 8px;
    font-weight: 600;
    padding: 0.6rem 0.75rem;
}

.store-navbar .language-menu .dropdown-item.active,
.store-navbar .language-menu .dropdown-item:hover,
.store-topbar .language-menu .dropdown-item.active,
.store-topbar .language-menu .dropdown-item:hover {
    background: rgba(115, 188, 177, 0.14);
    color: var(--store-mint-dark);
}

.store-cat-link {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    white-space: nowrap;
    border: 0;
    background: transparent;
    color: #111827;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    padding: 0.5rem 0.7rem;
    border-radius: 0;
    transition: color 0.15s ease;
    line-height: 1.2;
    position: relative;
}

.store-cat-link:hover,
.store-cat-link.active,
.store-cat-dropdown.active > .store-cat-link,
.store-cat-dropdown.is-open > .store-cat-link {
    background: transparent;
    color: var(--store-secondary-dark);
}

.store-main-menu .store-cat-link::after {
    content: "";
    position: absolute;
    left: 0.7rem;
    right: 0.7rem;
    bottom: 0.05rem;
    height: 2px;
    background: transparent;
    transition: background 0.15s ease;
}

.store-main-menu .store-cat-link:hover::after,
.store-main-menu .store-cat-link.active::after,
.store-main-menu .store-cat-dropdown.active > .store-cat-link::after,
.store-main-menu .store-cat-dropdown.is-open > .store-cat-link::after {
    background: var(--store-secondary);
}

.store-cat-toggle i {
    font-size: 0.58rem;
    opacity: 0.55;
    transition: transform 0.15s ease;
}

.store-cat-dropdown.is-open > .store-cat-toggle i {
    transform: rotate(180deg);
}

.store-cat-dropdown {
    position: relative;
    flex: 0 0 auto;
}

.store-cat-menu {
    display: none !important;
}

.store-cat-flyout {
    position: fixed;
    z-index: 2000;
    min-width: 220px;
    max-width: min(92vw, 280px);
    max-height: min(70vh, 360px);
    overflow-y: auto;
    background: #fff;
    border: 1px solid #eee;
    border-radius: 12px;
    box-shadow: 0 16px 40px rgba(17, 50, 55, 0.12);
    padding: 0.4rem;
}

.store-cat-flyout[hidden] {
    display: none !important;
}

.store-sub-link {
    display: block;
    padding: 0.7rem 0.9rem;
    border-radius: 10px;
    color: var(--store-ink);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
}

.store-sub-link:hover,
.store-sub-link.active {
    background: var(--store-secondary-soft);
    color: var(--store-secondary-dark);
}

/* Mobile drawer */
.store-drawer {
    position: fixed;
    inset: 0;
    z-index: 2200;
}

.store-drawer[hidden] {
    display: none !important;
}

.store-drawer-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(17, 50, 55, 0.42);
    opacity: 0;
    transition: opacity 0.25s ease;
}

.store-drawer.is-open .store-drawer-backdrop {
    opacity: 1;
}

.store-drawer-panel {
    position: absolute;
    top: 0;
    bottom: 0;
    inset-inline-start: 0;
    width: min(88vw, 360px);
    background: #fff;
    box-shadow: 0 0 40px rgba(0, 0, 0, 0.12);
    display: flex;
    flex-direction: column;
    transform: translateX(-105%);
    transition: transform 0.28s ease;
}

html[dir="rtl"] .store-drawer-panel {
    transform: translateX(105%);
}

.store-drawer.is-open .store-drawer-panel {
    transform: translateX(0);
}

.store-drawer-head {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.1rem;
    border-bottom: 1px solid #eee;
    flex: 0 0 auto;
}

.store-drawer-head strong {
    font-size: 1.05rem;
    font-weight: 800;
    color: var(--store-ink);
}

.store-drawer-close {
    width: 36px;
    height: 36px;
    border: 0;
    background: transparent;
    color: #e11d48;
    font-size: 1.2rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    padding: 0;
}

.store-drawer-close:hover {
    background: rgba(225, 29, 72, 0.08);
}

.store-drawer-nav {
    flex: 1 1 auto;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    padding: 0.25rem 0 1.5rem;
}

.store-drawer-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 1rem 1.15rem;
    border: 0;
    border-bottom: 1px solid #f0f0f0;
    background: transparent;
    color: #111827;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 700;
    text-align: start;
}

.store-drawer-link:hover,
.store-drawer-link.active {
    color: var(--store-secondary-dark);
    background: var(--store-secondary-soft);
}

.store-drawer-chevron {
    font-size: 0.75rem;
    color: #9aa6ab;
    transition: transform 0.2s ease;
}

html[dir="ltr"] .store-drawer-chevron {
    transform: scaleX(-1);
}

.store-drawer-group.is-open .store-drawer-chevron {
    transform: rotate(-90deg);
}

html[dir="ltr"] .store-drawer-group.is-open .store-drawer-chevron {
    transform: scaleX(-1) rotate(-90deg);
}

.store-drawer-sub {
    background: #fafafa;
    border-bottom: 1px solid #f0f0f0;
}

.store-drawer-sub[hidden] {
    display: none !important;
}

.store-drawer-sublink {
    display: block;
    padding: 0.85rem 1.15rem 0.85rem 1.65rem;
    color: #4b5c62;
    text-decoration: none;
    font-size: 0.92rem;
    font-weight: 600;
    border-bottom: 1px solid #f3f3f3;
}

html[dir="ltr"] .store-drawer-sublink {
    padding: 0.85rem 1.65rem 0.85rem 1.15rem;
}

.store-drawer-sublink:last-child {
    border-bottom: 0;
}

.store-drawer-sublink:hover,
.store-drawer-sublink.active {
    color: var(--store-secondary-dark);
    background: var(--store-secondary-soft);
}

.store-drawer-extra {
    margin-top: 0.5rem;
    border-top: 8px solid #f5f5f5;
}

.store-drawer-langs {
    padding: 1.1rem 1.15rem 0.5rem;
}

.store-drawer-langs-label {
    margin: 0 0 0.65rem;
    font-size: 0.8rem;
    font-weight: 700;
    color: #6b7280;
}

.store-drawer-langs-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

body.store-drawer-open {
    overflow: hidden;
}

@media (max-width: 991.98px) {
    .store-menu-toggle {
        display: inline-flex;
    }

    .store-navbar {
        padding: 0.4rem 0;
    }

    .store-navbar-row {
        display: flex;
        align-items: center;
        gap: 0.35rem;
        min-height: 58px;
    }

    .store-header-start {
        display: flex;
        flex: 0 0 auto;
        order: 1;
    }

    .store-navbar .navbar-brand {
        order: 2;
        flex: 0 0 auto;
        margin: 0;
    }

    .store-navbar .navbar-brand img {
        height: 40px;
        max-width: 52px;
        max-height: 40px;
    }

    .store-main-menu {
        display: none !important;
    }

    .store-header-actions {
        order: 3;
        margin-inline-start: auto;
        flex: 0 0 auto;
    }

    .store-book-btn {
        height: 36px;
        padding: 0 0.7rem;
        font-size: 0.75rem;
    }
}

@media (min-width: 992px) {
    .store-drawer {
        display: none !important;
    }

    .store-header-start {
        display: none;
    }

    .store-navbar .navbar-brand img {
        height: 40px;
        max-width: 60px;
        max-height: 40px;
    }
}

.store-section-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.1rem;
}

.store-by-pet {
    padding: 0 0 2rem;
}

.store-section-head h2 {
    margin: 0;
    font-size: clamp(1.2rem, 2.5vw, 1.55rem);
    font-weight: 800;
}

.store-section-head.catalog-head {
    margin-top: 0.25rem;
}

.store-pet-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.65rem;
    text-decoration: none;
    color: var(--store-ink);
    background: #fff;
    border: 1px solid rgba(115, 188, 177, 0.16);
    border-radius: 20px;
    padding: 1rem 0.75rem 1.1rem;
    height: 100%;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.store-pet-card:hover {
    transform: translateY(-3px);
    border-color: rgba(115, 188, 177, 0.45);
    box-shadow: 0 14px 28px rgba(31, 42, 46, 0.08);
    color: var(--store-ink);
}

.store-pet-media {
    width: 88px;
    height: 88px;
    border-radius: 50%;
    overflow: hidden;
    background: var(--store-cream);
    display: block;
}

.store-pet-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.store-pet-name {
    font-weight: 800;
    font-size: 1rem;
    text-align: center;
}

.store-pet-meta {
    color: var(--store-muted);
    font-size: 0.78rem;
    font-weight: 600;
}

.store-icon-btn,
.store-cart-btn {
    position: relative;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(var(--store-mint-bg-rgb), 0.45);
    color: var(--store-ink);
    text-decoration: none;
    border: 0;
    padding: 0;
    margin: 0;
    box-shadow: none;
    font-size: 1rem;
    line-height: 1;
    appearance: none;
    -webkit-appearance: none;
    transition: background 0.2s ease, color 0.2s ease;
}

.store-icon-btn:hover,
.store-cart-btn:hover {
    background: var(--store-mint);
    color: #fff;
}

.store-icon-btn:focus,
.store-cart-btn:focus,
.store-icon-btn:focus-visible,
.store-cart-btn:focus-visible {
    outline: 0;
    box-shadow: none;
    background: rgba(var(--store-mint-bg-rgb), 0.45);
    color: var(--store-ink);
}

.store-icon-btn:hover:focus,
.store-cart-btn:hover:focus,
.store-icon-btn:hover:focus-visible,
.store-cart-btn:hover:focus-visible {
    background: var(--store-mint);
    color: #fff;
}

.store-user-toggle.dropdown-toggle::after {
    display: none;
}

.store-user-menu {
    min-width: 220px;
    padding: 0.5rem;
    border: 0;
    border-radius: 14px;
    box-shadow: 0 12px 32px rgba(28, 39, 49, 0.14);
    margin-top: 0.5rem !important;
    z-index: 1210;
}

body.store-body .modal-backdrop {
    z-index: 12090;
}

body.store-body .modal {
    z-index: 12100;
}

@media (max-width: 991.98px) {
    .store-header,
    .store-navbar,
    .store-navbar-row,
    .store-header-actions,
    .store-user-dropdown {
        overflow: visible !important;
    }

    .store-user-dropdown {
        position: static;
    }

    .store-user-menu.show {
        position: fixed !important;
        inset-inline-end: 0.75rem;
        inset-inline-start: auto;
        top: calc(var(--pc-top-ticker-h, 0px) + var(--store-mobile-header-h, 66px) + 0.35rem);
        transform: none !important;
        margin-top: 0 !important;
        z-index: 12120;
        max-width: calc(100vw - 1.5rem);
    }
}

.store-user-menu-head {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
    padding: 0.55rem 0.75rem 0.35rem;
}

.store-user-menu-name {
    font-size: 0.92rem;
    font-weight: 700;
    color: var(--store-ink);
}

.store-user-menu-meta {
    font-size: 0.75rem;
    color: #6b7280;
    direction: ltr;
    text-align: start;
}

.store-user-menu .dropdown-item {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    border-radius: 10px;
    padding: 0.65rem 0.75rem;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--store-ink);
}

.store-user-menu .dropdown-item i {
    width: 1rem;
    text-align: center;
    color: var(--store-primary);
}

.store-user-menu .dropdown-item:hover,
.store-user-menu .dropdown-item:focus {
    background: rgba(115, 188, 177, 0.12);
    color: var(--store-ink);
}

.store-user-menu .store-user-logout {
    width: 100%;
    color: #c0392b;
}

.store-user-menu .store-user-logout i {
    color: #c0392b;
}

.store-user-menu .store-user-logout:hover,
.store-user-menu .store-user-logout:focus {
    background: rgba(192, 57, 43, 0.08);
    color: #c0392b;
}

.store-cart-count {
    position: absolute;
    top: -2px;
    inset-inline-end: -2px;
    min-width: 18px;
    height: 18px;
    border-radius: 999px;
    background: var(--store-secondary);
    color: #fff;
    font-size: 0.7rem;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 4px;
}

.store-cart-count.is-empty {
    display: none;
}

.store-main {
    padding-bottom: 4rem;
}

.store-hero {
    padding: 3.5rem 0 2rem;
}

.store-kicker {
    display: inline-block;
    margin-bottom: 0.75rem;
    color: var(--store-mint-dark);
    font-weight: 700;
    letter-spacing: 0.04em;
}

.store-title {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 800;
    margin-bottom: 0.75rem;
}

.store-lead {
    max-width: 36rem;
    color: var(--store-muted);
    margin-bottom: 1.5rem;
}

.store-search {
    display: flex;
    gap: 0.5rem;
    max-width: 520px;
}

.store-search .form-control {
    border-radius: 999px;
    border: 1px solid var(--store-line);
    padding: 0.85rem 1.2rem;
    background: #fff;
}

.store-search-btn {
    width: 52px;
    border-radius: 999px;
    background: var(--store-mint);
    color: #fff;
}

.store-search-btn:hover {
    background: var(--store-mint-dark);
    color: #fff;
}

.store-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.75rem;
}

.store-chip {
    display: inline-flex;
    align-items: center;
    padding: 0.45rem 0.95rem;
    border-radius: 999px;
    background: #fff;
    border: 1px solid var(--store-line);
    color: var(--store-ink);
    text-decoration: none;
    font-size: 0.88rem;
    font-weight: 600;
}

.store-chip.active,
.store-chip:hover {
    background: var(--store-primary);
    border-color: var(--store-primary);
    color: #fff;
}

.store-product-card {
    height: 100%;
    min-height: 100%;
    background: #fff;
    border: 1px solid rgba(115, 188, 177, 0.14);
    border-radius: 18px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    touch-action: pan-y;
    -webkit-tap-highlight-color: transparent;
}

.store-product-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 30px rgba(31, 42, 46, 0.08);
}

@media (hover: none), (pointer: coarse) {
    .store-product-card:hover {
        transform: none;
        box-shadow: none;
    }

    .store-product-card:hover .store-product-media img {
        transform: none;
    }
}

.store-product-media {
    position: relative;
    display: block;
    flex: 0 0 auto;
    width: 100%;
    aspect-ratio: 1 / 1;
    background: #fff;
    overflow: hidden;
}

.store-product-oos {
    position: absolute;
    left: 0;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 6;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 2.4rem;
    padding: 0.65rem 0.85rem;
    background: rgba(28, 28, 28, 0.78);
    pointer-events: none;
}

.store-product-oos span {
    color: #fff;
    font-size: 0.95rem;
    font-weight: 800;
    letter-spacing: 0.01em;
    line-height: 1.2;
    text-align: center;
}

.store-product-card.is-out-of-stock .store-product-media img {
    filter: grayscale(0.35);
    opacity: 0.72;
}

.store-product-card.is-out-of-stock:hover .store-product-media img {
    transform: none;
}

.store-product-option.is-out-of-stock,
.store-product-option:disabled {
    opacity: 0.45;
    text-decoration: line-through;
    cursor: not-allowed;
}

.pdp-attr__option.is-out-of-stock,
.pdp-attr__option:disabled {
    opacity: 0.45;
    text-decoration: line-through;
    cursor: not-allowed;
    pointer-events: none;
}

.store-cart-item.is-out-of-stock {
    opacity: 0.92;
    border-color: #f0c7c7;
}

.store-cart-oos-badge {
    display: inline-flex;
    align-items: center;
    margin-top: 0.35rem;
    padding: 0.2rem 0.55rem;
    border-radius: 999px;
    background: rgba(180, 40, 40, 0.1);
    color: #b42828;
    font-size: 0.78rem;
    font-weight: 700;
}

.store-cart-oos-note {
    margin: 0 0 0.75rem;
    padding: 0.65rem 0.8rem;
    border-radius: 10px;
    background: #fff4f4;
    color: #a33;
    font-size: 0.88rem;
}

.store-primary-btn.is-disabled,
a.store-primary-btn.is-disabled,
.store-ghost-btn.is-disabled,
a.store-ghost-btn.is-disabled {
    pointer-events: none;
    opacity: 0.55;
}

.store-product-media-link {
    display: block;
    width: 100%;
    height: 100%;
}

.store-product-media img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    padding: 0.75rem;
    transition: transform 0.35s ease;
    -webkit-user-drag: none;
    user-select: none;
    touch-action: pan-y;
}

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

.store-product-actions {
    position: absolute;
    top: 0.55rem;
    inset-inline-end: 0.55rem;
    z-index: 4;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-6px);
    transition: opacity 0.25s ease, transform 0.25s ease;
}

.store-product-card:hover .store-product-actions,
.store-product-card:focus-within .store-product-actions {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.store-product-action {
    width: 38px;
    height: 38px;
    border: 0;
    border-radius: 50%;
    background: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 16px rgba(17, 50, 55, 0.12);
    cursor: pointer;
    transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}

.store-product-action-view {
    color: var(--store-primary-dark);
}

.store-product-action-view:hover {
    background: var(--store-primary);
    color: #fff;
    transform: translateY(-2px);
}

.store-product-action-fav {
    color: var(--store-secondary);
}

.store-product-action-fav:hover {
    background: var(--store-secondary-soft);
    color: var(--store-secondary-dark);
    transform: translateY(-2px);
}

.store-product-action-fav.is-favorite {
    background: #fff;
    color: var(--store-secondary);
}

.store-product-action-fav.is-favorite:hover {
    background: var(--store-secondary-soft);
    color: var(--store-secondary-dark);
}

.store-product-hover {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.25s ease;
    background: linear-gradient(180deg, transparent 45%, rgba(17, 50, 55, 0.18) 72%, rgba(17, 50, 55, 0.55) 100%);
    z-index: 2;
}

.store-product-hover-cart {
    width: 100%;
    margin: 0;
    pointer-events: auto;
    transform: translateY(12px);
    transition: transform 0.25s ease;
}

.store-product-hover-add {
    width: 100%;
    border: 0;
    border-radius: 0;
    background: var(--store-secondary);
    color: #fff;
    font-weight: 800;
    font-size: 0.92rem;
    padding: 0.85rem 1rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.55rem;
    transition: background 0.2s ease;
}

.store-product-hover-add:hover {
    background: var(--store-secondary-dark);
    color: #fff;
}

.store-product-card:hover .store-product-hover,
.store-product-card:focus-within .store-product-hover {
    opacity: 1;
}

.store-product-card:hover .store-product-hover-cart,
.store-product-card:focus-within .store-product-hover-cart {
    transform: translateY(0);
}

@media (hover: none) {
    .store-product-actions {
        opacity: 1;
        pointer-events: auto;
        transform: none;
    }

    .store-product-hover {
        opacity: 1;
        background: transparent;
        justify-content: flex-end;
    }

    .store-product-hover-cart {
        transform: none;
    }

    .store-product-action {
        width: 34px;
        height: 34px;
        font-size: 0.85rem;
    }

    .store-product-hover-add {
        background: var(--store-secondary);
        font-size: 0.85rem;
        padding: 0.7rem 0.85rem;
    }
}

.store-product-body {
    padding: 0.9rem 1rem 1.1rem;
    display: flex;
    flex-direction: column;
    gap: 0.55rem;
    flex: 1 1 auto;
    min-height: 0;
}

.store-product-name {
    font-size: 0.95rem;
    font-weight: 700;
    margin: 0;
    line-height: 1.45;
    min-height: calc(1.45em * 2);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.store-product-name a {
    color: inherit;
    text-decoration: none;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.store-product-options {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    gap: 0.35rem;
}

.store-product-option {
    border: 1px solid #d7e0e0;
    background: #fff;
    color: #334155;
    border-radius: 0.45rem;
    padding: 0.28rem 0.55rem;
    font-size: 0.78rem;
    font-weight: 700;
    line-height: 1.2;
    transition: border-color 0.15s ease, background 0.15s ease, color 0.15s ease;
}

.store-product-option:hover,
.store-product-option:focus {
    border-color: var(--store-secondary);
    color: var(--store-secondary-dark);
}

.store-product-option.is-active {
    border-color: var(--store-secondary);
    background: rgba(var(--store-secondary-rgb), 0.12);
    color: var(--store-secondary-dark);
    box-shadow: 0 0 0 1px var(--store-secondary);
}

.store-product-option-hint {
    width: 100%;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    margin-top: 0.15rem;
    padding: 0.4rem 0.55rem;
    border-radius: 0.45rem;
    background: #fff;
    border: 1px solid #f2c9a0;
    box-shadow: 0 6px 16px rgba(17, 50, 55, 0.08);
    color: #9a3412;
    font-size: 0.75rem;
    font-weight: 700;
}

.store-product-body > .store-product-option-hint,
.pdp-add-hint {
    margin: 0.35rem 0 0.55rem;
}

.store-product-option-hint i {
    color: var(--store-secondary);
}

.store-product-option-hint[hidden] {
    display: none !important;
}

.store-product-card.is-variant-required .store-product-options {
    outline: none;
}

.store-product-price {
    color: var(--store-ink);
    font-weight: 800;
    font-size: 1.02rem;
    margin-top: auto;
}

.store-add-form {
    margin-top: 0;
}

.store-catalog .row > [class*="col-"] {
    display: flex;
}

.store-catalog .store-product-card {
    width: 100%;
}

.store-product-price span,
.store-product-price.lg span {
    font-size: 0.8rem;
    font-weight: 700;
}

.store-product-price.lg {
    font-size: 1.6rem;
    margin: 0.75rem 0 1rem;
}

.store-product-vat-note {
    margin: -0.35rem 0 0.85rem;
    font-size: 0.82rem;
    color: var(--store-muted, #64748b);
    font-weight: 600;
}

.store-tabby-promo {
    margin: 0 0 1rem;
    min-height: 48px;
}

.store-tabby-promo * {
    max-width: 100%;
}

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

.store-add-btn {
    width: 100%;
    border-radius: 999px;
    background: var(--store-secondary);
    color: #fff;
    font-weight: 700;
    padding: 0.7rem 1rem;
}

.store-add-btn:hover,
.store-add-btn:focus {
    background: var(--store-secondary-dark);
    color: #fff;
}

.store-add-btn.lg {
    width: auto;
    flex: 1;
}

.store-empty-catalog,
.store-cart-empty {
    text-align: center;
    background: #fff;
    border-radius: 24px;
    padding: 4rem 1.5rem;
    border: 1px dashed rgba(115, 188, 177, 0.35);
}

.store-empty-catalog i,
.store-cart-empty-icon {
    width: 84px;
    height: 84px;
    margin: 0 auto 1.25rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--store-sand);
    color: var(--store-mint-dark);
    font-size: 2rem;
}

.store-cart-empty h2,
.store-empty-catalog h2 {
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.store-cart-empty p,
.store-empty-catalog p {
    color: var(--store-muted);
    max-width: 28rem;
    margin: 0 auto 1.5rem;
}

.store-cart-empty-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: center;
}

.store-primary-btn,
.store-ghost-btn,
.store-whatsapp-btn {
    border-radius: 999px;
    font-weight: 700;
    padding: 0.8rem 1.35rem;
}

.store-primary-btn {
    background: var(--store-secondary);
    color: #fff;
}

.store-primary-btn:hover {
    background: var(--store-secondary-dark);
    color: #fff;
}

.store-ghost-btn {
    background: #fff;
    border: 1px solid var(--store-line);
    color: var(--store-ink);
}

.store-ghost-btn:hover {
    border-color: var(--store-mint);
    color: var(--store-mint-dark);
}

.store-whatsapp-btn {
    background: var(--store-whatsapp);
    color: #fff;
}

.store-whatsapp-btn:hover {
    background: #1ebe57;
    color: #fff;
}

.store-cart-page {
    padding: 2.5rem 0 1rem;
}

.store-cart-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1.75rem;
}

.store-cart-head h1 {
    margin: 0;
    font-weight: 800;
    font-size: clamp(1.6rem, 3vw, 2.2rem);
}

.store-text-btn {
    color: var(--store-secondary-dark);
    font-weight: 700;
}

.store-text-btn:hover {
    color: var(--store-secondary);
}

.store-cart-list {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}

.store-cart-item {
    display: grid;
    grid-template-columns: 96px 1fr auto;
    gap: 1rem;
    align-items: center;
    background: #fff;
    border-radius: 18px;
    padding: 1rem;
    border: 1px solid rgba(115, 188, 177, 0.14);
}

.store-cart-thumb {
    width: 96px;
    height: 96px;
    border-radius: 14px;
    overflow: hidden;
    background: var(--store-cream);
    display: block;
}

.store-cart-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.store-cart-info h2 {
    font-size: 1rem;
    font-weight: 700;
    margin: 0 0 0.35rem;
}

.store-cart-unit {
    color: var(--store-muted);
    font-size: 0.88rem;
    margin-bottom: 0.65rem;
}

.store-qty {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    background: var(--store-sand);
    border-radius: 999px;
    padding: 0.2rem;
}

.store-qty-btn {
    width: 32px;
    height: 32px;
    border: 0;
    border-radius: 50%;
    background: #fff;
    color: var(--store-ink);
    font-weight: 700;
}

.store-qty-input {
    width: 42px;
    border: 0;
    background: transparent;
    text-align: center;
    font-weight: 700;
}

.store-cart-side {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.75rem;
}

.store-cart-line {
    font-weight: 800;
    color: var(--store-secondary-dark);
    white-space: nowrap;
}

.store-remove-btn {
    color: var(--store-muted);
}

.store-remove-btn:hover {
    color: var(--store-secondary-dark);
}

.store-cart-summary {
    background: #fff;
    border-radius: 20px;
    padding: 1.35rem;
    border: 1px solid rgba(115, 188, 177, 0.14);
    position: sticky;
    top: 90px;
}

.store-cart-summary h2 {
    font-size: 1.1rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.store-summary-row {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 0.75rem;
    color: var(--store-muted);
}

.store-summary-row.total {
    color: var(--store-ink);
    font-size: 1.05rem;
    padding-top: 0.75rem;
    border-top: 1px solid var(--store-line);
    margin-bottom: 0.55rem;
    align-items: flex-start;
}

.store-summary-row.total strong,
.store-summary-row.total #store-summary-total {
    color: var(--store-secondary-dark);
}

.store-summary-row.total small {
    display: block;
    margin-top: 0.2rem;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--store-muted);
}

.store-summary-note {
    margin: 0 0 1.25rem;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--store-muted);
}

.store-payment-block {
    margin: 0 0 1rem;
    padding-top: 0.85rem;
    border-top: 1px solid var(--store-line);
}

.store-payment-block h3 {
    margin: 0 0 0.85rem;
    font-size: 1rem;
    font-weight: 800;
}

.store-checkout-auth {
    border-radius: 12px;
    font-size: 0.9rem;
}

.store-payment-ways {
    display: grid;
    gap: 0.55rem;
    margin-bottom: 0.85rem;
}

.store-payment-way {
    display: block;
    margin: 0;
    cursor: pointer;
}

.store-payment-way input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.store-payment-way-body {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    padding: 0.85rem 1rem;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    background: #fff;
    transition: border-color 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}

.store-payment-way input:checked + .store-payment-way-body {
    border-color: var(--store-primary);
    background: rgba(var(--store-primary-rgb), 0.08);
    box-shadow: 0 0 0 3px rgba(var(--store-primary-rgb), 0.18);
}

.store-payment-way-title {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--store-ink);
}

.store-payment-way-icon {
    display: inline-flex;
    align-items: center;
    justify-content: flex-end;
    flex: 0 0 auto;
    overflow: hidden;
    width: 72px;
    max-width: 72px;
    height: 28px;
}

.store-payment-way-icon img {
    width: auto !important;
    height: 24px !important;
    max-width: 72px !important;
    max-height: 24px !important;
    object-fit: contain;
    display: block;
}

@media (max-width: 991.98px) {
    .store-payment-way-icon {
        width: 56px;
        max-width: 56px;
        height: 22px;
    }

    .store-payment-way-icon img {
        height: 18px !important;
        max-width: 56px !important;
        max-height: 18px !important;
    }
}

@media (max-width: 575.98px) {
    .store-payment-way-icon {
        width: 48px;
        max-width: 48px;
        height: 18px;
    }

    .store-payment-way-icon img {
        height: 16px !important;
        max-width: 48px !important;
        max-height: 16px !important;
    }
}

.store-gateway-widget {
    margin: 0.35rem 0 0.85rem;
    padding: 0.75rem 0.85rem;
    border: 1px dashed rgba(115, 188, 177, 0.35);
    border-radius: 12px;
    background: #f8fafc;
    width: 100%;
    max-width: 100%;
    overflow: hidden;
    box-sizing: border-box;
}

.store-gateway-widget[hidden] {
    display: none !important;
}

#tabby-widget-container,
#tabbyCardWrapper,
#tabbyCardWrapper > div,
#tamara-widget-container {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    overflow: hidden;
    box-sizing: border-box;
}

#tabby-widget-container *,
#tabbyCardWrapper *,
#tamara-widget-container * {
    max-width: 100% !important;
    box-sizing: border-box;
}

#tabby-widget-container iframe,
#tabbyCardWrapper iframe,
#tamara-widget-container iframe {
    width: 100% !important;
    max-width: 100% !important;
}

.store-payment-ways {
    min-width: 0;
    max-width: 100%;
}

.store-checkout-error {
    font-size: 0.88rem;
    font-weight: 600;
    margin-bottom: 0.65rem;
}

#store-checkout-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.45rem;
}

#store-checkout-btn:disabled {
    opacity: 0.65;
    cursor: not-allowed;
}

.store-checkout-page {
    padding: 1.25rem 0 2.5rem;
    overflow-x: hidden;
    max-width: 100%;
}

.store-checkout-card {
    background: #fff;
    border: 1px solid rgba(115, 188, 177, 0.16);
    border-radius: 18px;
    padding: 1.25rem 1.2rem 1.35rem;
    overflow: hidden;
    max-width: 100%;
}

.store-checkout-mbar {
    display: none;
}

@media (max-width: 767.98px) {
    .store-checkout-page {
        padding: 0.75rem 0 5.75rem;
    }

    .store-checkout-page > .container {
        padding-inline: 0.85rem;
    }

    .store-checkout-head {
        align-items: flex-start;
        margin-bottom: 0.85rem;
        gap: 0.5rem;
    }

    .store-checkout-head h1 {
        font-size: 1.35rem;
        line-height: 1.3;
    }

    .store-checkout-head .store-breadcrumb-mini {
        font-size: 0.75rem;
        margin-bottom: 0.25rem;
    }

    .store-checkout-back-desk,
    .store-checkout-pay-desk {
        display: none !important;
    }

    .store-checkout-page .row {
        --bs-gutter-y: 0.75rem;
    }

    .store-checkout-card {
        padding: 0.9rem 0.85rem 1rem;
        border-radius: 14px;
    }

    .store-checkout-card h2 {
        font-size: 1rem;
        margin-bottom: 0.2rem;
    }

    .store-checkout-lead {
        font-size: 0.8rem;
        margin-bottom: 0.75rem;
        line-height: 1.45;
    }

    .store-payment-ways {
        gap: 0.45rem;
        margin-bottom: 0.35rem;
    }

    .store-payment-way-body {
        padding: 0.7rem 0.8rem;
        border-radius: 10px;
        gap: 0.55rem;
    }

    .store-payment-way-title {
        font-size: 0.88rem;
        line-height: 1.3;
        min-width: 0;
        flex: 1 1 auto;
    }

    .store-payment-way input:checked + .store-payment-way-body {
        box-shadow: 0 0 0 2px rgba(var(--store-primary-rgb), 0.2);
    }

    .store-gateway-widget {
        padding: 0.5rem;
        margin: 0.2rem 0 0.55rem;
        border-radius: 10px;
    }

    .store-location-toolbar {
        flex-direction: column;
        align-items: stretch;
        gap: 0.45rem;
        margin-bottom: 0.65rem;
    }

    .store-location-toolbar .store-ghost-btn {
        width: 100%;
        justify-content: center;
    }

    .store-location-hint {
        font-size: 0.75rem;
        line-height: 1.4;
    }

    .store-checkout-map {
        height: min(48vh, 380px);
        min-height: 280px;
        border-radius: 0;
    }

    .store-checkout-summary {
        position: static;
        top: auto;
        padding: 1rem 0.9rem;
        border-radius: 14px;
        margin-top: 0.15rem;
    }

    .store-checkout-summary h2 {
        font-size: 1rem;
        margin-bottom: 0.75rem;
    }

    .store-checkout-item {
        font-size: 0.82rem;
        margin-bottom: 0.4rem;
        align-items: flex-start;
    }

    .store-checkout-item span {
        min-width: 0;
        overflow-wrap: anywhere;
    }

    .store-summary-row {
        font-size: 0.84rem;
        margin-bottom: 0.55rem;
        gap: 0.5rem;
    }

    .store-summary-row.total {
        font-size: 0.95rem;
        padding-top: 0.55rem;
    }

    .store-summary-note {
        font-size: 0.75rem;
        margin-bottom: 0.85rem;
    }

    .store-checkout-mbar {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 0.75rem;
        position: fixed;
        inset-inline: 0;
        bottom: 0;
        z-index: 1040;
        padding: 0.7rem 0.85rem calc(0.7rem + env(safe-area-inset-bottom, 0px));
        background: rgba(255, 255, 255, 0.96);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        border-top: 1px solid rgba(115, 188, 177, 0.22);
        box-shadow: 0 -10px 28px rgba(17, 50, 55, 0.1);
    }

    .store-checkout-mbar__meta {
        display: flex;
        flex-direction: column;
        gap: 0.1rem;
        min-width: 0;
    }

    .store-checkout-mbar__meta span {
        font-size: 0.72rem;
        color: var(--store-muted);
        font-weight: 600;
    }

    .store-checkout-mbar__meta strong {
        font-size: 1rem;
        font-weight: 800;
        color: var(--store-ink);
        white-space: nowrap;
    }

    .store-checkout-mbar__btn {
        flex: 1 1 auto;
        max-width: 62%;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 0.4rem;
        min-height: 46px;
        padding: 0.65rem 0.85rem;
        border-radius: 12px;
        font-size: 0.88rem;
        font-weight: 800;
        white-space: nowrap;
    }

    .store-checkout-mbar__btn span {
        overflow: hidden;
        text-overflow: ellipsis;
    }
}

@media (min-width: 768px) {
    .store-checkout-mbar {
        display: none !important;
    }
}

.store-checkout-card h2 {
    margin: 0 0 0.35rem;
    font-size: 1.1rem;
    font-weight: 800;
}

.store-checkout-lead {
    color: var(--store-muted);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.store-location-toolbar {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.85rem;
}

.store-location-hint {
    font-size: 0.82rem;
    color: #94a3b8;
}

.store-checkout-map {
    width: 100%;
    height: min(52vh, 440px);
    min-height: 320px;
    border-radius: 0;
    overflow: hidden;
    border: 0;
    background: transparent;
}

.store-checkout-card--address .pc-map-stage {
    margin-bottom: 0;
}

.store-checkout-card--address .pc-location-toolbar {
    margin-bottom: 0.85rem;
}

.store-checkout-items {
    margin-bottom: 1rem;
    padding-bottom: 0.85rem;
    border-bottom: 1px solid var(--store-line);
}

.store-checkout-item {
    display: flex;
    justify-content: space-between;
    gap: 0.75rem;
    font-size: 0.88rem;
    color: #475569;
    margin-bottom: 0.45rem;
}

.store-checkout-variant {
    color: #64748b;
    font-weight: 600;
}

.store-checkout-item strong {
    color: #0f172a;
    white-space: nowrap;
}

.store-checkout-summary {
    position: sticky;
    top: 96px;
}

.store-product-page {
    padding: 2rem 0;
}

.store-breadcrumb {
    display: flex;
    gap: 0.5rem;
    color: var(--store-muted);
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
}

.store-breadcrumb a {
    color: #8a9599;
    text-decoration: none;
    font-weight: 700;
}

.store-breadcrumb a:hover {
    color: var(--store-ink);
}

.store-product-gallery {
    background: #fff;
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid rgba(115, 188, 177, 0.14);
    aspect-ratio: 1;
}

.store-product-gallery img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.store-product-detail h1 {
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    font-weight: 800;
}

.store-product-cat {
    display: inline-block;
    margin-bottom: 0.75rem;
    color: var(--store-mint-dark);
    font-weight: 700;
    font-size: 0.85rem;
}

.store-product-desc {
    color: var(--store-muted);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.store-detail-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    align-items: center;
}

.store-favorite-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    border: 1.5px solid #e2e8f0;
    background: #fff;
    color: #64748b;
    font-weight: 700;
    border-radius: 10px;
    padding: 0.7rem 1rem;
}

.store-favorite-btn:hover {
    border-color: var(--store-secondary);
    color: var(--store-secondary-dark);
    background: var(--store-secondary-soft);
}

.store-favorite-btn.is-favorite {
    border-color: var(--store-secondary);
    background: var(--store-secondary);
    color: #fff;
}

.store-product-action-fav.is-favorite {
    background: #fff;
    color: var(--store-secondary);
}

.store-qv-tool.is-favorite {
    color: var(--store-secondary-dark);
}

.store-pagination {
    margin-top: 2rem;
}

.store-pagination .pagination {
    justify-content: center;
}

.store-load-more-wrap {
    display: flex;
    justify-content: center;
    margin: 2rem 0 0.5rem;
}

.store-load-more-btn {
    min-width: 200px;
    border-radius: 999px;
    border: 1px solid rgba(var(--store-primary-rgb), 0.45);
    background: #fff;
    color: var(--store-primary-dark);
    font-weight: 800;
    padding: 0.75rem 1.75rem;
    transition: background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}

.store-load-more-btn:hover {
    background: rgba(var(--store-primary-rgb), 0.1);
    color: var(--store-primary-dark);
}

.store-load-more-btn.is-loading,
.store-load-more-btn:disabled {
    opacity: 0.7;
    cursor: wait;
}

.store-alert {
    border-radius: 14px;
}

@media (max-width: 767.98px) {
    .store-cart-item {
        grid-template-columns: 72px 1fr;
    }

    .store-cart-side {
        grid-column: 1 / -1;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }

    .store-cart-thumb {
        width: 72px;
        height: 72px;
    }
}

.store-body .pc-banner {
    --pc-banner-accent: var(--store-primary);
    --pc-banner-ink: var(--store-ink);
}

.store-body .pc-banner-nav:hover {
    background: var(--store-primary);
    color: #fff;
}

/* Store homepage */
body.store-body.has-website-banners {
    --pc-fixed-nav-offset: 0px;
}

body.store-body.has-website-banners .pc-banner {
    margin-top: 0 !important;
    padding-top: 0 !important;
}

body.store-body.has-website-banners .store-header {
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 1px 0 rgba(17, 50, 55, 0.06);
}

@media (max-width: 991.98px) {
    body.store-body.has-website-banners .pc-banner--top {
        margin-top: 0.5rem !important;
        padding-top: 0 !important;
    }

    body.store-body:not(.has-website-banners) .store-main {
        padding-top: 0.5rem;
    }
}

@media (max-width: 991.98px) {
    .store-navbar .navbar-nav {
        padding: 0.75rem 0 0.35rem;
        gap: 0.15rem;
        align-items: stretch !important;
    }

    .store-navbar .nav-item {
        width: 100%;
    }

    .store-navbar .nav-link.btn-outline,
    .store-navbar .nav-link.btn-fill {
        display: block;
        text-align: center;
        margin: 0.35rem 0;
    }
}

.store-home-body {
    background: #fff;
}

.store-home {
    padding-bottom: 3rem;
}

.store-home-search {
    padding: 1.25rem 0 0.5rem;
    background: #fff;
}

.store-home-search .store-search {
    max-width: 640px;
    margin: 0 auto;
}

.store-by-pet {
    padding: 2.5rem 0 1.75rem;
    overflow: visible;
}

.store-section-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1.25rem;
}

.store-section-head.center {
    justify-content: center;
    text-align: center;
    flex-direction: column;
    gap: 0.35rem;
}

.store-section-head.center h2 {
    position: relative;
    padding-bottom: 0.85rem;
}

.store-section-head.center h2::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 88px;
    height: 2px;
    background: var(--store-secondary);
    border-radius: 999px;
}

.store-section-head.center h2::before {
    content: '';
    position: absolute;
    left: 50%;
    bottom: -4px;
    transform: translateX(-50%);
    width: 10px;
    height: 10px;
    border: 2px solid var(--store-secondary);
    border-radius: 50%;
    background: #fff;
    z-index: 1;
}

.store-brands-section {
    padding: 0;
    background: transparent;
    overflow: hidden;
}

.store-brands-marquee {
    position: relative;
    margin-top: 0.5rem;
    width: 100%;
    display: flex;
    justify-content: center;
    overflow: hidden;
    mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.store-brands-track {
    display: flex;
    width: max-content;
    min-width: 100%;
    justify-content: center;
    animation: store-brands-scroll 35s linear infinite;
}

.store-brands-marquee:hover .store-brands-track {
    animation-play-state: paused;
}

.store-brands-group {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2.5rem;
    flex: 0 0 auto;
    min-width: 100%;
    padding-inline: 1rem;
    box-sizing: border-box;
}

.store-brand-item {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    width: 120px;
    height: 64px;
    text-decoration: none;
    opacity: 0.95;
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.store-brand-item:hover {
    opacity: 1;
    transform: scale(1.04);
}

.store-brand-item img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
}

@keyframes store-brands-scroll {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

[dir="rtl"] .store-brands-track {
    animation-name: store-brands-scroll-rtl;
}

@keyframes store-brands-scroll-rtl {
    from { transform: translateX(0); }
    to { transform: translateX(50%); }
}

@media (max-width: 767.98px) {
    .store-brands-group {
        gap: 1.5rem;
    }

    .store-brand-item {
        width: 96px;
        height: 52px;
    }

    .store-brands-track {
        animation-duration: 28s;
    }
}

.store-section-head h2 {
    margin: 0;
    font-size: clamp(1.35rem, 2.8vw, 1.85rem);
    font-weight: 800;
    color: #1f2a2e;
}

.store-view-all {
    color: var(--store-secondary-dark);
    font-weight: 700;
    text-decoration: none;
    white-space: nowrap;
}

.store-view-all:hover {
    color: var(--store-primary-dark);
}

.store-pet-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: flex-start;
    gap: 1.25rem 1rem;
}

@media (min-width: 576px) {
    .store-pet-grid {
        gap: 1.35rem 1.15rem;
    }
}

@media (min-width: 992px) {
    .store-pet-grid {
        gap: 1.5rem 1.25rem;
    }
}

.store-pet-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.85rem;
    flex: 0 0 auto;
    width: min(42vw, 150px);
    max-width: 150px;
    text-decoration: none;
    color: var(--store-ink);
    background: transparent;
    border: 0;
    padding: 0.35rem 0.2rem 0;
    transition: transform 0.2s ease;
}

.store-pet-card:hover {
    transform: translateY(-4px);
    color: var(--store-ink);
    box-shadow: none;
    border: 0;
}

.store-pet-media {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1;
    border-radius: 1.15rem;
    overflow: visible;
    background: #f6e9df;
    border: 0;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    box-shadow: none;
}

.store-pet-media img {
    width: 92%;
    height: 108%;
    max-height: none;
    object-fit: contain;
    object-position: center bottom;
    display: block;
    margin-bottom: -6%;
    filter: drop-shadow(0 6px 12px rgba(17, 50, 55, 0.08));
    transition: transform 0.25s ease;
}

.store-pet-card:hover .store-pet-media img {
    transform: translateY(-4px) scale(1.03);
}

.store-pet-name {
    font-weight: 800;
    font-size: 0.98rem;
    text-align: center;
    color: var(--store-ink);
}

@media (min-width: 992px) {
    .store-pet-card {
        width: 160px;
        max-width: 160px;
    }
}

.store-home-section {
    padding: 2rem 0;
}

.store-home-section.alt {
    background: #f7faf9;
}

.store-products-swiper {
    padding: 0.25rem 2.75rem 0.5rem;
    position: relative;
    touch-action: pan-y;
}

.store-products-swiper .swiper-wrapper,
.store-products-swiper .swiper-slide,
.store-subcats-swiper,
.store-subcats-swiper .swiper-wrapper,
.store-subcats-swiper .swiper-slide,
.store-rail__swiper,
.store-rail__swiper .swiper-wrapper,
.pdp-bought-with__swiper,
.pdp-bought-with__swiper .swiper-wrapper {
    touch-action: pan-y;
}

.store-products-swiper .swiper-wrapper {
    align-items: stretch;
}

.store-products-swiper .swiper-slide {
    height: auto;
    display: flex;
}

.store-products-swiper .store-product-card {
    width: 100%;
}

.store-swiper-nav {
    position: absolute;
    top: 50%;
    z-index: 5;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border: 0;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.92);
    color: var(--store-ink);
    box-shadow: 0 8px 24px rgba(17, 50, 55, 0.12);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.2s ease, color 0.2s ease, opacity 0.2s ease;
}

.store-swiper-nav:hover {
    background: var(--store-mint);
    color: #fff;
}

.store-swiper-prev {
    inset-inline-end: 0;
    inset-inline-start: auto;
}

.store-swiper-next {
    inset-inline-start: 0;
    inset-inline-end: auto;
}

.store-swiper-nav.swiper-button-disabled {
    opacity: 0.35;
    pointer-events: none;
}

.store-swiper-prev::after,
.store-swiper-next::after {
    display: none !important;
    content: none !important;
}

@media (max-width: 575.98px) {
    .store-products-swiper {
        padding-inline: 2.25rem;
    }

    .store-swiper-nav {
        width: 36px;
        height: 36px;
        font-size: 0.85rem;
    }
}

.store-sale-badge {
    position: absolute;
    top: 10px;
    inset-inline-start: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 1.85rem;
    height: 1.85rem;
    padding: 0;
    background: var(--store-pink);
    color: var(--store-secondary-dark);
    font-size: 0.72rem;
    border-radius: 999px;
    z-index: 2;
}

.store-sale-badge i {
    line-height: 1;
}

.store-price-old {
    text-decoration: line-through;
    color: #94a3b8;
    font-size: 0.85rem;
    font-weight: 600;
    margin-inline-end: 0.35rem;
}

.store-reviews-section {
    background: linear-gradient(180deg, #f7faf9 0%, #fff 100%);
}

.store-review-card {
    background: #fff;
    border: 1px solid rgba(115, 188, 177, 0.16);
    border-radius: 18px;
    padding: 1.25rem;
    height: 100%;
    text-align: center;
}

.store-review-avatar {
    width: 54px;
    height: 54px;
    margin: 0 auto 0.75rem;
    border-radius: 50%;
    background: rgba(115, 188, 177, 0.18);
    color: var(--store-mint-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.2rem;
}

.store-review-card h3 {
    font-size: 1rem;
    font-weight: 800;
    margin-bottom: 0.35rem;
}

.store-review-stars {
    color: #e2e8f0;
    margin-bottom: 0.65rem;
    font-size: 0.85rem;
}

.store-review-stars .on {
    color: var(--store-secondary);
}

.store-review-card p {
    color: var(--store-muted);
    margin: 0;
    line-height: 1.6;
    font-size: 0.92rem;
}

.store-hero.compact {
    padding: 1.25rem 0 0.5rem;
}

.store-home-body .store-main {
    padding-bottom: 0;
}

/* Category page */
.store-category-page {
    padding: 1rem 0 2.5rem;
    background: #fff;
}

.store-breadcrumb-top {
    margin: 0.25rem 0 1rem;
    color: #8a9599;
}

.store-breadcrumb-mini {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.82rem;
    color: #8a9599;
}

.store-category-page .store-breadcrumb-mini a,
.store-category-page .store-breadcrumb-top a,
.store-breadcrumb-mini.store-breadcrumb-top a,
.store-breadcrumb-mini a,
.store-breadcrumb-top a,
.store-breadcrumb-mini a:link,
.store-breadcrumb-top a:link,
.store-breadcrumb-mini a:visited,
.store-breadcrumb-top a:visited {
    color: #8a9599 !important;
    text-decoration: none;
    font-weight: 600;
}

.store-category-page .store-breadcrumb-mini a:hover,
.store-category-page .store-breadcrumb-top a:hover,
.store-breadcrumb-mini.store-breadcrumb-top a:hover,
.store-breadcrumb-mini a:hover,
.store-breadcrumb-top a:hover,
.store-breadcrumb-mini a:focus,
.store-breadcrumb-top a:focus {
    color: var(--store-ink) !important;
    text-decoration: none;
}

.store-subcats {
    position: relative;
    display: flex;
    align-items: center;
    gap: 0.35rem;
    margin-bottom: 1.5rem;
    padding: 0.25rem 0 0.75rem;
    background: transparent;
}

.store-subcats-swiper {
    flex: 1;
    min-width: 0;
    padding: 0.25rem 0 0.5rem;
}

.store-subcats-nav {
    flex: 0 0 auto;
    width: 28px;
    height: 28px;
    border: 0;
    background: transparent;
    color: #94a3b8;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.store-subcats-nav:hover {
    color: #475569;
    background: #f1f5f9;
}

.store-subcats-nav.swiper-button-disabled {
    opacity: 0.35;
    pointer-events: none;
}

.store-subcat-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.55rem;
    text-decoration: none;
    color: inherit;
    text-align: center;
    transition: transform 0.2s ease;
}

.store-subcat-card:hover {
    transform: translateY(-2px);
    color: inherit;
}

.store-subcat-media {
    width: 74px;
    height: 74px;
    border-radius: 18px;
    overflow: hidden;
    background: #f7f3ea;
    border: 1px solid rgba(148, 163, 184, 0.18);
    display: flex;
    align-items: center;
    justify-content: center;
}

@media (min-width: 768px) {
    .store-subcat-media {
        width: 86px;
        height: 86px;
    }
}

.store-subcat-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.store-subcat-card.active .store-subcat-media {
    border-color: var(--store-primary);
    box-shadow: 0 0 0 2px rgba(var(--store-primary-rgb), 0.25);
}

.store-subcat-name {
    font-size: 0.78rem;
    font-weight: 700;
    line-height: 1.35;
    color: var(--store-ink);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    max-width: 100%;
}

.store-subcat-card.active .store-subcat-name {
    color: var(--store-primary-dark);
}

.store-category-page .store-catalog {
    padding-top: 0;
}

.store-catalog-layout {
    display: grid;
    gap: 1.25rem;
}

@media (min-width: 992px) {
    .store-catalog-layout {
        grid-template-columns: 280px minmax(0, 1fr);
        gap: 2rem;
        align-items: start;
    }
}

.store-catalog-head {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 0.85rem 1rem;
    margin-bottom: 1.15rem;
}

.store-catalog-head h1 {
    margin: 0;
    font-size: clamp(1.5rem, 2.6vw, 2rem);
    font-weight: 800;
    color: #0f172a;
}

.store-catalog-head-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.65rem;
}

.store-sort-form {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
}

.store-sort-label {
    margin: 0;
    font-size: 0.92rem;
    font-weight: 700;
    color: var(--store-muted);
    white-space: nowrap;
}

.store-sort-select {
    min-width: 160px;
    border-radius: 8px;
    border: 1px solid var(--store-line);
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--store-ink);
    background-color: #fff;
    padding: 0.45rem 2rem 0.45rem 0.75rem;
    cursor: pointer;
}

.store-sort-select:focus {
    border-color: var(--store-primary);
    box-shadow: 0 0 0 3px rgba(var(--store-primary-rgb), 0.2);
    outline: none;
}

.store-filter-toggle {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    border: 1px solid var(--store-line);
    background: #fff;
    color: var(--store-ink);
    font-weight: 700;
    border-radius: 8px;
    padding: 0.45rem 0.85rem;
}

.store-filter-toggle:hover {
    background: rgba(var(--store-primary-rgb), 0.08);
    border-color: var(--store-primary);
    color: var(--store-primary-dark);
}

@media (min-width: 992px) {
    .store-filter-toggle {
        display: none;
    }
}

.store-filters-panel {
    background: #fff;
    border: 0;
    border-radius: 0;
    padding: 0 0 0.5rem;
    position: sticky;
    top: 96px;
    border-inline-end: 2px solid rgba(115, 188, 177, 0.55);
    padding-inline-end: 1.15rem;
}

.store-facets-accent {
    width: 42px;
    height: 3px;
    border-radius: 999px;
    background: var(--store-mint, #73bcb1);
    margin-bottom: 0.65rem;
}

.store-facets-title {
    margin: 0 0 0.85rem;
    font-size: 1.05rem;
    font-weight: 800;
    color: #0f172a;
}

.store-facets-search {
    margin-bottom: 0.85rem;
}

.store-facets-search .form-control {
    border-radius: 8px;
    border: 1px solid #e2e8f0;
    font-size: 0.88rem;
    padding: 0.55rem 0.75rem;
}

.store-facets-search .form-control:focus {
    border-color: var(--store-mint, #73bcb1);
    box-shadow: 0 0 0 3px rgba(115, 188, 177, 0.16);
}

.store-facets-list {
    list-style: none;
    margin: 0;
    padding: 0;
    max-height: 420px;
    overflow: auto;
}

.store-facets-item {
    margin: 0;
}

.store-facets-item.is-hidden {
    display: none;
}

.store-facets-link {
    display: flex;
    align-items: flex-start;
    gap: 0.55rem;
    padding: 0.42rem 0.15rem;
    text-decoration: none;
    color: var(--store-muted);
    font-size: 0.9rem;
    font-weight: 600;
}

.store-facets-link:hover {
    color: var(--store-ink);
}

.store-facets-check {
    width: 16px;
    height: 16px;
    margin-top: 0.15rem;
    border: 1.5px solid var(--store-line);
    border-radius: 3px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 0.65rem;
    color: #fff;
    background: #fff;
}

.store-facets-item.is-active .store-facets-check {
    background: var(--store-primary);
    border-color: var(--store-primary);
}

.store-facets-count {
    color: var(--store-muted);
    font-weight: 600;
}

.store-facets-item.is-active .store-facets-label {
    color: var(--store-ink);
    font-weight: 700;
}

.store-facets-empty {
    color: #94a3b8;
    font-size: 0.88rem;
    padding: 0.5rem 0;
}

.store-facets-extra {
    margin-top: 1.15rem;
    padding-top: 1rem;
    border-top: 1px solid #e2e8f0;
}

.store-filter-block + .store-filter-block {
    margin-top: 1rem;
}

.store-filter-title {
    margin: 0 0 0.65rem;
    font-size: 0.9rem;
    font-weight: 800;
    color: #0f172a;
}

.store-filter-check {
    display: flex;
    align-items: flex-start;
    gap: 0.55rem;
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--store-muted);
    margin: 0;
}

.store-filter-check input {
    margin-top: 0.2rem;
    accent-color: var(--store-primary);
    flex-shrink: 0;
}

.store-filter-sale {
    padding: 0.55rem 0.65rem;
    border-radius: 10px;
    background: rgba(var(--store-secondary-rgb), 0.12);
}

.store-filter-price-fields {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.55rem;
}

.store-filter-price-fields label {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
    margin: 0;
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--store-muted);
}

.store-filter-price-fields input {
    width: 100%;
    border: 1px solid var(--store-line);
    border-radius: 8px;
    padding: 0.45rem 0.55rem;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--store-ink);
}

.store-filter-price-fields input:focus {
    outline: none;
    border-color: var(--store-primary);
    box-shadow: 0 0 0 3px rgba(var(--store-primary-rgb), 0.18);
}

.store-filter-actions {
    display: grid;
    gap: 0.5rem;
    margin-top: 1rem;
}

.store-filter-apply {
    background: var(--store-primary);
    color: #fff;
    font-weight: 800;
    border-radius: 10px;
    padding: 0.65rem 1rem;
    border: 0;
}

.store-filter-apply:hover {
    background: var(--store-primary-dark);
    color: #fff;
}

.store-filter-reset {
    background: #fff;
    color: var(--store-muted);
    font-weight: 700;
    border-radius: 10px;
    padding: 0.55rem 1rem;
    border: 1px solid var(--store-line);
    text-align: center;
}

.store-filter-reset:hover {
    border-color: var(--store-primary);
    color: var(--store-primary-dark);
}

.store-filters-drawer {
    position: fixed;
    inset: 0;
    z-index: 1080;
}

.store-filters-drawer[hidden] {
    display: none !important;
}

.store-filters-drawer-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(15, 23, 42, 0.45);
}

.store-filters-drawer-panel {
    position: absolute;
    inset-block: 0;
    inset-inline-start: 0;
    width: min(360px, 92vw);
    background: #fff;
    box-shadow: 0 16px 40px rgba(15, 23, 42, 0.18);
    display: flex;
    flex-direction: column;
    padding: 1rem 1.05rem 1.25rem;
    animation: storeFilterSlide 0.22s ease;
}

@keyframes storeFilterSlide {
    from {
        transform: translateX(12%);
        opacity: 0.6;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

html[dir="ltr"] .store-filters-drawer-panel {
    inset-inline-start: auto;
    inset-inline-end: 0;
    animation-name: storeFilterSlideLtr;
}

@keyframes storeFilterSlideLtr {
    from {
        transform: translateX(-12%);
        opacity: 0.6;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

.store-filters-panel-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    margin-bottom: 0.85rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid #e2e8f0;
}

.store-filters-panel-head h2 {
    margin: 0;
    font-size: 1.05rem;
    font-weight: 800;
}

.store-filters-drawer-close {
    width: 36px;
    height: 36px;
    border: 0;
    border-radius: 50%;
    background: #f1f5f9;
    color: #475569;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.store-filters-drawer-body {
    overflow: auto;
    flex: 1;
    padding-bottom: 0.5rem;
}

.store-filters-drawer .store-filters-panel,
.store-filters-drawer .store-facets {
    border: 0;
    padding: 0;
}

.store-filters-drawer .store-filters-panel {
    border-inline-end: 0;
    padding-inline-end: 0;
    position: static;
}

body.store-filters-open {
    overflow: hidden;
}

/* Quick view dialog */
body.store-qv-open {
    overflow: hidden;
}

.store-qv {
    position: fixed;
    inset: 0;
    z-index: 1200;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.store-qv[hidden] {
    display: none !important;
}

.store-qv-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(15, 23, 42, 0.55);
}

.store-qv-dialog {
    position: relative;
    width: min(920px, 100%);
    max-height: min(92vh, 720px);
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 24px 64px rgba(15, 23, 42, 0.28);
    overflow: auto;
    z-index: 1;
}

.store-qv-close {
    position: absolute;
    top: 0.85rem;
    inset-inline-end: 0.85rem;
    width: 36px;
    height: 36px;
    border: 0;
    border-radius: 50%;
    background: #f1f5f9;
    color: #475569;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    z-index: 3;
}

.store-qv-close:hover {
    background: #e2e8f0;
    color: #0f172a;
}

.store-qv-loading {
    min-height: 280px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--store-mint-dark);
    font-size: 1.6rem;
}

.store-qv-content {
    display: grid;
    grid-template-columns: 1.05fr 1fr;
    gap: 0;
    min-height: 420px;
}

.store-qv-content[hidden] {
    display: none !important;
}

.store-qv-gallery {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fafafa;
    padding: 2rem 2.5rem;
    border-inline-start: 1px solid var(--store-line);
}

.store-qv-gallery img {
    max-width: 100%;
    max-height: 420px;
    object-fit: contain;
}

.store-qv-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 34px;
    height: 34px;
    border: 0;
    background: transparent;
    color: #94a3b8;
    font-size: 1.15rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.store-qv-nav:hover {
    color: #334155;
}

.store-qv-nav.prev {
    inset-inline-start: 0.65rem;
}

.store-qv-nav.next {
    inset-inline-end: 0.65rem;
}

.store-qv-info {
    position: relative;
    padding: 1.75rem 1.5rem 1.35rem;
    display: flex;
    flex-direction: column;
    gap: 0.55rem;
}

.store-qv-toolbar {
    display: flex;
    align-items: center;
    gap: 0.55rem;
    margin-bottom: 0.15rem;
}

.store-qv-tool {
    width: 34px;
    height: 34px;
    border: 0;
    background: transparent;
    color: #64748b;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 1.05rem;
}

.store-qv-tool:hover {
    color: var(--store-mint-dark);
}

.store-qv-brand {
    margin: 0;
    text-align: center;
    font-size: 0.92rem;
    font-weight: 700;
    color: #64748b;
}

.store-qv-info h2 {
    margin: 0.15rem 0 0;
    font-size: 1.15rem;
    line-height: 1.55;
    font-weight: 800;
    color: var(--store-ink);
}

.store-qv-tax {
    margin: 0;
    font-size: 0.82rem;
    color: #94a3b8;
}

.store-qv-price {
    display: flex;
    align-items: baseline;
    gap: 0.35rem;
    flex-wrap: wrap;
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--store-ink);
}

.store-qv-price strong {
    font-weight: 800;
}

.store-qv-price-old {
    font-size: 0.95rem;
    font-weight: 600;
    color: #94a3b8;
    text-decoration: line-through;
}

.store-qv-stock {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    color: var(--store-primary-dark);
    font-weight: 700;
    font-size: 0.92rem;
}

.store-qv-stock.is-out {
    color: #be123c;
}

.store-qv-actions [data-oos="1"],
.store-qv-actions button:disabled {
    opacity: 0.75;
    cursor: not-allowed;
    background: #e5e7eb !important;
    color: #6b7280 !important;
}

.store-qv-options {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    margin-top: 0.35rem;
}

.store-qv-options[hidden] {
    display: none !important;
}

.store-qv-option {
    font-size: 0.85rem;
    padding: 0.35rem 0.7rem;
}

.store-qv-option-hint {
    margin-top: 0.35rem;
}

.store-qv-desc {
    margin: 0.15rem 0 0;
    color: #64748b;
    font-size: 0.9rem;
    line-height: 1.7;
}

.store-qv-more {
    color: var(--store-secondary-dark);
    font-weight: 700;
    text-decoration: none;
    margin-inline-start: 0.25rem;
}

.store-qv-more:hover {
    text-decoration: underline;
}

.store-qv-actions {
    margin-top: auto;
    padding-top: 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.store-qv-qty {
    flex: 0 0 auto;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    padding: 0.15rem;
}

.store-qv-add {
    flex: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    border: 1.5px solid var(--store-secondary);
    background: #fff;
    color: var(--store-secondary);
    font-weight: 800;
    border-radius: 10px;
    padding: 0.7rem 1rem;
}

.store-qv-add:hover {
    background: var(--store-secondary-soft);
    color: var(--store-secondary-dark);
    border-color: var(--store-secondary-dark);
}

@media (max-width: 767.98px) {
    .store-qv {
        padding: 0.5rem;
        align-items: flex-end;
    }

    .store-qv-dialog {
        width: 100%;
        max-height: 94vh;
        border-radius: 16px 16px 0 0;
    }

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

    .store-qv-gallery {
        border-inline-start: 0;
        border-bottom: 1px solid var(--store-line);
        padding: 1.25rem 2rem;
        min-height: 220px;
    }

    .store-qv-gallery img {
        max-height: 240px;
    }

    .store-qv-info {
        padding: 1.15rem 1rem 1.25rem;
    }

    .store-qv-actions {
        flex-wrap: wrap;
    }

    .store-qv-add {
        flex: 1 1 100%;
    }
}

/* Fly-to-cart + added dialog */
.store-fly-img {
    max-width: none;
}

.store-cart-btn.is-pop {
    animation: store-cart-pop 0.42s ease;
}

@keyframes store-cart-pop {
    0% { transform: scale(1); }
    35% { transform: scale(1.22); }
    70% { transform: scale(0.92); }
    100% { transform: scale(1); }
}

.store-added {
    position: fixed;
    inset: 0;
    z-index: 1210;
    pointer-events: none;
}

.store-added[hidden] {
    display: none !important;
}

.store-added-backdrop {
    position: absolute;
    inset: 0;
    background: transparent;
    pointer-events: auto;
}

.store-added-dialog {
    position: fixed;
    z-index: 1;
    width: min(420px, calc(100vw - 1.25rem));
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 18px 48px rgba(15, 23, 42, 0.2);
    overflow: hidden;
    pointer-events: auto;
    animation: store-added-in 0.28s ease;
}

@keyframes store-added-in {
    from {
        opacity: 0;
        transform: translateY(-8px) scale(0.98);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.store-added-progress {
    position: absolute;
    top: 0;
    inset-inline: 0;
    height: 3px;
    background: var(--store-primary);
    transform-origin: right center;
    transform: scaleX(1);
}

[dir="ltr"] .store-added-progress {
    transform-origin: left center;
}

.store-added-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    padding: 1rem 1.15rem 0.65rem;
}

.store-added-close {
    order: 2;
    width: 32px;
    height: 32px;
    border: 0;
    background: transparent;
    color: #94a3b8;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.store-added-close:hover {
    color: #475569;
}

.store-added-title-wrap {
    order: 1;
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    color: var(--store-ink);
    font-size: 1rem;
}

.store-added-check {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: var(--store-primary);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    flex: 0 0 auto;
}

.store-added-body {
    display: grid;
    grid-template-columns: 72px 1fr auto;
    gap: 0.85rem;
    align-items: center;
    padding: 0.35rem 1.15rem 1rem;
}

.store-added-thumb {
    width: 72px;
    height: 72px;
    border-radius: 12px;
    border: 1px solid #eef2f7;
    background: #fff;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.store-added-thumb img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.store-added-name {
    margin: 0;
    font-size: 0.92rem;
    font-weight: 700;
    line-height: 1.55;
    color: var(--store-ink);
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.store-added-price {
    white-space: nowrap;
    font-weight: 800;
    color: var(--store-ink);
    font-size: 1rem;
}

.store-added-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
    padding: 0 1.15rem 1.15rem;
}

.store-added-cart,
.store-added-checkout {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.45rem;
    border-radius: 12px;
    font-weight: 800;
    padding: 0.8rem 0.75rem;
    text-decoration: none;
}

.store-added-cart {
    border: 1.5px solid #e2e8f0;
    background: #fff;
    color: #334155;
}

.store-added-cart:hover {
    border-color: #cbd5e1;
    background: #f8fafc;
    color: #0f172a;
}

.store-added-checkout {
    border: 0;
    background: var(--store-secondary);
    color: #fff;
}

.store-added-checkout:hover {
    background: var(--store-secondary-dark);
    color: #fff;
}

@media (max-width: 575.98px) {
    .store-added-dialog {
        width: calc(100vw - 1rem);
    }

    .store-added-body {
        grid-template-columns: 64px 1fr;
    }

    .store-added-price {
        grid-column: 2;
    }

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

/* ========== Product Detail Page ========== */
.pdp {
    padding: 1.5rem 0 5.5rem;
    background: #fff;
}

.pdp .container {
    max-width: 1140px;
}

.pdp-breadcrumb {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.35rem;
    margin-bottom: 1.5rem;
    font-size: 0.86rem;
    color: #8a9599;
}

.pdp-breadcrumb a {
    color: #8a9599;
    text-decoration: none;
}

.pdp-breadcrumb a:hover {
    color: var(--store-ink);
}

.pdp-breadcrumb__sep {
    opacity: 0.7;
}

.pdp-breadcrumb__current {
    color: var(--store-ink);
    max-width: min(420px, 55vw);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.pdp-top {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 2rem 3rem;
    align-items: start;
    margin-bottom: 2.5rem;
}

.pdp-gallery {
    display: grid;
    gap: 0.75rem;
}

.pdp-gallery__main {
    position: relative;
    background: #fff;
    border-radius: 0.5rem;
    overflow: hidden;
    aspect-ratio: 1;
}

.pdp-gallery__main img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    padding: 0.5rem;
}

.pdp-badge {
    position: absolute;
    top: 0.75rem;
    inset-inline-start: 0.75rem;
    z-index: 2;
    min-width: 2.5rem;
    padding: 0.3rem 0.55rem;
    border-radius: 999px;
    font-size: 0.78rem;
    font-weight: 800;
}

.pdp-badge--sale {
    background: var(--store-secondary);
    color: #fff;
}

.pdp-gallery__thumbs {
    display: flex;
    gap: 0.5rem;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.pdp-thumb {
    flex: 0 0 4.25rem;
    width: 4.25rem;
    height: 4.25rem;
    padding: 0;
    border-radius: 0.5rem;
    border: 1px solid #e8eeee;
    background: #fff;
    overflow: hidden;
    cursor: pointer;
}

.pdp-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.pdp-thumb.is-active,
.pdp-thumb:hover {
    border-color: var(--store-primary);
}

.pdp-info {
    padding-top: 0.25rem;
}

.pdp-toolbar {
    display: flex;
    gap: 0.55rem;
    margin-bottom: 0.85rem;
}

.pdp-icon-btn {
    width: 2.35rem;
    height: 2.35rem;
    border-radius: 50%;
    border: 1px solid #e5eaea;
    background: #fff;
    color: var(--store-ink);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: color 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.pdp-icon-btn:hover,
.pdp-icon-btn.is-favorite {
    color: var(--store-secondary);
    border-color: color-mix(in srgb, var(--store-secondary) 45%, #fff);
}

.pdp-icon-btn.is-copied {
    color: var(--store-primary-dark);
    border-color: var(--store-primary);
}

.pdp-brand-link {
    display: inline-block;
    margin-bottom: 0.45rem;
    color: var(--store-primary-dark);
    font-weight: 700;
    font-size: 0.92rem;
    text-decoration: none;
}

.pdp-brand-link:hover {
    color: var(--store-ink);
}

.pdp-title {
    font-size: clamp(1.2rem, 2.4vw, 1.55rem);
    font-weight: 800;
    line-height: 1.45;
    color: var(--store-ink);
    margin: 0 0 1rem;
}

.pdp-price {
    margin-bottom: 0.85rem;
}

.pdp-price__old {
    display: block;
    margin-bottom: 0.2rem;
    color: #9aa6ab;
    text-decoration: line-through;
    font-size: 0.95rem;
    font-weight: 600;
}

.pdp-price__row {
    display: flex;
    align-items: baseline;
    gap: 0.4rem;
}

.pdp-price__current {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--store-ink);
    line-height: 1;
}

.pdp-price__currency {
    font-size: 1rem;
    font-weight: 700;
    color: var(--store-ink);
}

.pdp-stock {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    margin-bottom: 1.15rem;
    font-size: 0.95rem;
    font-weight: 700;
}

.pdp-stock--in {
    color: #1f9d6a;
}

.pdp-stock--out {
    color: #e11d48;
}

.pdp-installments {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 0.75rem;
    margin-bottom: 1.35rem;
}

.pdp-installment {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    padding: 0.85rem 0.9rem;
    border: 1px solid #e6ecec;
    border-radius: 0.65rem;
    background: #fff;
}

.pdp-installment__logo {
    width: 3.1rem;
    height: auto;
    object-fit: contain;
    flex-shrink: 0;
}

.pdp-installment p {
    margin: 0;
    font-size: 0.82rem;
    line-height: 1.55;
    color: #4d5c61;
    font-weight: 600;
}

.pdp-tabby {
    margin-bottom: 1rem;
}

.pdp-info-description {
    margin: 0 0 1.35rem;
    padding-top: 0.25rem;
}

.pdp-info-description__title {
    font-size: 1.05rem;
    font-weight: 800;
    color: var(--store-ink);
    margin: 0 0 0.65rem;
}

.pdp-specs {
    margin: 0 0 1.35rem;
    display: grid;
    gap: 0.85rem;
}

.pdp-specs__row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid #eef2f2;
    font-size: 0.95rem;
}

.pdp-specs__row:last-child {
    border-bottom: 0;
    padding-bottom: 0;
}

.pdp-specs__row dt {
    margin: 0;
    color: #7a878c;
    font-weight: 600;
}

.pdp-specs__row dd {
    margin: 0;
    color: var(--store-ink);
    font-weight: 700;
    text-align: end;
}

.pdp-attributes {
    display: grid;
    gap: 1rem;
    margin: 0.25rem 0 0.35rem;
}

.pdp-attr__label {
    font-weight: 800;
    color: var(--store-ink);
    margin-bottom: 0.55rem;
}

.pdp-attr__options {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.pdp-attr__option {
    border: 1px solid #d7e0e0;
    background: #fff;
    color: var(--store-ink);
    border-radius: 0.55rem;
    min-width: 3.25rem;
    padding: 0.55rem 0.9rem;
    font-weight: 700;
    font-size: 0.92rem;
    transition: border-color 0.15s ease, background 0.15s ease, color 0.15s ease;
}

.pdp-attr__option:hover,
.pdp-attr__option:focus {
    border-color: var(--store-secondary);
    color: var(--store-secondary-dark);
}

.pdp-attr__option.is-active {
    border-color: var(--store-secondary);
    background: rgba(var(--store-secondary-rgb), 0.12);
    color: var(--store-secondary-dark);
    box-shadow: 0 0 0 1px var(--store-secondary);
}

.pdp-stock--out {
    color: #b42318;
}

.store-cart-variant {
    color: #6b7280;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 0.35rem;
}

.pdp-buy {
    display: grid;
    gap: 0.85rem;
}

.pdp-qty-block {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.pdp-qty-label {
    margin: 0;
    font-weight: 700;
    color: var(--store-ink);
}

.pdp-qty {
    background: #f4f7f7;
    border: 1px solid #e6ecec;
}

.pdp-add-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.55rem;
    width: 100%;
    border: 0;
    border-radius: 0.65rem;
    background: var(--store-secondary);
    color: #fff;
    font-weight: 800;
    font-size: 1.05rem;
    padding: 0.95rem 1.25rem;
    box-shadow: 0 8px 18px rgba(var(--store-secondary-rgb), 0.28);
    transition: background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.pdp-add-btn:hover,
.pdp-add-btn:focus {
    background: var(--store-secondary-dark);
    color: #fff;
    box-shadow: 0 10px 22px rgba(var(--store-secondary-rgb), 0.36);
    transform: translateY(-1px);
}

.pdp-add-btn:active {
    transform: translateY(0);
    box-shadow: 0 4px 12px rgba(var(--store-secondary-rgb), 0.22);
}

.pdp-section {
    background: #fff;
    border-top: 1px solid #eef2f2;
    padding: 1.75rem 0 0.5rem;
    margin-bottom: 1.25rem;
}

.pdp-section__title {
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--store-ink);
    margin: 0 0 1rem;
}

.pdp-section__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.pdp-description {
    color: #4d5c61;
    font-size: 1rem;
    line-height: 1.9;
}

.pdp-description p {
    margin-bottom: 0.85rem;
}

.pdp-description ul,
.pdp-description ol {
    padding-inline-start: 1.25rem;
    margin-bottom: 0.85rem;
}

.store-rail,
.pdp-bought-with {
    margin: 2rem 0 1rem;
    padding-top: 0.5rem;
}

.store-home-section.store-rail {
    margin: 0;
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
}

.store-rail__head,
.pdp-bought-with__head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1.15rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid #e5eaea;
}

.store-rail__title,
.pdp-bought-with__title {
    position: relative;
    margin: 0;
    display: inline-flex;
    align-items: center;
    background: transparent;
    color: var(--store-ink);
    font-size: 1.15rem;
    font-weight: 800;
    padding: 0.15rem 0 0.35rem;
    border-radius: 0;
    line-height: 1.3;
}

.store-rail__title::after,
.pdp-bought-with__title::after {
    content: "";
    position: absolute;
    inset-inline-start: 0;
    bottom: -0.75rem;
    width: 3rem;
    height: 3px;
    background: var(--store-secondary);
    border-radius: 2px;
}

.store-rail__nav,
.pdp-bought-with__nav {
    display: inline-flex;
    align-items: center;
    gap: 0.85rem;
    margin-bottom: 0.15rem;
}

.store-rail__view-all {
    color: var(--store-muted);
    font-weight: 700;
    font-size: 0.88rem;
    text-decoration: none;
    white-space: nowrap;
    margin-inline-end: 0.25rem;
}

.store-rail__view-all:hover {
    color: var(--store-primary-dark);
}

.store-rail__arrow,
.pdp-bought-with__arrow {
    width: 1.75rem;
    height: 1.75rem;
    padding: 0;
    border: 0;
    background: transparent;
    color: var(--store-ink);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    cursor: pointer;
    opacity: 0.85;
    transition: opacity 0.2s ease, color 0.2s ease;
}

.store-rail__arrow:hover,
.pdp-bought-with__arrow:hover {
    opacity: 1;
    color: var(--store-primary-dark);
}

.store-rail__arrow.swiper-button-disabled,
.pdp-bought-with__arrow.swiper-button-disabled {
    opacity: 0.28;
    pointer-events: none;
}

.store-rail__swiper,
.pdp-bought-with__swiper {
    padding-inline: 0;
}

.store-rail__swiper .store-swiper-nav,
.pdp-bought-with__swiper .store-swiper-nav {
    display: none;
}

@media (max-width: 767.98px) {
    .store-rail__title,
    .pdp-bought-with__title {
        font-size: 1rem;
        padding: 0.15rem 0 0.35rem;
    }

    .store-rail__nav,
    .pdp-bought-with__nav {
        gap: 0.55rem;
    }

    .store-rail__view-all {
        display: none;
    }
}

.pdp-sticky {
    position: fixed;
    inset-inline: 0;
    bottom: 0;
    z-index: 1040;
    display: none;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    padding: 0.75rem 1rem calc(0.75rem + env(safe-area-inset-bottom));
    background: rgba(255, 255, 255, 0.97);
    border-top: 1px solid #e6ecec;
    backdrop-filter: blur(10px);
    box-shadow: 0 -6px 20px rgba(17, 50, 55, 0.06);
}

.pdp-sticky__price {
    display: flex;
    align-items: baseline;
    gap: 0.35rem;
    color: var(--store-ink);
}

.pdp-sticky__price strong {
    font-size: 1.2rem;
    font-weight: 800;
}

.pdp-sticky__price span {
    color: #7a878c;
    font-weight: 700;
    font-size: 0.9rem;
}

.pdp-sticky__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    border: 0;
    border-radius: 0.65rem;
    background: var(--store-secondary);
    color: #fff;
    font-weight: 800;
    padding: 0.75rem 1.15rem;
    white-space: nowrap;
    box-shadow: 0 6px 14px rgba(var(--store-secondary-rgb), 0.25);
}

.pdp-sticky__btn:hover {
    background: var(--store-secondary-dark);
    color: #fff;
}

@media (max-width: 991.98px) {
    .pdp-top {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }

    .pdp-sticky {
        display: flex;
    }

    .pdp-installments {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 575.98px) {
    .pdp {
        padding-top: 0.85rem;
    }

    .pdp-title {
        font-size: 1.15rem;
    }

    .pdp-thumb {
        flex-basis: 3.6rem;
        width: 3.6rem;
        height: 3.6rem;
    }

    .pdp-qty-block {
        flex-direction: column;
        align-items: stretch;
    }

    .pdp-qty {
        justify-content: center;
        width: 100%;
    }
}
