/* =============================================
   MODELE SAUN — Styles
   Spacing: reuses .inw-section / .inw-container from inwestycja.css
   Grid/Gallery: reuses classes from realizacje.css
   ============================================= */

/* Price in header */
.sauna-price-header {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--gl-gold, #9D7539);
    margin-top: 20px;
}

/* Main image */
.sauna-main-image {
    margin-bottom: 60px;
    border-radius: 20px;
    overflow: hidden;
}
.sauna-main-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 20px;
}

/* Specification Table */
.sauna-spec-section {
    margin-bottom: 60px;
}
.sauna-spec-table {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    border: 1px solid var(--gl-gold, #9D7539);
}
.sauna-spec-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 30px;
    border-bottom: 1px solid #f0f0f0;
}
.sauna-spec-row:last-child {
    border-bottom: none;
}
.sauna-spec-row:nth-child(even) {
    background: var(--gl-bg, #F5F1E4);
}
.sauna-spec-label {
    font-weight: 600;
    color: var(--gl-text, #474747);
    font-size: 1rem;
}
.sauna-spec-value {
    color: #555;
    font-size: 1rem;
    text-align: right;
}

/* Price Box */
.sauna-price-box {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #fff;
    padding: 30px 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    border: 2px solid var(--gl-gold, #9D7539);
    margin-bottom: 60px;
}
.sauna-price-label {
    font-size: 1.2rem;
    text-transform: uppercase;
    color: #888;
    letter-spacing: 2px;
    font-weight: 600;
}
.sauna-price-value {
    font-size: 2rem;
    font-weight: 700;
    color: var(--gl-gold, #9D7539);
}

/* Form Section */
.sauna-form-section {
    margin-top: 60px;
}
.sauna-form-box {
    background: #fff;
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.05);
    border: 1px solid var(--gl-gold, #9D7539);
}
/* CF7 form styling to match theme */
.sauna-form-box input[type="text"],
.sauna-form-box input[type="email"],
.sauna-form-box input[type="tel"],
.sauna-form-box textarea {
    width: 100%;
    padding: 15px;
    margin-bottom: 20px;
    border: 1px solid #ddd;
    border-radius: 10px;
    font-family: inherit;
    font-size: 1rem;
}
.sauna-form-box input[type="submit"] {
    background: var(--gl-gold, #9D7539);
    color: #fff;
    border: none;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
    width: auto;
    padding: 15px 40px;
    border-radius: 30px;
    font-size: 1rem;
}
.sauna-form-box input[type="submit"]:hover {
    background: var(--gl-text, #474747);
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .sauna-spec-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
        padding: 15px 20px;
    }
    .sauna-spec-value {
        text-align: left;
    }
    .sauna-price-box {
        flex-direction: column;
        text-align: center;
        gap: 10px;
        padding: 25px 20px;
    }
    .sauna-price-value {
        font-size: 1.6rem;
    }
    .sauna-form-box {
        padding: 30px 20px;
    }
    .sauna-price-header {
        font-size: 1.3rem;
    }
}
