/* Salon Services by Category - c69dcbb0 */

.ssc-c69-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    width: 100%;
}

.ssc-c69-card {
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.ssc-c69-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}

.ssc-c69-cat-img {
    width: 100%;
    height: 200px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    flex-shrink: 0;
}

.ssc-c69-cat-header {
    padding: 15px 15px 10px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.ssc-c69-cat-title-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    flex-wrap: wrap;
}

.ssc-c69-cat-title {
    margin: 0;
    font-size: 20px;
    font-weight: 700;
    color: #1a1a2e;
    line-height: 1.3;
    flex: 1 1 auto;
    min-width: 0;
}

.ssc-c69-svc-count {
    font-size: 13px;
    color: #999;
    font-weight: 400;
}

/* Booking Buttons */
.ssc-c69-book-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-weight: 600;
    cursor: pointer;
    transition: opacity 0.3s ease, transform 0.15s ease;
    line-height: 1;
    white-space: nowrap;
    box-sizing: border-box;
}

.ssc-c69-book-btn:hover {
    opacity: 0.85;
    transform: scale(1.02);
}

.ssc-c69-book-header-btn {
    background-color: #1a1a2e;
    color: #ffffff;
    padding: 6px 14px;
    border-radius: 6px;
    font-size: 13px;
    flex-shrink: 0;
}

.ssc-c69-book-footer-btn {
    background-color: #e8336e;
    color: #ffffff;
    padding: 12px 20px;
    border-radius: 8px;
    font-size: 14px;
    width: 100%;
    text-align: center;
}

.ssc-c69-book-footer-wrap {
    padding-top: 12px;
}

.ssc-c69-toggle-wrap {
    padding: 0 15px 12px;
}

.ssc-c69-toggle-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 10px 16px;
    border: none;
    border-radius: 8px;
    background-color: #e8336e;
    color: #ffffff;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.15s ease;
    line-height: 1;
}

.ssc-c69-toggle-btn:hover {
    opacity: 0.9;
    transform: scale(1.01);
}

.ssc-c69-toggle-btn:focus {
    outline: 2px solid #e8336e;
    outline-offset: 2px;
}

.ssc-c69-btn-icon {
    font-size: 10px;
    transition: transform 0.3s ease;
}

.ssc-c69-expanded .ssc-c69-btn-icon {
    transform: rotate(180deg);
}

/* Service List */
.ssc-c69-svc-list {
    padding: 0 15px 15px;
    overflow: hidden;
}

.ssc-c69-svc-header-row {
    display: flex;
    align-items: center;
    padding: 8px 10px;
    background: #f0f0f0;
    border-radius: 6px;
    margin-bottom: 4px;
    font-size: 12px;
    font-weight: 700;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.ssc-c69-svc-header-row .ssc-c69-svc-h-name {
    flex: 1 1 50%;
    min-width: 0;
}

.ssc-c69-svc-header-row .ssc-c69-svc-h-time {
    flex: 0 0 25%;
    text-align: center;
}

.ssc-c69-svc-header-row .ssc-c69-svc-h-price {
    flex: 0 0 25%;
    text-align: right;
}

.ssc-c69-svc-row {
    display: flex;
    align-items: center;
    padding: 10px 10px;
    border-bottom: 1px solid #eeeeee;
    transition: background-color 0.2s ease;
}

.ssc-c69-svc-row:last-child {
    border-bottom: none;
}

.ssc-c69-svc-row:hover {
    background-color: #f8f0f4;
}

.ssc-c69-svc-name {
    flex: 1 1 50%;
    min-width: 0;
    font-size: 14px;
    font-weight: 500;
    color: #333;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.ssc-c69-svc-time {
    flex: 0 0 25%;
    text-align: center;
    font-size: 13px;
    color: #888;
}

.ssc-c69-svc-price {
    flex: 0 0 25%;
    text-align: right;
    font-size: 14px;
    font-weight: 700;
    color: #e8336e;
}

/* Max height for scrollable long lists */
.ssc-c69-svc-list-inner {
    max-height: 400px;
    overflow-y: auto;
}

/* Responsive */
@media (max-width: 1024px) {
    .ssc-c69-svc-name {
        white-space: normal;
    }
}

@media (max-width: 767px) {
    .ssc-c69-grid {
        grid-template-columns: 1fr;
    }

    .ssc-c69-cat-title {
        font-size: 18px;
    }

    .ssc-c69-cat-title-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }

    .ssc-c69-book-header-btn {
        align-self: flex-start;
    }

    .ssc-c69-svc-header-row {
        font-size: 11px;
    }

    .ssc-c69-svc-name {
        font-size: 13px;
        flex: 1 1 45%;
    }

    .ssc-c69-svc-time {
        flex: 0 0 27%;
        font-size: 12px;
    }

    .ssc-c69-svc-price {
        flex: 0 0 28%;
        font-size: 13px;
    }
}
