* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-pink: #FF69B4;
    --light-pink: #FFB6D9;
    --pale-pink: #FFF0F5;
    --dark-gray: #333;
    --light-gray: #f5f5f5;
    --white: #ffffff;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 20px rgba(0, 0, 0, 0.15);
}

html, body {
    height: 100%;
    font-family: 'Kanit', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background-color: var(--white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    overflow-x: hidden;
    line-height: 1.4;
}

.container {
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
    background-color: var(--white);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Cover Section */
.cover-section {
    position: relative;
    width: 100%;
    height: 240px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* Card Container */
.card-container {
    position: relative;
    width: 100%;
    flex: 1;
}

/* Logo */
.logo {
    width: 130px;
    height: 130px;
    object-fit: contain;
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.15));
}

/* Card Content */
.card-content {
    background-color: var(--white);
    border-radius: 50px 50px 0 0;
    padding: 0 20px 30px 20px;
    margin-top: -40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: calc(100vh - 200px);
    position: relative;
    z-index: 5;
}

/* Logo Wrapper - inside card */
.logo-wrapper {
    margin-top: -65px;
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Title Section */
.title-section {
    text-align: center;
    margin-bottom: 30px;
    width: 100%;
}

.main-title {
    font-size: 26px;
    font-weight: 700;
    color: var(--dark-gray);
    margin-bottom: 6px;
    letter-spacing: 0.5px;
}

.sub-title {
    font-size: 14px;
    color: #999;
    font-weight: 400;
    letter-spacing: 0.5px;
}

/* Services Section */
.services-section {
    width: 100%;
    margin-bottom: 30px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.services-title {
    font-size: 14px;
    color: #999;
    font-weight: 500;
    margin-bottom: 20px;
    text-align: left;
    letter-spacing: 0.5px;
}

.services-container {
    display: flex;
    gap: 30px;
    width: 100%;
    justify-content: flex-start;
}

.service-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.service-card {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px;
    border-radius: 24px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    background-color: var(--white);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    width: 140px;
    height: 140px;
    -webkit-tap-highlight-color: transparent;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

.service-card:hover,
.service-card:focus {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    outline: none;
}

.service-card:active {
    transform: translateY(-2px);
}

.lash-card {
    background-color: var(--white);
    border: 2px solid #d0d0d0;
}

.eyebrow-card {
    background-color: var(--white);
    border: 2px solid #d0d0d0;
}

/* Selected state */
.service-card.selected {
    background: linear-gradient(135deg, #FFB6D9 0%, #FFC0CB 100%) !important;
    border: 2px solid transparent !important;
}

.service-card.selected .service-name {
    color: var(--dark-gray) !important;
}

.service-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.service-name {
    font-size: 14px;
    font-weight: 600;
    color: var(--dark-gray);
    text-align: center;
}



/* Responsive Design */
@media (max-width: 480px) {
    .cover-section {
        height: 240px;
    }

    .card-content {
        padding: 70px 16px 20px 16px;
        min-height: calc(100vh - 240px);
    }

    .logo {
        width: 100px;
        height: 100px;
    }

    .main-title {
        font-size: 24px;
    }

    .sub-title {
        font-size: 13px;
    }

    .services-grid {
        gap: 12px;
    }

    .service-card {
        padding: 24px 14px;
    }

    .btn-booking {
        font-size: 14px;
        padding: 12px 24px;
    }
}

@media (max-width: 360px) {
    .cover-section {
        height: 200px;
    }

    .logo {
        width: 90px;
        height: 90px;
        top: -45px;
    }

    .card-content {
        padding: 60px 12px 15px 12px;
        min-height: calc(100vh - 200px);
    }

    .main-title {
        font-size: 20px;
    }

    .services-title {
        font-size: 12px;
    }

    .service-name {
        font-size: 12px;
    }

    .service-icon {
        width: 45px;
        height: 45px;
    }
}
