/* 
Theme Name: Hello Elementor Child
Theme URI: https://github.com/elementor/hello-theme-child/
Description: Hello Elementor Child is a child theme of Hello Elementor, created by Elementor team
Author: Elementor Team
Author URI: https://elementor.com/
Template: hello-elementor
Version: 2.0.0
Text Domain: hello-elementor-child
License: GNU General Public License v3 or later.
License URI: https://www.gnu.org/licenses/gpl-3.0.html
Tags: flexible-header, custom-colors, custom-menu, custom-logo, editor-style, featured-images, rtl-language-support, threaded-comments, translation-ready
*/
/* Add your custom styles here */
body:not(.page-id-7416) {
    padding-top: 120px;
}
.custom-header {
    top: 0;
    z-index: 9999;
    background-color: #00000095;
    transition:
        background-color 0.3s ease,
        box-shadow 0.3s ease;
}
.custom-header.scrolled {
    background-color: #00000095;
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}
@media only screen and (max-width: 1024px) {
    .hfe-nav-menu__breakpoint-tablet .hfe-active-menu.hfe-active-menu-full-width+.hfe-nav-menu__layout-horizontal,
    .hfe-nav-menu__breakpoint-tablet .hfe-active-menu.hfe-active-menu-full-width+.hfe-nav-menu__layout-vertical {
        right: 0;
    }
    .hfe-post-image img {
        aspect-ratio: 16 / 12;
        object-fit: cover;
    }
    .hfe-post-title a {
        font-size: 20px !important;
    }
    .hfe-post-title {
        line-height: 0 !important;
    }
}
/* =========================================================
   FORCE NATIVE WOOCOMMERCE SINGLE PRODUCT INTO 2 COLUMNS
========================================================= */
/* Actual WooCommerce product wrapper */
body.single-product div.product.type-product {
    display: grid !important;
    grid-template-columns:
        minmax(0, 1.1fr)
        minmax(360px, 0.9fr) !important;
    column-gap: clamp(40px, 6vw, 90px);
    row-gap: 0;
    align-items: start;
    width: 100%;
    max-width: 1240px;
    margin: 0 auto !important;
    padding: 48px 24px 80px;
}
/* =========================================================
   LEFT COLUMN — GALLERY
========================================================= */
body.single-product
div.product.type-product
> .woocommerce-product-gallery,
body.single-product
div.product.type-product
> div.images {
    grid-column: 1 !important;
    grid-row: 1 !important;
    float: none !important;
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
}
/* =========================================================
   RIGHT COLUMN — SUMMARY
========================================================= */
body.single-product
div.product.type-product
> .summary {
    grid-column: 2 !important;
    grid-row: 1 !important;
    float: none !important;
    clear: none !important;
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
    position: sticky;
    top: 125px;
}
/* =========================================================
   SALE BADGE
========================================================= */
body.single-product
div.product.type-product
> .onsale {
    position: absolute;
    z-index: 20;
}
/* =========================================================
   TABS — FULL WIDTH UNDER BOTH COLUMNS
========================================================= */
body.single-product
div.product.type-product
> .woocommerce-tabs {
    grid-column: 1 / -1 !important;
    grid-row: auto !important;
    width: 100% !important;
    margin-top: 80px !important;
}
/* =========================================================
   UPSELLS / RELATED — FULL WIDTH
========================================================= */
body.single-product
div.product.type-product
> .upsells,
body.single-product
div.product.type-product
> .related {
    grid-column: 1 / -1 !important;
    width: 100% !important;
    margin-top: 70px !important;
}
/* =========================================================
   NATIVE GALLERY
========================================================= */
body.single-product .woocommerce-product-gallery {
    width: 100% !important;
    max-width: 100% !important;
    float: none !important;
    margin: 0 !important;
}
body.single-product
.woocommerce-product-gallery
.flex-viewport {
    width: 100%;
    overflow: hidden;
    border-radius: 18px;
    background: #f7f7f7;
}
body.single-product
.woocommerce-product-gallery__wrapper {
    margin: 0 !important;
}
body.single-product
.woocommerce-product-gallery__image {
    background: #f7f7f7;
}
body.single-product
.woocommerce-product-gallery__image
> a {
    display: flex;
    width: 100%;
    aspect-ratio: 4 / 3;
    align-items: center;
    justify-content: center;
    background: #f7f7f7;
}
body.single-product
.woocommerce-product-gallery__image
img {
    display: block;
    width: 100% !important;
    height: 100% !important;
    margin: 0 !important;
    padding: clamp(24px, 4vw, 55px);
    object-fit: contain;
}
/* =========================================================
   THUMBNAILS
========================================================= */
body.single-product
.flex-control-thumbs {
    display: grid !important;
    grid-template-columns:
        repeat(5, minmax(0, 1fr));
    gap: 10px;
    margin: 12px 0 0 !important;
    padding: 0 !important;
    list-style: none;
}
body.single-product
.flex-control-thumbs
li {
    float: none !important;
    width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
}
body.single-product
.flex-control-thumbs
img {
    display: block;
    width: 100% !important;
    aspect-ratio: 1 / 1;
    padding: 8px;
    object-fit: contain;
    border: 1px solid transparent;
    border-radius: 10px;
    background: #f7f7f7;
    opacity: 0.5;
    cursor: pointer;
}
body.single-product
.flex-control-thumbs
img.flex-active {
    opacity: 1;
    border-color: #111;
}
/* =========================================================
   TABLET / MOBILE
========================================================= */
@media (max-width: 900px) {
    body.single-product
    div.product.type-product {
        grid-template-columns: 1fr !important;
        gap: 35px;
        padding: 30px 18px 60px;
    }
    body.single-product
    div.product.type-product
    > .woocommerce-product-gallery,
    body.single-product
    div.product.type-product
    > div.images {
        grid-column: 1 !important;
        grid-row: auto !important;
    }
    body.single-product
    div.product.type-product
    > .summary {
        grid-column: 1 !important;
        grid-row: auto !important;
        position: static;
    }
    body.single-product
    div.product.type-product
    > .woocommerce-tabs,
    body.single-product
    div.product.type-product
    > .upsells,
    body.single-product
    div.product.type-product
    > .related {
        grid-column: 1 !important;
    }
}
@media (max-width: 600px) {
    body.single-product
    div.product.type-product {
        padding-inline: 14px;
    }
    body.single-product
    .woocommerce-product-gallery__image
    > a {
        aspect-ratio: 1 / 1;
    }
    body.single-product
    .woocommerce-product-gallery__image
    img {
        padding: 20px;
    }
    body.single-product
    .flex-control-thumbs {
        grid-template-columns:
            repeat(4, minmax(0, 1fr));
        gap: 7px;
    }
}
/* =========================================================
   MODERN RIGHT-SIDE PRODUCT SUMMARY
========================================================= */
body.single-product
div.product.type-product
> .summary {
    grid-column: 2 !important;
    grid-row: 1 !important;
    float: none !important;
    clear: none !important;
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    margin: 0 !important;
    padding: 8px 0 0 !important;
    position: static !important;
}
/* =========================================================
   PRODUCT TITLE
========================================================= */
body.single-product
div.product.type-product
> .summary
.product_title {
    max-width: 620px;
    margin: 0 0 18px !important;
    padding: 0 !important;
    color: #111;
    font-size: clamp(34px, 3.8vw, 54px) !important;
    line-height: 1.03 !important;
    font-weight: 700 !important;
    letter-spacing: -0.045em;
    text-wrap: balance;
}
/* =========================================================
   RATING
========================================================= */
body.single-product
div.product.type-product
> .summary
.woocommerce-product-rating {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0 0 20px !important;
    font-size: 13px;
}
body.single-product
div.product.type-product
> .summary
.star-rating {
    margin: 0 !important;
    font-size: 13px;
}
body.single-product
div.product.type-product
> .summary
.woocommerce-review-link {
    color: #777;
    font-size: 13px;
    text-decoration: none;
}
/* =========================================================
   PRICE
========================================================= */
body.single-product
div.product.type-product
> .summary
.price {
    display: flex;
    align-items: baseline;
    gap: 10px;
    flex-wrap: wrap;
    margin: 0 0 26px !important;
    color: #111 !important;
    font-size: clamp(27px, 2.6vw, 36px) !important;
    line-height: 1.15 !important;
    font-weight: 750 !important;
    letter-spacing: -0.025em;
}
body.single-product
div.product.type-product
> .summary
.price del {
    color: #aaa !important;
    font-size: 0.62em;
    font-weight: 500;
    opacity: 1 !important;
}
body.single-product
div.product.type-product
> .summary
.price ins {
    color: #111;
    text-decoration: none;
}
/* =========================================================
   SHORT DESCRIPTION
========================================================= */
body.single-product
div.product.type-product
> .summary
.woocommerce-product-details__short-description {
    max-width: 620px;
    margin: 0 0 30px;
    color: #686868;
    font-size: 15px;
    line-height: 1.75;
}
body.single-product
div.product.type-product
> .summary
.woocommerce-product-details__short-description p {
    margin: 0 0 8px;
}
body.single-product
div.product.type-product
> .summary
.woocommerce-product-details__short-description p:last-child {
    margin-bottom: 0;
}
/* =========================================================
   CART / BUY BOX
========================================================= */
body.single-product
div.product.type-product
> .summary
form.cart {
    display: flex;
    width: 100%;
    gap: 10px;
    align-items: stretch;
    flex-wrap: wrap;
    margin: 0 0 26px !important;
    padding: 20px;
    border: 1px solid #e8e8e8;
    border-radius: 16px;
    background: #fafafa;
}
/* =========================================================
   QUANTITY
========================================================= */
body.single-product
div.product.type-product
> .summary
.quantity {
    margin: 0 !important;
}
body.single-product
div.product.type-product
> .summary
.quantity .qty {
    width: 76px;
    height: 54px;
    margin: 0 !important;
    padding: 0 10px;
    border: 1px solid #ddd;
    border-radius: 11px;
    outline: none;
    background: #fff;
    color: #111;
    font-size: 15px;
    font-weight: 600;
    text-align: center;
    transition:
        border-color 0.2s ease,
        box-shadow 0.2s ease;
}
body.single-product
div.product.type-product
> .summary
.quantity .qty:focus {
    border-color: #111;
    box-shadow: 0 0 0 3px rgba(0,0,0,.05);
}
/* =========================================================
   ADD TO CART
========================================================= */
body.single-product
div.product.type-product
> .summary
.single_add_to_cart_button {
    flex: 1 1 220px;
    min-height: 54px;
    margin: 0 !important;
    padding: 0 28px !important;
    border: 1px solid #111 !important;
    border-radius: 11px !important;
    background: #111 !important;
    color: #fff !important;
    font-size: 14px !important;
    line-height: 1 !important;
    font-weight: 700 !important;
    letter-spacing: -0.01em;
    box-shadow: none !important;
    cursor: pointer;
    transition:
        transform 0.2s ease,
        background 0.2s ease,
        box-shadow 0.2s ease;
}
body.single-product
div.product.type-product
> .summary
.single_add_to_cart_button:hover {
    background: #292929 !important;
    transform: translateY(-1px);
    box-shadow:
        0 8px 20px rgba(0,0,0,.12) !important;
}
/* =========================================================
   STOCK
========================================================= */
body.single-product
div.product.type-product
> .summary
.stock {
    display: inline-flex;
    margin: 0 0 18px;
    padding: 7px 11px;
    align-items: center;
    gap: 7px;
    border-radius: 999px;
    background: #eff8f1;
    color: #26733a;
    font-size: 12px;
    line-height: 1;
    font-weight: 700;
}
body.single-product
div.product.type-product
> .summary
.stock::before {
    content: "";
    display: block;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: currentColor;
}
body.single-product
div.product.type-product
> .summary
.stock.out-of-stock {
    background: #fff0f0;
    color: #ac3030;
}
/* =========================================================
   VARIABLE PRODUCT OPTIONS
========================================================= */
body.single-product
div.product.type-product
> .summary
table.variations {
    width: 100%;
    margin: 0 0 18px !important;
}
body.single-product
div.product.type-product
> .summary
table.variations tr {
    display: flex;
    flex-direction: column;
    margin-bottom: 14px;
}
body.single-product
div.product.type-product
> .summary
table.variations th,
body.single-product
div.product.type-product
> .summary
table.variations td {
    display: block;
    width: 100%;
    padding: 0 !important;
    text-align: left;
}
body.single-product
div.product.type-product
> .summary
table.variations label {
    display: block;
    margin: 0 0 7px;
    color: #222;
    font-size: 13px;
    font-weight: 700;
}
body.single-product
div.product.type-product
> .summary
table.variations select {
    width: 100%;
    min-height: 50px;
    padding: 0 42px 0 14px;
    border: 1px solid #ddd;
    border-radius: 10px;
    outline: none;
    background: #fff;
    color: #111;
    font-size: 14px;
}
body.single-product
div.product.type-product
> .summary
.reset_variations {
    display: inline-block;
    margin-top: 7px;
    color: #888;
    font-size: 12px;
    text-decoration: none;
}
/* =========================================================
   META
========================================================= */
body.single-product
div.product.type-product
> .summary
.product_meta {
    display: grid;
    gap: 4px;
    margin-top: 24px;
    padding-top: 20px;
    border-top: 1px solid #e8e8e8;
    color: #888;
    font-size: 12px;
    line-height: 1.7;
}
body.single-product
div.product.type-product
> .summary
.product_meta > span {
    display: block;
}
body.single-product
div.product.type-product
> .summary
.product_meta a {
    color: #333;
    text-decoration: none;
}
body.single-product
div.product.type-product
> .summary
.product_meta a:hover {
    text-decoration: underline;
}
/* =========================================================
   OPTIONAL HORIZONTAL DIVIDER AFTER PRICE
========================================================= */
body.single-product
div.product.type-product
> .summary
.price::after {
    content: "";
    display: block;
    flex-basis: 100%;
    height: 1px;
    margin-top: 20px;
    background: #ededed;
}
/* =========================================================
   RESPONSIVE
========================================================= */
@media (max-width: 900px) {
    body.single-product
    div.product.type-product
    > .summary {
        padding-top: 0 !important;
        position: static !important;
    }
}
@media (max-width: 600px) {
    body.single-product
    div.product.type-product
    > .summary
    .product_title {
        font-size: 31px !important;
        line-height: 1.08 !important;
    }
    body.single-product
    div.product.type-product
    > .summary
    .price {
        font-size: 27px !important;
    }
    body.single-product
    div.product.type-product
    > .summary
    form.cart {
        display: grid;
        grid-template-columns:
            74px
            minmax(0, 1fr);
        padding: 14px;
    }
    body.single-product
    div.product.type-product
    > .summary
    .single_add_to_cart_button {
        width: 100%;
        min-width: 0;
        padding-inline: 15px !important;
    }
}
/* =========================================
   CART WRAPPER
========================================= */
.quote-cart {
    max-width: 1240px;
    margin: 0 auto;
    padding: 50px 24px 90px;
}
.quote-cart * {
    box-sizing: border-box;
}
/* =========================================
   HEADER
========================================= */
.quote-cart__header {
    max-width: 750px;
    margin-bottom: 45px;
}
.quote-cart__eyebrow {
    display: block;
    margin-bottom: 10px;
    color: #777;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
}
.quote-cart__header h1 {
    margin: 0 0 15px;
    font-size: clamp(38px, 5vw, 62px);
    line-height: 1;
    letter-spacing: -.05em;
}
.quote-cart__header p {
    margin: 0;
    color: #777;
    font-size: 16px;
    line-height: 1.7;
}
/* =========================================
   MAIN TWO COLUMN GRID
========================================= */
.quote-cart__grid {
    display: grid;
    grid-template-columns:
        minmax(0, 1fr)
        360px;
    gap: 55px;
    align-items: start;
}
/* =========================================
   LEFT
========================================= */
.quote-cart__products {
    display: grid;
    gap: 14px;
    min-width: 0;
}
/* =========================================
   PRODUCT
========================================= */
.quote-cart-item {
    display: grid;
    grid-template-columns:
        120px
        minmax(0, 1fr)
        110px;
    gap: 20px;
    align-items: center;
    padding: 16px;
    border: 1px solid #e8e8e8;
    border-radius: 18px;
    background: #fff;
    transition:
        box-shadow .2s ease,
        transform .2s ease;
}
.quote-cart-item:hover {
    transform: translateY(-2px);
    box-shadow:
        0 14px 35px rgba(0,0,0,.06);
}
/* IMAGE */
.quote-cart-item__image {
    display: flex;
    width: 120px;
    height: 100px;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-radius: 13px;
    background: #f7f7f7;
}
.quote-cart-item__image a {
    display: flex;
    width: 100%;
    height: 100%;
    align-items: center;
    justify-content: center;
}
.quote-cart-item__image img {
    width: 100% !important;
    height: 100% !important;
    margin: 0 !important;
    padding: 8px;
    object-fit: contain;
}
/* CONTENT */
.quote-cart-item__title {
    margin: 0 0 8px;
    font-size: 17px;
    line-height: 1.35;
    letter-spacing: -.015em;
}
.quote-cart-item__title a {
    color: #111;
    text-decoration: none;
}
.quote-cart-item__meta {
    color: #777;
    font-size: 12px;
    line-height: 1.6;
}
/* ACTIONS */
.quote-cart-item__actions {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 10px;
}
.quote-cart-item__actions .qty {
    width: 70px;
    height: 44px;
    border: 1px solid #ddd;
    border-radius: 10px;
    text-align: center;
}
.quote-cart-item__remove {
    color: #999;
    font-size: 11px;
    text-decoration: none;
}
.quote-cart-item__remove:hover {
    color: #b22;
}
/* =========================================
   UPDATE CART
========================================= */
.quote-cart__update {
    display: flex;
    justify-content: flex-end;
    margin-top: 8px;
}
.quote-cart__update .button {
    min-height: 45px;
    padding: 0 20px !important;
    border: 1px solid #ddd !important;
    border-radius: 10px !important;
    background: #fff !important;
    color: #111 !important;
}
/* =========================================
   SIDEBAR
========================================= */
.quote-cart__sidebar {
    min-width: 0;
}
.quote-cart-summary {
    position: sticky;
    top: 130px;
    padding: 26px;
    border: 1px solid #e6e6e6;
    border-radius: 20px;
    background: #f8f8f8;
    box-shadow:
        0 12px 35px rgba(0,0,0,.04);
}
.quote-cart-summary__eyebrow {
    display: block;
    margin-bottom: 9px;
    color: #888;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
}
.quote-cart-summary h2 {
    margin: 0 0 10px;
    font-size: 28px;
    letter-spacing: -.035em;
}
.quote-cart-summary > p {
    margin: 0 0 22px;
    color: #747474;
    font-size: 13px;
    line-height: 1.65;
}
/* SUMMARY ROW */
.quote-cart-summary__row {
    display: flex;
    margin-bottom: 22px;
    padding:
        17px
        0;
    justify-content: space-between;
    border-top: 1px solid #e1e1e1;
    border-bottom: 1px solid #e1e1e1;
    font-size: 13px;
}
/* CTA */
.quote-cart-summary__cta {
    display: flex;
    width: 100%;
    min-height: 55px;
    align-items: center;
    justify-content: center;
    padding: 0 18px;
    border-radius: 11px;
    background: #111;
    color: #fff!important;
    font-size: 13px;
    font-weight: 700;
    text-align: center;
    text-decoration: none;
    transition:
        transform .2s ease,
        background .2s ease;
}
.quote-cart-summary__cta:hover {
    background: #292929;
    color: #fff;
    transform: translateY(-1px);
}
.quote-cart-summary small {
    display: block;
    margin-top: 14px;
    color: #888;
    font-size: 10px;
    line-height: 1.55;
    text-align: center;
}
/* =========================================
   MOBILE
========================================= */
@media (max-width: 900px) {
    .quote-cart__grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .quote-cart-summary {
        position: static;
    }
}
@media (max-width: 600px) {
    .quote-cart {
        padding:
            30px
            14px
            60px;
    }
    .quote-cart-item {
        grid-template-columns:
            85px
            minmax(0, 1fr);
        gap: 14px;
    }
    .quote-cart-item__image {
        width: 85px;
        height: 85px;
    }
    .quote-cart-item__actions {
        grid-column: 1 / -1;
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        padding-top: 12px;
        border-top: 1px solid #eee;
    }
}
/* =========================================================
   MODERN QUOTE CHECKOUT
========================================================= */
.quote-checkout {
    --qc-text: #111;
    --qc-muted: #777;
    --qc-border: #e7e7e7;
    --qc-soft: #f7f7f7;
    --qc-radius: 20px;
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
    padding:
        50px
        24px
        90px;
        overflow-x: hidden;
}
.quote-checkout *,
.quote-checkout *::before,
.quote-checkout *::after {
    box-sizing: border-box;
}
/* =========================================================
   HEADER
========================================================= */
.quote-checkout__header {
    max-width: 760px;
    margin-bottom: 45px;
}
.quote-checkout__eyebrow {
    display: block;
    margin-bottom: 10px;
    color: var(--qc-muted);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
}
.quote-checkout__header h1 {
    margin: 0 0 15px;
    color: var(--qc-text);
    font-size: clamp(38px, 5vw, 62px);
    line-height: 1;
    font-weight: 720;
    letter-spacing: -.05em;
}
.quote-checkout__header p {
    max-width: 680px;
    margin: 0;
    color: var(--qc-muted);
    font-size: 16px;
    line-height: 1.7;
}
/* =========================================================
   MAIN GRID
========================================================= */
.quote-checkout__grid {
    display: grid;
    grid-template-columns:
        minmax(0, 1fr)
        380px;
    gap: 55px;
    align-items: start;
}
/* =========================================================
   LEFT COLUMN
========================================================= */
.quote-checkout__form {
    min-width: 0;
}
/* =========================================================
   SECTION
========================================================= */
.quote-checkout-section {
    margin-bottom: 20px;
    padding: 28px;
    border: 1px solid var(--qc-border);
    border-radius: var(--qc-radius);
    background: #fff;
}
.quote-checkout-section + .quote-checkout-section {
    margin-top: 18px;
}
.quote-checkout-section__eyebrow {
    display: inline-flex;
    margin-bottom: 10px;
    color: #999;
    font-size: 10px;
    line-height: 1;
    font-weight: 700;
    letter-spacing: .12em;
}
.quote-checkout-section h2 {
    margin: 0 0 8px;
    color: var(--qc-text);
    font-size: 26px;
    line-height: 1.2;
    font-weight: 700;
    letter-spacing: -.03em;
}
.quote-checkout-section__intro {
    max-width: 600px;
    margin: 0 0 25px;
    color: var(--qc-muted);
    font-size: 13px;
    line-height: 1.65;
}
/* =========================================================
   REMOVE DEFAULT WOOCOMMERCE COLUMNS
========================================================= */
.quote-checkout
#customer_details,
.quote-checkout
.col2-set {
    display: block !important;
    width: 100% !important;
    margin: 0 !important;
}
.quote-checkout
.col2-set
.col-1,
.quote-checkout
.col2-set
.col-2 {
    float: none !important;
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
}
/* =========================================================
   BILLING FIELD GRID
========================================================= */
.quote-checkout
.woocommerce-billing-fields__field-wrapper {
    display: grid;
    grid-template-columns:
        repeat(2, minmax(0, 1fr));
    gap: 16px;
}
/* =========================================================
   FORM ROW RESET
========================================================= */
.quote-checkout
.form-row {
    float: none !important;
    width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
}
.quote-checkout
.form-row-first,
.quote-checkout
.form-row-last {
    width: 100% !important;
}
.quote-checkout
.form-row-wide {
    grid-column: 1 / -1;
}
/* =========================================================
   LABELS
========================================================= */
.quote-checkout
.form-row label {
    display: block;
    margin-bottom: 7px;
    color: #333;
    font-size: 12px;
    font-weight: 700;
}
.quote-checkout
.form-row
.required {
    color: #999;
    font-weight: 500;
    text-decoration: none;
}
/* =========================================================
   INPUTS
========================================================= */
.quote-checkout
.input-text,
.quote-checkout
select {
    min-height: 50px;
    margin: 0 !important;
    padding:
        0
        14px !important;
    border:
        1px solid
        var(--qc-border) !important;
    border-radius:
        10px !important;
    outline: none !important;
    background:
        #fff !important;
    color:
        var(--qc-text) !important;
    font-size:
        14px !important;
    box-shadow:
        none !important;
    transition:
        border-color .2s ease,
        box-shadow .2s ease;
}
.quote-checkout
.input-text:focus,
.quote-checkout
select:focus {
    border-color:
        #111 !important;
    box-shadow:
        0 0 0 3px
        rgba(0,0,0,.04) !important;
}
/* =========================================================
   TEXTAREA
========================================================= */
.quote-checkout
textarea.input-text {
    min-height: 150px;
    padding:
        14px !important;
    line-height: 1.6;
    resize: vertical;
}
/* =========================================================
   SELECT2
========================================================= */
.quote-checkout
.select2-container {
    width: 100% !important;
}
.quote-checkout
.select2-container
.select2-selection--single {
    height: 50px !important;
    border:
        1px solid
        var(--qc-border) !important;
    border-radius:
        10px !important;
    background:
        #fff !important;
}
.quote-checkout
.select2-container
.select2-selection__rendered {
    line-height:
        48px !important;
    padding-left:
        14px !important;
    color:
        var(--qc-text) !important;
}
.quote-checkout
.select2-container
.select2-selection__arrow {
    height:
        48px !important;
}
/* =========================================================
   NOTES
========================================================= */
.quote-checkout-notes {
    display: grid;
    gap: 16px;
}
/* =========================================================
   RIGHT SIDEBAR
========================================================= */
.quote-checkout__sidebar {
    min-width: 0;
}
.quote-checkout-summary {
    position: sticky;
    top: 130px;
    padding: 26px;
    border:
        1px solid
        var(--qc-border);
    border-radius:
        var(--qc-radius);
    background:
        #f8f8f8;
    box-shadow:
        0 12px 35px
        rgba(0,0,0,.04);
}
.quote-checkout-summary__eyebrow {
    display: block;
    margin-bottom: 9px;
    color: #888;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
}
.quote-checkout-summary h2 {
    margin: 0 0 10px;
    color: var(--qc-text);
    font-size: 27px;
    font-weight: 700;
    letter-spacing: -.035em;
}
.quote-checkout-summary > p {
    margin: 0 0 22px;
    color: var(--qc-muted);
    font-size: 13px;
    line-height: 1.65;
}
/* =========================================================
   ORDER REVIEW TABLE
========================================================= */
.quote-checkout
.woocommerce-checkout-review-order-table {
    width: 100%;
    margin: 0 !important;
    border: 0 !important;
    border-collapse: collapse;
}
.quote-checkout
.woocommerce-checkout-review-order-table
thead {
    display: none;
}
.quote-checkout
.woocommerce-checkout-review-order-table
th,
.quote-checkout
.woocommerce-checkout-review-order-table
td {
    padding:
        13px
        0 !important;
    border: 0 !important;
    border-bottom:
        1px solid
        var(--qc-border) !important;
    background:
        transparent !important;
    font-size:
        12px;
}
.quote-checkout
.woocommerce-checkout-review-order-table
.product-name {
    padding-right: 15px !important;
    color: var(--qc-text);
    font-weight: 600;
}
.quote-checkout
.woocommerce-checkout-review-order-table
.product-total {
    text-align: right;
}
.quote-checkout
.woocommerce-checkout-review-order-table
.product-quantity {
    color: #999;
    font-weight: 400;
}
/* =========================================================
   HIDE PRICE / TOTAL ELEMENTS FOR QUOTE MODE
========================================================= */
.quote-checkout
.cart-subtotal,
.quote-checkout
.order-total,
.quote-checkout
.woocommerce-shipping-totals {
    display: none !important;
}
/* =========================================================
   PAYMENT AREA
========================================================= */
.quote-checkout
#payment {
    margin-top: 22px;
    padding: 0 !important;
    background:
        transparent !important;
}
.quote-checkout
#payment
.payment_methods {
    display:
        none !important;
}
.quote-checkout
#payment
.place-order {
    margin: 0 !important;
    padding: 0 !important;
}
/* =========================================================
   TERMS
========================================================= */
.quote-checkout
.woocommerce-terms-and-conditions-wrapper {
    margin-bottom:
        18px;
    color:
        var(--qc-muted);
    font-size:
        11px;
    line-height:
        1.6;
}
/* =========================================================
   PLACE ORDER BUTTON
========================================================= */
.quote-checkout
#place_order {
    display: flex !important;
    width: 100% !important;
    min-height: 56px;
    align-items: center;
    justify-content: center;
    margin: 0 !important;
    padding:
        0
        18px !important;
    border:
        1px solid
        #111 !important;
    border-radius:
        11px !important;
    background:
        #111 !important;
    color:
        #fff !important;
    font-size:
        13px !important;
    font-weight:
        700 !important;
    text-align:
        center;
    box-shadow:
        0 7px 18px
        rgba(0,0,0,.12) !important;
    cursor:
        pointer;
    transition:
        transform .2s ease,
        background .2s ease,
        box-shadow .2s ease;
}
.quote-checkout
#place_order:hover {
    background:
        #292929 !important;
    transform:
        translateY(-1px);
    box-shadow:
        0 10px 24px
        rgba(0,0,0,.16) !important;
}
/* =========================================================
   INFO BOX
========================================================= */
.quote-checkout-summary__info {
    display: flex;
    margin-top: 18px;
    padding: 13px;
    gap: 10px;
    align-items: flex-start;
    border-radius: 10px;
    background: #eee;
    color: #666;
    font-size: 10px;
    line-height: 1.55;
}
.quote-checkout-summary__icon {
    flex: 0 0 20px;
    display: inline-flex;
    width: 20px;
    height: 20px;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #111;
    color: #fff;
    font-size: 10px;
    font-weight: 700;
}
/* =========================================================
   WOOCOMMERCE NOTICE CLEANUP
========================================================= */
.woocommerce-checkout
.woocommerce-NoticeGroup,
.woocommerce-checkout
.woocommerce-notices-wrapper {
    margin-bottom: 20px;
}
.woocommerce-checkout
.woocommerce-error,
.woocommerce-checkout
.woocommerce-message,
.woocommerce-checkout
.woocommerce-info {
    padding:
        14px
        18px
        14px
        44px !important;
    border:
        1px solid
        var(--qc-border, #e7e7e7) !important;
    border-top:
        0 !important;
    border-radius:
        11px;
    background:
        #fafafa;
    color:
        #444;
    font-size:
        12px;
    box-shadow:
        none;
}
/* =========================================================
   TABLET
========================================================= */
@media (max-width: 900px) {
    .quote-checkout__grid {
        grid-template-columns:
            1fr;
        gap:
            30px;
    }
    .quote-checkout-summary {
        position:
            static;
    }
}
/* =========================================================
   MOBILE
========================================================= */
@media (max-width: 600px) {
    .quote-checkout {
        padding:
            30px
            14px
            60px;
    }
    .quote-checkout__header {
        margin-bottom:
            30px;
    }
    .quote-checkout__header h1 {
        font-size:
            38px;
    }
    .quote-checkout__header p {
        font-size:
            14px;
    }
    .quote-checkout-section {
        padding:
            20px;
        border-radius:
            16px;
    }
    .quote-checkout
    .woocommerce-billing-fields__field-wrapper {
        grid-template-columns:
            1fr;
    }
    .quote-checkout
    .form-row-wide {
        grid-column:
            auto;
    }
    .quote-checkout-summary {
        padding:
            21px;
        border-radius:
            17px;
    }
}