#tmr-price-list-page {
    --tmr-bg: #050505;
    --tmr-panel: #181818;
    --tmr-panel-hover: #1f1f1f;
    --tmr-gold: #C9A84C;
    --tmr-gold-hover: #e0c068;
    --tmr-text: #f5f0e8;
    --tmr-muted: #888;
    --tmr-border: rgba(201,168,76,.22);
    --tmr-border-strong: rgba(201,168,76,.55);

    background: var(--tmr-bg);
    color: var(--tmr-text);
}

#tmr-price-list-page * {
    box-sizing: border-box;
}

/* HERO */
#tmr-price-list-page .tmr-price-hero {
    padding: 70px 48px 55px;
    background: #111;
    border-bottom: 1px solid var(--tmr-border);
}

#tmr-price-list-page .tmr-section-label {
    font-size: 10px;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--tmr-gold);
    margin-bottom: 16px;
}

#tmr-price-list-page .tmr-price-hero h1 {
    font-size: clamp(42px, 6vw, 72px);
    line-height: 1.05;
    color: #fff;
    margin: 0;
}

#tmr-price-list-page .tmr-gold-rule {
    width: 48px;
    height: 1px;
    background: var(--tmr-gold);
    margin: 22px 0;
}

#tmr-price-list-page .tmr-price-hero p {
    color: var(--tmr-muted);
    font-size: 13px;
    max-width: 520px;
    line-height: 1.8;
}

/* LAYOUT */
#tmr-price-list-page .tmr-menu-layout {
    display: grid;
    grid-template-columns: 260px minmax(0, 1fr);
    min-height: 100vh;
}

#tmr-price-list-page .tmr-menu-sidebar {
    background: var(--tmr-panel);
    border-right: 1px solid var(--tmr-border);
    padding: 40px 0;
    position: sticky;
    top: 0;
    height: 100vh;
    align-self: start;
}

#tmr-price-list-page .tmr-menu-sidebar-title {
    font-size: 9px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--tmr-gold);
    padding: 0 28px 20px;
    font-weight: 700;
}

#tmr-price-list-page .tmr-sidebar-item {
    display: block;
    padding: 14px 28px;
    font-size: 11px;
    letter-spacing: 1.8px;
    line-height: 1.5;
    text-transform: uppercase;
    color: #9a9a9a;
    text-decoration: none;
    border-left: 2px solid transparent;
    transition: all .25s ease;
}

#tmr-price-list-page .tmr-sidebar-item:hover,
#tmr-price-list-page .tmr-sidebar-item.active {
    color: var(--tmr-gold);
    border-left-color: var(--tmr-gold);
    background: rgba(201,168,76,.08);
}

#tmr-price-list-page .tmr-sidebar-order-box {
    margin-top: 40px;
    padding: 22px 28px;
    border-top: 1px solid var(--tmr-border);
}

#tmr-price-list-page .tmr-sidebar-order-box div {
    font-size: 10px;
    letter-spacing: 2px;
    color: var(--tmr-gold);
    text-transform: uppercase;
    margin-bottom: 12px;
}

#tmr-price-list-page .tmr-sidebar-order-box a {
    display: block;
    background: var(--tmr-gold);
    color: var(--tmr-bg);
    padding: 13px 18px;
    text-align: center;
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 2px;
    text-decoration: none;
    text-transform: uppercase;
}

#tmr-price-list-page .tmr-sidebar-order-box a:hover {
    background: var(--tmr-gold-hover);
}

#tmr-price-list-page .tmr-menu-content {
    padding: 48px;
}

/* CATEGORY */
#tmr-price-list-page .tmr-category-section {
    margin-bottom: 64px;
    scroll-margin-top: 80px;
}

#tmr-price-list-page .tmr-ornament {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

#tmr-price-list-page .tmr-ornament span {
    width: 30px;
    height: 1px;
    background: var(--tmr-gold);
    opacity: .5;
}

#tmr-price-list-page .tmr-ornament i {
    width: 5px;
    height: 5px;
    background: var(--tmr-gold);
    transform: rotate(45deg);
}

#tmr-price-list-page .tmr-category-label {
    font-size: 9px;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--tmr-gold);
    font-weight: 700;
}

#tmr-price-list-page .tmr-category-title {
    font-size: 32px;
    color: #fff;
    margin: 8px 0;
    line-height: 1.1;
}

#tmr-price-list-page .tmr-category-subtitle {
    font-size: 11px;
    color: var(--tmr-muted);
    margin-bottom: 24px;
    font-style: italic;
}

#tmr-price-list-page .tmr-category-divider {
    width: 100%;
    height: 1px;
    background: var(--tmr-border);
    margin-bottom: 28px;
}

#tmr-price-list-page .tmr-subcategory-heading {
    font-size: 10px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--tmr-gold);
    margin: 28px 0 16px;
    font-weight: 700;
}

/* PRODUCTS */
#tmr-price-list-page .tmr-products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
    gap: 2px;
    margin-bottom: 28px;
}

#tmr-price-list-page .tmr-product-card {
    position: relative;
    display: grid;
    grid-template-rows: auto 1fr auto;
    min-height: 185px;
    padding: 28px;
    background: var(--tmr-panel);
    border: 1px solid var(--tmr-border);
    overflow: hidden;
    transition: .25s ease;
}

#tmr-price-list-page .tmr-product-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--tmr-gold);
    transform: scaleX(0);
    transform-origin: left;
    transition: .25s ease;
}

#tmr-price-list-page .tmr-product-card:hover {
    background: var(--tmr-panel-hover);
    border-color: var(--tmr-border-strong);
}

#tmr-price-list-page .tmr-product-card:hover::before {
    transform: scaleX(1);
}

#tmr-price-list-page .tmr-product-name {
    color: #fff;
    font-size: 21px;
    line-height: 1.25;
    margin: 0 56px 10px 0;
}

#tmr-price-list-page .tmr-product-grade {
    color: var(--tmr-gold);
    font-size: 9px;
    letter-spacing: 2.4px;
    line-height: 1.5;
    text-transform: uppercase;
    margin-bottom: 18px;
    max-width: calc(100% - 60px);
}

#tmr-price-list-page .tmr-product-price {
    display: flex;
    align-items: baseline;
    gap: 4px;
    color: var(--tmr-gold);
    font-size: 28px;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 10px;
}

#tmr-price-list-page .tmr-product-price span {
    font-size: 13px;
    color: var(--tmr-muted);
    font-weight: 400;
}

/* CARD BOTTOM */

#tmr-price-list-page .tmr-card-qty-wrap.tmr-qty-selector{
    display:grid;
    grid-template-columns:44px 1fr 44px auto;
    align-items:center;
    width:170px;
    height:52px;
    background:#090909;
    border:1px solid rgba(201,168,76,.35);
    overflow:hidden;
}

#tmr-price-list-page .tmr-card-qty-wrap .tmr-qty-minus,
#tmr-price-list-page .tmr-card-qty-wrap .tmr-qty-plus{
    width:44px;
    height:50px;
    padding:0;
    margin:0;
    border:0;
    outline:0;
    background:#101010;
    color:var(--tmr-gold);
    cursor:pointer;
    font-size:20px;
    transition:.25s;
}

#tmr-price-list-page .tmr-card-qty-wrap .tmr-qty-minus{
    border-right:1px solid rgba(201,168,76,.18);
}

#tmr-price-list-page .tmr-card-qty-wrap .tmr-qty-plus{
    border-left:1px solid rgba(201,168,76,.18);
}

#tmr-price-list-page .tmr-card-qty-wrap .tmr-qty-minus:hover,
#tmr-price-list-page .tmr-card-qty-wrap .tmr-qty-plus:hover{
    background:var(--tmr-gold);
    color:#050505;
}

#tmr-price-list-page .tmr-card-qty-wrap .tmr-row-qty{
    width:100%;
    height:50px;
    padding:0;
    margin:0;
    border:0!important;
    outline:0;
    background:#050505!important;
    color:#fff!important;
    text-align:center;
    font-size:14px;
    font-weight:700;
}

#tmr-price-list-page .tmr-card-qty-wrap .tmr-qty-unit{
    display:flex;
    align-items:center;
    justify-content:center;
    height:50px;
    padding:0 12px;
    background:#090909;
    color:var(--tmr-gold);
    font-size:12px;
    font-weight:700;
}

#tmr-price-list-page .tmr-product-add-btn {
    position: absolute;
    right: 28px;
    bottom: 28px;
    width: 42px !important;
    height: 42px !important;
    min-width: 42px !important;
    min-height: 42px !important;
    padding: 0 !important;
    margin: 0 !important;
    display: flex !important;
    align-items: center;
    justify-content: center;
    background: transparent !important;
    border: 1px solid var(--tmr-border-strong) !important;
    color: var(--tmr-gold) !important;
    font-size: 0 !important;
    line-height: 1 !important;
    text-indent: -9999px;
    overflow: hidden;
    cursor: pointer;
}

#tmr-price-list-page .tmr-product-add-btn::before {
    content: "+";
    text-indent: 0;
    font-size: 22px;
    line-height: 1;
    color: inherit;
}

#tmr-price-list-page .tmr-product-add-btn.is-added::before {
    content: "✎";
    font-size: 17px;
}

#tmr-price-list-page .tmr-product-add-btn.is-ready-update::before {
    content: "✓";
    font-size: 17px;
}

#tmr-price-list-page .tmr-product-add-btn:hover {
    background: var(--tmr-gold) !important;
    color: var(--tmr-bg) !important;
}

/* FLOATING CART BUTTON */
#tmr-floating-order-btn {
    position: fixed;
    right: 24px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 99999;
    width: 62px;
    height: 62px;
    border-radius: 50%;
    background: #10100e;
    border: 1px solid rgba(201,168,76,.6);
    color: var(--tmr-gold);
    cursor: pointer;
    box-shadow: 0 18px 45px rgba(0,0,0,.55);
    display: none;
    align-items: center;
    justify-content: center;
    animation: tmrCartPulse 1.8s ease-in-out infinite;
}

#tmr-floating-order-btn.has-items {
    display: flex;
}

#tmr-floating-order-btn span {
    font-size: 22px;
}

#tmr-floating-order-btn b {
    position: absolute;
    top: -7px;
    right: -7px;
    width: 22px;
    height: 22px;
    background: var(--tmr-gold);
    color: var(--tmr-bg);
    border-radius: 50%;
    font-size: 11px;
    display: flex;
    align-items: center;
    justify-content: center;
}

@keyframes tmrCartPulse {
    0%, 100% {
        box-shadow: 0 18px 45px rgba(0,0,0,.55);
    }
    50% {
        box-shadow: 0 18px 55px rgba(201,168,76,.22);
    }
}

/* CENTER FLOATING SUMMARY */
#tmr-floating-summary {
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0,0,0,.62);
    backdrop-filter: blur(6px);
    display: flex;
    align-items: center;
    justify-content: center;
    transform: none;
    opacity: 0;
    pointer-events: none;
    z-index: 99998;
    transition: opacity .25s ease;
}

#tmr-floating-summary.is-open {
    opacity: 1;
    pointer-events: auto;
}

#tmr-floating-summary .tmr-floating-summary-inner {
    position: relative;
    width: 460px;
    max-width: calc(100vw - 32px);
    max-height: 82vh;
    overflow-y: auto;
    background: #10100e;
    border: 1px solid rgba(201,168,76,.55);
    padding: 30px;
    box-shadow: 0 30px 90px rgba(0,0,0,.7);
    transform: translateY(18px) scale(.96);
    transition: transform .28s ease;
}

#tmr-floating-summary.is-open .tmr-floating-summary-inner {
    transform: translateY(0) scale(1);
}

#tmr-floating-close {
    position: absolute;
    top: 12px;
    right: 12px;
    background: transparent;
    border: 0;
    color: var(--tmr-gold);
    font-size: 24px;
    cursor: pointer;
}

#tmr-floating-summary .tmr-floating-summary-inner h2 {
    color: #fff;
    font-size: 24px;
    margin: 0 0 6px;
}

#tmr-floating-summary .tmr-floating-summary-inner > span {
    display: block;
    color: var(--tmr-gold);
    font-size: 9px;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 14px;
}

#tmr-floating-summary .tmr-mini-item {
    display: grid;
    grid-template-columns: 1fr 90px 34px;
    gap: 12px;
    align-items: center;
    padding: 14px 0;
    border-bottom: 1px solid var(--tmr-border);
}

#tmr-floating-summary .tmr-mini-item > div:first-child {
    min-width: 0;
}

#tmr-floating-summary .tmr-mini-item strong {
    font-size: 15px;
    line-height: 1.25;
    color: #fff;
}

#tmr-floating-summary .tmr-mini-item small {
    display: block;
    font-size: 11px;
    line-height: 1.45;
    color: #aaa;
    margin-top: 4px;
}

#tmr-floating-summary .tmr-mini-item b {
    font-size: 15px;
    color: var(--tmr-gold);
    text-align: right;
    white-space: nowrap;
}
#tmr-price-list-page .tmr-qty-blink {
    animation: tmrQtyBlink 1s ease-in-out infinite !important;
    outline: 2px solid #e0c068 !important;
}

@keyframes tmrQtyBlink {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(224,192,104,.15);
    }
    50% {
        box-shadow: 0 0 0 5px rgba(224,192,104,.28);
    }
}
#tmr-floating-summary .tmr-remove-mini {
    width: 30px !important;
    height: 30px !important;
    min-width: 30px !important;
    min-height: 30px !important;
    padding: 0 !important;
    margin: 0 !important;
    background: transparent !important;
    border: 1px solid rgba(201,168,76,.35) !important;
    color: var(--tmr-gold) !important;
    font-size: 16px !important;
    line-height: 28px !important;
    cursor: pointer;
}

#tmr-floating-summary .tmr-mini-total {
    margin-top: 18px;
    padding-top: 18px;
    border-top: 1px solid rgba(201,168,76,.35);
}

#tmr-floating-summary .tmr-build-btn {
    display: block;
    width: 100%;
    text-align: center;
    background: var(--tmr-gold);
    color: #050505 !important;
    padding: 14px 18px;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 1.4px;
    margin-top:10px;
}

#tmr-floating-summary .tmr-build-btn:hover {
    background: var(--tmr-gold-hover);
    transform: translateY(-1px);
}

/* RESPONSIVE */
@media (max-width: 900px) {
    #tmr-price-list-page .tmr-menu-layout {
        grid-template-columns: 1fr;
    }

    #tmr-price-list-page .tmr-menu-sidebar {
        display: none;
    }

    #tmr-price-list-page .tmr-menu-content {
        padding: 28px 18px;
    }

    #tmr-price-list-page .tmr-price-hero {
        padding: 48px 20px 40px;
    }

    #tmr-price-list-page .tmr-products-grid {
        grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    }

    #tmr-floating-order-btn.has-items {
        top: auto;
        right: 18px;
        bottom: 18px;
        transform: none;
    }

    #tmr-floating-summary .tmr-floating-summary-inner {
        width: calc(100vw - 24px);
        max-height: 78vh;
        padding: 24px;
    }
}

@media (max-width: 520px) {
    #tmr-price-list-page .tmr-products-grid {
        grid-template-columns: 1fr;
    }

    #tmr-price-list-page .tmr-product-card {
        min-height: 175px;
        padding: 24px;
    }

    #tmr-price-list-page .tmr-product-add-btn {
        right: 24px;
        bottom: 24px;
    }

    #tmr-price-list-page .tmr-card-qty-wrap {
        width: 112px;
    }

    #tmr-floating-summary .tmr-mini-item {
        grid-template-columns: 1fr 34px;
    }

    #tmr-floating-summary .tmr-mini-item b {
        grid-column: 1 / -1;
        text-align: left;
    }
}