/* =========================================================
   VIDA WOOD
   PRICE LIST PAGE
   ========================================================= */

.primary-btn {
    border: 1px solid var(--price-gold-light);

}

.price-page {
    --price-gold: #d9ab66;
    --price-gold-light: #f0ca80;
    --price-gold-dark: #9a6c31;
    --price-panel: rgba(255, 255, 255, 0.045);
    --price-border: rgba(217, 171, 102, 0.20);
    --price-muted: #b7b1a7;
}


/* =========================================================
   PAGE
   ========================================================= */

.price-page-wrapper {
    width: 100%;
    min-height: 100vh;
}

.price-main {
    width: 100%;
    padding-bottom: 70px;
}

.price-section {
    padding-top: 28px;
}


/* =========================================================
   HERO
   ========================================================= */

.price-hero {
    padding-top: 35px;
}

.price-hero-card {
    position: relative;
    overflow: hidden;

    display: flex;
    flex-direction: column;
    align-items: center;

    text-align: center;

    padding: 55px 35px;

    border-radius: 32px;

    background:
        radial-gradient(circle at 50% 0%,
            rgba(217, 171, 102, .15),
            transparent 45%),
        linear-gradient(145deg,
            rgba(255, 255, 255, .075),
            rgba(255, 255, 255, .018));

    border: 1px solid rgba(217, 171, 102, .18);

    box-shadow:
        0 30px 90px rgba(0, 0, 0, .30),
        inset 0 1px rgba(255, 255, 255, .08);

    isolation: isolate;
}

.price-hero-card::before {
    content: "";

    position: absolute;

    width: 280px;
    height: 280px;

    top: -170px;
    right: -100px;

    border-radius: 50%;

    background:
        radial-gradient(circle,
            rgba(217, 171, 102, .20),
            transparent 70%);

    filter: blur(15px);

    z-index: -1;
}

.price-hero-card::after {
    content: "";

    position: absolute;

    width: 220px;
    height: 220px;

    bottom: -150px;
    left: -80px;

    border-radius: 50%;

    background:radial-gradient(circle,
            rgba(142, 211, 255, .10),
            transparent 70%);

    filter: blur(15px);

    z-index: -1;
}

.price-hero-icon-container {
    width: 240px;
    height: 240px;
    display: grid;
    place-items: center;
    margin-bottom: 20px;
    border-radius: 24px;
    color: #18120b;
    font-size: 30px;
    background: linear-gradient(135deg, #f1ce8b, #b88646);

    box-shadow: 0 15px 40px rgba(201, 147, 79, .25), inset 0 1px rgba(255, 255, 255, .5);

    animation: priceIconFloat 4s ease-in-out infinite;
}
.price-hero-icon{
        width: auto;
        height: 200px;
}

@keyframes priceIconFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-7px);
    }

}

.price-hero-card .section-kicker {
    display: block;
    color: var(--price-gold);
    font-size: 14px;
}

.price-hero-card h1 {
    margin: 8px 0 18px;
    font-size: clamp(2.2rem, 5vw, 4rem);
    line-height: 1.15;
}

.price-hero-card h1 span {
    color: var(--price-gold);
}

.price-hero-card p {
    max-width: 850px;
    margin: 0;
    color: var(--price-muted);
    line-height: 2;
    font-size: 15px;
}

.price-hero-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin-top: 28px;
}

.price-hero-actions .primary-btn,
.price-hero-actions .secondary-btn {
    gap: 9px;
}


/* =========================================================
   CATEGORY TABS
   ========================================================= */

.category-tabs-panel {
    padding: 30px;
    margin-bottom: 18px;
    background: linear-gradient(145deg, rgba(255, 255, 255, .06), rgba(255, 255, 255, .018));
}

.price-category-tabs {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 12px;
}

.price-category-tab {
    position: relative;
    min-height: 85px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border: 1px solid rgba(255, 255, 255, .07);
    border-radius: 20px;
    color: var(--muted);
    background: rgba(255, 255, 255, .035);
    cursor: var(--cursor-pointer);
    transition:
        transform .35s ease,
        border-color .35s ease,
        background .35s ease,
        color .35s ease,
        box-shadow .35s ease;
}

.price-category-tab i {

    font-size: 21px;

    color: rgba(217, 171, 102, .65);

    transition: transform .35s ease, color .35s ease;
}

.price-category-tab span {
    font-size: 14px;
    font-weight: 600;
}

.price-category-tab:hover {

    transform: translateY(-4px);

    color: var(--text);

    border-color: rgba(217, 171, 102, .32);

    background: rgba(217, 171, 102, .08);

    box-shadow: 0 12px 35px rgba(0, 0, 0, .18);
}

.price-category-tab:hover i {
    transform: translateY(-2px) scale(1.08);

    color: var(--price-gold-light);
}

.price-category-tab.active {

    color: #fff;

    border-color: rgba(217, 171, 102, .48);

    background: linear-gradient(135deg, rgba(217, 171, 102, .18), rgba(217, 171, 102, .045));

    box-shadow: 0 12px 35px rgba(217, 171, 102, .10), inset 0 1px rgba(255, 255, 255, .08);
}

.price-category-tab.active i {
    color: var(--price-gold-light);

    text-shadow: 0 0 18px rgba(217, 171, 102, .5);
}

.price-category-tab.active::after {
    content: "";
    position: absolute;
    bottom: -1px;
    left: 25%;
    right: 25%;
    height: 2px;
    border-radius: 10px;
    background: linear-gradient(90deg, transparent, var(--price-gold), transparent);
}


/* =========================================================
   TOOLBAR
   ========================================================= */

.price-toolbar {
    min-height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 12px 16px;
    margin-bottom: 18px;
    border-radius: 20px;
}

.price-toolbar-info {
    display: flex;
    align-items: center;
    gap: 9px;
    flex-wrap: wrap;
}

.toolbar-label {
    color: var(--muted);
    font-size: 13px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.toolbar-label i {
    color:
        var(--price-gold);
}

.price-toolbar-info strong {
    color: var(--price-gold-light);

    font-size: 1rem;
}

.product-count {
    padding: 4px 10px;
    border-radius: 999px;
    color: var(--muted);
    background: rgba(255, 255, 255, .055);
    font-size: 12px;
}

.price-view-switcher {
    display: flex;
    gap: 6px;
    padding: 4px;
    border-radius: 14px;
    background: rgba(255, 255, 255, .035);
    border: 1px solid rgba(255, 255, 255, .06);
}

.view-mode-btn {
    min-height: 40px;
    padding: 0 13px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    border: 0;
    border-radius: 10px;
    color: var(--muted);
    background: transparent;
    cursor: var(--cursor-pointer);
    transition: all .3s ease;
}

.view-mode-btn:hover {
    color: var(--text);
    background: rgba(255, 255, 255, .05);
}

.view-mode-btn.active {
    color: #17120c;

    background: linear-gradient(135deg, #efca80, #b88646);

    box-shadow: 0 5px 20px rgba(217, 171, 102, .18);
}

.view-mode-btn span {
    font-size: 12px;
}


/* =========================================================
   PRODUCTS GRID
   ========================================================= */

.price-products-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    transition: opacity .18s ease, transform .18s ease;
}

.price-switch-animation {
    opacity: 0;
    transform: translateY(8px) scale(.99);
}


/* =========================================================
   PRODUCT CARD
   ========================================================= */

.price-product-card {
    position: relative;
    overflow: hidden;
    padding: 0 !important;
    cursor: var(--cursor-pointer);
    min-height: 390px;
    border: 1px solid rgba(255, 255, 255, .075);
    background: linear-gradient(145deg, rgba(255, 255, 255, .07), rgba(255, 255, 255, .018));
    box-shadow: 0 20px 55px rgba(0, 0, 0, .25);
    opacity: 0;
    animation: priceCardReveal .6s cubic-bezier(.2, .8, .2, 1) forwards;
    animation-delay: var(--delay);
}

@keyframes priceCardReveal {

    from {
        opacity: 0;
        transform: translateY(20px) scale(0.57);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }

}

.price-product-card:hover {

    transform: translateY(-8px);

    border-color: rgba(217, 171, 102, .34);

    box-shadow: 0 30px 70px rgba(0, 0, 0, .36), 0 0 35px rgba(217, 171, 102, .07);

    transition:
        transform .4s ease,
        box-shadow .4s ease,
        border-color .4s ease;
}


/* =========================================================
   PRODUCT IMAGE
   ========================================================= */

.product-card-image {

    position: relative;

    height: 205px;

    overflow: hidden;
}

.product-card-image img {

    width: 100%;
    height: 100%;

    object-fit: cover;

    display: block;

    transition:
        transform .8s cubic-bezier(.2, .8, .2, 1),
        filter .5s ease;
}

.price-product-card:hover .product-card-image img {

    transform:
        scale(1.08);

    filter:
        brightness(.88) saturate(1.08);
}

.product-card-image-overlay {

    position: absolute;

    inset: 0;

    background:
        linear-gradient(180deg,
            rgba(0, 0, 0, .08),
            rgba(0, 0, 0, .78));
}

.product-group {

    position: absolute;

    top: 14px;
    right: 14px;

    padding:
        6px 11px;

    border-radius:
        999px;

    color:
        var(--price-gold-light);

    background:
        rgba(8, 12, 16, .65);

    border:
        1px solid rgba(217, 171, 102, .22);

    backdrop-filter:
        blur(12px);

    font-size:
        11px;
}

.product-info-btn {

    position: absolute;

    top: 13px;
    left: 13px;

    width: 39px;
    height: 39px;

    display: grid;
    place-items: center;

    border-radius:
        50%;

    border:
        1px solid rgba(255, 255, 255, .18);

    color:
        #fff;

    background:
        rgba(8, 12, 16, .62);

    backdrop-filter:
        blur(12px);

    cursor:
        var(--cursor-pointer);

    transition:
        all .3s ease;
}

.product-info-btn:hover {

    transform:
        rotate(15deg) scale(1.1);

    color:
        #17120c;

    background:
        var(--price-gold-light);

    border-color:
        var(--price-gold-light);

    box-shadow:
        0 0 25px rgba(217, 171, 102, .35);
}


/* =========================================================
   CARD CONTENT
   ========================================================= */

.price-product-content {

    padding:
        19px;

    display:
        flex;

    flex-direction:
        column;
}

.price-product-category {

    color:
        var(--price-gold);

    font-size:
        11px;

    margin-bottom:
        5px;
}

.price-product-content h3 {

    min-height:
        58px;

    margin:
        0 0 14px;

    font-size:
        1.05rem;

    line-height:
        1.8;

    color:
        #f4efe7;
}


/* =========================================================
   PRICE RANGE
   ========================================================= */

.price-range {

    display:
        grid;

    grid-template-columns:
        1fr auto 1fr;

    align-items:
        center;

    gap:
        10px;

    padding:
        12px;

    margin-bottom:
        15px;

    border-radius:
        16px;

    background:
        rgba(0, 0, 0, .16);

    border:
        1px solid rgba(255, 255, 255, .045);
}

.price-item {

    display:
        flex;

    flex-direction:
        column;

    gap:
        5px;

    text-align:
        center;
}

.price-item>span {
    color: var(--muted);
    font-size: 14px;
}

.price-item strong {

    color:
        var(--price-gold-light);

    font-size:
        14px;

    direction:
        rtl;
}

.price-item strong small {

    color:
        var(--muted);

    font-size:
        9px;

    font-weight:
        400;
}

.price-divider {

    width:
        1px;

    height:
        34px;

    background:
        linear-gradient(transparent,
            rgba(217, 171, 102, .5),
            transparent);
}


/* =========================================================
   PRICE PULSE
   ========================================================= */

.price-pulse {

    animation:
        pricePulse 2.8s ease-in-out infinite;
}

@keyframes pricePulse {

    0%,
    100% {
        text-shadow: 0 0 0px rgb(217 171 102 / 96%)
    }

    50% {
        text-shadow: 0px 0px 11px rgb(217 171 102 / 79%);
        transform: scale(1.3);
    }

}


/* =========================================================
   DETAILS BUTTON
   ========================================================= */

.product-details-btn {

    width:
        100%;

    min-height:
        42px;

    display:
        flex;

    align-items:
        center;

    justify-content:
        center;

    gap:
        8px;

    border-radius:
        12px;

    border:
        1px solid rgba(217, 171, 102, .18);

    color:
        var(--price-gold-light);

    background:
        rgba(217, 171, 102, .045);

    cursor:
        var(--cursor-pointer);

    transition:
        all .3s ease;
}

.product-details-btn:hover {

    color:
        #17120c;

    background:
        linear-gradient(135deg,
            #efca80,
            #b88646);

    transform:
        translateY(-2px);

    box-shadow:
        0 8px 25px rgba(217, 171, 102, .16);
}


/* =========================================================
   TABLE
   ========================================================= */

.price-table-wrapper {

    overflow:
        hidden;

    border-radius:
        22px;

    animation:
        fadeIn .4s ease;
}

.table-responsive {

    width:
        100%;

    overflow-x:
        auto;
}

.price-table {

    width:
        100%;

    border-collapse:
        collapse;

    min-width:
        900px;
}

.price-table th {

    padding:
        17px 14px;

    text-align:
        right;

    color:
        var(--price-gold-light);

    background:
        rgba(217, 171, 102, .08);

    border-bottom:
        1px solid rgba(217, 171, 102, .18);

    font-size:
        13px;

    white-space:
        nowrap;
}

.price-table td {

    padding:
        14px;

    color:
        var(--muted);

    border-bottom:
        1px solid rgba(255, 255, 255, .055);

    vertical-align:
        middle;

    transition:
        background .25s ease;
}

.price-table tbody tr {

    animation:
        tableRowReveal .45s ease forwards;

    animation-delay:
        var(--delay);

    opacity:
        0;
}

@keyframes tableRowReveal {

    from {
        opacity: 0;
        transform: translateY(8px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }

}

.price-table tbody tr:hover td {
    background: rgba(217, 171, 102, .045);
}

.table-product {
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 240px;
}

.table-product img {
    width: 55px;
    height: 55px;
    object-fit: cover;
    border-radius: 13px;
    border: 1px solid rgba(217, 171, 102, .15);
}

.table-product strong {
    display: block;
    color: var(--text);
    font-size: 13px;
}

.table-product span {
    display: block;
    margin-top: 3px;
    color: var(--price-gold);
    font-size: 10px;
}

.table-price {
    color: var(--price-gold-light);
    font-size: 18px;
    white-space: nowrap;
}

.table-price small {
    color: var(--muted);
    font-size: 9px;
    font-weight: 400;
}

.table-description {
    max-width: 430px;
    margin: 0;
    color: var(--muted);
    font-size: 14px;
    text-overflow: ellipsis;
    text-wrap-mode: nowrap;
    overflow-x: clip;
}

.table-info-btn {
    width: 40px;
    height: 40px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(217, 171, 102, .18);
    border-radius: 50%;
    color: var(--price-gold);
    background: rgba(217, 171, 102, .045);
    cursor: var(--cursor-pointer);
    transition: all .3s ease;
}

.table-info-btn:hover {
    color: #17120c;
    background: var(--price-gold-light);
    transform: scale(1.1);
}


/* =========================================================
   NOTES
   ========================================================= */

.price-notes {
    margin-top: 28px;
    padding: 30px;
    border-radius: 25px;
    background: linear-gradient(145deg, rgba(255, 255, 255, .055), rgba(255, 255, 255, .015));
}

.notes-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
}

.notes-icon {
    width: 56px;
    height: 56px;
    display: grid;
    place-items: center;
    flex-shrink: 0;
    border-radius: 17px;
    color: var(--price-gold-light);
    background: rgba(217, 171, 102, .09);
    border: 1px solid rgba(217, 171, 102, .16);
    font-size: 21px;
}

.notes-header .section-kicker {
    display: block;
    margin-bottom: 3px;
}

.notes-header h2 {

    margin:
        0;

    font-size: clamp(1.3rem, 3vw, 2rem);
}

.notes-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.price-note {
    position: relative;
    display: flex;
    gap: 13px;
    padding: 16px;
    border: 1px solid rgba(255, 255, 255, .055);
    border-radius: 17px;
    background: rgba(255, 255, 255, .025);
    transition: transform .3s ease, border-color .3s ease, background .3s ease;
    min-height: 120px;
}

.price-note:hover {
    transform: translateY(-3px);
    border-color: rgba(217, 171, 102, .2);
    background: rgba(217, 171, 102, .035);
}

.price-note p {
    margin: 0;
    color: var(--muted);
    font-size: 14px;
    line-height: 2;
}

.note-number {
    flex-shrink: 0;
    width: 34px;
    height: 34px;
    display: grid;
    place-items: center;
    border-radius: 11px;
    color: var(--price-gold-light);
    background: rgba(217, 171, 102, .08);
    border: 1px solid rgba(217, 171, 102, .13);
    font-size: 10px;
    font-weight: 700;
}


/* =========================================================
   MODAL
   ========================================================= */

body.modal-open {
    overflow: hidden;
}

.price-modal {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    transition: opacity .3s ease, visibility .3s ease;
}

.price-modal.open {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
}

.price-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(2, 5, 9, .78);
    backdrop-filter: blur(12px);
}

.price-modal-dialog {
    position: relative;
    z-index: 2;
    width: min(900px, 100%);
    max-height: calc(100vh - 40px);
    overflow: auto;
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    border: 1px solid rgba(217, 171, 102, .22);
    border-radius: 27px;
    background: linear-gradient(145deg, rgba(25, 27, 30, .97), rgba(8, 12, 16, .98));
    box-shadow: 0 35px 120px rgba(0, 0, 0, .65);
    transform: translateY(20px) scale(.96);
    transition: transform .35s cubic-bezier(.2, .8, .2, 1);
}

.price-modal.open .price-modal-dialog {
    transform: translateY(0) scale(1);
}

.price-modal-close {
    position: absolute;
    z-index: 5;
    top: 14px;
    left: 14px;
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, .15);
    border-radius: 50%;
    color: #fff;
    background: rgba(5, 8, 12, .65);
    backdrop-filter: blur(10px);
    cursor: var(--cursor-pointer);
    transition: all .3s ease;
}

.price-modal-close:hover {
    color: #17120c;
    background: var(--price-gold-light);
    transform: rotate(90deg);
}

.price-modal-image {
    position: relative;
    min-height: 500px;
    overflow: hidden;
}

.price-modal-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .8s ease;
}

.price-modal.open .price-modal-image img {
    transform: scale(1.03);
}

.modal-image-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: flex-end;
    padding: 25px;
    background: linear-gradient(180deg, transparent 45%, rgba(0, 0, 0, .82));
}

.modal-image-overlay span {
    padding: 7px 13px;
    border-radius: 999px;
    color: var(--price-gold-light);
    background: rgba(8, 12, 16, .7);
    border: 1px solid rgba(217, 171, 102, .22);
    font-size: 11px;
}

.price-modal-content {
    padding: 38px 32px;
    display: flex;
    flex-direction: column;
}

.price-modal-content h2 {
    margin: 5px 0 22px;
    color: var(--text);
    font-size: clamp(1.5rem, 3vw, 2.3rem);
    line-height: 1.5;
}

.modal-price-box {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-bottom: 22px;
}

.modal-price-box>div {
    padding: 14px;
    border: 1px solid rgba(217, 171, 102, .12);
    border-radius: 16px;
    background: rgba(217, 171, 102, .045);
}

.modal-price-box span {

    display:
        block;

    color:
        var(--muted);

    font-size:
        10px;

    margin-bottom:
        5px;
}

.modal-price-box strong {

    color:
        var(--price-gold-light);

    font-size:
        15px;
}

.modal-price-box strong small {

    color:
        var(--muted);

    font-size:
        9px;
}

.modal-description {

    position:
        relative;

    padding:
        18px;

    margin-bottom:
        20px;

    border-radius:
        17px;

    background:
        rgba(255, 255, 255, .035);

    border:
        1px solid rgba(255, 255, 255, .055);
}

.modal-description>i {

    color:
        var(--price-gold);

    opacity:
        .7;

    margin-bottom:
        8px;
}

.modal-description p {

    margin:
        0;

    color:
        var(--muted);

    font-size:
        13px;

    line-height:
        2.1;
}

.modal-meta {

    display:
        grid;

    gap:
        10px;

    margin-bottom:
        24px;
}

.modal-meta div {

    display:
        flex;

    align-items:
        center;

    gap:
        9px;

    color:
        var(--muted);

    font-size:
        11px;
}

.modal-meta i {

    width:
        29px;

    height:
        29px;

    display:
        grid;

    place-items:
        center;

    flex-shrink:
        0;

    border-radius:
        9px;

    color:
        var(--price-gold);

    background:
        rgba(217, 171, 102, .07);
}

.modal-consult-btn {

    width:
        100%;

    gap:
        8px;
}


/* =========================================================
   HIDDEN
   ========================================================= */

.hidden {
    display:
        none !important;
}


/* =========================================================
   PRINT
   ========================================================= */

@media print {

    @page {

        size:
            A4 portrait;

        margin:
            12mm;
    }


    html,
    body {

        background:
            #fff !important;

        color:
            #111 !important;
    }


    body * {

        visibility:
            hidden !important;
    }


    .printing-price-list #priceTableWrapper,
    .printing-price-list #priceTableWrapper * {

        visibility:
            visible !important;
    }


    .printing-price-list #priceTableWrapper {

        position:
            absolute;

        top:
            0;

        right:
            0;

        width:
            100%;

        border:
            0 !important;

        box-shadow:
            none !important;

        background:
            #fff !important;
    }


    .price-table {

        min-width:
            0 !important;

        width:
            100% !important;

        color:
            #111 !important;
    }


    .price-table th {

        background:
            #f2e4c4 !important;

        color:
            #111 !important;

        border:
            1px solid #c9ad72 !important;
    }


    .price-table td {

        color:
            #222 !important;

        border:
            1px solid #ddd !important;
    }


    .table-product strong,
    .table-price {

        color:
            #111 !important;
    }


    .table-product span,
    .table-description {

        color:
            #555 !important;
    }


    .table-product img {

        print-color-adjust:
            exact;

        -webkit-print-color-adjust:
            exact;
    }

}


/* =========================================================
   RESPONSIVE
   ========================================================= */

@media (max-width: 1100px) {

    .price-products-grid {

        grid-template-columns:
            repeat(2,
                minmax(0, 1fr));
    }

    .price-category-tabs {

        grid-template-columns:
            repeat(3,
                minmax(0, 1fr));
    }

    .price-modal-dialog {

        width:
            min(800px, 100%);
    }

}


@media (max-width: 800px) {

    .price-modal-dialog {

        grid-template-columns:
            1fr;

        max-height:
            calc(100vh - 20px);
    }

    .price-modal-image {

        min-height:
            280px;

        max-height:
            300px;
    }

    .price-modal-content {

        padding:
            25px 20px;
    }

    .notes-grid {

        grid-template-columns:
            1fr;
    }

}


@media (max-width: 650px) {

    .price-hero-card {

        padding:
            35px 20px;
    }

    .category-tabs-panel {

        padding:
            20px 14px;
    }

    .price-category-tabs {

        grid-template-columns:
            repeat(2,
                minmax(0, 1fr));

        gap:
            8px;
    }

    .price-category-tab {

        min-height:
            72px;
    }

    .price-toolbar {

        flex-direction:
            column;

        align-items:
            stretch;
    }

    .price-toolbar-info {

        justify-content:
            center;
    }

    .price-view-switcher {

        justify-content:
            center;
    }

    .price-products-grid {

        grid-template-columns:
            1fr;
    }

    .price-product-card {

        min-height:
            0;
    }

    .price-range {

        grid-template-columns:
            1fr;

        gap:
            8px;
    }

    .price-divider {

        width:
            100%;

        height:
            1px;

        background:
            linear-gradient(90deg,
                transparent,
                rgba(217, 171, 102, .5),
                transparent);
    }

    .price-note {

        padding:
            13px;
    }

    .price-notes {

        padding:
            20px 15px;
    }

}


@media (max-width: 430px) {

    .price-category-tab span {

        font-size:
            12px;
    }

    .price-category-tab i {

        font-size:
            18px;
    }

    .price-hero-icon-container {
        width:150px;
        height:150px;
        font-size:25px;
    }
    .price-hero-icon{
        width: auto;
        height: 130px;
    }
    .price-hero-actions {

        width:
            100%;

        flex-direction:
            column;
    }

    .price-hero-actions .primary-btn,
    .price-hero-actions .secondary-btn {

        width:
            100%;
    }

    .modal-price-box {

        grid-template-columns:
            1fr;
    }

}