:root {
    --primary-beauty: #e21b70;
    --secondary-beauty: #f8e1eb;
    --accent-beauty: #673ab7;
    --white: #ffffff;
    --gray-light: #f4f4f4;
}

body {
    background-color: #fff;
    color: #333;
}

.banner-section {
    padding: 100px 0;
    background-size: cover;
    background-position: center;
    border-bottom-left-radius: 50px;
    border-bottom-right-radius: 50px;
}

.banner-content h2 {
    font-size: 48px;
    font-weight: 800;
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.category-item {
    background: #fff;
    padding: 20px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    border: 1px solid #eee;
}

.category-item:hover {
    transform: translateY(-10px);
    border-color: var(--primary-beauty);
}

.category-icon img {
    width: 60px;
    height: 60px;
    object-fit: contain;
}

.section-title {
    font-weight: 800;
    color: #1a1a1a;
    position: relative;
    display: inline-block;
    margin-bottom: 30px;
}

.section-title::after {
    content: '';
    position: absolute;
    width: 50%;
    height: 4px;
    background: var(--primary-beauty);
    bottom: -10px;
    left: 25%;
    border-radius: 2px;
}

/* Package Cards */
.package-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.package-card:hover {
    transform: scale(1.02);
}

.package-thumb {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.package-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.package-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--primary-beauty);
    color: #fff;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
}

.package-content {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.package-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
}

.package-duration {
    font-size: 14px;
    color: #777;
    margin-bottom: 15px;
}

.package-services-list {
    margin-bottom: 20px;
    flex-grow: 1;
}

.package-services-list li {
    font-size: 14px;
    color: #555;
    margin-bottom: 5px;
    display: flex;
    align-items: center;
}

.package-services-list li i {
    color: var(--primary-beauty);
    margin-right: 10px;
    font-size: 10px;
}

.package-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.package-price {
    font-size: 24px;
    font-weight: 800;
    color: var(--primary-beauty);
}

.package-price del {
    font-size: 16px;
    color: #999;
    font-weight: 400;
}

.btn-book {
    background: var(--primary-beauty);
    color: #fff !important;
    padding: 10px 25px;
    border-radius: 10px;
    font-weight: 700;
    transition: all 0.3s;
}

.btn-book:hover {
    background: #c2185b;
    box-shadow: 0 5px 15px rgba(226, 27, 112, 0.3);
}

/* Custom Package Selection */
.make-package-section {
    background-color: var(--secondary-beauty);
    padding: 80px 0;
    border-radius: 50px;
}

.service-selection-card {
    background: #fff;
    margin-bottom: 15px;
    padding: 15px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    transition: all 0.2s;
}

.service-selection-card:hover {
    background: #fffafa;
}

.service-selection-card.selected {
    border: 2px solid var(--primary-beauty);
}

.service-selection-card .info {
    display: flex;
    align-items: center;
}

.service-selection-card .info .thumb {
    width: 50px;
    height: 50px;
    border-radius: 10px;
    overflow: hidden;
    margin-right: 15px;
}
