/* Public price list: isolated from catalog and checkout styles. */
.tech-store .store-price-list {
    display: grid;
    gap: 1rem;
    margin: 0.8rem 0 1.3rem;
    scroll-margin-top: 7rem;
}

.tech-store .store-price-list-hero,
.tech-store .store-price-list-filters,
.tech-store .store-price-list-summary,
.tech-store .store-price-list-table-wrap,
.tech-store .store-price-list-pagination {
    border: 1px solid var(--store-border);
    border-radius: 1rem;
    background: linear-gradient(145deg, rgba(17, 24, 39, 0.94), rgba(8, 12, 18, 0.98));
    box-shadow: 0 14px 38px rgba(0, 0, 0, 0.2);
}

.tech-store .store-price-list-hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: clamp(1.2rem, 3vw, 2rem);
}

.tech-store .store-price-list-hero h1 {
    margin: 0.2rem 0 0.45rem;
    color: var(--store-text);
    font-size: clamp(2rem, 5vw, 3.6rem);
    font-weight: 800;
    letter-spacing: -0.065em;
}

.tech-store .store-price-list-hero p {
    max-width: 44rem;
    margin: 0;
    color: var(--store-muted);
    font-size: 0.86rem;
}

.tech-store .store-price-list-pdf,
.tech-store .store-price-list-filter-actions button {
    display: inline-flex;
    min-height: 2.8rem;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.7rem 1rem;
    border: 1px solid rgba(56, 189, 248, 0.4);
    border-radius: 0.75rem;
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    color: #ffffff;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.035em;
    text-transform: uppercase;
    transition: box-shadow 180ms ease, transform 180ms ease;
}

.tech-store .store-price-list-pdf:hover,
.tech-store .store-price-list-filter-actions button:hover {
    color: #ffffff;
    box-shadow: 0 12px 28px rgba(37, 99, 235, 0.26);
    transform: translateY(-2px);
}

.tech-store .store-price-list-filters {
    display: grid;
    grid-template-columns: minmax(15rem, 1.5fr) minmax(10rem, 0.8fr) minmax(10rem, 0.8fr) auto;
    gap: 0.75rem;
    align-items: end;
    padding: 1rem;
}

.tech-store .store-price-list-filters label {
    display: grid;
    gap: 0.35rem;
    margin: 0;
    color: var(--store-muted);
    font-size: 0.63rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.tech-store .store-price-list-input {
    display: flex;
    min-height: 2.72rem;
    align-items: center;
    gap: 0.52rem;
    padding: 0 0.72rem;
    border: 1px solid var(--store-border);
    border-radius: 0.7rem;
    background: rgba(255, 255, 255, 0.05);
    color: var(--store-blue);
}

.tech-store .store-price-list-input input,
.tech-store .store-price-list-filters select {
    width: 100%;
    min-width: 0;
    min-height: 2.72rem;
    border: 1px solid var(--store-border);
    border-radius: 0.7rem;
    background: rgba(255, 255, 255, 0.05);
    color: var(--store-text);
    font-size: 0.76rem;
    outline: none;
}

.tech-store .store-price-list-input input {
    min-height: auto;
    border: 0;
    border-radius: 0;
    background: transparent;
}

.tech-store .store-price-list-input input::placeholder {
    color: var(--store-muted);
}

.tech-store .store-price-list-filters select {
    padding: 0 0.65rem;
}

.tech-store .store-price-list-filters select option {
    background: #0b0f14;
    color: #e5edf6;
}

.tech-store .store-price-list-filter-actions {
    display: flex;
    align-items: center;
    gap: 0.65rem;
}

.tech-store .store-price-list-filter-actions button {
    border: 0;
    cursor: pointer;
}

.tech-store .store-price-list-filter-actions a {
    color: var(--store-muted);
    font-size: 0.7rem;
    font-weight: 700;
}

.tech-store .store-price-list-summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.9rem 1rem;
}

.tech-store .store-price-list-summary div {
    display: flex;
    align-items: baseline;
    gap: 0.55rem;
}

.tech-store .store-price-list-summary span,
.tech-store .store-price-list-summary p {
    margin: 0;
    color: var(--store-muted);
    font-size: 0.72rem;
}

.tech-store .store-price-list-summary strong,
.tech-store .store-price-list-summary code {
    color: var(--store-green);
    font-family: "JetBrains Mono", monospace;
}

.tech-store .store-price-list-table-wrap {
    overflow: hidden;
}

.tech-store .store-price-list-table {
    width: 100%;
    border-collapse: collapse;
}

.tech-store .store-price-list-table th,
.tech-store .store-price-list-table td {
    padding: 0.82rem 0.9rem;
    border-bottom: 1px solid var(--store-border);
    text-align: left;
    vertical-align: middle;
}

.tech-store .store-price-list-table th {
    color: var(--store-muted);
    font-size: 0.6rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.tech-store .store-price-list-table td {
    color: var(--store-text);
    font-size: 0.76rem;
}

.tech-store .store-price-list-table tbody tr:last-child td {
    border-bottom: 0;
}

.tech-store .store-price-list-table tbody tr:hover {
    background: rgba(56, 189, 248, 0.055);
}

.tech-store .store-price-list-table code {
    color: var(--store-green);
    font-family: "JetBrains Mono", monospace;
    font-size: 0.74rem;
    font-weight: 700;
}

.tech-store .store-price-list-table td > a {
    display: block;
    color: var(--store-text);
    font-weight: 750;
}

.tech-store .store-price-list-table small {
    display: block;
    margin-top: 0.2rem;
    color: var(--store-muted);
    font-size: 0.65rem;
}

.tech-store .store-price-list-table td:last-child {
    color: var(--store-green);
    font-family: "JetBrains Mono", monospace;
    text-align: right;
    white-space: nowrap;
}

.tech-store .store-price-list-table th:last-child {
    text-align: right;
}

.tech-store .store-price-list-empty {
    padding: 2rem !important;
    color: var(--store-muted) !important;
    text-align: center !important;
}

.tech-store .store-price-list-pagination {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.75rem 0.9rem;
}

.tech-store .store-price-list-pagination a,
.tech-store .store-price-list-pagination span {
    color: var(--store-muted);
    font-size: 0.72rem;
    font-weight: 700;
}

.tech-store .store-price-list-pagination a:not(.is-disabled) {
    color: var(--store-blue);
}

.tech-store .store-price-list-pagination .is-disabled {
    opacity: 0.42;
    pointer-events: none;
}

/* Liquid Glass override */
.tech-store.store-theme-liquid .store-price-list-hero,
.tech-store.store-theme-liquid .store-price-list-filters,
.tech-store.store-theme-liquid .store-price-list-summary,
.tech-store.store-theme-liquid .store-price-list-table-wrap,
.tech-store.store-theme-liquid .store-price-list-pagination {
    border-color: rgba(255, 255, 255, 0.84);
    background: rgba(255, 255, 255, 0.5);
    box-shadow: 0 22px 68px rgba(15, 23, 42, 0.1);
    backdrop-filter: blur(22px) saturate(170%);
    -webkit-backdrop-filter: blur(22px) saturate(170%);
}

.tech-store.store-theme-liquid .store-price-list-input,
.tech-store.store-theme-liquid .store-price-list-input input,
.tech-store.store-theme-liquid .store-price-list-filters select {
    border-color: rgba(226, 232, 240, 0.82);
    background: rgba(255, 255, 255, 0.58);
    color: #111827;
}

.tech-store.store-theme-liquid .store-price-list-input input {
    background: transparent;
}

.tech-store.store-theme-liquid .store-price-list-filters select option {
    background: #ffffff;
    color: #111827;
}

.tech-store.store-theme-liquid .store-price-list-table td > a,
.tech-store.store-theme-liquid .store-price-list-table td {
    color: #111827;
}

@media (max-width: 991px) {
    .tech-store .store-price-list-filters {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 767px) {
    .tech-store .store-price-list-hero,
    .tech-store .store-price-list-summary {
        align-items: flex-start;
        flex-direction: column;
    }

    .tech-store .store-price-list-filters {
        grid-template-columns: 1fr;
    }

    .tech-store .store-price-list-table-wrap {
        overflow: visible;
        border: 0;
        background: transparent;
        box-shadow: none;
    }

    .tech-store .store-price-list-table,
    .tech-store .store-price-list-table tbody,
    .tech-store .store-price-list-table tr,
    .tech-store .store-price-list-table td {
        display: block;
        width: 100%;
    }

    .tech-store .store-price-list-table thead {
        display: none;
    }

    .tech-store .store-price-list-table tr {
        margin-bottom: 0.7rem;
        overflow: hidden;
        border: 1px solid var(--store-border);
        border-radius: 0.9rem;
        background: var(--store-surface);
    }

    .tech-store .store-price-list-table td {
        display: grid;
        grid-template-columns: 6.6rem minmax(0, 1fr);
        gap: 0.6rem;
        padding: 0.62rem 0.72rem;
        text-align: left !important;
    }

    .tech-store .store-price-list-table td::before {
        color: var(--store-muted);
        content: attr(data-label);
        font-size: 0.58rem;
        font-weight: 800;
        letter-spacing: 0.07em;
        text-transform: uppercase;
    }
}
