/* =============================================================================
   Standard Shop Page & Category Archives — The Shim Shack
   Loaded by: includes/bp-standard-products.php on:
     • template-standard-shop.php
     • standard product single pages
     • standard-product category archive pages
     • cart page
============================================================================= */

/* ── Reset & base ──────────────────────────────────────────────────────────── */
#ss-shop-page *,
#ss-shop-page *::before,
#ss-shop-page *::after {
    box-sizing: border-box;
}

#ss-shop-page {
    font-family: inherit;
    color: #333;
}

#ss-shop-page a {
    text-decoration: none;
}

/* ── Hero banner ───────────────────────────────────────────────────────────── */
.ss-hero {
    position: relative;
    background-color: #1a2332;
    overflow: hidden;
}

.ss-hero-inner {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 64px 20px 52px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* Dark overlay when a background image is set via inline style */
.ss-hero-inner[style]::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(18, 28, 44, 0.68);
    z-index: -1;
}

.ss-hero-title {
    color: #fff;
    font-size: 38px;
    font-weight: 700;
    margin: 0 0 12px;
    letter-spacing: 0.01em;
}

.ss-breadcrumb {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.65);
}

.ss-breadcrumb a {
    color: rgba(255, 255, 255, 0.8);
    transition: color 0.15s;
}

.ss-breadcrumb a:hover {
    color: #fff;
    text-decoration: underline;
}

/* ── Two-column layout ─────────────────────────────────────────────────────── */
.ss-layout {
    display: flex;
    align-items: flex-start;
    max-width: 1300px;
    margin: 0 auto;
    padding: 32px 24px 64px;
    gap: 32px;
}

/* ── Sidebar ───────────────────────────────────────────────────────────────── */
.ss-sidebar {
    flex: 0 0 224px;
    width: 224px;
}

.ss-sidebar-heading {
    display: block;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.12em;
    color: #fff;
    text-transform: uppercase;
    background: #1a2332;
    padding: 12px 14px;
    margin: 0 0 0;
    border-radius: 20px 20px 0 0;
}

/* Category list */
.ss-cat-list {
    list-style: none;
    padding: 0;
    border: 1px solid #e8e8e8;
    border-top: none;
  border-radius: 0 0 20px 20px;
background: rgba(255, 255, 255, 0.002);
box-shadow: 0px 4px 6px -1px rgba(0, 0, 0, 0.1), 0px 2px 4px -2px rgba(0, 0, 0, 0.1);
overflow: hidden;
}

/* Override Flatsome's global li margin */
#ss-shop-page .ss-cat-list li {
    margin: 0 !important;
    padding: 0 !important;
}

.ss-cat-item {
    border-bottom: 1px solid #efefef;
}

.ss-cat-item:last-child {
    border-bottom: none;
}

.ss-cat-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.ss-cat-name {
    display: block;
    flex: 1;
    padding: 10px 6px 10px 14px;
    font-size: 13px;
    font-weight: 400;
    color: #333;
    transition: color 0.15s;
    line-height: 1.3;
}

.ss-cat-name:hover {
    color: #c62828;
}

.ss-cat-toggle {
    background: none;
    border: none;
    cursor: pointer;
    color: #bbb;
    font-size: 17px;
    transition: transform 0.2s ease, color 0.15s;
    flex-shrink: 0;
    margin-right:0px;
}

.ss-cat-toggle:hover {
    color: #c62828;
}

.ss-cat-toggle.ss-open {
    transform: rotate(90deg);
    color: #c62828;
}

/* Sub-category list */
.ss-cat-children {
    list-style: none;
    margin: 0;
    padding: 0 0 4px 0;
    background: #fafafa;
}

.ss-cat-children li {
    border-top: 1px solid #f0f0f0;
}

.ss-cat-children a {
    display: block;
    padding: 8px 14px 8px 26px;
    font-size: 12.5px;
    color: #666;
    transition: color 0.15s;
}

.ss-cat-children a:hover {
    color: #c62828;
}

/* Sidebar CTA — higher specificity to override Flatsome base styles */
#ss-shop-page .ss-sidebar .ss-sidebar-cta {
    background: #fcf1f1 !important;
    border-radius: 20px !important;
    padding: 18px 16px 20px !important;
    margin-top: 8px !important;
    border: none !important;
    box-shadow: none !important;
    text-align: center;
        border: 1px solid rgba(200, 16, 46, 0.2) !important;
}

#ss-shop-page .ss-sidebar .ss-cta-title {
    font-size: 14px !important;
    font-weight: 700 !important;
    color: #222 !important;
    margin: 0 0 6px !important;
    padding: 0 !important;
    border: none !important;
    background: none !important;
}

#ss-shop-page .ss-sidebar .ss-cta-text {
    font-size: 12.5px !important;
    color: #666 !important;
    line-height: 1.55 !important;
    margin: 0 0 14px !important;
    padding: 0 !important;
}

#ss-shop-page .ss-sidebar .ss-cta-btn {
    display: block !important;
    text-align: center !important;
    background: #c62828 !important;
    color: #fff !important;
    font-size: 14px !important;
    font-weight: 900 !important;
    letter-spacing: 0.08em !important;
    padding: 11px 14px !important;
    border-radius: 18px !important;
    border: none !important;
    box-shadow: none !important;
    text-decoration: none !important;
    transition: background 0.2s !important;
}

#ss-shop-page .ss-sidebar .ss-cta-btn:hover {
    background: #b71c1c !important;
    color: #fff !important;
}

/* ── Main area ─────────────────────────────────────────────────────────────── */
.ss-main {
    flex: 1;
    min-width: 0;
}

/* ── Persistent search bar (above results/sections) ────────────────────────── */
.ss-search-bar {
    display: flex;
    justify-content: flex-end;
}

/* ── Search form ─────────────────────────────────────────────────────────────── */
.ss-search-form {
    display: flex;
    align-items: center;
    width: 360px;
    /* border: 1px solid #d8d8d8; */
    border-radius: 4px;
    background: #fff;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0,0,0,0.04);
}

.ss-search-input {
    flex: 1;
    min-width: 0;
    border: none;
    outline: none;
    padding: 9px 12px;
    font-size: 13px;
    color: #333;
    background: transparent;
}

.ss-search-input::placeholder {
    color: #bbb;
}

.ss-search-btn {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0px 0px 18px 0px;
    color: #aaa;
    display: flex;
    align-items: center;
    transition: color 0.15s;
    flex-shrink: 0;
}
.ss-search-btn:hover {
    color: #555;
}

.ss-search-clear {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0 8px 0 4px;
    font-size: 18px;
    line-height: 1;
    color: #aaa;
    flex-shrink: 0;
    transition: color 0.15s;
}

.ss-search-clear:hover {
    color: #c62828;
}

/* ── Section wrapper ───────────────────────────────────────────────────────── */
.ss-section {
    margin-bottom: 52px;
}

.ss-section-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 18px;
    gap: 16px;
}

.ss-section-title {
    font-size: 20px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0;
    white-space: nowrap;
    margin-bottom:10px;
}

/* Right-side group: search box + View All link */
.ss-header-right {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-shrink: 0;
}

.ss-view-all {
    font-size: 13px;
    font-weight: 600;
    color: #c62828;
    transition: color 0.15s;
    white-space: nowrap;
}

.ss-view-all:hover {
    color: #b71c1c;
    text-decoration: underline;
}

.ss-results-meta {
    font-size: 13.5px !important;
    color: #999;
    margin: -6px 0 16px;
}

.ss-searching {
    color: #aaa;
    font-style: italic;
    font-size: 14px;
    padding: 16px 0;
}

.ss-no-products {
    color: #aaa;
    font-style: italic;
    font-size: 14px;
}

/* ── Shared button base ────────────────────────────────────────────────────── */
.ss-btn {
    display: inline-block;
    border: none;
    cursor: pointer;
    font-weight: 600;
    letter-spacing: 0.04em;
    border-radius: 3px;
    transition: background 0.18s;
    line-height: 1;
    text-align: center;
}

.ss-btn-select {
   background: #F3F4F6;
    color: #374151 !important;
    padding: 11px 16px !important;
}

.ss-btn-select:hover {
    background: #b71c1c;
     color: #fff !important;
}
form.ss-search-form.cs-bg input {
    background: #F1F5F9;
    border: none !important;
    box-shadow: none !important;
    margin: 0;
    border-radius: 0px 10px 10px 0px;
    font-size: 13px;
    height: 39px;
}
form.ss-search-form.cs-bg button[type="submit"] {
     display: flex;
    align-items: center;
    justify-content: center;
    background: #F1F5F9 !important;
    border: none !important;
    box-shadow: none !important;
    margin: 0;
    border-radius: 10px 0px 0px 10px;
    padding: 10px 0px 10px 10px;
     height: 39px;
}
/* ── Featured products — 6-column grid ────────────────────────────────────── */
.ss-product-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    column-gap: 15px;
    row-gap: 15px;
}

.ss-product-card {
    display: flex;
    flex-direction: column;
    overflow: hidden;
    background: #FFFFFF;
border: 1px solid #F3F4F6;
box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.05);
border-radius: 16px;
    transition: box-shadow 0.2s;
    padding:10px;
}

.ss-product-card:hover {
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.10);
}

.ss-product-img-wrap {
display: block;
    /* aspect-ratio: 1 / 1; */
    overflow: hidden;
    height: 130px;
    
}

.ss-product-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.ss-product-card:hover .ss-product-img {
    transform: scale(1.05);
}

.ss-product-body {
    flex: 1;
    padding: 10px 0;
    display: flex;
    flex-direction: column;
    font-size: 13px;
}

.ss-product-name {
   font-size: 14px;
    font-weight: bold;
    color: #1F2937;
    margin: 0 0 4px;
    line-height: 1.35;
    text-transform: capitalize;
}
span.amount {
    white-space: nowrap;
    color: #6B7280 !important;
    font-weight: bold;
}
.ss-product-name a {
    color: inherit;
}

.ss-product-name a:hover {
    color: #c62828;
}

.ss-product-desc {
font-size: 12px !important;
    color: #6B7280 !important;
    line-height: 1.45;
    margin: 0 0 6px;
    flex: 1;
}

.ss-product-price {
 font-size: 13px;
    color: #6B7280;
    margin-bottom: 2px;
}

.ss-product-price .woocommerce-Price-amount {
    color: #333;
}

/* Select button flush to card bottom */
.ss-btn-select {
    display: block;
    width: 100%;
    border-radius: 10px;
    padding: 9px 8px;
    font-size: 12px;
}

/* ── Wide grid — Shop by Shape / Material (2-column horizontal cards) ─────── */
.ss-wide-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.ss-wide-card {
    display: flex;
    overflow: hidden;
   border: 1px solid #F3F4F6;
   box-shadow: 0px 4px 6px -1px rgba(0, 0, 0, 0.1), 0px 2px 4px -2px rgba(0, 0, 0, 0.1);
    border-radius: 16px;
    transition: box-shadow 0.2s;
    padding:10px;
}

.ss-wide-card:hover {
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.10);
}

.ss-wide-img-wrap {
    display: block;
    flex: 0 0 160px;
    min-height: 160px;
    overflow: hidden;
    background: #f5f5f5;
      border-radius: 10px;
}

.ss-wide-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.ss-wide-card:hover .ss-wide-img {
    transform: scale(1.05);
}

.ss-wide-body {
    flex: 1;
    padding: 18px 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-width: 0;
}

.ss-wide-name {
font-size: 14px;
    font-weight: bold;
    color: #1F2937;
    margin: 0 0 4px;
    line-height: 1.35;
    text-transform: capitalize;
}

.ss-wide-name a {
    color: inherit;
}

.ss-wide-name a:hover {
    color: #c62828;
}

.ss-wide-desc {
     font-size: 13px !important;
    color: #6B7280 !important;
    margin: 0 0 12px;
    flex: 1;
}

.ss-wide-price {
    font-size: 14px;
    font-weight: 600;
    color: #333;
    margin-bottom: 14px;
}
.ss-wide-card a.ss-btn.ss-btn-select{max-width: 150px;}
.ss-wide-price .woocommerce-Price-amount {
    color: #333;
}

/* ── Single product page — hero banner ────────────────────────────────────── */

/*
 * The hook fires inside Flatsome's container, so we use the 100vw + transform
 * escape to pull the banner edge-to-edge regardless of container width.
 * Flatsome sets overflow-x:hidden on the body so no horizontal scroll appears.
 */
.bp-product-hero {
    position: relative;
    background-color: #1a2332;
    overflow: hidden;
    width: 100vw;
    left: 50%;
    transform: translateX(-50%);
    margin-bottom: 0;
}

.bp-product-hero-inner {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 60px 20px 48px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* Dark overlay when a product image is used as background */
.bp-product-hero-inner[style]::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(18, 28, 44, 0.70);
    z-index: -1;
}

.bp-product-hero-title {
    color: #fff;
    font-size: 32px;
    font-weight: 700;
    margin: 0 0 10px;
    letter-spacing: 0.01em;
    line-height: 1.3;
    text-transform: capitalize;
}

/* ── Ordering select (category archive pages) ───────────────────────────────── */
.ss-orderby-select {
    height: 36px;
    width: 190px;
    padding: 0 28px 0 10px;
    border-radius: 9px;
    font-size: 13px;
    color: #333;
    background: #F1F5F9 url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'%3E%3Cpath d='M0 0l5 6 5-6z' fill='%23666'/%3E%3C/svg%3E") no-repeat right 8px center;
    appearance: none;
    -webkit-appearance: none;
    cursor: pointer;
    overflow: hidden;
    text-overflow: ellipsis;
    flex-shrink: 0;
 border:1px solid #F1F5F9;
}
.ss-orderby-select:focus {
box-shadow: none;
border:1px solid #b7bdc2;
    background-color: #F1F5F9;}

@media (max-width: 560px) {
    .bp-product-hero-title {
        font-size: 22px;
    }

    .bp-product-hero-inner {
        padding: 40px 16px 32px;
    }
}

/* ── Single product page additions ────────────────────────────────────────── */

/* "Buying 100+?" banner above Add to Cart */
.bp-bulk-quote-banner {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #fdf6e3;
    padding: 3px 14px;
    font-size: 13.5px;
    color: #7a5c00;
    width: 100%;
}

.bp-bulk-quote-banner svg {
    flex-shrink: 0;
    color: #c49a2e;
}

/* ── Both buttons on the same row ────────────────────────────────────────────
   The variation add-to-cart wrapper is the direct parent of qty + button + our
   link, so we flex that element. Body class used for reliability over :has().
*/

/* Variable products (the actual container from the inspected HTML) */
.bp-standard-product .woocommerce-variation-add-to-cart {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    flex-wrap: wrap !important;
    gap: 12px !important;
    border: 1px solid #E6DCDC;
   
}

/* Prevent the quantity+stepper block from stretching full-width */
.bp-standard-product .woocommerce-variation-add-to-cart .quantity,
.bp-standard-product .woocommerce-variation-add-to-cart .quantity.buttons_added {
    width: auto !important;
    float: none !important;
    /* margin: 0 !important; */
}

/* Simple products */
.bp-standard-product form.cart:not(.variations_form) {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    flex-wrap: wrap !important;
    gap: 12px !important;
    border: 1px solid #ddd;
    margin-top: 25px;
    width: 100%;
}

.bp-standard-product form.cart:not(.variations_form) .quantity {
    width: auto !important;
    float: none !important;
    margin: 0 !important;
}

/* ── ADD TO CART button — match site red ─────────────────────────────────── */
.bp-standard-product .single_add_to_cart_button,
.bp-standard-product .single_add_to_cart_button.button {
    background-color: #c62828 !important;
    border-color: #c62828 !important;
    color: #fff !important;
    text-transform: uppercase !important;
    border-radius: 10px !important;
    font-size: 13.5px;
    font-weight: 700;
      padding: 3px 22px !important;
}

.bp-standard-product .single_add_to_cart_button:hover {
    background-color: #b71c1c !important;
    border-color: #b71c1c !important;
    color: #fff !important;
}

/* ── REQUEST BULK QUOTE button — gold ───────────────────────────────────── */
.bp-bulk-quote-btn {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    background: #c49a2e !important;
    color: #fff !important;
    font-size: 13.5px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 13px;
    border-radius: 3px;
    border: none !important;
    cursor: pointer;
    text-decoration: none !important;
    transition: background 0.2s;
    line-height: 1;
     border-radius: 10px !important;
}
.text-center .quantity, .quantity{margin-right: 0px !important;}
.bp-bulk-quote-btn:hover {
    background: #a8821e !important;
    color: #fff !important;
}
.product-summary .variations_button {
    padding: 0 !important;
}
/* ── Price label "Price: $X.XX" ──────────────────────────────────────────── */
.bp-price-label {
    font-weight: 600;
    color: #555;
    margin-right: 4px;
}

/* ── Short description below product title ───────────────────────────────── */
.bp-product-excerpt {
    font-size: 12px;
    color: #000;
    margin: 8px 0 16px;
}

/* ── Hide product categories / tags meta ─────────────────────────────────── */
.bp-standard-product .product_meta {
    display: none !important;
}

/* ── Hide social share icons ─────────────────────────────────────────────── */
.bp-standard-product .share-icons {
    display: none !important;
}

/* ══ RESPONSIVE ══════════════════════════════════════════════════════════════ */

/* Large tablet ≤1100px: 4-column product grid */
@media (max-width: 1100px) {
    .ss-product-grid {
        grid-template-columns: repeat(4, 1fr); /* 5 → 4 at tablet-wide */
    }
}

/* Tablet ≤860px: stack sidebar above main, 3-column grid */
@media (max-width: 860px) {
    .ss-layout {
        flex-direction: column;
        gap: 24px;
        padding: 24px 16px 48px;
    }

    .ss-sidebar {
        width: 100%;
        flex: none;
        display: grid;
        grid-template-columns: 1fr;
        gap: 0 24px;
    }

    .ss-sidebar-heading {
        grid-column: 1 / -1;
    }

    .ss-sidebar-cta {
        grid-column: 1 / -1;
    }

    .ss-product-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 12px;
    }

    .ss-wide-grid {
        grid-template-columns: 1fr 1fr;
    }
}

/* Mobile ≤560px: 2-column grid, stacked wide cards */
@media (max-width: 560px) {
    .ss-wide-body{padding:15px 0}
    .ss-hero-title {
        font-size: 26px;
    }

    .ss-sidebar {
        grid-template-columns: 1fr;
    }

    .ss-product-grid {
        grid-template-columns: repeat(2, 1fr);
        column-gap: 10px;
        row-gap: 18px;
    }

    .ss-wide-card {
        flex-direction: column;
    }

    .ss-wide-img-wrap {
        flex: none;
        min-height: 0;
        height: 180px;
        width: 100%;
    }

    /* Stack search form below the heading on small screens */
    .ss-section-header {
        flex-wrap: wrap;
    }

    .ss-header-right {
        width: 100%;
        justify-content: space-between;
    }

    /* .ss-search-form {
        flex: 1;
    } */
.ss-search-form{width:100%;}
    .bp-atc-row {
        flex-direction: column;
        align-items: flex-start;
    }
    .ss-search-bar {
    justify-content: space-between;
    flex-wrap: wrap;
}

    .bp-bulk-quote-btn {
        margin-left: 0;
        width: 100%;
        text-align: center;
    }
}

/* ══ RELATED PRODUCTS ════════════════════════════════════════════════════════ */

.bp-related-section {
    margin-top: 52px;
    margin-bottom: 52px;
}

/* 6-column grid — reuses .ss-product-card styles already defined above */
.bp-related-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    column-gap: 15px;
    row-gap: 15px;
}

@media (max-width: 1100px) {
    .bp-related-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 700px) {
    .bp-related-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ══ CATEGORY ARCHIVE PAGINATION ════════════════════════════════════════════ */

.ss-pagination {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 32px;
    justify-content: center;
}

.ss-pagination .page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 36px;
    height: 36px;
    padding: 0 10px;
    border: 1px solid #d8d8d8;
    border-radius: 4px;
    font-size: 13px;
    font-weight: 500;
    color: #333;
    background: #fff;
    transition: background 0.15s, color 0.15s, border-color 0.15s;
    text-decoration: none;
}

.ss-pagination .page-numbers:hover {
    background: #1a2332;
    color: #fff;
    border-color: #1a2332;
}

.ss-pagination .page-numbers.current {
    background: #1a2332;
    color: #fff;
    border-color: #1a2332;
}

/* Active sidebar category */
.ss-cat-item.ss-cat-active > .ss-cat-row > .ss-cat-name {
    font-weight: 700;
    color: #1a2332;
}

.ss-cat-children li.ss-cat-active > a {
    font-weight: 700;
    color: #1a2332;
}

/* ══ CHECKOUT — ORDER REVIEW PANEL ══════════════════════════════════════════ */

/* ── Shared item row ─────────────────────────────────────────────────────── */
.bp-co-item {
    display: grid;
    grid-template-columns: 64px 1fr auto;
    align-items: start;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid #f0f0f0;
}

.bp-co-item:last-child {
    border-bottom: none;
}

.bp-co-item-img {
    width: 64px;
    height: 64px;
    object-fit: contain;
    border-radius: 4px;
    display: block;
}

.bp-co-item-body {
    min-width: 0;
}

.bp-co-item-name {
    display: block;
    font-size: 13.5px;
    font-weight: 600;
    color: #1a2332;
    margin-bottom: 4px;
    line-height: 1.35;
}

/* Meta (dl.variation / wc-item-meta) inside checkout review */
.bp-co-item-meta dl.variation,
.bp-co-item-meta .wc-item-meta {
    margin: 0;
    font-size: 11px;
    color: #555;
    list-style: none;
    padding: 0;
}

.bp-co-item-meta dl.variation dt,
.bp-co-item-meta .wc-item-meta .wc-item-meta-label {
    display: inline;
    font-weight: 700 !important;
    text-transform: uppercase;
    font-size: 12px;
     color: #000;
    letter-spacing: 0.03em;
}

.bp-co-item-meta dl.variation dd,
.bp-co-item-meta .wc-item-meta li {
       display: inline-block;
    margin: 1px 0 3px;
    color: #000;
}

.bp-co-item-meta dl.variation dd p,
.bp-co-item-meta .wc-item-meta li p {
    display: inline;
    margin: 0;
       color: #be1429 !important;
    font-size: 12px !important;
}

.bp-co-item-meta dl.variation dd a,
.bp-co-item-meta .wc-item-meta li a {
    color: #000 !important;
    text-decoration: none;
}

/* Price cell */
.bp-co-item-price {
    text-align: right;
    white-space: nowrap;
    font-size: 13.5px;
}

.bp-co-price-label {
    display: block;
    font-size: 12px;
    color: #999;
    margin-bottom: 1px;
}

.bp-co-item-price .amount {
    font-weight: 700;
    color: #1a2332;
}

.bp-co-item-price--rfq {
    font-size: 13px;
    color: #666;
    font-weight: 500;
}

/* ── Standard checkout: total row ────────────────────────────────────────── */
.bp-co-items {
    margin-bottom: 0;
}

.bp-co-total-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #1a2332;
    color: #fff;
    padding: 13px 16px;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.04em;
    margin-top: 0;
    border-radius: 0 0 4px 4px;
}

.bp-co-total-amount {
    font-size: 18px;
}

.bp-co-total-amount .amount {
    color: #fff;
}

.bp-co-rfq-sub-label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: #c49a2e;
    padding: 14px 0 6px;
    border-top: 2px solid #f5f5f5;
    margin-top: 8px;
}

/* ── RFQ Details panel ───────────────────────────────────────────────────── */
.bp-rfq-panel {
    border: 2px solid #c62828;
    border-radius: 6px;
    overflow: hidden;
}

.bp-rfq-panel-head {
    background: #c62828;
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    padding: 9px 16px;
}

.bp-rfq-number {
    padding: 10px 16px 0;
    font-size: 13px;
    color: #444;
}

.bp-rfq-number-label {
    color: #888;
    margin-right: 6px;
}

.bp-rfq-products-label {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #888;
    border-bottom: 5px solid #f0f0f0;
}

.bp-rfq-items {
    padding: 4px 16px 8px;
}

.bp-rfq-items .bp-co-item {
    padding: 10px 0;
}

.bp-rfq-credit-note {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #f9f9f9;
    border-top: 1px solid #eee;
    padding: 10px 16px;
    font-size: 12px;
    font-weight: 600;
    color: #1a2332;
}

.bp-rfq-credit-note svg {
    flex-shrink: 0;
    color: #c49a2e;
}

/* ── Payment section — styled uniformly for both flows ───────────────────── */
.page-checkout #payment {
  background: #fff;
    border: 1px solid #e0e0e0 !important;
    border-radius: 4px !important;
    border-top: none;
    padding: 20px;
    margin-top: 0;
}

.page-checkout #payment ul.payment_methods {
    border-bottom: 1px solid #eee;
    padding-bottom: 14px;
    margin-bottom: 14px;
}

.page-checkout #payment ul.payment_methods li label {
    font-size: 13px;
    font-weight: 600;
    color: #1a2332;
}

.page-checkout #payment .payment_box {
    background: #f9f9f9;
    border-radius: 4px;
    padding: 12px;
    font-size: 12.5px;
    color: #555;
    margin-top: 8px;
}

/* Payment form fields (card gateway) */
.page-checkout #payment .form-row input {
    height: 42px;
    border: 1px solid #d0d0d0;
    border-radius: 4px;
    padding: 0 12px;
    font-size: 13px;
    width: 100%;
    margin-bottom: 8px;
}

/* PAY NOW / Submit Quote button */
.page-checkout #payment #place_order {
    display: block;
    height: 48px;
    background: #c62828;
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.06em;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    margin-top: 16px;
    transition: background 0.15s;
}

.page-checkout #payment #place_order:hover {
    background: #b71c1c;
}

/* ── Standard flow: hide RFQ-only UI elements ─────────────────────────────── */
.bp-checkout-standard #user_link_hidden_checkout_field,
.bp-checkout-standard .needdate,
.bp-checkout-standard .needs-date,
.bp-checkout-standard #need_parts_by_date_field,
.bp-checkout-standard #need_parts_field,
.bp-checkout-standard #delivery_date_field,
.bp-checkout-standard #required_date_field,
.bp-checkout-standard .bp-rfq-panel {
    display: none !important;
}

/* ── Standard flow: Authorize.net card form always visible ─────────────────── */
/* style.css hides the Authorize.net <li> on all checkout pages (RFQ default).
   Override that rule for the standard flow body class. */
.bp-checkout-standard li.wc_payment_method.payment_method_yith_wcauthnet_credit_card_gateway {
    display: block !important;
}

/* WooCommerce normally shows/hides .payment_box via JS after the radio changes.
   Force it open so card fields are visible even before JS fires. */
.bp-checkout-standard #payment .payment_box {
    display: block !important;
}

/* ── RFQ flow: #payment moved to left column (below Order Notes) ───────────── */
/* After JS detaches #payment from the sidebar and inserts it into the left
   column, remove the sidebar border/background and give it a clean top margin
   so it reads as a natural continuation of the form. */
.bp-checkout-rfq #payment {
    margin-top: 24px;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    background: #fff;
}

/* The RFQ sidebar should show only the RFQ DETAILS panel now — no payment box.
   The JS moves #payment out, but guard with CSS in case JS is slow. */
.bp-checkout-rfq .checkout-sidebar #payment {
    display: none;
}

/* ══ CART PAGE ═══════════════════════════════════════════════════════════════ */

#bp-cart-page {
    width: 100%;
    margin: 0 auto;
    padding: 32px 24px 64px;
    font-family: inherit;
}

#bp-cart-page *,
#bp-cart-page *::before,
#bp-cart-page *::after {
    box-sizing: border-box;
}

/* ── Mixed cart alert banner ─────────────────────────────────────────────── */
.bp-cart-alert {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    background: #fffbea;
    border: 1px solid #f0d060;
    border-radius: 6px;
    padding: 14px 18px;
    margin-bottom: 28px;
    font-size: 13.5px;
}

.bp-cart-alert svg {
    flex-shrink: 0;
    color: #c49a2e;
    margin-top: 1px;
}

.bp-cart-alert strong {
    display: block;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 2px;
    color: #333;
}

.bp-cart-alert p {
    margin: 0;
    color: #555;
}

/* ── Section panels ──────────────────────────────────────────────────────── */
.bp-cart-section {
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    overflow: hidden;
    margin-bottom: 24px;
}

.bp-cart-section-head {
    background: #f5f5f5;
    border-bottom: 1px solid #e0e0e0;
    padding: 10px 20px;
    font-size: 13px;
    font-weight: 700;
    color: #000;
    display: flex;
    align-items: center;
    gap: 6px;
}

.bp-cart-count {
    font-weight: 400;
        color: #C41E3A;
}

/* ── Cart item row ───────────────────────────────────────────────────────── */
.bp-cart-item {
    display: grid;
    grid-template-columns: 88px 1fr 135px 62px 48px;
        align-items: start;
    gap: 14px;
    border-bottom: 1px solid #f0f0f0;
    background: #fff;
}

.bp-cart-item:last-child {
    border-bottom: none;
}

/* Keep price / qty / remove vertically centred relative to the image height */
.bp-cart-item-price,
.bp-cart-item-qty,
.bp-cart-item-remove {
    align-self: center;
}
.bp-cart-item-qty {
    border-right: 1px solid #f0f0f0;
    padding: 40px 11px;
    display: flex;
    align-items: center;
    height: 100%;
    border-left: 1px solid #f0f0f0;
}
/* Thumbnail */
.bp-cart-item-img {
    border-right: 1px solid #f0f0f0;
    display: flex;
    align-items: center;
    height: 100%;
    border-left: 1px solid #f0f0f0;
    padding: 10px 10px;
}
.bp-cart-item-img img {
    width: 88px;
    height: 88px;
    object-fit: contain;
    display: block;
}

/* Body: badge + name + meta */
.bp-cart-item-body {
    min-width: 0;
    padding: 10px;
}

.bp-cart-badge {
    display: inline-block;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.05em;
    padding: 2px 8px;
    border-radius: 3px;
    margin-bottom: 6px;
}

.bp-badge-standard {
    background: #c62828;
    color: #fff;
}

.bp-badge-rfq {
       background: #FCD262;
    color: #000;
}

.bp-cart-item-name {
   font-size: 15px;
    font-weight: 600;
    margin: 0 0 4px;
    line-height: 1.4;
    text-transform: capitalize;
    color: #000;
}

.bp-cart-item-name a {
    color: #1a2332;
    text-decoration: none;
}

.bp-cart-item-name a:hover {
    text-decoration: underline;
}

.bp-edit-link {
    font-size: 12px;
    color: #c49a2e;
    text-decoration: underline;
    display: inline-block;
    margin-bottom: 4px;
}

/* WooCommerce item meta — dl.variation (standard variations) and
   TM EPO data (outputs <dl> or <ul class="wc-item-meta"> with <li>) */
.bp-cart-item-body dl.variation,
.bp-cart-item-body .wc-item-meta {
    margin: 6px 0 0;
    font-size: 11.5px;
    color: #555;
    list-style: none;
    padding: 0;
}

/* Each dt/dd or li on its own row, label and value inline */
.bp-cart-item-body dl.variation dt,
.bp-cart-item-body .wc-item-meta .wc-item-meta-label {
    display: inline-block;
    font-weight: 700 !important;
    font-size: 11px !important;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    color: #666;
}

.bp-cart-item-body dl.variation dd,
.bp-cart-item-body .wc-item-meta li {
    display: inline-block;
    margin: 1px 0 4px;
    color: #000;
}

.bp-cart-item-body dl.variation dd p,
.bp-cart-item-body .wc-item-meta li p {
    display: inline;
    margin: 0;
    color: #000 !important;  /* override Flatsome red link colour on meta values */
    font-size: 12px !important;
}

/* Flatsome / theme sometimes colours variation links red — neutralise */
.bp-cart-item-body dl.variation dd a,
.bp-cart-item-body .wc-item-meta li a {
    color: #000 !important;
    text-decoration: none;
}

/* Price column */
.bp-cart-item-price {
    min-width: 90px;
    margin: right 10px;
}

.bp-price-label {
    display: block;
    font-size: 15px;
    color: #000;
    margin-bottom: 2px;
    text-align: left;
}

.bp-cart-item-price .amount {
    font-size: 15px;
    font-weight: 700;
    color: #1a2332;
    float: left;
}

/* RFQ price area */
.bp-request-quote-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background: #fff8e1;
    border: 1px solid #f0d060;
    border-radius: 4px;
    padding: 3px 10px;
    font-size: 12px;
    font-weight: 600;
    color: #7a5c00;
    white-space: nowrap;
}

.bp-rq-info {
    font-size: 14px;
    cursor: help;
    color: #c49a2e;
}

.bp-rq-note {
    font-size: 11px !important;
    color: #888 !important;
    margin: 4px 0 0;
}

/* Quantity column */
.bp-cart-item-qty .quantity {
    display: flex;
    align-items: center;
}

.bp-cart-item-qty input[type="number"] {
    width: 52px;
    height: 36px;
    text-align: center;
    border: 1px solid #d0d0d0;
    border-radius: 4px !important;
    font-size: 14px;
    padding: 0 6px;
}
.quantity input[type="number"]{ border-radius: 4px !important;}
/* Remove button */
.bp-remove-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    color: #c62828;
    transition: background 0.15s, color 0.15s;
        border: 1px solid #d0d0d0;
        border-radius: 100px;
}
.bp-atc-row {
    padding: 0px 10px 10px 10px;
    display: flex;
    gap: 15px;
}
.bp-remove-btn:hover {
    background: #fdecea;
    color: #b71c1c;
}

/* ── Subtotal row ────────────────────────────────────────────────────────── */
.bp-cart-subtotal {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 20px;
    background: #fafafa;
    border-top: 1px solid #e8e8e8;
    font-size: 13.5px;
}

.bp-cart-subtotal span:first-child {
    color: #555;
}

.bp-subtotal-amount {
    font-weight: 700;
    font-size: 15px;
    color: #1a2332;
}

/* ── Bottom action buttons ───────────────────────────────────────────────── */
.bp-cart-actions {
    display: flex;
    gap: 16px;
    margin-top: 8px;
    flex-wrap: wrap;
}

.bp-cart-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 48px;
    padding: 0 32px;
    border-radius: 4px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-decoration: none;
    transition: background 0.15s, color 0.15s, border-color 0.15s;
    white-space: nowrap;
}

.bp-cart-btn--checkout {
    background: #c62828;
    color: #fff;
    border: 2px solid #c62828;
}

.bp-cart-btn--checkout:hover {
    background: #b71c1c;
    border-color: #b71c1c;
    color: #fff;
}

.bp-cart-btn--quote {
    background: #1a2332;
    color: #fff;
    border: 2px solid #1a2332;
}

.bp-cart-btn--quote:hover {
    background: #1a2332;
    color: #fff;
}

/* ── Mobile ─────────────────────────────────────────────────────────────── */
@media (max-width: 640px) {
    #bp-cart-page {
        padding: 20px 16px 48px;
    }

    .bp-cart-item {
        grid-template-columns: 64px 1fr;
        grid-template-rows: auto auto auto;
        gap: 10px;
        padding: 14px 16px;
    }

    .bp-cart-item-img {
        grid-row: 1 / 3;
    }

    .bp-cart-item-img img {
        width: 64px;
        height: 64px;
    }

    .bp-cart-item-body {
        grid-column: 2;
        grid-row: 1;
    }

    .bp-cart-item-price {
        grid-column: 1 / -1;
        text-align: left;
        display: flex;
        align-items: center;
        gap: 8px;
    }

    .bp-price-label {
        display: inline;
        margin: 0;
    }

    .bp-cart-item-qty,
    .bp-cart-item-remove {
        grid-row: 2;
    }

    .bp-cart-item-qty {
        grid-column: 1;
    }

    .bp-cart-item-remove {
        grid-column: 2;
        justify-self: end;
    }

    .bp-cart-actions {
        flex-direction: column;
    }

    .bp-cart-btn {
        width: 100%;
    }
}

.product-info .is-divider{
    display: none !important;
}
.product-info .button,
button {
   margin-bottom: 0 !important; 
}

.single-product .product-info {
  border: 1px solid #D9D9D9;
    margin: 0px 0px 0px 30px;
    padding: 35px 45px;
}

.single-product .product-gallery{
  padding-top:10px;
 border: 1px solid #D9D9D9;
  margin: 0px 0px 0px 30px;
}

.row.content-row.mb-0 {
    align-items: self-start;
}
.woocommerce-product-gallery__image.slide.first.is-selected {
    text-align: center;
}
.product-thumbnails img, .product-gallery-slider img {
       width: auto !important;
    margin: 0 auto;
}
.flickity-slider {
    display: flex;
    align-items: center;
}
.product_title.entry-title {
    text-transform: capitalize;
    color: #000000;
}
p.price.product-page-price {
    display: flex;
    align-items: center;
    gap: 5px;
}
div#ss-featured-load-more-wrap {
    text-align: center;
    margin-top: 25px;
}
button#ss-featured-load-more {
    background: #1a1a1a;
    color: #fff;
    font-size: 12px;
    padding: 7px 24px;
    opacity: 0.85;
    border-radius: 40px;
}
.product-short-description p {
    color: #000000 !important;
    font-size: 12px !important;
}

.variations {
    margin-top: 25px;
}
.product-summary .quantity {
    margin-bottom: 0px !important;
}
table.variations tr td {
    float: left;
    width: 100%;
}
table.variations tr td label, table.variations tr td .label, table.variations tr td input, table.variations tr td select, table.variations tr td form, table.variations tr td dl, table.variations tr td p{
margin: 0 !important;
}

table.variations tr td label {
    color: #222;
    letter-spacing: 2px;
    font-weight: normal;
}
table.variations tr td input, table.variations tr td select{margin-bottom: 12px !important;
background: #F1F5F9;
    border: none !important;
    box-shadow: none !important;
    margin: 0;
    border-radius: 10px;
    font-size: 13px;
    height: 39px;
}
   table.variations tr td select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;

    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23333' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");

    background-repeat: no-repeat;
    background-position: right 10px center;
    background-size: 16px;
    padding-right: 35px;
} 

span.bp-subtotal-amount span.woocommerce-Price-amount.amount {
    font-size: 18px;
    color: #000 !important;
}
.woocommerce-cart .cart-container dt {
    color: #000 !important;
    font-size: 12px !important;
}
.woocommerce-cart .tm-cart-edit-options {
    font-size: 11px !important;
    font-style: normal !important;
    color: #be1429 !important;
    margin-top: 5px;
}
.bp-cart-alert p {
    margin: 0;
    color: #888888 !important;
    font-size: 12px !important;
}
body.page-id-59 .woocommerce-cart-form .bp-cart-section  .bp-cart-item-body dl.tc-epo-metadata.variation dd p {
    font-size: 12px !important;
    color: #be1429 !important;
    font-weight: normal !important;
    margin-right: 5px;
}
dl.tc-epo-metadata.variation {
    gap: 0px 8px;
    align-items: center;
}
.ss-product-sku-custom {
    display: flex;
    gap: 10px;
        justify-content: end;
}

.ss-product-grid .ss-product-card .ss-product-price {
    line-height: normal;
    text-align: center;
}


/* ══ BULK QUOTE POPUP ════════════════════════════════════════════════════════ */

/* Banner inline link button */
.bp-bulk-quote-banner-link {
    background: none;
    border: none;
    padding: 0;
    font: inherit;
    font-weight: 600;
    color: #c49a2e;
    text-decoration: underline;
    cursor: pointer;
    line-height: inherit;
}
.bp-bulk-quote-banner-link:hover {
    color: #a8821e;
}

/* Prevent body scroll when modal is open */
body.bp-bq-open {
    overflow: hidden;
}

/* Full-screen overlay */
.bp-bq-overlay {
    position: fixed;
    inset: 0;
    z-index: 100000;
    background: rgba(10, 16, 28, 0.72);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
}

/* Modal box */
.bp-bq-modal {
    position: relative;
    background: #fff;
    border-radius: 8px;
    width: 100%;
    max-width: 520px;
    max-height: 90vh;
    overflow-y: auto;
    padding: 36px 32px 28px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.28);
}

/* Close × button */
.bp-bq-close {
    position: absolute;
    top: 14px;
    right: 16px;
    background: none;
    border: none;
    font-size: 26px;
    line-height: 1;
    color: #999;
    cursor: pointer;
    padding: 0 4px;
    transition: color 0.15s;
}
.bp-bq-close:hover {
    color: #333;
}

/* Heading */
.bp-bq-title {
    font-size: 20px;
    font-weight: 700;
    color: #1a2332;
    margin: 0 0 20px;
    padding: 0;
    border: none;
    line-height: 1.25;
}

/* Product row */
.bp-bq-product-row {
    display: flex;
    align-items: center;
    gap: 14px;
    background: #f7f8fa;
    border: 1px solid #e8e8e8;
    border-radius: 6px;
    padding: 12px 14px;
    margin-bottom: 22px;
}
.bp-bq-thumb {
    width: 72px;
    height: 72px;
    object-fit: cover;
    border-radius: 4px;
    border: 1px solid #e0e0e0;
    flex-shrink: 0;
    display: block;
}
.bp-bq-product-info {
    min-width: 0;
}
.bp-bq-product-name {
    display: block;
    font-size: 14px;
    font-weight: 700;
    color: #1a2332;
    line-height: 1.35;
    margin-bottom: 4px;
}
.bp-bq-product-sku {
    display: block;
    font-size: 12px;
    color: #888;
}

/* Logged-in notice */
.bp-bq-logged-in-note {
    font-size: 13px;
    color: #555;
    background: #f0f4ff;
    border: 1px solid #d0d8f0;
    border-radius: 4px;
    padding: 8px 12px;
    margin: 0 0 16px;
}
.bp-bq-logged-in-note strong {
    color: #1a2332;
}

/* Form fields */
.bp-bq-form .bp-bq-field {
    margin-bottom: 16px;
}
.bp-bq-form label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: #333;
    margin-bottom: 6px;
}
.bp-bq-form label span {
    color: #c62828;
}
.bp-bq-form input[type="text"],
.bp-bq-form input[type="email"],
.bp-bq-form input[type="number"],
.bp-bq-form textarea {
    width: 100%;
    border: 1px solid #d0d0d0;
    border-radius: 4px;
    padding: 10px 12px;
    font-size: 13.5px;
    font-family: inherit;
    color: #333;
    background: #fff;
    transition: border-color 0.15s, box-shadow 0.15s;
    box-sizing: border-box;
}
.bp-bq-form input[type="text"]:focus,
.bp-bq-form input[type="email"]:focus,
.bp-bq-form input[type="number"]:focus,
.bp-bq-form textarea:focus {
    outline: none;
    border-color: #c49a2e;
    box-shadow: 0 0 0 3px rgba(196,154,46,0.15);
}
.bp-bq-form textarea {
    resize: vertical;
    min-height: 100px;
}

/* Action buttons */
.bp-bq-actions {
    display: flex;
    gap: 12px;
    margin-top: 20px;
    flex-wrap: wrap;
}
.bp-bq-submit {
    flex: 1;
    min-width: 160px;
    height: 46px;
    background: #c49a2e;
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.04em;
    cursor: pointer;
    transition: background 0.2s;
}
.bp-bq-submit:hover:not(:disabled) {
    background: #a8821e;
}
.bp-bq-submit:disabled {
    opacity: 0.65;
    cursor: not-allowed;
}
.bp-bq-cancel {
    height: 46px;
    padding: 0 20px;
    background: #fff;
    color: #555;
    border: 1px solid #d0d0d0;
    border-radius: 4px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.15s, color 0.15s;
}
.bp-bq-cancel:hover {
    background: #f5f5f5;
    color: #333;
}

/* Feedback message */
.bp-bq-feedback {
    margin: 12px 0 0;
    font-size: 13.5px;
    min-height: 20px;
    font-weight: 500;
}
.bp-bq-feedback.bp-bq-success {
    color: #2e7d32;
}
.bp-bq-feedback.bp-bq-error {
    color: #c62828;
}

@media (max-width: 560px) {
    .bp-bq-modal {
        padding: 28px 18px 22px;
    }
    .bp-bq-actions {
        flex-direction: column;
    }
    .bp-bq-submit,
    .bp-bq-cancel {
        width: 100%;
    }
}
body.page-id-59 form.woocommerce-cart-form {
    padding-bottom: 0px !important;
}
.bp-cart-actions {
    justify-content: end !important;
}
p.price.bp-variable-atc-price {
    display: flex;
    align-items: center;
    gap: 5px;
}

.product-info .price{
font-size : 18px !important;
margin:0 !important;
}
.bp-cart-section.bp-cart-section--rfq{margin: top 45px;}
.bp-cart-section.bp-cart-section--rfq .bp-cart-section-head{background:#FDF8EE !important;}

#bp-img-preview{background:#363636; padding: 5px; border-radius: 6px; position: fixed; top:auto; max-width: 200px;}
#bp-img-preview-name{display:block; text-align: center; text-transform: capitalize; color: #fff; margin-top: 8px;}
#bp-img-preview img {
    display: block;
    width: 200px;
    object-fit: cover;
    border-radius: 4px;
}
#bp-img-preview-name {
    display: block;
    margin-top: 4px;
    font-size: 12px;
    font-weight: 600;
    color: #fff;
    text-align: center;
    white-space: normal;
}
.bp-cart-actions-inner{width: auto !important; margin: 0px !important;}
.bp-cart-actions-inner .shimcart-savedraft{
    margin: 0px !important;
    border-radius: 4px;
    font-size: 13px !important;
    font-weight: 700;
        position: static !important;
    top: auto !important;
    right: auto !important;
    padding: 6px 22px !important;
    background: #f1f5f9 !important;
    color: #000000 !important;
    border-radius: 4px !important;
    cursor: pointer;
    border: 2px solid #ddd;
        height: 48px;
}
.woocommerce-cart .cart-container dt.tc-name {
    font-size: 12px !important;
}
.bp-cart-actions .tinv-wraper.woocommerce.tinv-wishlist.tinvwl-cart-add-to-cart {
    padding: 0;
}