.hotel-spa-section {
    width: 100%;
    height: 837px;
    margin: 60px 0 150px 0;
    font-family: "Monserrat", Sans-serif !important;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}

.hotel-spa-content {
    position: absolute;
    top: 85px;
    right: 100px;
    max-width: 853px;
    padding: 60px;
    align-items: center;
    background: #FFFFFF;
    border: 1px solid #0000001A;
    border-radius: 6px !important;
}

.hotel-spa-badge {
    position: absolute;
    top: -20px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--hotel-accent-2);
    padding: 10px 20px;
    font-size: 16px;
    color: var(--hotel-text-color);
    font-weight: 400;
    border-radius: 3px;
}

.hotel-spa-badge svg {
    width: 20px;
    height: 20px;
}

.hotel-spa-title {
    font-size: 42px;
    font-weight: 300;
    color: #2F2F2F;
    margin: 0 0 30px;
    text-transform: uppercase;
}

.hotel-spa-description {
    font-size: 16px;
    font-weight: 300;
    color: #2F2F2F;
    line-height: 29px;
    margin-bottom: 40px;
}

.hotel-spa-extras {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.hotel-spa-extra-item {
    display: grid;
    grid-template-columns: 60px 1fr;
    gap: 20px;
    align-items: start;
}

.hotel-spa-extra-icon {
    width: 50px;
    height: 50px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hotel-spa-extra-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.hotel-spa-extra-icon .hs-font-icon {
    color: var( --hs-color-primary, #A8875E );
    font-size: 30px;
}

.hotel-spa-extra-content {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.hotel-spa-extra-name {
    font-size: 16px;
    font-weight: 400;
    color: #2F2F2F;
    margin: 0;
}

.hotel-spa-extra-badge {
    display: inline-block;
    background: var(--hotel-accent-55);
    padding: 6px 30px;
    font-size: 14px;
    font-weight: 300;
    color: #2F2F2F;
    border-radius: 3px;
    align-self: flex-start;
}

.hotel-spa-extra-badge--paid {
    background: var(--hotel-accent-35);
}

.hotel-spa-extra-description {
    font-size: 14px;
    font-weight: 300;
    color: #2F2F2F;
    line-height: 22px;
    margin: 0;
}

.hotel-spa-buttons {
    position: absolute;
    bottom: -25px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 20px;
}

.hotel-spa-button {
    padding: 20px 30px;
    font-size: 16px;
    font-weight: 300;
    text-decoration: none;
    text-transform: uppercase;
    border-radius: 6px;
    transition: all 0.3s;
}

.hotel-spa-button-primary {
    background: #2F2F2F;
    border: 1px solid #2F2F2F;
    color: #fff;
}

.hotel-spa-button-secondary {
    background: #FFFFFF;
    color: #2F2F2F;
    border: 1px solid #2F2F2F;
}

.hotel-spa-button-primary:hover,
.hotel-spa-button-secondary:hover {
    background: var(--hotel-accent-2);
    color: #2f2f2f;
    border: 1px solid var(--hotel-accent-2);
}

@media (max-width: 992px) {
    .hotel-spa-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .hotel-spa-extras {
        grid-template-columns: 1fr;
    }
    
    .hotel-spa-buttons {
        flex-direction: column;
    }
    
    .hotel-spa-button {
        text-align: center;
    }
    .hotel-spa-badge{
        background: #D1C5B5;
        border-radius: 3px;
    }
    .hotel-spa-extra-badge{
        background: rgba(209, 197, 181, 0.55);
        border-radius: 3px;
    }
    .hotel-spa-content{
        max-height: unset;
        position: relative;
        margin: 10px 14px;
        padding: 0;
        right: 0;
    }
     .hotel-spa-badge{
        top: -20px;
        padding: 10px 40px;
        gap: 15px;
        left: 50%;
        transform: translateX(-50%);
        position: relative;
        max-width: 280px;
        background: #D1C5B5;
        border-radius: 3px;
    }
    .hotel-spa-buttons{
        bottom: 0;
        position: relative;
        padding: 0 40px 50px 40px;
        gap: 15px;
    }
    .hotel-spa-extras {
        gap: 20px;
        padding: 0 26px;
    }
    .hotel-spa-section{
        height: 1280px;
        margin: 60px 0 0 0;
    }
    .hotel-spa-title,.hotel-spa-description{
        padding: 0 15px;
    }
}

@media (max-width: 768px) {
    .hotel-spa-badge{
        top: -20px;
        padding: 10px;
        gap: 15px;
        left: 50%;
        transform: translateX(-50%);
        position: relative;
        max-width: 280px;
        background: #D1C5B5;
        border-radius: 3px;
    }
    .hotel-spa-extra-item{
        gap: 10px;
    }
    .hotel-spa-badge svg{
        min-width: 30px;
        min-height: 30px;
    }
    .hotel-spa-extra-badge{
        font-size: 16px;
        padding: 0 15px;
        background: rgba(209, 197, 181, 0.55);
        border-radius: 3px;
    }
    .hotel-spa-extra-description{
        font-size: 16px;
    }
    .hotel-spa-content{
        max-height: unset;
        position: unset;
        margin: 10px 14px;
        padding: 0;
    }
    .hotel-spa-section {
        padding: 40px 0 20px 0px;
        height: unset;
        margin: 50px 0 90px 0;
    }
    .hotel-spa-title {
        font-size: 28px;
        margin: 0px 0 25px;
        padding: 0 14px;
    }
    .hotel-spa-description{
        padding: 0 14px;
    }
    .hotel-spa-buttons{
        bottom: 0;
        position: relative;
        padding: 0 40px 50px 40px;
        gap: 15px;
    }
    .hotel-spa-extras {
        gap: 20px;
        padding: 0 26px;
    }
}
