/*
 * Shredder2u — Request Quotation Page Styles
 * File: shr-quote-page.css
 * Location: /opt/bitnami/wordpress/wp-content/themes/storefront-child/shr-quote-page.css
 * Loaded only on Request Quotation page — see functions.php conditional enqueue
 * All rules scoped to .shr-quote-wrap — zero global side effects
 */

.shr-quote-wrap * {
    box-sizing: border-box;
}

.shr-quote-wrap {
    max-width: 100%;
    margin: 0 auto;
    padding: 0 48px 64px;
    font-family: inherit;
}

/* ── Hide default WP page title ── */
.request-quote .entry-title,
.request-quotation .entry-title,
.page-id-139 .entry-title {
    display: none !important;
}

/* ── Kill entry-content top padding ── */
.request-quote .entry-content,
.request-quotation .entry-content,
.page-id-139 .entry-content {
    padding-top: 0 !important;
    margin-top: 0 !important;
}

/* ── Kill wpautop injections ── */
.shr-quote-wrap p:empty,
.shr-quote-hero>p,
.shr-quote-trust>p,
.shr-quote-body>p,
.shr-quote-steps>p {
    display: none !important;
    height: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
}

/* =============================================================
   HERO — full-bleed, matches site design system
   ============================================================= */

.shr-quote-hero {
    width: 100vw !important;
    position: relative !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    border-radius: 0 !important;
    margin-top: 0 !important;
    margin-bottom: 40px;

    background: linear-gradient(135deg, #111d2e 0%, #1a2e45 50%, #0f1923 100%);
    padding: 56px 8vw 52px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 32px;
    overflow: hidden;
}

.shr-quote-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px);
    background-size: 22px 22px;
    pointer-events: none;
    z-index: 0;
}

.shr-quote-hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent 5%, #e63946 35%, #e63946 65%, transparent 95%);
    z-index: 1;
}

.shr-quote-hero__text {
    position: relative;
    z-index: 2;
    max-width: 520px;
}

.shr-quote-hero__eyebrow {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: #e63946;
    margin: 0 0 16px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.shr-quote-hero__eyebrow::before {
    content: '';
    display: block;
    width: 28px;
    height: 2px;
    background: #e63946;
    flex-shrink: 0;
}

.shr-quote-hero__title {
    font-size: 2.6rem;
    font-weight: 800;
    color: #fff;
    line-height: 1.15;
    margin: 0 0 16px;
}

.shr-quote-hero__title .highlight {
    color: #e63946;
}

.shr-quote-hero__body {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.70);
    line-height: 1.75;
    margin: 0;
}

/* Right side — response promise cards */
.shr-quote-hero__promises {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.shr-quote-hero__promise {
    display: flex;
    align-items: center;
    gap: 14px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 14px 20px;
    min-width: 240px;
}

.shr-quote-hero__promise-icon {
    width: 38px;
    height: 38px;
    border-radius: 8px;
    background: rgba(230, 57, 70, 0.15);
    border: 1px solid rgba(230, 57, 70, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 17px;
    flex-shrink: 0;
}

.shr-quote-hero__promise-text strong {
    display: block;
    font-size: 0.9rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 2px;
}

.shr-quote-hero__promise-text span {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.5);
}

/* Hide WordPress built-in page title on contact page */
.contact-us .entry-title,
.page-id-1994 .entry-title,
.page-id-13893 .entry-title {
    display: none;
}

/* Hide empty sidebar and stretch content full width */
.page-id-1994 #secondary,
.page-id-13893 #secondary,
.page-id-1994 .widget-area,
.page-id-13893 .widget-area {
    display: none !important;
}

/* =============================================================
   TRUST STRIP
   ============================================================= */

.shr-quote-trust {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border: 1px solid #e8edf2;
    border-radius: 10px;
    overflow: hidden;
    background: #f8fafc;
    margin-bottom: 40px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
}

.shr-quote-trust__item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 18px 22px;
    font-size: 0.9rem;
    color: #374151;
    font-weight: 500;
    border-right: 1px solid #e8edf2;
    line-height: 1.4;
}

.shr-quote-trust__item:last-child {
    border-right: none;
}

.shr-quote-trust__icon {
    font-size: 1.4rem;
    flex-shrink: 0;
}

.shr-quote-trust__text strong {
    display: block;
    font-size: 0.88rem;
    font-weight: 700;
    color: #111d2e;
    margin-bottom: 2px;
}

.shr-quote-trust__text span {
    font-size: 0.8rem;
    color: #6b7280;
}

/* =============================================================
   MAIN BODY — 2-col: form left, info right
   ============================================================= */

.shr-quote-body {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 40px;
    align-items: start;
    margin-bottom: 48px;
}

/* ── Form column ── */
.shr-quote-form-col {
    background: #fff;
    border: 1px solid #e8edf2;
    border-radius: 12px;
    padding: 36px 36px;
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.05);
}

.shr-quote-form-col__heading {
    font-size: 1.2rem !important;
    font-weight: 800 !important;
    color: #111d2e !important;
    margin: 0 0 6px !important;
}

.shr-quote-form-col__sub {
    font-size: 0.88rem;
    color: #6b7280;
    margin: 0 0 28px;
    line-height: 1.6;
}

/* Ninja Forms overrides — scoped to quote form only */
.shr-quote-form-col .nf-form-cont .nf-field-label label {
    font-size: 0.92rem !important;
    font-weight: 600 !important;
    color: #374151 !important;
}

.shr-quote-form-col .nf-form-cont .field-wrap {
    margin-bottom: 20px !important;
}

.shr-quote-form-col .nf-form-cont input[type="text"],
.shr-quote-form-col .nf-form-cont input[type="email"],
.shr-quote-form-col .nf-form-cont input[type="tel"],
.shr-quote-form-col .nf-form-cont input[type="number"],
.shr-quote-form-col .nf-form-cont textarea,
.shr-quote-form-col .nf-form-cont select {
    width: 100% !important;
    border: 1.5px solid #e2e8f0 !important;
    border-radius: 6px !important;
    padding: 12px 16px !important;
    font-size: 0.95rem !important;
    background: #fafafa !important;
    color: #111d2e !important;
    transition: border-color 0.2s, background 0.2s !important;
}

.shr-quote-form-col .nf-form-cont input:focus,
.shr-quote-form-col .nf-form-cont textarea:focus,
.shr-quote-form-col .nf-form-cont select:focus {
    border-color: #e63946 !important;
    background: #fff !important;
    outline: none !important;
    box-shadow: 0 0 0 3px rgba(230, 57, 70, 0.08) !important;
}

.shr-quote-form-col .nf-form-cont textarea {
    min-height: 120px !important;
    resize: vertical !important;
}

.shr-quote-form-col .nf-submit button,
.shr-quote-form-col input[type="submit"] {
    background: #e63946 !important;
    color: #fff !important;
    border: none !important;
    border-radius: 6px !important;
    padding: 14px 36px !important;
    font-size: 1rem !important;
    font-weight: 700 !important;
    cursor: pointer !important;
    transition: background 0.2s, transform 0.15s !important;
    width: 100% !important;
    letter-spacing: 0.02em !important;
}

.shr-quote-form-col .nf-submit button:hover {
    background: #c1121f !important;
    transform: translateY(-1px) !important;
}

/* ── Info sidebar column ── */
.shr-quote-info-col {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.shr-quote-info-card {
    background: #fff;
    border: 1px solid #e8edf2;
    border-radius: 10px;
    padding: 24px 22px;
    box-shadow: 0 1px 8px rgba(0, 0, 0, 0.04);
}

.shr-quote-info-card--dark {
    background: linear-gradient(135deg, #111d2e 0%, #1a2e45 100%);
    border-color: transparent;
}

.shr-quote-info-card__heading {
    font-size: 0.95rem !important;
    font-weight: 800 !important;
    color: #111d2e !important;
    margin: 0 0 16px !important;
    padding-bottom: 12px !important;
    border-bottom: 2px solid #f0f2f5 !important;
    display: flex !important;
    align-items: center !important;
    gap: 8px !important;
}

.shr-quote-info-card--dark .shr-quote-info-card__heading {
    color: #fff !important;
    border-bottom-color: rgba(255, 255, 255, 0.1) !important;
}

/* Contact methods */
.shr-quote-contact-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.shr-quote-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.shr-quote-contact-item__icon {
    width: 34px;
    height: 34px;
    border-radius: 8px;
    background: linear-gradient(135deg, #fff0f1, #ffe0e2);
    border: 1px solid rgba(230, 57, 70, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    flex-shrink: 0;
}

.shr-quote-contact-item__label {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #9ca3af;
    display: block;
    margin-bottom: 3px;
}

.shr-quote-contact-item__value {
    font-size: 0.92rem;
    font-weight: 600;
    color: #111d2e;
    text-decoration: none;
    display: block;
    line-height: 1.4;
}

.shr-quote-contact-item__value:hover {
    color: #e63946;
}

/* Dark card variations */
.shr-quote-info-card--dark .shr-quote-contact-item__icon {
    background: rgba(230, 57, 70, 0.15);
    border-color: rgba(230, 57, 70, 0.25);
}

.shr-quote-info-card--dark .shr-quote-contact-item__label {
    color: rgba(255, 255, 255, 0.4);
}

.shr-quote-info-card--dark .shr-quote-contact-item__value {
    color: rgba(255, 255, 255, 0.85);
}

.shr-quote-info-card--dark .shr-quote-contact-item__value:hover {
    color: #e63946;
}

/* ── What to include list ── */
.shr-quote-checklist {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.shr-quote-checklist__item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.88rem;
    color: #374151;
    line-height: 1.55;
}

.shr-quote-checklist__item::before {
    content: '✓';
    display: flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #e63946;
    color: #fff;
    font-size: 11px;
    font-weight: 800;
    flex-shrink: 0;
    margin-top: 1px;
}

/* =============================================================
   WHAT HAPPENS NEXT — process steps
   ============================================================= */

.shr-quote-steps {
    background: #f8fafc;
    border: 1px solid #e8edf2;
    border-radius: 12px;
    padding: 36px 36px;
    margin-bottom: 8px;
}

.shr-quote-steps__heading {
    font-size: 1.1rem !important;
    font-weight: 800 !important;
    color: #111d2e !important;
    margin: 0 0 28px !important;
    display: flex !important;
    align-items: center !important;
    gap: 10px !important;
}

.shr-quote-steps__heading::after {
    content: '';
    flex: 1;
    height: 1px;
    background: #e8edf2;
}

.shr-quote-steps__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    position: relative;
}

.shr-quote-step {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    position: relative;
}

/* Arrow connector between steps */
.shr-quote-step:not(:last-child)::after {
    content: '→';
    position: absolute;
    right: -16px;
    top: 12px;
    color: #e63946;
    font-size: 1.1rem;
    font-weight: 700;
}

.shr-quote-step__num {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #e63946;
    color: #fff;
    font-size: 0.9rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.shr-quote-step h4 {
    font-size: 0.92rem !important;
    font-weight: 700 !important;
    color: #111d2e !important;
    margin: 0 0 4px !important;
    line-height: 1.3 !important;
}

.shr-quote-step p {
    font-size: 0.83rem !important;
    color: #6b7280 !important;
    line-height: 1.6 !important;
    margin: 0 !important;
}

/* =============================================================
   RESPONSIVE
   ============================================================= */

@media (max-width: 1024px) {
    .shr-quote-body {
        grid-template-columns: 1fr;
    }

    .shr-quote-info-col {
        display: grid;
        grid-template-columns: 1fr 1fr;
    }

    .shr-quote-steps__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .shr-quote-step:nth-child(2)::after {
        display: none;
    }
}

@media (max-width: 768px) {
    .shr-quote-hero {
        flex-direction: column;
        padding: 44px 6vw 40px;
    }

    .shr-quote-trust {
        grid-template-columns: repeat(2, 1fr);
    }

    .shr-quote-trust__item:nth-child(2) {
        border-right: none;
    }

    .shr-quote-trust__item:nth-child(3),
    .shr-quote-trust__item:nth-child(4) {
        border-top: 1px solid #e8edf2;
    }

    .shr-quote-hero__title {
        font-size: 2rem;
    }
}

@media (max-width: 600px) {
    .shr-quote-wrap {
        padding: 0 16px 40px;
    }

    .shr-quote-form-col {
        padding: 24px 20px;
    }

    .shr-quote-steps {
        padding: 24px 20px;
    }

    .shr-quote-info-col {
        grid-template-columns: 1fr;
    }

    .shr-quote-steps__grid {
        grid-template-columns: 1fr;
    }

    .shr-quote-step::after {
        display: none !important;
    }

    .shr-quote-trust {
        grid-template-columns: 1fr;
    }

    .shr-quote-trust__item {
        border-right: none;
        border-bottom: 1px solid #e8edf2;
    }

    .shr-quote-trust__item:last-child {
        border-bottom: none;
    }

    .shr-quote-hero__promises {
        display: none;
    }
}

/* =============================================================
   METHOD PICKER CARDS
   ============================================================= */

.shr-quote-methods {
    margin-bottom: 48px;
}

.shr-quote-methods__heading {
    margin-bottom: 24px;
}

.shr-quote-methods__eyebrow {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #e63946;
    margin: 0 0 8px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.shr-quote-methods__eyebrow::before {
    content: '';
    display: block;
    height: 1px;
    width: 24px;
    background: #e63946;
    flex-shrink: 0;
}

.shr-quote-methods__heading h2 {
    font-size: 1.4rem !important;
    font-weight: 800 !important;
    color: #111d2e !important;
    margin: 0 !important;
}

.shr-quote-methods__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.shr-quote-method-card {
    background: #fff;
    border: 1.5px solid #e8edf2;
    border-radius: 12px;
    padding: 28px 26px;
    position: relative;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.shr-quote-method-card:hover {
    border-color: #e63946;
    box-shadow: 0 6px 24px rgba(230, 57, 70, 0.1);
}

.shr-quote-method-card--recommended {
    border-color: #e63946;
    background: linear-gradient(135deg, #fff 0%, #fff8f8 100%);
}

.shr-quote-method-card__badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: #e63946;
    color: #fff;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    border-radius: 20px;
    padding: 3px 10px;
    margin-bottom: 14px;
}

.shr-quote-method-card__icon {
    font-size: 2rem;
    margin-bottom: 12px;
    display: block;
}

.shr-quote-method-card__title {
    font-size: 1.05rem !important;
    font-weight: 800 !important;
    color: #111d2e !important;
    margin: 0 0 10px !important;
}

.shr-quote-method-card__desc {
    font-size: 0.9rem !important;
    color: #4b5563 !important;
    line-height: 1.7 !important;
    margin: 0 0 16px !important;
}

.shr-quote-method-card__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 20px;
}

.shr-quote-method-card__tags span {
    font-size: 0.75rem;
    font-weight: 600;
    color: #374151;
    background: #f0f2f5;
    border-radius: 4px;
    padding: 4px 10px;
}

.shr-quote-method-card--recommended .shr-quote-method-card__tags span {
    background: rgba(230, 57, 70, 0.08);
    color: #c1121f;
}

.shr-quote-method-card__btn {
    display: inline-block;
    padding: 10px 20px;
    background: #111d2e;
    color: #fff !important;
    border-radius: 6px;
    font-size: 0.88rem;
    font-weight: 700;
    text-decoration: none !important;
    transition: background 0.2s;
}

.shr-quote-method-card--recommended .shr-quote-method-card__btn {
    background: #e63946;
}

.shr-quote-method-card__btn:hover {
    background: #e63946;
}

.shr-quote-method-card--recommended .shr-quote-method-card__btn:hover {
    background: #c1121f;
}

/* =============================================================
   STEP-BY-STEP GUIDE SECTIONS
   ============================================================= */

.shr-quote-guide {
    margin-bottom: 40px;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #e8edf2;
}

.shr-quote-guide--light {
    background: #f8fafc;
}

/* Guide header */
.shr-quote-guide__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
    padding: 32px 36px;
}

.shr-quote-guide__header--dark {
    background: linear-gradient(135deg, #111d2e 0%, #1a2e45 100%);
    position: relative;
    overflow: hidden;
}

.shr-quote-guide__header--dark::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px);
    background-size: 22px 22px;
    pointer-events: none;
}

.shr-quote-guide__header--dark::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, #e63946 30%, #e63946 70%, transparent);
}

.shr-quote-guide__header--light {
    background: #fff;
    border-bottom: 1px solid #e8edf2;
}

.shr-quote-guide__header-left {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    position: relative;
    z-index: 2;
}

.shr-quote-guide__method-num {
    font-size: 3rem;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.1);
    line-height: 1;
    flex-shrink: 0;
    margin-top: -4px;
}

.shr-quote-guide__method-num--outline {
    color: rgba(230, 57, 70, 0.15);
}

.shr-quote-guide__eyebrow {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #e63946;
    margin: 0 0 8px;
    display: block;
}

.shr-quote-guide__title {
    font-size: 1.4rem !important;
    font-weight: 800 !important;
    color: #fff !important;
    margin: 0 0 6px !important;
    line-height: 1.25 !important;
}

.shr-quote-guide__subtitle {
    font-size: 0.9rem !important;
    color: rgba(255, 255, 255, 0.6) !important;
    margin: 0 !important;
    line-height: 1.6 !important;
}

.shr-quote-guide__header-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 8px;
    padding: 10px 18px;
    font-size: 0.85rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.85);
    white-space: nowrap;
    position: relative;
    z-index: 2;
    flex-shrink: 0;
}

.shr-quote-guide__header-badge--light {
    background: #f0f2f5;
    border-color: #e8edf2;
    color: #374151;
}

/* Steps container */
.shr-quote-guide__steps {
    padding: 32px 36px;
    display: flex;
    flex-direction: column;
    gap: 0;
    background: #fff;
}

.shr-quote-guide--light .shr-quote-guide__steps {
    background: #f8fafc;
}

/* Individual step */
.shr-quote-guide__step {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.shr-quote-guide__step-left {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex-shrink: 0;
    width: 40px;
}

.shr-quote-guide__step-num {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #e63946;
    color: #fff;
    font-size: 0.95rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 2px 8px rgba(230, 57, 70, 0.35);
}

.shr-quote-guide__step-line {
    width: 2px;
    flex: 1;
    min-height: 40px;
    background: linear-gradient(to bottom, rgba(230, 57, 70, 0.3), rgba(230, 57, 70, 0.05));
    margin-top: 6px;
}

.shr-quote-guide__step-content {
    padding-bottom: 32px;
    flex: 1;
    padding-top: 5px;
}

.shr-quote-guide__step:last-child .shr-quote-guide__step-content {
    padding-bottom: 0;
}

.shr-quote-guide__step-content h3 {
    font-size: 1rem !important;
    font-weight: 700 !important;
    color: #111d2e !important;
    margin: 0 0 10px !important;
    line-height: 1.4 !important;
}

.shr-quote-guide__step-content p {
    font-size: 0.9rem !important;
    color: #4b5563 !important;
    line-height: 1.75 !important;
    margin: 0 0 14px !important;
}

.shr-quote-guide__step-content a {
    color: #e63946;
    font-weight: 600;
}

/* Button name highlight */
.shr-quote-guide__highlight-btn {
    display: inline-block;
    background: #e63946;
    color: #fff !important;
    font-size: 0.85rem;
    font-weight: 700;
    border-radius: 5px;
    padding: 3px 10px;
    vertical-align: middle;
}

/* Tip callouts */
.shr-quote-guide__tip {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    background: #f0f9ff;
    border: 1px solid #bae6fd;
    border-radius: 8px;
    padding: 12px 14px;
    font-size: 0.85rem;
    color: #0369a1;
    line-height: 1.6;
    margin-top: 4px;
}

.shr-quote-guide__tip--success {
    background: #f0fdf4;
    border-color: #bbf7d0;
    color: #166534;
}

.shr-quote-guide__tip-icon {
    font-size: 1rem;
    flex-shrink: 0;
    margin-top: 1px;
}

.shr-quote-guide__tip a {
    color: inherit;
    font-weight: 700;
}

/* Product page mockup */
.shr-quote-guide__mockup {
    margin-top: 16px;
    background: #f8fafc;
    border: 1px solid #e8edf2;
    border-radius: 10px;
    padding: 18px;
}

.shr-quote-guide__mockup-product {
    background: #fff;
    border: 1px solid #e8edf2;
    border-radius: 8px;
    padding: 16px;
    display: grid;
    grid-template-columns: 48px 1fr auto;
    gap: 14px;
    align-items: center;
}

.shr-quote-guide__mockup-img {
    width: 48px;
    height: 48px;
    background: #f0f2f5;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.shr-quote-guide__mockup-name {
    font-size: 0.88rem;
    font-weight: 700;
    color: #111d2e;
    margin-bottom: 4px;
}

.shr-quote-guide__mockup-price {
    font-size: 0.95rem;
    font-weight: 800;
    color: #e63946;
    margin-bottom: 8px;
}

.shr-quote-guide__mockup-qty {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8rem;
    color: #6b7280;
}

.shr-quote-guide__mockup-qty-box {
    width: 32px;
    height: 28px;
    border: 1px solid #e8edf2;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    font-weight: 600;
    color: #111d2e;
    background: #f8fafc;
}

.shr-quote-guide__mockup-actions {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.shr-quote-guide__mockup-btn {
    padding: 8px 14px;
    border-radius: 5px;
    font-size: 0.78rem;
    font-weight: 700;
    text-align: center;
    white-space: nowrap;
}

.shr-quote-guide__mockup-btn--add {
    background: #f0f2f5;
    color: #374151;
    border: 1px solid #e8edf2;
}

.shr-quote-guide__mockup-btn--quote {
    background: #e63946;
    color: #fff;
    box-shadow: 0 2px 6px rgba(230, 57, 70, 0.3);
    position: relative;
    overflow: hidden;
}

.shr-quote-guide__mockup-btn--quote::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 40px;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.15));
}

/* Quote list mockup */
.shr-quote-guide__mockup-list {
    background: #fff;
    border: 1px solid #e8edf2;
    border-radius: 8px;
    overflow: hidden;
}

.shr-quote-guide__mockup-list-header {
    background: #111d2e;
    color: #fff;
    font-size: 0.85rem;
    font-weight: 700;
    padding: 12px 16px;
}

.shr-quote-guide__mockup-list-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 16px;
    border-bottom: 1px solid #f0f2f5;
    font-size: 0.85rem;
    color: #374151;
}

.shr-quote-guide__mockup-list-qty {
    font-weight: 700;
    color: #111d2e;
    background: #f0f2f5;
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 0.78rem;
}

.shr-quote-guide__mockup-list-submit {
    background: #e63946;
    color: #fff;
    font-size: 0.88rem;
    font-weight: 700;
    padding: 12px 16px;
    text-align: center;
    cursor: pointer;
}

.shr-quote-guide__mockup-label {
    font-size: 0.78rem;
    color: #6b7280;
    text-align: center;
    padding-top: 10px;
    font-style: italic;
}

/* Guide CTA */
.shr-quote-guide__cta {
    background: #f8fafc;
    border-top: 1px solid #e8edf2;
    padding: 20px 36px;
    text-align: right;
}

.shr-quote-guide__cta-btn {
    display: inline-block;
    padding: 12px 24px;
    background: #e63946;
    color: #fff !important;
    border-radius: 6px;
    font-size: 0.9rem;
    font-weight: 700;
    text-decoration: none !important;
    transition: background 0.2s;
}

.shr-quote-guide__cta-btn:hover {
    background: #c1121f;
}

/* Responsive additions */
@media (max-width: 768px) {
    .shr-quote-methods__grid {
        grid-template-columns: 1fr;
    }

    .shr-quote-guide__header {
        padding: 24px 22px;
    }

    .shr-quote-guide__steps {
        padding: 24px 20px;
    }

    .shr-quote-guide__cta {
        padding: 16px 20px;
        text-align: center;
    }

    .shr-quote-guide__cta-btn {
        width: 100%;
        text-align: center;
        display: block;
    }

    .shr-quote-guide__method-num {
        font-size: 2rem;
    }

    .shr-quote-guide__header-left {
        flex-direction: column;
        gap: 10px;
    }

    .shr-quote-guide__mockup-product {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 600px) {
    .shr-quote-guide__header-badge {
        display: none;
    }

    .shr-quote-guide__mockup-actions {
        flex-direction: row;
    }
}