/* AlloDentiste Aesthetic Treatments Widget Styles */

.allo-aesthetic-treatments-widget {
    background-color: #F5F5F5;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.treatments-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--allo-gutter);
    display: flex;
    flex-direction: column;
    min-height: 700px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 16px;
    overflow: hidden;
}

/* Treatment Categories - Horizontal Bands */
.treatment-categories {
    display: flex;
    flex-direction: column;
    margin-bottom: 0;
}

.treatment-category {
    padding: 25px 40px;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    border-bottom: 3px solid #FFFFFF;
}

.treatment-category:last-child {
    border-bottom: 3px solid #FFFFFF;
}

.treatment-category:hover {
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.treatment-category-name {
    font-size: 18px;
    font-style: italic;
    font-weight: 500;
    color: #1A1A1A;
    margin: 0;
}

/* Main Content Section */
.treatments-main-content {
    flex: 1;
    padding: 100px 40px;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 20px;
}

.treatments-heading {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    color: #1A1A1A;
    margin: 0;
    max-width: 600px;
}

.treatments-description {
    font-size: 16px;
    line-height: 1.6;
    color: #666666;
    margin: 0;
    max-width: 600px;
}

.treatments-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 4px 5px 4px 10px;
    background-color: #00A1AD !important;
    color: #FFFFFF !important;
    text-decoration: none;
    border: none;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
    align-self: flex-start;
    margin-top: 10px;
}

.treatments-button:hover {
    background-color: #008A95 !important;
    color: #FFFFFF !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 161, 173, 0.3);
}

.treatments-button:active {
    transform: translateY(0);
}

/* Arrow icon after button text */
.treatments-button::after {
    content: '';
    width: 32px;
    height: 32px;
    background-color: #FFFFFF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 24 24" fill="none" stroke="%2300A1AD" stroke-width="2.5" stroke-linecap="round" stroke-linejoin="round"><path d="M7 17L17 7M17 7H7M17 7V17"/></svg>');
    background-repeat: no-repeat;
    background-position: center;
    background-size: 16px 16px;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .treatments-heading {
        font-size: 40px;
    }
    
    .treatments-main-content {
        padding: 50px 30px;
    }
    
    .treatment-category {
        padding: 20px 30px;
    }
}

@media (max-width: 768px) {
    .allo-aesthetic-treatments-widget {
        padding: 60px 0;
    }
    
    .treatments-container {
        min-height: 600px;
    }
    
    .treatments-heading {
        font-size: 32px;
    }
    
    .treatment-category {
        padding: 18px 20px;
    }
    
    .treatment-category-name {
        font-size: 16px;
    }
    
    .treatments-main-content {
        padding: 40px 20px;
        gap: 15px;
    }
    
    .treatments-description {
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .treatments-heading {
        font-size: 28px;
    }
    
    .treatment-category {
        padding: 15px 15px;
    }
    
    .treatment-category-name {
        font-size: 15px;
    }
    
    .treatments-main-content {
        padding: 30px 15px;
    }
}
