/* ==========================================================================
   Bellus Divi Modules — Frontend Styles
   ========================================================================== */

/* ── Shared ─────────────────────────────────────────────────── */

.bellus-module-section-title {
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #555;
    margin: 0 0 20px;
    padding-bottom: 8px;
    border-bottom: 1px solid #e8e0da;
}

/* ── Services Grid ──────────────────────────────────────────── */

.bellus-services-grid {
    display: grid;
    gap: 4px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.bellus-services-grid--cols-1 { grid-template-columns: repeat(1, 1fr); }
.bellus-services-grid--cols-2 { grid-template-columns: repeat(2, 1fr); }
.bellus-services-grid--cols-3 { grid-template-columns: repeat(3, 1fr); }
.bellus-services-grid--cols-4 { grid-template-columns: repeat(4, 1fr); }
.bellus-services-grid--cols-5 { grid-template-columns: repeat(5, 1fr); }
.bellus-services-grid--cols-6 { grid-template-columns: repeat(6, 1fr); }

.bellus-service-card {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4 / 3;
    background: #111;
}

.bellus-service-card__link {
    display: block;
    width: 100%;
    height: 100%;
}

.bellus-service-card__image {
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.bellus-service-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.bellus-service-card:hover .bellus-service-card__image img {
    transform: scale(1.05);
}

.bellus-service-card__overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 20px 12px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.75) 0%, rgba(0, 0, 0, 0) 60%);
}

.bellus-service-card__title {
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-align: center;
    margin: 0;
    line-height: 1.4;
}

@media (max-width: 768px) {
    .bellus-services-grid--cols-3,
    .bellus-services-grid--cols-4,
    .bellus-services-grid--cols-5,
    .bellus-services-grid--cols-6 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .bellus-services-grid {
        grid-template-columns: 1fr !important;
    }
}

/* ── Treatments ─────────────────────────────────────────────── */

.bellus-treatments {
    margin: 0;
}

.bellus-treatment-section-heading {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #777;
    margin: 32px 0 12px;
    padding-bottom: 6px;
    border-bottom: 1px solid #e8e0da;
}

.bellus-treatment-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 18px;
    margin-bottom: 8px;
}

.bellus-treatment-card {
    background: #fff;
    border: 1px solid #e8e0da;
    border-radius: 4px;
    padding: 20px;
}

.bellus-treatment-card__header {
    display: flex;
    flex-direction: column;
    gap: 3px;
    margin-bottom: 8px;
}

.bellus-treatment-card__name {
    font-size: 15px;
    font-weight: 700;
    display: block;
}

.bellus-treatment-card__price {
    font-size: 13px;
    font-weight: 600;
    color: #c49a8a;
}

.bellus-treatment-card__desc {
    font-size: 13px;
    color: #555;
    margin: 0;
    line-height: 1.6;
}

/* ── Benefits ───────────────────────────────────────────────── */

.bellus-benefits {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 8px 20px;
}

.bellus-benefits--cols-1 { grid-template-columns: repeat(1, 1fr); }
.bellus-benefits--cols-2 { grid-template-columns: repeat(2, 1fr); }
.bellus-benefits--cols-3 { grid-template-columns: repeat(3, 1fr); }
.bellus-benefits--cols-4 { grid-template-columns: repeat(4, 1fr); }

.bellus-benefits__item {
    padding: 8px 0 8px 24px;
    position: relative;
    font-size: 14px;
    border-bottom: 1px solid #f0ebe7;
}

.bellus-benefits__item::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #c49a8a;
    font-weight: 700;
}

@media (max-width: 600px) {
    .bellus-benefits--cols-3,
    .bellus-benefits--cols-4 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 400px) {
    .bellus-benefits {
        grid-template-columns: 1fr !important;
    }
}

/* ── FAQs ───────────────────────────────────────────────────── */

.bellus-faqs {
    margin: 0;
}

.bellus-faq__item {
    border-bottom: 1px solid #e0dbd7;
}

.bellus-faq__question {
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    padding: 16px 0;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    color: inherit;
    font-family: inherit;
    line-height: 1.5;
}

.bellus-faq__question:hover {
    color: #c49a8a;
}

.bellus-faq__icon {
    font-size: 20px;
    color: #c49a8a;
    flex-shrink: 0;
    transition: transform 0.2s ease;
}

.bellus-faq__question[aria-expanded="true"] .bellus-faq__icon {
    transform: rotate(45deg);
}

.bellus-faq__answer {
    overflow: hidden;
}

.bellus-faq__answer[hidden] {
    display: none;
}

.bellus-faq__answer-inner {
    padding: 0 0 20px;
    font-size: 14px;
    line-height: 1.8;
    color: #444;
}

.bellus-faq__answer-inner p {
    margin: 0 0 10px;
}

.bellus-faq__answer-inner p:last-child {
    margin-bottom: 0;
}
