.prices-section {
    width: 100%;
    padding: 80px 0;
    font-family: "Monserrat", Sans-serif !important;
}

.prices-container {
    max-width: 1348px;
    padding: 0 80px;
    margin: 0 auto;
}

.prices-title {
    font-size: 42px;
    font-weight: 300;
    color: #2F2F2F;
    text-align: center;
    text-transform: uppercase;
    margin: 0 0 50px;
}

.prices-warning {
    background: rgba(244, 232, 153, 0.56);
    border-radius: 6px;
    padding: 40px;
    margin-bottom: 50px;
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.prices-warning-icon {
    width: 37px;
    height: 37px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.prices-warning-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.prices-warning-icon .hs-font-icon {
    color: var( --hs-color-primary, #A8875E );
    font-size: 22px;
}

.prices-warning-content {
    flex: 1;
}

.prices-warning-title {
    font-size: 16px;
    font-weight: 400;
    color: #2F2F2F;
    margin: 0 0 15px;
    text-transform: uppercase;
}

.prices-warning-description {
    font-size: 16px;
    font-weight: 300;
    color: #2F2F2F;
    line-height: 29px;
    margin: 0;
}

/* Price Table Styles */
.prices-table-wrapper {
    margin-bottom: 40px;
}

.prices-table {
    width: 100%;
    border-collapse: collapse;
    background: #FFFFFF;
    border-radius: 6px;
    overflow: hidden;
    border: none !important;
}

.prices-table thead {
    background: #D1C5B5;
    border: none !important;
}

.prices-table th {
    padding: 20px;
    text-align: center;
    font-size: 20px;
    font-weight: 400;
    color: #2F2F2F;
    text-transform: uppercase;
    border: none !important;
}

.prices-table tbody tr:nth-child(even) {
    background: #D1C5B54D !important;
}

.prices-table td {
    padding: 20px;
    font-size: 18px;
    font-weight: 300;
    color: #2F2F2F;
    text-align: center;
    border: none;
    border-right: 1px solid #0000001A !important;
}

.prices-table tbody tr td:last-child {
    border-right: none;
}

/* Mobile: column / card layout (by room type) – 1:1 с дизайна */
.prices-table-mobile {
    display: none;
}

.prices-table-mobile-header {
    background: #D5C9B8;
    padding: 18px 20px;
    text-align: center;
    width: 100%;
    box-sizing: border-box;
    border-radius: 6px 6px 0 0;
}

.prices-table-mobile-header-text {
    font-size: 20px;
    font-weight: 400;
    color: #2f2f2f;
    text-transform: uppercase;
    margin: 0;
}

.prices-table-mobile-list {
    background: #FDFCFB;
    border-top: none;
    border-radius: 0 0 6px 6px;
    overflow: hidden;
}

.prices-table-mobile-card {
    padding: 28px 24px;
    text-align: center;
}

.prices-table-mobile-card:last-child {
    border-bottom: none;
}

.prices-table-mobile-card:nth-child(even) {
    background: #D1C5B533;
}

.prices-table-mobile-card-room {
    font-size: 16px;
    font-weight: 300;
    color: #2f2f2f;
    margin: 0 0 8px;
}

.prices-table-mobile-card-guests {
    font-size: 15px;
    font-weight: 300;
    color: #2F2F2F;
    margin: 0 0 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #0000001A;
}

.prices-table-mobile-card-divider {
    height: 1px;
    background: #D9D9D9;
    margin: 0 20px 20px;
    border: none;
}

.prices-table-mobile-card-price-label {
    font-size: 16px;
    font-weight: 500;
    color: #2F2F2F;
    text-transform: uppercase;
    margin: 0 0 10px;
}

.prices-table-mobile-card-price-main {
    font-size: 16px;
    font-weight: 300;
    color: #2F2F2F;
    margin: 0 0 6px;
}

.prices-table-mobile-card-price-secondary {
    font-size: 14px;
    font-weight: 400;
    color: #333333;
    margin: 0;
    line-height: 1.3;
}

.prices-options {
    margin-top: 40px;
}

.prices-options-title {
    font-size: 18px;
    font-weight: 500;
    color: #2F2F2F;
    margin: 0 0 20px;
}

.prices-options-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.prices-options-list li {
    font-size: 16px;
    font-weight: 300;
    color: #2F2F2F;
    line-height: 24px;
    margin-bottom: 10px;
    padding-left: 25px;
    position: relative;
}

.prices-options-list li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #A8875E;
    font-size: 20px;
}

.prices-table-button-wrapper {
    margin-top: 30px;
    text-align: center;
}

.prices-table-button {
    display: inline-block;
    padding: 18px 40px;
    background: #2F2F2F;
    color: #FFFFFF;
    font-size: 16px;
    font-weight: 300;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.prices-table-button:hover {
    background: #D1C5B5;
    color: #2F2F2F;
}

/* Free Text View Styles */
.prices-free-text {
    background: rgba(209, 197, 181, 0.40);
    border-radius: 6px;
    padding: 40px;
    margin: 0 auto;
}

.prices-free-text-header {
    display: flex;
    gap: 20px;
}

.prices-free-text-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    flex-shrink: 0;
    width: 37px;
    height: 37px;
    border-radius: 50%;
}

.prices-free-text-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.prices-free-text-icon .hs-font-icon {
    color: var( --hs-color-primary, #A8875E );
    font-size: 22px;
}
.prices-free-text-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.prices-free-text-title {
    font-size: 16px;
    font-weight: 400;
    color: #2F2F2F;
    margin: 0;
    text-transform: uppercase;
}

.prices-free-text-description {
    font-size: 16px;
    font-weight: 300;
    color: #2F2F2F;
    line-height: 24px;
    margin-bottom: 0;
}

.prices-free-text-button-wrapper {
    margin-top:20px;
}

.prices-free-text-button {
    display: inline-block;
    padding: 20px 35px;
    background: #2F2F2F;
    color: #FFFFFF;
    font-size: 16px;
    font-weight: 300;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.prices-free-text-button:hover {
    background: #D1C5B5;
    color: #2f2f2f;
}

/* Per Person View Styles */
.prices-per-person {
    background: rgba(209, 197, 181, 0.40);
    padding: 40px;
    border-radius: 6px;
    margin: 0 auto;
}

.prices-per-person-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.prices-per-person-price-section {
    flex: 1;
}

.prices-per-person-label {
    font-size: 16px;
    font-weight: 300;
    color: #2F2F2F;
    margin-bottom: 8px;
    text-transform: uppercase;
}

.prices-per-person-price-wrapper {
    display: flex;
    align-items: baseline;
    gap: 8px;
    flex-wrap: wrap;
}

.prices-per-person-price {
    font-size: 40px;
    font-weight: 400;
    color: #2F2F2F;
    line-height: 29px;
}

.prices-per-person-unit {
    font-size: 16px;
    font-weight: 300;
    color: #2F2F2F;
    line-height: 29px;
}

.prices-per-person-button-wrapper {
    flex-shrink: 0;
}

.prices-per-person-button {
    display: inline-block;
    padding: 18px 40px;
    background: #2F2F2F;
    color: #FFFFFF;
    font-size: 14px;
    font-weight: 400;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 6px;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.prices-per-person-button:hover {
    background: #A8875E;
    color: #FFFFFF;
}

@media (max-width: 768px) {
    .prices-container {
        padding: 0 14px;
    }
    .prices-section {
        padding: 40px 0 0 0;
    }
    
    .prices-title {
        font-size: 32px;
        margin-bottom: 30px;
    }
    
    .prices-warning {
        padding: 20px;
        flex-direction: column;
    }
    
    .prices-table-wrapper .prices-table {
        display: none;
    }
    
    .prices-table-mobile {
        display: block;
        border-radius: 6px;
    }
    
    .prices-table {
        font-size: 14px;
    }
    
    .prices-table th,
    .prices-table td {
        padding: 12px;
    }
    
    .prices-free-text {
        padding: 30px 25px;
    }
    
    .prices-free-text-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
    
    .prices-free-text-icon {
        width: 60px;
        height: 60px;
    }

    .prices-per-person {
        padding: 0;
    }
    
    .prices-free-text-title {
        font-size: 22px;
    }
    
    .prices-free-text-description {
        font-size: 16px;
    }
    
    .prices-free-text-button {
        width: 100%;
        padding: 16px 30px;
    }
    
    .prices-per-person-content {
        flex-direction: column;
        align-items: flex-start;
        padding: 16px;
        gap: 25px;
    }
    
    .prices-per-person-price {
        font-size: 22px;
    }
    
    .prices-per-person-button {
        width: 100%;
        text-align: center;
    }
    
    .prices-table-button {
        width: 100%;
        padding: 16px 30px;
    }
}
