.botones-login-cotizar>p {
    display: flex;
    flex-shrink: 0;
}

/* ===== Botón login ===== */

.gr-login-btn {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 10px 16px;
    background: #ffffff;
    color: #17315a;
    font-weight: 600;
    font-size: 0.875rem;
    text-decoration: none;
    transition: all 0.18s ease;
    height: 46px;
    border-radius: 4px;
    border: 1px solid #A1AFC1;
    flex-shrink: 0;
}

.gr-login-btn:hover {
    background: #D7E3F4;
}

.gr-login-ico {
    width: 24px;
    height: 24px;
    box-sizing: border-box;
    position: relative;
}

.gr-login-text {
    line-height: 1.2;
    display: flex;
    flex-direction: column;
}

/* ===== Botón Cotizar ===== */

.gr-quote-wrap {
    display: inline-flex;
    align-items: center;
    position: relative;
}

.gr-quote-btn {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 10px 16px;
    background: #153665;
    color: #ffffff;
    font-weight: 600;
    font-size: 0.875rem;
    text-decoration: none;
    transition: all 0.18s ease;
    height: 46px;
    border-radius: 4px;
    border: 1px solid #153665;
    flex-shrink: 0;
    cursor: pointer;
    font-family: "Space Grotesk", sans-serif;
}

.gr-quote-btn:hover {
    background: #1A447F;
}

.gr-quote-cart-ico {
    width: 24px;
    height: 24px;
}

.gr-quote-label {
    white-space: nowrap;
}

.gr-quote-count {
    position: absolute;
    top: -10px;
    right: -10px;
    min-width: 24px;
    height: 24px;
    padding: 0 6px;
    border-radius: 999px;
    background: #ffbe2e;
    color: #17315a;
    font-size: 14px;
    font-weight: 800;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

/* ===== Overlay & Panel Cotización ===== */

.gr-quote-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    z-index: 9000;
}

.gr-quote-overlay.is-open {
    display: block;
}

.gr-quote-panel {
    position: fixed;
    top: 0;
    right: 0;
    width: 380px;
    max-width: 100%;
    height: 100vh;
    background: #ffffff;
    box-shadow: -8px 0 24px rgba(0, 0, 0, 0.18);
    z-index: 9050;
    display: flex;
    flex-direction: column;
    transform: translateX(100%);
    transition: transform 0.25s ease;
}

.gr-quote-panel.is-open {
    transform: translateX(0);
}

.gr-quote-header {
    padding: 18px 20px 10px;
    display: flex;
    justify-content: space-between;
    gap: 16px;
    border-bottom: 1px solid #edf0f6;
}

.gr-quote-title {
    margin: 0;
    font-size: 20px;
    font-weight: 700;
    color: #17233a;
}

.gr-quote-sub {
    margin: 3px 0 0;
    font-size: 13px;
    color: #6b7487;
}

.gr-quote-close {
    border: 0;
    background: transparent;
    font-size: 20px;
    cursor: pointer;
    color: #7b8497;
}

.gr-quote-body {
    flex: 1;
    overflow-y: auto;
    padding: 14px 16px 16px;
}

.gr-quote-empty {
    padding: 20px 6px;
    font-size: 14px;
    color: #6b7487;
}

/* Item */

.gr-quote-item {
    display: grid;
    grid-template-columns: 70px 1fr;
    gap: 10px;
    padding: 10px 4px;
    border-bottom: 1px solid #f1f3f8;
}

.gr-quote-thumb-wrap {
    display: flex;
    justify-content: center;
    align-items: center;
}

.gr-quote-thumb {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 6px;
    background: #f2f4f9;
}

.gr-quote-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.gr-quote-name {
    font-size: 14px;
    font-weight: 600;
    color: #17233a;
}

.gr-quote-variant {
    font-size: 12px;
    color: #555f75;
}

.gr-quote-variant .lbl {
    font-weight: 600;
}

.gr-quote-actions {
    margin-top: 4px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
}

.gr-quote-qty {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    border: 1px solid #d5ddec;
    border-radius: 999px;
    padding: 2px 8px;
}

.gr-quote-qty button {
    border: 0;
    background: transparent;
    font-size: 16px;
    cursor: pointer;
    color: #17315a;
    width: 20px;
    height: 20px;
    line-height: 1;
}

.gr-quote-qty .num {
    min-width: 14px;
    text-align: center;
    font-size: 13px;
    color: #17233a;
}

.gr-q-del {
    border: 0;
    background: transparent;
    cursor: pointer;
    font-size: 16px;
    color: #c43a3a;
}

/* Footer */

.gr-quote-footer {
    padding: 12px 16px 16px;
    border-top: 1px solid #edf0f6;
}

.gr-quote-send {
    width: 100%;
    padding: 12px 14px;
    border-radius: 10px;
    border: 0;
    background: #1976ff;
    color: #ffffff;
    font-weight: 700;
    font-size: 15px;
    cursor: pointer;
    transition: all 0.18s ease;
}

.gr-quote-send:disabled {
    background: #c5d2ec;
    cursor: default;
}

.gr-quote-send:not(:disabled):hover {
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    transform: translateY(-1px);
}

/* Feedback al añadir */
.gr-add-to-quote.is-added {
    animation: gr-quote-pulse 0.3s ease;
}

@keyframes gr-quote-pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.06);
    }

    100% {
        transform: scale(1);
    }
}