/* ============================================
   ADDONXPERT Plugin Store — Styles
   Uses the site's CSS variables for light/dark
   consistency. Custom classes for store layout.
   ============================================ */

/* --- Store Section --- */
.store-section {
    padding: 40px 0 80px;
}

/* --- Store Header --- */
.store-header {
    text-align: center;
    margin-bottom: 40px;
}

.store-title {
    font-family: var(--heading-font-family), sans-serif;
    font-weight: var(--heading-font-weight);
    font-size: 2.2rem;
    color: var(--text-primary);
    margin: 0 0 8px;
    letter-spacing: 0.5px;
}

.store-subtitle {
    font-family: var(--font-family), sans-serif;
    font-size: 1rem;
    color: var(--text-trimary);
    font-weight: 400;
    margin: 0;
}

/* --- Filters Bar --- */
.store-filters {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
}

.store-filters-group {
    display: flex;
    align-items: center;
    gap: 6px;
    flex-wrap: wrap;
}

.store-filters-label {
    font-family: var(--font-family), sans-serif;
    font-size: 0.75rem;
    color: var(--text-trimary);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-right: 4px;
    white-space: nowrap;
    font-weight: 700;
}

.store-filter-btn {
    font-family: var(--font-family), sans-serif;
    font-size: 0.82rem;
    font-weight: 500;
    padding: 6px 14px;
    border-radius: var(--el-border-radius-min);
    border: 1px solid var(--border-color);
    background: var(--primary-color);
    color: var(--text-trimary);
    cursor: pointer;
    transition: all 0.2s;
    white-space: nowrap;
    outline: none;
}

.store-filter-btn:focus,
.store-filter-btn:focus-visible {
    outline: none;
    box-shadow: none;
}

.store-filter-btn:hover {
    border-color: var(--main-color);
    color: var(--main-color);
}

.store-filter-btn.active {
    background: var(--main-color);
    border-color: var(--main-color);
    color: #fff;
}

.store-filter-btn.active-genetec {
    background: #0070d1;
    border-color: #0070d1;
    color: #fff;
}

.store-filter-btn.active-prysm {
    background: #00a878;
    border-color: #00a878;
    color: #fff;
}

/* Search */
.store-search-wrap {
    margin-left: 0;
    position: relative;
    display: inline-flex;
    align-items: center;
}

.store-search-input {
    font-family: var(--font-family), sans-serif;
    font-size: 0.85rem;
    padding: 9px 14px 9px 40px !important;
    border-radius: var(--el-border-radius);
    border: 1px solid var(--border-color);
    background: var(--primary-color) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%236B7280' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='11' cy='11' r='8'/%3E%3Cline x1='21' y1='21' x2='16.65' y2='16.65'/%3E%3C/svg%3E") no-repeat 12px center;
    color: var(--text-primary);
    width: 320px;
    outline: none;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.store-search-input::placeholder {
    color: var(--placeholder-color);
}

.store-search-input:focus {
    border-color: var(--main-color);
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.15);
}

/* --- Counter --- */
.store-counter {
    font-family: var(--font-family), sans-serif;
    font-size: 0.8rem;
    color: var(--text-trimary);
    margin-bottom: 16px;
}

/* --- Grid container (holds platform/category sections) --- */
.store-grid-container {
    display: flex;
    flex-direction: column;
    gap: 0;
}

/* --- Platform Header --- */
.store-platform-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 40px 0 8px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--border-color);
}

.store-platform-header:first-child {
    margin-top: 0;
}

.store-platform-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    flex-shrink: 0;
}

.store-platform-title {
    font-family: var(--heading-font-family), sans-serif;
    font-weight: var(--heading-font-weight);
    font-size: 1.3rem;
    color: var(--text-primary);
    margin: 0;
    letter-spacing: 0.5px;
}

.store-platform-count {
    font-size: 0.75rem;
    color: var(--text-trimary);
    font-weight: 700;
    margin-left: auto;
}

/* --- Category Sub-Header --- */
.store-category-header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 24px 0 16px;
}

.store-category-icon {
    font-size: 18px !important;
    color: var(--main-color);
    width: auto;
    height: auto;
}

.store-category-title {
    font-family: var(--heading-font-family), sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--text-primary);
    margin: 0;
    white-space: nowrap;
}

.store-category-count {
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--text-trimary);
    background: var(--primary-bg-color);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    padding: 1px 8px;
    white-space: nowrap;
}

.store-category-line {
    flex: 1;
    height: 1px;
    background: var(--border-color);
    margin-left: 8px;
}

/* --- Product Grid (per category) --- */
.store-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 24px;
    margin-bottom: 8px;
}

/* --- Product Card --- */
.store-card {
    position: relative;
    background: var(--primary-color);
    border-radius: var(--el-border-radius);
    padding: 24px 20px 16px;
    cursor: pointer;
    transition: box-shadow 0.25s;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

/* Border via ::after like .item-style */
.store-card::after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    border-radius: var(--el-border-radius);
    border: 1px solid var(--border-color);
    pointer-events: none;
    transition: border-color 0.2s;
    z-index: 1;
}

.store-card:hover {
    box-shadow: var(--el-box-shadow);
}

.store-card:hover::after {
    border-color: var(--main-color);
}

.store-card.hidden {
    display: none;
}

/* Card: badges row */
.store-card-badges {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 14px;
    min-height: 22px;
}

.store-badge {
    font-family: var(--font-family), sans-serif;
    font-size: 0.625rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    padding: 3px 8px;
    border-radius: var(--el-border-radius-min);
    text-transform: uppercase;
    white-space: nowrap;
    line-height: 1;
    color: #fff;
}

.store-badge-genetec {
    background-color: #0070d1;
}

.store-badge-prysm {
    background-color: #00a878;
}

.store-badge-new {
    background-color: var(--main-color);
}

.store-badge-eol {
    background-color: #8891A0;
}

.store-badge-certified {
    background-color: var(--alert-primary);
}

/* Card: logo */
.store-card-logo {
    width: 56px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
    border-radius: 8px;
    background: var(--primary-bg-color);
    overflow: hidden;
    flex-shrink: 0;
}

.store-card-logo img {
    max-width: 48px;
    max-height: 32px;
    object-fit: contain;
}

.store-card-logo-fallback {
    font-size: 1.4rem;
    line-height: 1;
    color: var(--text-trimary);
}

/* Card: text */
.store-card-name {
    font-family: var(--heading-font-family), sans-serif;
    font-weight: var(--heading-font-weight);
    font-size: 1.05rem;
    color: var(--text-primary);
    margin: 0 0 6px;
    line-height: var(--heading-line-height);
}

.store-card-tagline {
    font-family: var(--font-family), sans-serif;
    font-size: 0.82rem;
    color: var(--text-trimary);
    margin: 0 0 auto;
    line-height: var(--line-height);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Card: footer */
.store-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 16px;
    padding-top: 12px;
    border-top: 1px solid var(--border-color);
}

.store-card-category {
    font-family: var(--font-family), sans-serif;
    font-size: 0.7rem;
    color: var(--text-trimary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 700;
}

.store-card-quote-btn {
    font-family: var(--font-family), sans-serif;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--main-color);
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px 0;
    transition: color 0.2s;
    outline: none;
}

.store-card-quote-btn:hover {
    color: var(--el-gradient1);
}

/* --- No results --- */
.store-no-results {
    grid-column: 1 / -1;
    text-align: center;
    padding: 60px 20px;
}

.store-no-results p {
    font-family: var(--font-family), sans-serif;
    color: var(--text-trimary);
    font-size: 1rem;
    margin: 0;
}

/* ============================================
   ACCORDION — Full-width detail panel
   ============================================ */
.store-card-active::after {
    border-color: var(--main-color) !important;
}

.store-accordion {
    grid-column: 1 / -1;
    background: var(--primary-color);
    border-radius: var(--el-border-radius);
    overflow: hidden;
    position: relative;
    max-height: 0;
    opacity: 0;
    transition: max-height 0.3s ease, opacity 0.25s ease;
}

.store-accordion::after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    border-radius: var(--el-border-radius);
    border: 1px solid var(--main-color);
    pointer-events: none;
    z-index: 1;
}

.store-accordion-open {
    max-height: 600px;
    opacity: 1;
}

.store-accordion-inner {
    display: flex;
    gap: 32px;
    padding: 28px 28px 24px;
}

.store-accordion-left {
    flex: 1;
    min-width: 0;
}

.store-accordion-right {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
}

.store-accordion-footer {
    margin-top: auto;
    padding-top: 16px;
    border-top: 1px solid var(--border-color);
}

.store-accordion-close {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 28px;
    height: 28px;
    border-radius: var(--el-border-radius-min);
    border: 1px solid var(--border-color);
    background: var(--primary-color);
    color: var(--text-trimary);
    font-size: 18px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
    z-index: 2;
    line-height: 1;
    outline: none;
}

.store-accordion-close:hover {
    border-color: var(--main-color);
    color: var(--main-color);
}

.store-modal-close:focus-visible,
.store-modal-submit:focus-visible,
.store-popover-btn:focus-visible {
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.3);
}

.store-popover-header {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 18px;
}

.store-popover-logo {
    width: 72px;
    height: 52px;
    flex-shrink: 0;
    border-radius: var(--el-border-radius);
    background: var(--primary-bg-color);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.store-popover-logo img {
    max-width: 60px;
    max-height: 42px;
    object-fit: contain;
}

.store-popover-logo-fallback {
    font-size: 1.8rem;
    color: var(--text-trimary);
}

.store-popover-title-wrap {
    flex: 1;
    min-width: 0;
}

.store-popover-platform {
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0 0 4px;
}

.store-popover-platform.genetec { color: #0070d1; }
.store-popover-platform.prysm { color: #00a878; }

.store-popover-name {
    font-family: var(--heading-font-family), sans-serif;
    font-weight: var(--heading-font-weight);
    font-size: 1.25rem;
    color: var(--text-primary);
    margin: 0;
    line-height: var(--heading-line-height);
}

.store-popover-badges {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
    margin-bottom: 16px;
}

.store-popover-desc {
    font-size: 0.85rem;
    color: var(--text-trimary);
    line-height: 1.6;
    margin: 0 0 18px;
}

.store-popover-features {
    list-style: none;
    padding: 0;
    margin: 0 0 18px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.store-popover-features li {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 0.85rem;
    color: var(--text-primary);
    line-height: 1.4;
}

.store-popover-features li svg {
    flex-shrink: 0;
    margin-top: 2px;
}

.store-popover-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 20px;
}

.store-popover-tag {
    font-size: 0.7rem;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: var(--el-border-radius-min);
    background: var(--primary-bg-color);
    color: var(--text-trimary);
    border: 1px solid var(--border-color);
}

.store-popover-footer {
    padding: 16px 24px;
    border-top: 1px solid var(--border-color);
    background: var(--primary-bg-color);
}

.store-popover-pricing {
    font-size: 0.75rem;
    color: var(--text-trimary);
    margin: 0 0 12px;
    font-style: italic;
}

.store-popover-actions {
    display: flex;
    gap: 10px;
}

.store-popover-btn {
    font-family: var(--font-family), sans-serif;
    font-size: 0.82rem;
    font-weight: 700;
    padding: 9px 18px;
    border-radius: var(--el-border-radius-min);
    cursor: pointer;
    transition: all 0.2s;
    border: none;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    outline: none;
}

.store-popover-btn-details {
    background: var(--primary-color);
    color: var(--text-primary);
    border: 1px solid var(--border-color);
}

.store-popover-btn-details:hover {
    border-color: var(--main-color);
    color: var(--main-color);
    text-decoration: none;
}

.store-popover-btn-quote {
    background: var(--main-color);
    color: #fff;
}

.store-popover-btn-quote:hover {
    background: var(--el-gradient1);
}

/* ============================================
   QUOTE MODAL
   ============================================ */
.store-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s;
    padding: 20px;
}

.store-modal-overlay.visible {
    opacity: 1;
    pointer-events: auto;
}

.store-modal {
    background: var(--primary-color);
    border: 1px solid var(--border-color);
    border-radius: var(--el-border-radius);
    width: 100%;
    max-width: 680px;
    max-height: 90vh;
    overflow-y: auto;
    transform: scale(0.95);
    transition: transform 0.25s;
    box-shadow: var(--el-box-shadow);
}

.store-modal-overlay.visible .store-modal {
    transform: scale(1);
}

.store-modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 28px 0;
}

.store-modal-title {
    font-family: var(--heading-font-family), sans-serif;
    font-weight: var(--heading-font-weight);
    font-size: 1.3rem;
    color: var(--text-primary);
    margin: 0;
}

.store-modal-close {
    width: 32px;
    height: 32px;
    border-radius: var(--el-border-radius-min);
    border: 1px solid var(--border-color);
    background: var(--primary-color);
    color: var(--text-trimary);
    font-size: 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
    line-height: 1;
    outline: none;
}

.store-modal-close:hover {
    border-color: var(--main-color);
    color: var(--main-color);
}

.store-modal-product {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--main-color);
    padding: 8px 28px 0;
    margin: 0;
}

.store-modal-form {
    padding: 20px 28px 28px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.store-modal-row {
    display: flex;
    gap: 14px;
}

.store-modal-row > .store-modal-field {
    flex: 1 1 0;
    min-width: 0;
}

.store-modal-field {
    display: flex;
    flex-direction: column;
    gap: 4px;
    flex: 1;
}

.store-modal-label {
    font-size: 0.75rem;
    color: var(--text-trimary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 700;
}

.store-modal-label .required {
    color: var(--error-color);
}

.store-modal-input,
.store-modal-select,
.store-modal-textarea {
    font-family: var(--font-family), sans-serif;
    font-size: 0.85rem;
    padding: 9px 12px;
    border-radius: var(--el-border-radius-min);
    border: 1px solid var(--border-color);
    background: var(--primary-color);
    color: var(--text-primary);
    outline: none;
    transition: border-color 0.2s, box-shadow 0.2s;
    width: 100%;
}

.store-modal-input:focus,
.store-modal-select:focus,
.store-modal-textarea:focus {
    border-color: var(--main-color);
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.12);
}

.store-modal-input.error,
.store-modal-select.error {
    border-color: var(--error-color);
    box-shadow: 0 0 0 3px rgba(255, 61, 13, 0.1);
}

.store-modal-select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%236B7280' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    padding-right: 32px;
}

.store-modal-textarea {
    resize: vertical;
    min-height: 80px;
}

.store-modal-separator {
    height: 1px;
    background: var(--border-color);
    margin: 4px 0;
}

.store-modal-checkbox {
    padding: 4px 0;
}

.store-modal-check-label {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.85rem;
    color: var(--text-primary);
    cursor: pointer;
    user-select: none;
}

.store-modal-check-label input[type="checkbox"] {
    display: none;
}

.store-modal-checkmark {
    width: 20px;
    height: 20px;
    border-radius: var(--el-border-radius-min);
    border: 2px solid var(--border-color);
    background: var(--primary-color);
    flex-shrink: 0;
    position: relative;
    transition: all 0.2s;
}

.store-modal-check-label input[type="checkbox"]:checked + .store-modal-checkmark {
    background: var(--main-color);
    border-color: var(--main-color);
}

.store-modal-check-label input[type="checkbox"]:checked + .store-modal-checkmark::after {
    content: '';
    position: absolute;
    left: 6px;
    top: 2px;
    width: 5px;
    height: 10px;
    border: solid #fff;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.store-modal-submit {
    font-family: var(--font-family), sans-serif;
    font-size: 0.9rem;
    font-weight: 700;
    padding: 12px 24px;
    border-radius: var(--el-border-radius-min);
    border: none;
    background: var(--main-color);
    color: #fff;
    cursor: pointer;
    transition: background 0.2s;
    margin-top: 4px;
    outline: none;
}

.store-modal-submit:hover {
    background: var(--el-gradient1);
}

.store-modal-success {
    padding: 48px 28px;
    text-align: center;
    display: none;
}

.store-modal-success.visible {
    display: block;
}

.store-modal-success-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: rgba(32, 201, 151, 0.1);
    border: 2px solid var(--alert-success);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    color: var(--alert-success);
    font-size: 28px;
}

.store-modal-success h3 {
    font-family: var(--heading-font-family), sans-serif;
    font-weight: var(--heading-font-weight);
    font-size: 1.3rem;
    color: var(--text-primary);
    margin: 0 0 8px;
}

.store-modal-success p {
    font-size: 0.85rem;
    color: var(--text-trimary);
    margin: 0;
}

/* ============================================
   DARK THEME OVERRIDES
   ============================================ */
body.dark-theme .store-card {
    background-color: #323742;
}

body.dark-theme .store-card::after {
    border-color: #4A4F5B;
}

body.dark-theme .store-card:hover::after {
    border-color: #3B82F6;
}

body.dark-theme .store-card-logo {
    background: #3A3F4B;
}

body.dark-theme .store-card-footer {
    border-top-color: #4A4F5B;
}

body.dark-theme .store-platform-header {
    border-bottom-color: #4A4F5B;
}

body.dark-theme .store-category-count {
    background: #3A3F4B;
    border-color: #4A4F5B;
}

body.dark-theme .store-category-line {
    background: #4A4F5B;
}

body.dark-theme .store-filter-btn {
    background: #323742;
    border-color: #4A4F5B;
    color: #B0B8C8;
}

body.dark-theme .store-filter-btn:hover {
    border-color: #3B82F6;
    color: #3B82F6;
}

body.dark-theme .store-filter-btn.active {
    background: #3B82F6;
    border-color: #3B82F6;
    color: #fff;
}

body.dark-theme .store-filter-btn.active-genetec {
    background: #0070d1;
    border-color: #0070d1;
    color: #fff;
}

body.dark-theme .store-filter-btn.active-prysm {
    background: #00a878;
    border-color: #00a878;
    color: #fff;
}

body.dark-theme .store-search-input {
    background: #323742;
    border-color: #4A4F5B;
    color: #F0F2F5;
}

body.dark-theme .store-search-input::placeholder {
    color: #6B7280;
}

body.dark-theme .store-accordion {
    background: #323742;
}

body.dark-theme .store-accordion::after {
    border-color: #3B82F6;
}

body.dark-theme .store-accordion-close {
    background: #3A3F4B;
    border-color: #4A4F5B;
    color: #B0B8C8;
}

body.dark-theme .store-accordion-footer {
    border-top-color: #4A4F5B;
}

body.dark-theme .store-popover-logo {
    background: #3A3F4B;
}

body.dark-theme .store-popover-tag {
    background: #3A3F4B;
    border-color: #4A4F5B;
}

body.dark-theme .store-popover-btn-details {
    background: #3A3F4B;
    border-color: #4A4F5B;
    color: #F0F2F5;
}

body.dark-theme .store-modal {
    background: #323742;
    border-color: #4A4F5B;
}

body.dark-theme .store-modal-close {
    background: #3A3F4B;
    border-color: #4A4F5B;
    color: #B0B8C8;
}

body.dark-theme .store-modal-input,
body.dark-theme .store-modal-select,
body.dark-theme .store-modal-textarea {
    background: #2B303A;
    border-color: #4A4F5B;
    color: #F0F2F5;
}

body.dark-theme .store-modal-select option {
    background: #323742;
    color: #F0F2F5;
}

body.dark-theme .store-modal-separator {
    background: #4A4F5B;
}

body.dark-theme .store-modal-checkmark {
    border-color: #4A4F5B;
    background: #2B303A;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 991px) {
    .store-filters {
        flex-direction: column;
        align-items: stretch;
    }
    .store-search-wrap {
        margin-left: 0;
    }
    .store-search-input {
        width: 100%;
    }
}

@media (max-width: 767px) {
    .store-section {
        padding: 24px 0 60px;
    }
    .store-title {
        font-size: 1.6rem;
    }
    .store-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    .store-modal-row {
        flex-direction: column;
    }
    .store-accordion-inner {
        flex-direction: column;
        gap: 20px;
    }
}

.store-modal::-webkit-scrollbar {
    width: 6px;
}

.store-modal::-webkit-scrollbar-track {
    background: transparent;
}

.store-modal::-webkit-scrollbar-thumb {
    background: var(--border-color);
    border-radius: 3px;
}
