:root {
    --font-tundra: 'Clarika', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-clarika: 'Clarika', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.novios-product-card {
    position: relative;
    cursor: pointer;
}

.catalog-product-name,
.catalog-product-reference,
.catalog-view-detail {
    font-family: var(--font-clarika);
}

.novios-product-card:focus-visible {
    outline: 2px solid #8f4144;
    outline-offset: 4px;
}

.catalog-product-name {
    margin: 0 0 6px;
    color: #2c2c2c;
    font-size: .94rem;
    font-weight: 500;
    line-height: 1.35;
}

.catalog-product-reference {
    margin: 0 0 10px;
    color: #777;
    font-size: .72rem;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.catalog-view-detail {
    position: relative;
    z-index: 5;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: #8f4144;
    font-size: .78rem;
    font-weight: 600;
    letter-spacing: .04em;
    pointer-events: auto;
    text-decoration: none;
    text-transform: uppercase;
}

.catalog-view-detail::after {
    content: "→";
    transition: transform .2s ease;
}

.novios-product-card:hover .catalog-view-detail::after {
    transform: translateX(4px);
}

.catalog-dialog {
    width: min(1080px, calc(100% - 32px));
    max-height: calc(100vh - 32px);
    padding: 0;
    border: 0;
    border-radius: 18px;
    background: #fff;
    box-shadow: 0 24px 80px rgba(0, 0, 0, .24);
    overflow: hidden;
}

.catalog-dialog::backdrop {
    background: rgba(25, 18, 18, .72);
    backdrop-filter: blur(4px);
}

.catalog-dialog-inner {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1.25fr) minmax(300px, .75fr);
    max-height: calc(100vh - 32px);
    overflow: auto;
}

.catalog-dialog-close {
    position: absolute;
    z-index: 4;
    top: 16px;
    right: 16px;
    display: grid;
    width: 42px;
    height: 42px;
    place-items: center;
    border: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, .94);
    color: #222;
    cursor: pointer;
    font-size: 1.2rem;
    box-shadow: 0 4px 18px rgba(0, 0, 0, .12);
}

.catalog-gallery {
    min-height: 620px;
    padding: 24px;
    background: #f5f1ef;
}

.catalog-main-image {
    display: block;
    width: 100%;
    height: 510px;
    border-radius: 12px;
    background: #fff;
    object-fit: contain;
}

.catalog-thumbnails {
    display: flex;
    gap: 10px;
    margin-top: 14px;
    overflow-x: auto;
}

.catalog-thumbnail {
    flex: 0 0 76px;
    width: 76px;
    height: 76px;
    padding: 0;
    border: 2px solid transparent;
    border-radius: 9px;
    background: #fff;
    cursor: pointer;
    overflow: hidden;
}

.catalog-thumbnail.is-active {
    border-color: #8f4144;
}

.catalog-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.catalog-detail {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 64px 44px 44px;
    color: #2c2c2c;
}

.catalog-detail-reference {
    color: #8f4144;
    font-size: .74rem;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.catalog-detail h2 {
    margin: 12px 0 20px;
    color: #2c2c2c;
    font-family: var(--font-tundra);
    font-size: clamp(1.8rem, 3vw, 2.65rem);
    font-weight: 400;
    line-height: 1.12;
}

.catalog-detail-description {
    margin: 0 0 24px;
    color: #666;
    line-height: 1.7;
}

.catalog-specs {
    margin: 0 0 28px;
    padding: 0;
    list-style: none;
    border-top: 1px solid #e5dfdc;
}

.catalog-specs li {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    padding: 12px 0;
    border-bottom: 1px solid #e5dfdc;
    font-size: .88rem;
}

.catalog-specs strong {
    color: #333;
}

.catalog-specs span {
    color: #6b6b6b;
    text-align: right;
}

.catalog-whatsapp {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 50px;
    padding: 12px 18px;
    border-radius: 4px;
    background: #8f4144;
    color: #fff;
    font-weight: 600;
    text-decoration: none;
    transition: background .2s ease, transform .2s ease;
}

.catalog-whatsapp:hover {
    background: #713235;
    transform: translateY(-2px);
}

.catalog-image-note {
    margin-top: 14px;
    color: #888;
    font-size: .72rem;
    line-height: 1.45;
}

body.catalog-dialog-open {
    overflow: hidden;
}

@media (max-width: 760px) {
    .catalog-dialog {
        width: 100%;
        max-height: 100dvh;
        border-radius: 0;
    }

    .catalog-dialog-inner {
        grid-template-columns: 1fr;
        max-height: 100dvh;
    }

    .catalog-gallery {
        min-height: auto;
        padding: 14px;
    }

    .catalog-main-image {
        height: min(62vh, 450px);
    }

    .catalog-detail {
        padding: 32px 22px 40px;
    }

    .catalog-dialog-close {
        top: 10px;
        right: 10px;
    }
}

.product-page-main {
    width: 100%;
    margin: 0 auto;
    padding: 10px 0 70px;
    color: #2c2c2c;
    font-family: var(--font-clarika);
}

.product-page-status {
    padding: 100px 24px;
    color: #555;
    text-align: center;
    font-family: var(--font-clarika);
}

.product-page-status h1 {
    margin-bottom: 14px;
    color: #8f4144;
    font-family: var(--font-tundra);
    font-size: 2.5rem;
    font-weight: 400;
}

.product-page-primary-link {
    display: inline-flex;
    margin-top: 24px;
    padding: 13px 22px;
    background: #8f4144;
    color: #fff;
    font-family: var(--font-clarika);
    text-decoration: none;
}

.product-breadcrumb {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
    margin-bottom: 30px;
    color: #978b87;
    font-family: var(--font-clarika);
    font-size: .78rem;
}

.product-breadcrumb a {
    color: #6f6562;
    text-decoration: none;
}

.product-page-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(360px, .8fr);
    gap: clamp(42px, 6vw, 92px);
    align-items: start;
}

.product-page-gallery {
    min-width: 0;
}

.product-page-main-image {
    display: block;
    width: 100%;
    height: min(680px, 68vw);
    border-radius: 16px;
    background: #f5f1ef;
    object-fit: contain;
}

.product-page-thumbnails {
    display: flex;
    gap: 12px;
    margin-top: 16px;
    overflow-x: auto;
}

.product-page-thumbnail {
    flex: 0 0 92px;
    width: 92px;
    height: 92px;
    padding: 0;
    border: 2px solid transparent;
    border-radius: 10px;
    background: #f5f1ef;
    cursor: pointer;
    overflow: hidden;
}

.product-page-thumbnail.is-active {
    border-color: #8f4144;
}

.product-page-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-page-information {
    position: sticky;
    top: 30px;
    padding-top: 12px;
}

.product-page-back {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 42px;
    color: #6f6562;
    font-family: var(--font-clarika);
    font-size: .78rem;
    text-decoration: none;
}

.product-page-reference {
    margin-bottom: 12px;
    color: #8f4144;
    font-family: var(--font-clarika);
    font-size: .74rem;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.product-page-information h1 {
    margin: 0 0 22px;
    color: #2c2c2c;
    font-family: var(--font-tundra);
    font-size: clamp(2.25rem, 4vw, 3.7rem);
    font-weight: 400;
    line-height: 1.08;
}

.product-page-description {
    margin-bottom: 30px;
    color: #68605e;
    font-family: var(--font-clarika);
    line-height: 1.75;
}

.product-page-specifications {
    margin: 0 0 32px;
    border-top: 1px solid #e7dfdc;
    font-family: var(--font-clarika);
}

.product-page-specifications div {
    display: grid;
    grid-template-columns: 120px 1fr;
    gap: 24px;
    padding: 15px 0;
    border-bottom: 1px solid #e7dfdc;
}

.product-page-specifications dt {
    color: #393331;
    font-weight: 600;
}

.product-page-specifications dd {
    margin: 0;
    color: #716866;
}

.product-page-whatsapp {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 54px;
    padding: 12px 20px;
    border-radius: 4px;
    background: #8f4144;
    color: #fff;
    font-family: var(--font-clarika);
    font-weight: 600;
    text-decoration: none;
    transition: background .2s ease, transform .2s ease;
}

.product-page-whatsapp:hover {
    background: #713235;
    transform: translateY(-2px);
}

.product-page-help {
    margin-top: 14px;
    color: #948a87;
    font-family: var(--font-clarika);
    font-size: .76rem;
    line-height: 1.5;
    text-align: center;
}

@media (max-width: 850px) {
    .product-page-layout {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .product-page-main-image {
        height: min(620px, 90vw);
    }

    .product-page-information {
        position: static;
    }

    .product-page-back {
        margin-bottom: 26px;
    }
}

@media (max-width: 520px) {
    .product-page-main {
        padding-top: 22px;
    }

    .product-page-main-image {
        height: 105vw;
        border-radius: 10px;
    }

    .product-page-thumbnail {
        flex-basis: 76px;
        width: 76px;
        height: 76px;
    }

    .product-page-specifications div {
        grid-template-columns: 96px 1fr;
        gap: 14px;
    }
}

/* ============================================
   COTIZACIÓN (carrito + checkout)
   ============================================ */

.product-page-add-cart {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    min-height: 54px;
    margin-bottom: 12px;
    padding: 12px 20px;
    border: 0;
    border-radius: 4px;
    background: #8f4144;
    color: #fff;
    cursor: pointer;
    font-family: var(--font-clarika);
    font-size: 1rem;
    font-weight: 600;
    transition: background .2s ease, transform .2s ease;
}

.product-page-add-cart:hover {
    background: #713235;
    transform: translateY(-2px);
}

.product-page-view-quote {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 50px;
    padding: 11px 20px;
    border: 1px solid #8f4144;
    border-radius: 4px;
    background: transparent;
    color: #8f4144;
    font-family: var(--font-clarika);
    font-weight: 600;
    text-decoration: none;
    transition: background .2s ease, color .2s ease;
}

.product-page-view-quote:hover {
    background: #8f4144;
    color: #fff;
}

.cart-fab {
    position: fixed;
    z-index: 900;
    right: 22px;
    bottom: 22px;
    display: grid;
    width: 60px;
    height: 60px;
    place-items: center;
    border: 0;
    border-radius: 50%;
    background: #8f4144;
    color: #fff;
    cursor: pointer;
    font-size: 1.3rem;
    text-decoration: none;
    box-shadow: 0 10px 30px rgba(84, 32, 34, .35);
    opacity: 0;
    transform: translateY(16px);
    pointer-events: none;
    transition: opacity .25s ease, transform .25s ease;
}

.cart-fab.is-visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.cart-fab-count {
    position: absolute;
    top: -4px;
    right: -4px;
    display: grid;
    min-width: 24px;
    height: 24px;
    place-items: center;
    padding: 0 6px;
    border-radius: 12px;
    background: #fff;
    color: #8f4144;
    font-family: var(--font-clarika);
    font-size: .78rem;
    font-weight: 700;
    box-shadow: 0 2px 8px rgba(0, 0, 0, .18);
}

.cart-drawer-overlay {
    position: fixed;
    z-index: 1090;
    inset: 0;
    background: rgba(25, 18, 18, .55);
    backdrop-filter: blur(3px);
    opacity: 0;
    pointer-events: none;
    transition: opacity .3s ease;
}

.cart-drawer-overlay.is-visible {
    opacity: 1;
    pointer-events: auto;
}

.cart-drawer {
    position: fixed;
    z-index: 1100;
    top: 0;
    right: 0;
    bottom: 0;
    display: flex;
    flex-direction: column;
    width: min(420px, calc(100vw - 48px));
    background: #fff;
    box-shadow: -12px 0 48px rgba(0, 0, 0, .18);
    font-family: var(--font-clarika);
    transform: translateX(100%);
    transition: transform .32s ease;
}

.cart-drawer.is-open {
    transform: translateX(0);
}

body.cart-drawer-open {
    overflow: hidden;
}

.cart-drawer-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 22px 24px;
    border-bottom: 1px solid #ece4e1;
}

.cart-drawer-header h2 {
    margin: 0;
    color: #2c2c2c;
    font-family: var(--font-clarika);
    font-size: 1.05rem;
    font-weight: 600;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.cart-drawer-close {
    display: grid;
    width: 38px;
    height: 38px;
    place-items: center;
    border: 0;
    border-radius: 50%;
    background: #f5efee;
    color: #5b504d;
    cursor: pointer;
    font-size: 1rem;
    transition: background .2s ease, color .2s ease;
}

.cart-drawer-close:hover {
    background: #8f4144;
    color: #fff;
}

.cart-drawer-empty {
    padding: 46px 24px;
    color: #756b68;
    font-size: .92rem;
    text-align: center;
}

.cart-drawer-list {
    flex: 1;
    margin: 0;
    padding: 12px 16px;
    list-style: none;
    overflow-y: auto;
}

.cart-drawer-item {
    display: grid;
    grid-template-columns: 68px minmax(0, 1fr) auto;
    gap: 14px;
    align-items: center;
    padding: 12px 8px;
    border-bottom: 1px solid #f1eae7;
}

.cart-drawer-item img {
    width: 68px;
    height: 68px;
    border-radius: 8px;
    background: #f5f1ef;
    object-fit: cover;
}

.cart-drawer-item-name {
    display: block;
    margin-bottom: 2px;
    color: #2c2c2c;
    font-size: .88rem;
    font-weight: 600;
    line-height: 1.35;
}

.cart-drawer-item-ref {
    display: block;
    margin-bottom: 8px;
    color: #968b88;
    font-size: .7rem;
    letter-spacing: .07em;
    text-transform: uppercase;
}

.cart-drawer-item-qty {
    display: flex;
    align-items: center;
    gap: 10px;
}

.cart-drawer-item-qty span {
    min-width: 18px;
    color: #2c2c2c;
    font-size: .9rem;
    font-weight: 600;
    text-align: center;
}

.cart-drawer-item-qty button {
    display: grid;
    width: 27px;
    height: 27px;
    place-items: center;
    border: 1px solid #d9cdc9;
    border-radius: 50%;
    background: #fff;
    color: #5b504d;
    cursor: pointer;
    font-size: .9rem;
    transition: border-color .2s ease, color .2s ease;
}

.cart-drawer-item-qty button:hover {
    border-color: #8f4144;
    color: #8f4144;
}

.cart-drawer-item-remove {
    display: grid;
    width: 32px;
    height: 32px;
    place-items: center;
    align-self: start;
    margin-top: 4px;
    border: 0;
    border-radius: 50%;
    background: transparent;
    color: #b4a9a6;
    cursor: pointer;
    font-size: .82rem;
    transition: background .2s ease, color .2s ease;
}

.cart-drawer-item-remove:hover {
    background: #f7ecec;
    color: #8f4144;
}

.cart-drawer-footer {
    padding: 18px 24px 24px;
    border-top: 1px solid #ece4e1;
    background: #faf7f6;
}

.cart-drawer-total {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
    color: #4c423f;
    font-size: .92rem;
}

.cart-drawer-total strong {
    color: #2c2c2c;
}

.cart-drawer-total strong {
    font-size: 1.15rem;
}

.cart-drawer-checkout {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 52px;
    margin-bottom: 10px;
    padding: 12px 18px;
    border-radius: 4px;
    background: #8f4144;
    color: #fff;
    font-weight: 600;
    text-decoration: none;
    transition: background .2s ease, transform .2s ease;
}

.cart-drawer-checkout:hover {
    background: #713235;
    transform: translateY(-2px);
}

.cart-drawer-continue {
    display: block;
    width: 100%;
    padding: 11px 18px;
    border: 1px solid #d9cdc9;
    border-radius: 4px;
    background: transparent;
    color: #5b504d;
    cursor: pointer;
    font-family: var(--font-clarika);
    font-size: .88rem;
    font-weight: 600;
    transition: border-color .2s ease, color .2s ease;
}

.cart-drawer-continue:hover {
    border-color: #8f4144;
    color: #8f4144;
}

@media (max-width: 480px) {
    .cart-drawer {
        width: calc(100vw - 40px);
    }

    .cart-drawer-header {
        padding: 18px 18px;
    }

    .cart-drawer-list {
        padding: 8px 12px;
    }

    .cart-drawer-footer {
        padding: 14px 18px 20px;
    }
}

.quote-page-main {
    width: 100%;
    max-width: none;
    margin: 0;
    padding: 10px 0 70px;
    color: #2c2c2c;
    font-family: var(--font-clarika);
}

.quote-page-header {
    display: block;
    margin: 8px 0 40px;
    max-width: 560px;
}

.quote-page-eyebrow {
    display: block;
    margin: 0 0 12px;
    color: #8f4144;
    font-family: var(--font-clarika);
    font-size: .74rem;
    font-weight: 600;
    letter-spacing: .2em;
    text-transform: uppercase;
}

.quote-page-title {
    display: block;
    margin: 0 0 14px;
    color: #2c2c2c;
    font-family: var(--font-clarika);
    font-size: clamp(1.85rem, 4vw, 2.4rem);
    font-weight: 400;
    letter-spacing: .08em;
    line-height: 1.2;
    text-transform: uppercase;
}

.quote-page-lead {
    display: block;
    margin: 0;
    color: #716866;
    font-family: var(--font-clarika);
    font-size: .98rem;
    font-weight: 400;
    line-height: 1.7;
}

.quote-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) minmax(300px, .85fr);
    gap: 36px;
    align-items: start;
}

.quote-layout[hidden],
.quote-empty[hidden],
.quote-sent[hidden] {
    display: none !important;
}

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

.quote-items-header h2 {
    margin: 0;
    color: #2c2c2c;
    font-family: var(--font-clarika);
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.quote-list {
    display: grid;
    gap: 12px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.quote-item {
    display: grid;
    grid-template-columns: 96px minmax(0, 1fr) auto auto;
    gap: 18px;
    align-items: center;
    padding: 16px;
    border: 1px solid #ebe3e0;
    border-radius: 4px;
    background: #fff;
}

.quote-item-image {
    display: block;
    overflow: hidden;
    border-radius: 4px;
    background: #f5f1ef;
}

.quote-item-image img {
    display: block;
    width: 96px;
    height: 96px;
    object-fit: cover;
    transition: transform .3s ease;
}

.quote-item-image:hover img {
    transform: scale(1.04);
}

.quote-item-name {
    display: block;
    margin-bottom: 6px;
    color: #2c2c2c;
    font-family: var(--font-clarika);
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.35;
    text-decoration: none;
}

.quote-item-name:hover {
    color: #8f4144;
}

.quote-item-meta {
    margin: 0;
    color: #8b817e;
    font-family: var(--font-clarika);
    font-size: .72rem;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.quote-item-qty {
    display: flex;
    align-items: center;
    gap: 10px;
}

.quote-item-qty span {
    min-width: 22px;
    color: #2c2c2c;
    font-family: var(--font-clarika);
    font-weight: 600;
    text-align: center;
}

.quote-qty-btn {
    display: grid;
    width: 32px;
    height: 32px;
    place-items: center;
    border: 1px solid #d9cdc9;
    border-radius: 50%;
    background: #fff;
    color: #5b504d;
    cursor: pointer;
    font-family: var(--font-clarika);
    font-size: 1rem;
    transition: border-color .2s ease, color .2s ease, background .2s ease;
}

.quote-qty-btn:hover {
    border-color: #8f4144;
    background: #faf4f4;
    color: #8f4144;
}

.quote-item-remove {
    display: grid;
    width: 34px;
    height: 34px;
    place-items: center;
    border: 0;
    border-radius: 50%;
    background: transparent;
    color: #a99e9b;
    cursor: pointer;
    transition: background .2s ease, color .2s ease;
}

.quote-item-remove:hover {
    background: #f7ecec;
    color: #8f4144;
}

.quote-clear {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 2px;
    border: 0;
    background: transparent;
    color: #968986;
    cursor: pointer;
    font-family: var(--font-clarika);
    font-size: .78rem;
    font-weight: 600;
    letter-spacing: .08em;
    text-transform: uppercase;
    transition: color .2s ease;
}

.quote-clear:hover {
    color: #8f4144;
}

.quote-summary {
    position: sticky;
    top: 24px;
    padding: 30px 28px;
    border: 1px solid #ebe3e0;
    border-radius: 4px;
    background: linear-gradient(180deg, #faf7f6 0%, #f4efed 100%);
}

.quote-summary h2 {
    margin: 0 0 10px;
    color: #2c2c2c;
    font-family: var(--font-clarika);
    font-size: 1.05rem;
    font-weight: 600;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.quote-summary-note {
    margin: 0 0 24px;
    color: #756b68;
    font-family: var(--font-clarika);
    font-size: .88rem;
    line-height: 1.65;
}

.quote-summary label {
    display: block;
    margin: 0 0 7px;
    color: #4c423f;
    font-family: var(--font-clarika);
    font-size: .74rem;
    font-weight: 600;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.quote-summary input,
.quote-summary textarea {
    width: 100%;
    margin-bottom: 16px;
    padding: 13px 14px;
    border: 1px solid #d9cdc9;
    border-radius: 4px;
    background: #fff;
    color: #2c2c2c;
    font-family: var(--font-clarika);
    font-size: .94rem;
    resize: vertical;
    transition: border-color .2s ease, box-shadow .2s ease;
}

.quote-summary input::placeholder,
.quote-summary textarea::placeholder {
    color: #b0a5a2;
}

.quote-summary input:focus,
.quote-summary textarea:focus {
    border-color: #8f4144;
    outline: none;
    box-shadow: 0 0 0 3px rgba(143, 65, 68, .12);
}

.quote-total {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 8px 0 20px;
    padding: 16px 0;
    border-top: 1px solid #e3d8d4;
    border-bottom: 1px solid #e3d8d4;
    color: #4c423f;
    font-family: var(--font-clarika);
    font-size: .9rem;
    letter-spacing: .04em;
    text-transform: uppercase;
}

.quote-total strong {
    color: #2c2c2c;
    font-family: var(--font-clarika);
    font-size: 1.35rem;
    font-weight: 600;
    letter-spacing: .04em;
}

.quote-send {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    min-height: 54px;
    padding: 12px 20px;
    border: 0;
    border-radius: 4px;
    background: #8f4144;
    color: #fff;
    cursor: pointer;
    font-family: var(--font-clarika);
    font-size: .95rem;
    font-weight: 600;
    letter-spacing: .02em;
    transition: background .2s ease, transform .2s ease;
}

.quote-send:hover {
    background: #713235;
    transform: translateY(-2px);
}

.quote-help {
    margin: 14px 0 0;
    color: #948a87;
    font-family: var(--font-clarika);
    font-size: .76rem;
    line-height: 1.55;
    text-align: center;
}

.quote-empty,
.quote-sent {
    max-width: 480px;
    margin: 20px auto 0;
    padding: 64px 24px;
    color: #6d625f;
    text-align: center;
    font-family: var(--font-clarika);
}

.quote-empty i,
.quote-sent i {
    margin-bottom: 20px;
    color: #c9a9aa;
    font-size: 2.4rem;
}

.quote-empty h2,
.quote-sent h2 {
    margin: 0 0 12px;
    color: #2c2c2c;
    font-family: var(--font-clarika);
    font-size: clamp(1.3rem, 3vw, 1.55rem);
    font-weight: 600;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.quote-empty p,
.quote-sent p {
    margin: 0 0 26px;
    line-height: 1.65;
}

@media (max-width: 900px) {
    .quote-layout {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .quote-summary {
        position: static;
    }
}

@media (max-width: 560px) {
    .quote-page-main {
        padding: 10px 0 64px;
    }

    .quote-page-header {
        margin-bottom: 28px;
    }

    .quote-items-header {
        align-items: flex-start;
        flex-direction: column;
        gap: 6px;
    }

    .quote-item {
        grid-template-columns: 76px minmax(0, 1fr) auto;
        grid-template-areas:
            'image info remove'
            'image qty remove';
        gap: 12px 14px;
        padding: 12px;
    }

    .quote-item-image {
        grid-area: image;
    }

    .quote-item-image img {
        width: 76px;
        height: 76px;
    }

    .quote-item-info {
        grid-area: info;
    }

    .quote-item-qty {
        grid-area: qty;
    }

    .quote-item-remove {
        grid-area: remove;
        align-self: start;
    }

    .quote-summary {
        padding: 24px 18px;
    }
}
