.services {
    padding: 120px 0;
    background: #FAFAFA;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.section-header {
    text-align: center;
    margin-bottom: 56px;
}

.header-content {
    margin-bottom: 28px;
}

.section-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1.5px;
    color: #FF4533;
    margin-bottom: 16px;
    padding: 8px 16px;
    background: rgba(31, 189, 198, 0.07);
    border-radius: 100px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.service-button:hover {
    background: #E5331E;
}

.service-button .arrow-icon {
    transition: transform 0.3s ease;
}

.service-button:hover .arrow-icon {
    transform: translateX(4px);
}

.custom-addons .price {
    color: #FF4533;
    font-weight: 500;
}

.plus-icon {
    width: 16px;
    height: 16px;
}

.section-header h2 {
    font-size: 48px;
    font-weight: 800;
    color: #111827;
    margin-bottom: 16px;
    line-height: 1.1;
}

.highlight {
    color: #FF4533;
}

.section-header p {
    font-size: 18px;
    color: #4B5563;
}

/* Category Tabs Styling */
.category-tabs {
    display: flex;
    gap: 6px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 12px;
}

.category-tab {
    padding: 8px 16px;
    border: none;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    color: #374151;
    background: white;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.category-tab:hover {
    background: #F3F4F6;
    transform: translateY(-2px);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.category-tab.active {
    background: #1FBDC6;
    color: white;
    box-shadow: 0 4px 12px rgba(31, 189, 198, 0.3);
}

.category-tab.active:hover {
    background: #178D95;
}

.symptom-tags {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}

.symptom-tag {
    padding: 8px 16px;
    border: 1px solid #E5E7EB;
    border-radius: 100px;
    font-size: 14px;
    font-weight: 500;
    color: #4B5563;
    background: white;
    cursor: pointer;
    transition: all 0.3s ease;
}

    .symptom-tag:hover {
        border-color: #FF4533;
        color: #FF4533;
    }

    .symptom-tag.active {
        background: #1FBDC6;
        border-color: #1FBDC6;
        color: white;
    }

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.service-card {
    background: white;
    border-radius: 24px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.service-card.hidden {
    display: none;
}

    .service-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    }

/* Individual Treatment Card Styles */
.treatment-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    position: relative;
}

.treatment-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(31, 189, 198, 0.15) 0%, rgba(16, 185, 129, 0.15) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
    z-index: 1;
}

.treatment-card:hover::before {
    opacity: 1;
}

.treatment-card.hidden {
    display: none;
}

.treatment-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.treatment-card-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    position: relative;
}

.treatment-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.treatment-card:hover .treatment-card-image img {
    transform: scale(1.05);
}

.treatment-card-content {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex: 1;
    position: relative;
    z-index: 2;
}

.treatment-card-title {
    font-size: 18px;
    font-weight: 700;
    color: #111827;
    margin: 0 0 8px 0;
}

.treatment-card-description {
    font-size: 14px;
    color: #6B7280;
    margin: 0 0 16px 0;
    flex: 1;
    line-height: 1.5;
}

.treatment-card-price {
    font-size: 28px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 16px;
}

.treatment-card-footer {
    display: flex;
    gap: 12px;
    align-items: center;
}

.treatment-quantity {
    flex: 0 0 70px;
    padding: 10px 12px;
    border: 1px solid #E5E7EB;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 500;
    color: #111827;
    background: white;
    cursor: pointer;
    transition: border-color 0.3s ease;
}

.treatment-quantity:hover {
    border-color: #1FBDC6;
}

.treatment-quantity:focus {
    outline: none;
    border-color: #1FBDC6;
    box-shadow: 0 0 0 3px rgba(31, 189, 198, 0.1);
}

.treatment-book-now-btn {
    flex: 1;
    padding: 12px 24px;
    background: #1FBDC6;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.treatment-book-now-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.treatment-book-now-btn:hover {
    background: #178D95;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(31, 189, 198, 0.3);
}

.treatment-book-now-btn:active {
    transform: scale(0.96) translateY(0);
}

.treatment-book-now-btn.clicked::before {
    width: 300px;
    height: 300px;
}

.treatment-book-now-btn.success {
    background: #10B981;
    animation: successPulse 0.6s ease;
}

.treatment-book-now-btn.success i {
    animation: checkmarkPop 0.5s ease;
}

@keyframes successPulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

@keyframes checkmarkPop {
    0% {
        transform: scale(0) rotate(0deg);
        opacity: 0;
    }
    50% {
        transform: scale(1.2) rotate(10deg);
    }
    100% {
        transform: scale(1) rotate(0deg);
        opacity: 1;
    }
}

/* Skeleton Loader Styles */
.skeleton-loader {
    display: none;
}

.skeleton-loader.active {
    display: grid;
}

.skeleton-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
}

.skeleton-image {
    width: 100%;
    height: 200px;
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite;
}

.skeleton-content {
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 0;
    flex: 1;
}

.skeleton-title {
    width: 70%;
    height: 21px;
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite;
    border-radius: 4px;
    margin-bottom: 8px;
}

.skeleton-description {
    width: 100%;
    height: 14px;
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite;
    border-radius: 4px;
    margin-bottom: 8px;
}

.skeleton-description-line {
    width: 85%;
    height: 14px;
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite;
    border-radius: 4px;
    margin-bottom: 16px;
    flex: 1;
}

.skeleton-price {
    width: 35%;
    height: 34px;
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite;
    border-radius: 4px;
    margin-bottom: 16px;
}

.skeleton-footer {
    display: flex;
    gap: 12px;
    align-items: center;
}

.skeleton-select {
    flex: 0 0 70px;
    height: 44px;
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite;
    border-radius: 8px;
}

.skeleton-button {
    flex: 1;
    height: 44px;
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite;
    border-radius: 8px;
}

@keyframes shimmer {
    0% {
        background-position: -200% 0;
    }
    100% {
        background-position: 200% 0;
    }
}

/* Treatment Modal Styles */
.treatment-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
}

.treatment-modal.active {
    display: block;
}

.treatment-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
}

.treatment-modal-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    border-radius: 16px;
    max-width: 600px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.treatment-modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    background: transparent;
    border: none;
    font-size: 32px;
    color: #6B7280;
    cursor: pointer;
    line-height: 1;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.treatment-modal-close:hover {
    background: #F3F4F6;
    color: #111827;
}

.treatment-modal-header {
    padding: 32px 32px 24px;
    border-bottom: 1px solid #E5E7EB;
}

.modal-treatment-name {
    font-size: 24px;
    font-weight: 700;
    color: #111827;
    margin: 0 0 8px 0;
}

.modal-success-message {
    font-size: 16px;
    color: #10B981;
    font-weight: 600;
    margin: 0;
}

.treatment-modal-body {
    padding: 24px 32px;
}

.modal-treatment-card {
    background: #F9FAFB;
    border: 1px solid #E5E7EB;
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 24px;
}

.modal-treatment-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}

.modal-treatment-title {
    font-size: 18px;
    font-weight: 700;
    color: #111827;
    margin: 0;
}

.modal-remove-treatment {
    background: transparent;
    border: none;
    color: #EF4444;
    cursor: pointer;
    font-size: 18px;
    padding: 8px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.modal-remove-treatment:hover {
    background: #FEE2E2;
}

.modal-treatment-pricing {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.modal-price-per-unit {
    font-size: 16px;
    font-weight: 600;
    color: #111827;
}

.modal-quantity-section {
    display: flex;
    align-items: center;
    gap: 8px;
}

.modal-quantity-section label {
    font-size: 14px;
    font-weight: 500;
    color: #6B7280;
}

.modal-treatment-quantity {
    padding: 8px 12px;
    border: 1px solid #D1D5DB;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    color: #111827;
    background: white;
    cursor: pointer;
}

.modal-total-section {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-left: auto;
}

.modal-total-section label {
    font-size: 14px;
    font-weight: 500;
    color: #6B7280;
}

.modal-treatment-total {
    font-size: 18px;
    font-weight: 700;
    color: #111827;
}

.modal-supplements-title {
    font-size: 18px;
    font-weight: 700;
    color: #111827;
    margin: 0 0 16px 0;
}

.modal-supplements-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.modal-supplement-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 16px;
    background: white;
    border: 1px solid #E5E7EB;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.modal-supplement-item:hover {
    border-color: #1FBDC6;
    box-shadow: 0 2px 8px rgba(31, 189, 198, 0.1);
}

.modal-supplement-info {
    display: flex;
    align-items: center;
    gap: 8px;
    flex: 1;
}

.modal-supplement-name {
    font-size: 15px;
    font-weight: 500;
    color: #111827;
}

.modal-supplement-price {
    font-size: 14px;
    color: #6B7280;
    font-weight: 500;
}

.modal-supplement-info-icon {
    color: #9CA3AF;
    cursor: help;
    font-size: 14px;
}

.modal-supplement-action {
    flex-shrink: 0;
}

.modal-supplement-btn {
    padding: 8px 20px;
    border: none;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 80px;
}

.modal-supplement-btn.add-btn {
    background: #1FBDC6;
    color: white;
}

.modal-supplement-btn.add-btn:hover {
    background: #178D95;
}

.modal-supplement-btn.remove-btn {
    background: #EF4444;
    color: white;
}

.modal-supplement-btn.remove-btn:hover {
    background: #DC2626;
}

.treatment-modal-footer {
    padding: 24px 32px;
    border-top: 1px solid #E5E7EB;
}

.modal-continue-btn {
    width: 100%;
    padding: 16px 24px;
    background: #10B981;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.modal-continue-btn:hover {
    background: #059669;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
}

.modal-continue-btn:active {
    transform: translateY(0);
}

.service-image {
    position: relative;
    height: 400px;
    overflow: hidden;
}

    .service-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.5s ease;
    }

.service-card:hover .service-image img {
    transform: scale(1.05);
}

.service-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.2), transparent 30%);
    padding: 24px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.service-tag {
    align-self: flex-end;
    background: #1FBDC6;
    color: white;
    padding: 8px 16px;
    border-radius: 100px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
}

.service-stats {
    display: flex;
    gap: 16px;
}

.stat {
    background: rgba(255, 255, 255, 0.9);
    padding: 8px 16px;
    border-radius: 12px;
    text-align: center;
}

.stat-value {
    display: block;
    font-weight: 700;
    color: #111827;
}

.stat-label {
    font-size: 12px;
    color: #4B5563;
}

.service-content {
    padding: 32px;
}

.service-header {
    margin-bottom: 24px;
}

.service-content h3 { /* Card Title e.g. "Heal & Restore" */
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 8px;
    color: #111827;
}

.service-content p { /* Card Subtitle e.g. "Fast recovery & relief" */
    font-size: 16px;
}

.service-list {
    list-style: none;
    padding: 0;
    margin: 0 0 32px;
    border-top: 1px solid #E5E7EB;
}

    .service-list li { /* General list item styles for Wellness & Beauty cards */
        padding: 16px 0;
        border-bottom: 1px solid #E5E7EB;
        display: flex;
        justify-content: space-between;
        align-items: center;
        transition: all 0.2s ease;
    }

        .service-list li:hover {
            padding-left: 8px;
        }

.service-name { /* For Wellness & Beauty cards */
    font-weight: 500;
    color: #111827;
    font-size: 15px; /* Match screenshot appearance for these cards */
}

.service-info { /* For Wellness & Beauty cards */
    display: flex;
    align-items: center;
    gap: 16px;
}

.treatment-time { /* For Wellness & Beauty cards */
    font-size: 14px;
    color: #6B7280;
}

.price { /* For Wellness & Beauty cards */
    font-weight: 600;
    color: #111827;
    font-size: 15px; /* Match screenshot appearance */
}

    .price.highlight { /* For "From $460" */
        color: #1FBDC6; /* Teal color from other highlighted prices */
    }


.service-button {
    width: 100%;
    padding: 16px;
    background: #1FBDC6;
    color: white;
    border: none;
    border-radius: 100px;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    cursor: pointer;
}

/* Individual Treatment Book Buttons */
.treatment-book-btn {
    background: #1FBDC6;
    border: none;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
    flex-shrink: 0;
    margin-left: 12px;
}

.treatment-book-btn:hover {
    background: #178D95;
    transform: scale(1.1) rotate(90deg);
    box-shadow: 0 4px 12px rgba(31, 189, 198, 0.3);
}

.treatment-book-btn:active {
    transform: scale(0.95) rotate(90deg);
}

.treatment-book-btn i {
    font-size: 14px;
}

/* Styles for the Heal & Restore detailed list */
.heal-restore-detailed-list {
}
/* Inherits border-top and margin from .service-list */

.heal-restore-item { /* This is an li */
    display: flex;
    align-items: center; /* Changed to center for button alignment */
    padding: 14px 0; /* Vertical padding for each item row */
    border-bottom: 1px solid #E5E7EB;
}

    .heal-restore-item:last-child {
        border-bottom: none;
    }

.heal-restore-detailed-list .heal-restore-item:hover {
    padding-left: 0; /* No hover style change */
    background-color: transparent;
}

.item-main-name { /* e.g., "Signature", "Food" */
    flex: 0 0 95px; /* Fixed width for the first column, adjust as needed */
    font-weight: 600; /* Bold as per screenshot */
    color: #111827;
    font-size: 14px; /* Slightly smaller than card title, clear */
    line-height: 1.4; /* For good alignment if text wraps (though unlikely here) */
    padding-right: 10px; /* Space between this column and details */
}

.item-details {
    flex: 1; /* Takes up remaining space */
    display: flex;
    flex-direction: column; /* Stack subname/price and ingredients */
}

.item-subname-price { /* e.g., "Hangover Cure � $200" */
    font-weight: 500; /* Medium weight, slightly less than main-name */
    color: #111827;
    font-size: 14px;
    margin: 0 0 5px 0; /* Space below this line, before ingredients */
    line-height: 1.4;
}

.item-ingredients { /* e.g., "Anti-nausea, Anti-Heartburn..." */
    font-size: 13px; /* Smaller, secondary information */
    color: #4B5563; /* Lighter grey, matching other p text */
    line-height: 1.5;
    margin: 0;
}

/* Responsive adjustments for treatment book buttons */
@media (max-width: 768px) {
    .treatment-book-btn {
        width: 32px;
        height: 32px;
    }
    
    .treatment-book-btn i {
        font-size: 12px;
    }
}

/* Responsive Design */
@media (max-width: 1200px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

    .service-image {
        height: 350px;
    }
}

@media (max-width: 768px) {
    .services {
        padding: 80px 0 60px;
    }

    .container {
        padding: 0 20px;
    }

    .section-header {
        margin-bottom: 48px;
    }

    .section-header h2 {
        font-size: 36px;
        margin-bottom: 12px;
        line-height: 1.2;
    }

    .section-header p {
        font-size: 16px;
    }

    .section-label {
        font-size: 13px;
        padding: 6px 14px;
    }

    .services-grid {
        grid-template-columns: 1fr;
        max-width: 480px;
        margin: 0 auto;
        gap: 20px;
    }

    .treatment-card {
        box-shadow: 0 1px 4px rgba(0, 0, 0, 0.08);
    }

    .treatment-card:hover {
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    }

    .treatment-card-image {
        height: 180px;
    }

    .treatment-card-content {
        padding: 16px;
    }

    .treatment-card-title {
        font-size: 17px;
        margin-bottom: 6px;
    }

    .treatment-card-description {
        font-size: 13px;
        margin-bottom: 12px;
    }

    .treatment-card-price {
        font-size: 24px;
        margin-bottom: 12px;
    }

    .treatment-card-footer {
        gap: 10px;
    }

    .treatment-quantity {
        font-size: 14px;
        padding: 9px 10px;
    }

    .treatment-book-now-btn {
        padding: 11px 20px;
        font-size: 14px;
    }

    /* Skeleton loader responsive - 768px */
    .skeleton-image {
        height: 180px;
    }

    .skeleton-content {
        padding: 16px;
    }

    .skeleton-title {
        height: 20px;
    }

    .skeleton-price {
        height: 30px;
    }

    .item-main-name {
        flex-basis: 85px; /* Adjust for smaller screens if needed */
        font-size: 13px;
    }

    .item-subname-price {
        font-size: 13px;
    }

    .item-ingredients {
        font-size: 12px;
    }


    .category-tabs {
        gap: 4px;
    }

    .category-tab {
        padding: 7px 14px;
        font-size: 13px;
    }

    .symptom-tags {
        gap: 8px;
    }

    .symptom-tag {
        padding: 6px 12px;
        font-size: 13px;
    }

    .service-image {
        height: 300px;
    }

    .service-stats {
        gap: 12px;
    }

    .stat {
        padding: 6px 12px;
    }
}

@media (max-width: 480px) {
    .services {
        padding: 50px 0 40px;
    }

    .container {
        padding: 0 16px;
    }

    .section-header {
        margin-bottom: 32px;
    }

    .section-header h2 {
        font-size: 28px;
        margin-bottom: 10px;
        line-height: 1.3;
    }

    .section-header p {
        font-size: 14px;
        line-height: 1.5;
    }

    .section-label {
        font-size: 12px;
        padding: 6px 12px;
        letter-spacing: 1px;
        margin-bottom: 12px;
    }

    .services-grid {
        gap: 16px;
        max-width: 100%;
    }

    .treatment-card {
        border-radius: 10px;
        box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
    }

    .treatment-card:hover {
        transform: translateY(-1px);
        box-shadow: 0 3px 8px rgba(0, 0, 0, 0.1);
    }

    .treatment-card-image {
        height: 160px;
    }

    .treatment-card-content {
        padding: 14px;
    }

    .treatment-card-title {
        font-size: 16px;
        margin-bottom: 6px;
    }

    .treatment-card-description {
        font-size: 13px;
        margin-bottom: 10px;
        line-height: 1.4;
    }

    .treatment-card-price {
        font-size: 22px;
        margin-bottom: 12px;
    }

    .treatment-card-footer {
        gap: 8px;
    }

    .treatment-quantity {
        flex: 0 0 60px;
        padding: 8px 8px;
        font-size: 13px;
        border-radius: 6px;
    }

    .treatment-book-now-btn {
        padding: 9px 16px;
        font-size: 13px;
        border-radius: 6px;
        letter-spacing: 0.3px;
    }

    /* Skeleton loader responsive - 480px */
    .skeleton-image {
        height: 160px;
    }

    .skeleton-content {
        padding: 14px;
    }

    .skeleton-title {
        height: 19px;
    }

    .skeleton-description {
        height: 13px;
    }

    .skeleton-description-line {
        height: 13px;
    }

    .skeleton-price {
        height: 28px;
    }

    .skeleton-select {
        flex: 0 0 65px;
        height: 40px;
    }

    .skeleton-button {
        height: 40px;
    }

    /* Modal responsive styles */
    .treatment-modal-content {
        width: 95%;
        max-height: 95vh;
    }

    .treatment-modal-header {
        padding: 24px 20px 20px;
    }

    .modal-treatment-name {
        font-size: 20px;
    }

    .treatment-modal-body {
        padding: 20px;
    }

    .modal-treatment-card {
        padding: 16px;
    }

    .modal-treatment-pricing {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .modal-total-section {
        margin-left: 0;
    }

    .treatment-modal-footer {
        padding: 20px;
    }

    /* Vertical stacked category tabs for mobile */
    .category-tabs {
        flex-direction: column;
        gap: 0;
        padding: 0 16px;
        margin-bottom: 20px;
    }

    .category-tab {
        width: 100%;
        padding: 12px 16px;
        font-size: 14px;
        font-weight: 600;
        border-radius: 0;
        border: none;
        border-bottom: 1px solid #E5E7EB;
        text-align: center;
        box-shadow: none;
    }

    .category-tab:first-child {
        border-top: 1px solid #E5E7EB;
        border-radius: 8px 8px 0 0;
    }

    .category-tab:last-child {
        border-radius: 0 0 8px 8px;
    }

    .category-tab.active {
        background: #10B981;
        border-color: #10B981;
        color: white;
    }

    .category-tab:hover {
        background: #F9FAFB;
        border-color: #E5E7EB;
        transform: none;
    }

    .category-tab.active:hover {
        background: #059669;
        border-color: #059669;
        transform: none;
    }

    /* Clean bar styling for symptom-tags in mobile */
    .symptom-tags {
        flex-direction: column;
        gap: 0;
        padding: 0 16px;
    }

    .symptom-tag {
        width: 100%;
        padding: 16px 20px;
        font-size: 15px;
        border-radius: 0;
        border: none;
        border-bottom: 1px solid #E5E7EB;
        text-align: center;
        background: white;
    }

    .symptom-tag:first-child {
        border-top: 1px solid #E5E7EB;
    }

    .symptom-tag.active {
        background: #1FBDC6;
        border-color: #1FBDC6;
        color: white;
    }

    .symptom-tag:hover {
        background: #F9FAFB;
        border-color: #E5E7EB;
    }

    .symptom-tag.active:hover {
        background: #17a2aa;
        border-color: #17a2aa;
    }

    .service-content {
        padding: 24px;
    }

    .service-image {
        height: 250px;
    }

    .service-overlay {
        padding: 16px;
    }

    .service-tag {
        padding: 6px 12px;
        font-size: 11px;
    }

    .item-main-name {
        flex-basis: 75px;
        padding-right: 8px;
    }


    .service-name { /* This is for Wellness/Beauty cards */
        font-size: 14px;
    }

    .price { /* For Wellness/Beauty cards */
        font-size: 14px;
    }


    .service-info {
        gap: 12px;
    }

    .treatment-time {
        font-size: 13px;
    }
}

@media (max-width: 360px) {
    .services {
        padding: 40px 0 30px;
    }

    .container {
        padding: 0 12px;
    }

    .section-header {
        margin-bottom: 28px;
    }

    .section-header h2 {
        font-size: 24px;
        margin-bottom: 8px;
    }

    .section-header p {
        font-size: 13px;
    }

    .section-label {
        font-size: 11px;
        padding: 5px 10px;
    }

    .services-grid {
        gap: 14px;
    }

    .treatment-card {
        border-radius: 8px;
    }

    .treatment-card-image {
        height: 140px;
    }

    .treatment-card-content {
        padding: 12px;
    }

    .treatment-card-title {
        font-size: 15px;
        margin-bottom: 5px;
    }

    .treatment-card-description {
        font-size: 12px;
        margin-bottom: 8px;
    }

    .treatment-card-price {
        font-size: 20px;
        margin-bottom: 10px;
    }

    .treatment-card-footer {
        gap: 6px;
    }

    .treatment-quantity {
        flex: 0 0 55px;
        padding: 7px 6px;
        font-size: 12px;
    }

    .treatment-book-now-btn {
        padding: 8px 14px;
        font-size: 12px;
    }

    .category-tab {
        padding: 11px 14px;
        font-size: 13px;
    }

    .treatment-modal-content {
        width: 98%;
        border-radius: 12px;
    }

    .treatment-modal-header {
        padding: 20px 16px 16px;
    }

    .modal-treatment-name {
        font-size: 18px;
        padding-right: 32px;
    }

    .treatment-modal-close {
        width: 36px;
        height: 36px;
        font-size: 28px;
        top: 12px;
        right: 12px;
    }

    .treatment-modal-body {
        padding: 16px;
    }

    .modal-treatment-card {
        padding: 14px;
        border-radius: 10px;
    }

    .modal-treatment-title {
        font-size: 16px;
    }

    .modal-price-per-unit {
        font-size: 15px;
    }

    .modal-supplements-title {
        font-size: 16px;
        margin-bottom: 12px;
    }

    .modal-supplement-item {
        padding: 10px 12px;
        border-radius: 6px;
    }

    .modal-supplement-name {
        font-size: 14px;
    }

    .modal-supplement-price {
        font-size: 13px;
    }

    .modal-supplement-btn {
        padding: 7px 16px;
        font-size: 13px;
        min-width: 70px;
    }

    .treatment-modal-footer {
        padding: 16px;
    }

    .modal-continue-btn {
        padding: 14px 20px;
        font-size: 15px;
        border-radius: 6px;
    }

    /* Skeleton styles */
    .skeleton-image {
        height: 140px;
    }

    .skeleton-content {
        padding: 12px;
    }

    .skeleton-title {
        height: 18px;
    }

    .skeleton-description {
        height: 12px;
    }

    .skeleton-description-line {
        height: 12px;
    }

    .skeleton-price {
        height: 26px;
    }

    .skeleton-select {
        flex: 0 0 55px;
        height: 36px;
    }

    .skeleton-button {
        height: 36px;
    }
}

/* Print Styles */
@media print {
    .services {
        background: white;
        padding: 20px 0;
    }

    .symptom-tags,
    .service-button,
    .service-stats {
        display: none;
    }

    .service-card {
        break-inside: avoid;
        box-shadow: none;
        border: 1px solid #E5E7EB;
    }

    .service-image {
        height: 200px;
    }
}