/* ============================================================
   Showroom Firenze - CTA + landing page
   ============================================================ */

/* --- 1. Strip in alto (sotto la rossa Spedizione Gratuita) --- */
.showroom-strip {
    background: linear-gradient(90deg, #b8860b 0%, #d4a017 50%, #b8860b 100%);
    color: #fff;
    text-align: center;
    padding: 6px 12px;
    font-size: 14px;
    line-height: 1.3;
    letter-spacing: 0.3px;
}
.showroom-strip a {
    color: #fff;
    text-decoration: none;
    display: inline-block;
}
.showroom-strip a:hover {
    text-decoration: underline;
    color: #fff;
}
.showroom-strip .showroom-strip-icon {
    margin-right: 6px;
}
.showroom-strip .showroom-strip-cta {
    font-weight: 700;
    text-decoration: underline;
    margin-left: 6px;
}
@media (max-width: 575px) {
    .showroom-strip {
        font-size: 12px;
        padding: 5px 8px;
    }
    .showroom-strip .showroom-strip-cta {
        display: block;
        margin-left: 0;
        margin-top: 2px;
    }
}

/* --- 2. Link "Showroom" nel menu top --- */
.showroom-menu-link {
    color: #b8860b !important;
    font-weight: 700 !important;
}
.showroom-menu-link:hover {
    color: #d4a017 !important;
}
.showroom-menu-link i {
    margin-right: 4px;
}

/* --- 3. Blocco footer --- */
.footer-showroom {
    margin-top: 14px;
    padding: 10px 12px;
    border: 1px solid rgba(255,255,255,0.18);
    border-radius: 4px;
    background: rgba(184,134,11,0.10);
}
.footer-showroom strong {
    display: block;
    color: #d4a017;
    margin-bottom: 4px;
    font-size: 13px;
    letter-spacing: 0.4px;
}
.footer-showroom span {
    display: block;
    font-size: 12px;
    opacity: 0.85;
    margin-bottom: 6px;
}
.footer-showroom a.footer-showroom-cta {
    font-size: 12px;
    font-weight: 700;
    color: #d4a017;
    text-decoration: none;
}
.footer-showroom a.footer-showroom-cta:hover {
    text-decoration: underline;
}

/* --- 4. Callout in scheda prodotto --- */
.product-showroom-callout {
    margin: 12px 0 4px 0;
    padding: 10px 12px;
    background: #fdf6e3;
    border-left: 4px solid #d4a017;
    border-radius: 3px;
    font-size: 13px;
    line-height: 1.4;
}
.product-showroom-callout a {
    color: #8b6914;
    text-decoration: none;
    font-weight: 600;
    display: block;
}
.product-showroom-callout a:hover {
    color: #b8860b;
    text-decoration: underline;
}
.product-showroom-callout .product-showroom-callout-icon {
    margin-right: 6px;
    font-size: 16px;
}

/* --- Home: banner showroom (prima delle recensioni) --- */
.home-showroom-banner {
    position: relative;
    display: block;
    background-size: cover;
    background-position: center;
    text-decoration: none;
    color: #fff;
    overflow: hidden;
    margin: 30px 0;
    min-height: 320px;
    border-radius: 0;
}
.home-showroom-banner:hover {
    color: #fff;
    text-decoration: none;
}
.home-showroom-banner__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0.35) 0%, rgba(0,0,0,0.55) 100%);
    z-index: 1;
}
.home-showroom-banner__inner {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 60px 20px;
    max-width: 820px;
    margin: 0 auto;
}
.home-showroom-banner__tags {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin-bottom: 18px;
}
.home-showroom-banner__tag {
    display: inline-block;
    color: #f5c542;
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    border-top: 2px solid #f5c542;
    border-bottom: 2px solid #f5c542;
    padding: 6px 22px;
    text-shadow: 0 1px 4px rgba(0,0,0,0.6);
}
.home-showroom-banner__tag i {
    margin-right: 8px;
}
.home-showroom-banner__tag--location {
    color: #fff;
    border-color: #fff;
}
.home-showroom-banner__title {
    font-size: 32px;
    margin: 0 0 12px;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    text-shadow: 0 2px 8px rgba(0,0,0,0.4);
    line-height: 1.2;
}
.home-showroom-banner__text {
    font-size: 16px;
    line-height: 1.55;
    margin: 0 auto 22px;
    max-width: 640px;
    text-shadow: 0 1px 4px rgba(0,0,0,0.5);
}
.home-showroom-banner__cta {
    display: inline-block;
    padding: 12px 32px;
    background: #d4a017;
    color: #fff;
    font-weight: 700;
    font-size: 15px;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    border-radius: 30px;
    transition: background 0.2s, transform 0.2s;
}
.home-showroom-banner__cta i {
    margin-left: 8px;
    transition: transform 0.2s;
}
.home-showroom-banner:hover .home-showroom-banner__cta {
    background: #b8860b;
}
.home-showroom-banner:hover .home-showroom-banner__cta i {
    transform: translateX(4px);
}
@media (max-width: 575px) {
    .home-showroom-banner {
        min-height: 280px;
    }
    .home-showroom-banner__inner {
        padding: 40px 16px;
    }
    .home-showroom-banner__title {
        font-size: 22px;
    }
    .home-showroom-banner__text {
        font-size: 14px;
    }
    .home-showroom-banner__tag {
        font-size: 11px;
        letter-spacing: 1.8px;
        padding: 5px 14px;
    }
    .home-showroom-banner__cta {
        padding: 10px 24px;
        font-size: 13px;
    }
}

/* --- 5. Pagina showroom --- */
.showroom-page {
    padding: 0 0 40px;
}
.showroom-page .showroom-hero {
    position: relative;
    background-size: cover;
    background-position: center;
    color: #fff;
    padding: 90px 30px;
    text-align: center;
    border-radius: 6px;
    margin-bottom: 36px;
    min-height: 420px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: hidden;
}
/* Overlay scuro: si vede l'immagine ma il testo resta leggibile */
.showroom-page .showroom-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0.30) 0%, rgba(0,0,0,0.45) 100%);
    border-radius: 6px;
    z-index: 1;
}
.showroom-page .showroom-hero-inner {
    position: relative;
    z-index: 2;
    max-width: 760px;
    margin: 0 auto;
}
.showroom-page .showroom-hero h1 {
    font-size: 36px;
    margin: 0 0 16px;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    text-shadow: 0 2px 8px rgba(0,0,0,0.4);
}
.showroom-page .showroom-hero p {
    font-size: 17px;
    margin: 0 auto;
    max-width: 700px;
    line-height: 1.55;
    text-shadow: 0 1px 4px rgba(0,0,0,0.5);
}
/* Tag/banner sopra al titolo: NON pulsanti, etichette */
.showroom-page .showroom-hero-tags {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin-bottom: 18px;
}
.showroom-page .showroom-hero-tag {
    display: inline-block;
    color: #f5c542;
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    border-top: 2px solid #f5c542;
    border-bottom: 2px solid #f5c542;
    padding: 6px 22px;
    background: transparent;
    text-shadow: 0 1px 4px rgba(0,0,0,0.6);
}
.showroom-page .showroom-hero-tag i {
    margin-right: 8px;
}
.showroom-page .showroom-hero-tag--location {
    color: #fff;
    border-color: #fff;
}
@media (max-width: 575px) {
    .showroom-page .showroom-hero {
        min-height: 340px;
        padding: 60px 20px;
    }
    .showroom-page .showroom-hero h1 {
        font-size: 26px;
    }
    .showroom-page .showroom-hero p {
        font-size: 15px;
    }
    .showroom-page .showroom-hero-tag {
        font-size: 11px;
        letter-spacing: 1.8px;
        padding: 5px 14px;
    }
    .showroom-page .showroom-hero-tags {
        gap: 8px;
        margin-bottom: 14px;
    }
}

.showroom-page .showroom-intro {
    max-width: 820px;
    margin: 0 auto 40px;
    text-align: center;
    font-size: 16px;
    line-height: 1.7;
    color: #444;
}

/* Fascia ultimi divani (miniature non cliccabili, griglia 5x2) */
.showroom-page .showroom-latest {
    margin-bottom: 40px;
    text-align: center;
}
.showroom-page .showroom-latest h2 {
    margin: 0 0 6px;
    font-size: 24px;
    color: #333;
}
.showroom-page .showroom-latest-intro {
    color: #666;
    font-size: 14px;
    margin: 0 auto 22px;
    max-width: 700px;
}
.showroom-page .showroom-latest-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 14px;
}
.showroom-page .showroom-latest-thumb {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 6px;
    overflow: hidden;
    aspect-ratio: 4/3;
    pointer-events: none;
    user-select: none;
}
.showroom-page .showroom-latest-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    pointer-events: none;
    user-select: none;
}
@media (max-width: 768px) {
    .showroom-page .showroom-latest-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 10px;
    }
    .showroom-page .showroom-latest-thumb--desktop-only {
        display: none;
    }
}
@media (max-width: 420px) {
    .showroom-page .showroom-latest-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }
}

/* Recapiti */
.showroom-page .showroom-contacts {
    background: #f9f6f0;
    border-radius: 6px;
    padding: 30px 20px;
    margin-bottom: 40px;
    text-align: center;
}
.showroom-page .showroom-contacts h2 {
    margin: 0 0 22px;
    font-size: 22px;
    color: #333;
}
.showroom-page .showroom-contacts-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    max-width: 800px;
    margin: 0 auto;
}
.showroom-page .showroom-contact-card {
    background: #fff;
    padding: 22px 14px;
    border-radius: 6px;
    box-shadow: 0 1px 4px rgba(0,0,0,0.06);
    text-align: center;
}
.showroom-page .showroom-contact-card i {
    font-size: 32px;
    margin-bottom: 10px;
    display: block;
}
.showroom-page .showroom-contact-card .wa-icon { color: #25d366; }
.showroom-page .showroom-contact-card .mail-icon { color: #b8860b; }
.showroom-page .showroom-contact-card .phone-icon { color: #555; }
.showroom-page .showroom-contact-card strong {
    display: block;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
    color: #666;
}
.showroom-page .showroom-contact-card a {
    color: #333;
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
}
.showroom-page .showroom-contact-card a:hover {
    color: #b8860b;
}
.showroom-page .showroom-contact-card .secondary-line {
    display: block;
    margin-top: 4px;
    font-size: 13px;
    font-weight: 400;
    color: #888;
}
@media (max-width: 768px) {
    .showroom-page .showroom-contacts-grid {
        grid-template-columns: 1fr;
    }
}

/* Form */
.showroom-page .showroom-form-wrapper {
    max-width: 720px;
    margin: 0 auto;
    background: #fff;
    border: 1px solid #e6e6e6;
    border-radius: 6px;
    padding: 30px 28px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.04);
}
.showroom-page .showroom-form-wrapper h2 {
    text-align: center;
    margin: 0 0 8px;
    font-size: 24px;
    color: #333;
}
.showroom-page .showroom-form-wrapper > p {
    text-align: center;
    margin-bottom: 24px;
    color: #666;
    font-size: 14px;
}
.showroom-page .showroom-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}
@media (max-width: 575px) {
    .showroom-page .showroom-form .form-row {
        grid-template-columns: 1fr;
    }
}
.showroom-page .showroom-form .form-group {
    margin-bottom: 16px;
}
.showroom-page .showroom-form label {
    display: block;
    margin-bottom: 4px;
    font-weight: 600;
    font-size: 14px;
    color: #444;
}
.showroom-page .showroom-form label .required {
    color: #c00;
    margin-left: 2px;
}
.showroom-page .showroom-form .form-control {
    width: 100%;
    padding: 8px 12px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 14px;
    transition: border-color 0.2s;
}
.showroom-page .showroom-form .form-control:focus {
    border-color: #b8860b;
    outline: none;
    box-shadow: 0 0 0 2px rgba(184,134,11,0.15);
}
.showroom-page .showroom-form .slot-options {
    display: flex;
    gap: 18px;
    margin-top: 4px;
}
.showroom-page .showroom-form .slot-options label {
    font-weight: 400;
    cursor: pointer;
    font-size: 14px;
}
.showroom-page .showroom-form .slot-options input[type="radio"] {
    margin-right: 6px;
}
.showroom-page .showroom-form .privacy-row {
    margin-top: 8px;
    font-size: 13px;
    line-height: 1.4;
}
.showroom-page .showroom-form .privacy-row input {
    margin-right: 6px;
    vertical-align: middle;
}
.showroom-page .showroom-form .privacy-row a {
    color: #b8860b;
    text-decoration: underline;
}
.showroom-page .showroom-form .error {
    display: block;
    margin-top: 4px;
    color: #c00;
    font-size: 12px;
}
.showroom-page .showroom-form .form-control.is-invalid {
    border-color: #c00;
}
.showroom-page .showroom-form .submit-row {
    text-align: center;
    margin-top: 18px;
}
.showroom-page .showroom-form .btn-showroom {
    background: #b8860b;
    color: #fff;
    border: none;
    padding: 12px 36px;
    font-size: 16px;
    font-weight: 700;
    border-radius: 30px;
    cursor: pointer;
    transition: background 0.2s;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.showroom-page .showroom-form .btn-showroom:hover {
    background: #d4a017;
}
.showroom-page .showroom-form .btn-showroom:disabled {
    background: #ccc;
    cursor: not-allowed;
}

/* Honeypot */
.showroom-page .showroom-form .hp-field {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}
