/* 1. ПОДСВЕТКА ВНЕШНИХ ССЫЛОК В ПОСТАХ */
.single-post a.external-link {
    color: #FF9805; 
}

/* 2. БЛОК АВТОРА СТАТЬИ */
.strx-author-box {
    display: flex;
    background: #fff;
    border-radius: 10px;
    padding: 24px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    align-items: center;
    gap: 32px;
    margin-top: 40px;
    max-width: 900px;
}
.strx-author-avatar img {
    width: 180px;
    height: auto;
    display: block;
    max-width: 100%;
    border-radius: 0;
}
.strx-author-info {
    flex: 1;
}
.strx-author-byline {
    font-weight: 600;
    margin-bottom: 8px;
}
.strx-author-name {
    color: #FF9800;
    font-weight: bold;
    text-decoration: none;
}
.strx-author-name:hover {
    text-decoration: underline;
}
.strx-author-desc {
    margin-bottom: 12px;
    color: #333;
}
.strx-author-socials a {
    margin-right: 10px;
    font-size: 18px;
    color: #555;
}
.strx-author-socials a:hover {
    color: #FF9800;
}
@media (max-width: 600px) {
    .strx-author-box {
        flex-direction: column;
        text-align: start;
    }
    .strx-author-avatar img {
        margin: 0 auto;
    }
}

/* 3. КАЛЬКУЛЯТОРЫ */
.sauna-calc-wrapper .form-group,
.sauna-calc-wrapper .sauna-form-group {
    margin-bottom: 15px;
}
.sauna-calc-wrapper label {
    font-weight: bold;
    display: block;
}
.sauna-calc-wrapper input {
    width: 100%;
    padding: 8px;
    box-sizing: border-box;
}
.sauna-calc-wrapper button.calculate-btn {
    width: 100%;
    padding: 10px;
    background-color: #4CAF50;
    color: white;
    border: none;
    cursor: pointer;
    font-size: 16px;
    margin-top: 20px; 
}
.sauna-calc-wrapper button.calculate-btn:hover {
    background-color: #45a049;
}
.sauna-calc-wrapper .calc-result {
    margin-bottom: 20px;
    padding: 10px;
    background-color: #f2f2f2;
}
.sauna-calc-wrapper .calc-result:empty {
    display: none;
}

/* 4. TOUR GUIDE */
.custom-tour-guide {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    border: 2px solid #FF9805;
    padding: 15px;
    z-index: 1000;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    width: 600px;
    font-size: 14px;
    overflow: hidden;
}
.custom-tour-guide .tour-step {
    display: none;
}
.custom-tour-guide .tour-step.active {
    display: block;
}
.custom-tour-guide .tour-heading {
    font-size: 18px;
    margin: 10px 0;
    font-weight: bold;
}
.custom-tour-guide .tour-buttons {
    margin-top: 10px;
    display: flex;
    justify-content: space-between;
    height: 25px;
}
.custom-tour-guide .tour-buttons button {
    background-color: #FF9805;
    color: white;
    border: none;
    padding: 6px 12px;
    cursor: pointer;
    border-radius: 4px;
    font-size: 14px;
    flex: 1;
    margin: 0 5px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.custom-tour-guide .tour-buttons button:hover {
    background-color: #e68a00;
}
.custom-tour-guide .prev-step {
    background-color: #ccc !important;
    color: #666 !important;
}
.custom-tour-guide .prev-step:hover {
    background-color: #bbb !important;
}
.custom-tour-guide .end-tour {
    background-color: white !important;
    color: black !important;
    border: 2px solid #ccc !important;
}
.custom-tour-guide .end-tour:hover {
    background-color: #f0f0f0 !important;
}
#tour-dark-overlay {
    display: none;
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 800;
}
@media (max-width: 480px) {
    .custom-tour-guide {
        width: 90%; 
        padding: 10px; 
        font-size: 12px; 
    }
    .custom-tour-guide .tour-heading { font-size: 16px; }
    .custom-tour-guide .tour-buttons button {
        padding: 8px 10px; 
        font-size: 12px; 
        flex: none;
        width: 32%; 
        margin: 0; 
    }
}

/* 5. WOOCOMMERCE ДОПОЛНЕНИЯ */
.phpprodstring {
    padding-bottom: 15px;
}
.custom-inklusive-table {
    margin-top: -15px;
}
.custom-inklusive-table th {
    width: 138.44px; 
    vertical-align: top; 
    padding-right:20px; 
    padding-top:5px;
}
.custom-inklusive-table th span {
    font-size:14px; 
    font-weight: 600;
}
.custom-cart-table {
    width: 100%;
}
.custom-cart-table .cart_product_price {
    float: left;
}
.custom-cart-table .cart_product_quantity {
    float: right;
}