.square-card .service-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 24px;
    box-shadow: 0 1px 6px rgba(0,0,0,0.07);
    display: block;
    position: absolute;
    top: 0;
    left: 0;
}
.square-card .service-icon {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
/* Call Button in Header */
.call-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #f5f5f5;
    color: #1e88e5;
    font-size: 1.3rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    transition: background 0.2s, color 0.2s;
    text-decoration: none;
    margin-left: 12px;
}
.call-btn:hover {
    background: #e3f2fd;
    color: #1565c0;
}
/* Square Service Cards with Curved Edges */
.square-cards {
    display: flex;
    gap: 32px;
    justify-content: center;
    align-items: center;
    margin: 32px 0;
}
.square-card {
    border-radius: 24px;
    box-shadow: 0 2px 16px rgba(0,0,0,0.10);
    width: 200px;
    height: 200px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #fff;
    transition: box-shadow 0.2s;
    margin: 0;
}
.square-card .service-icon {
    margin-bottom: 10px;
}
.square-card:hover {
    box-shadow: 0 4px 24px rgba(0,0,0,0.16);
}
.square-card p {
    font-size: 1rem;
    font-weight: 500;
    margin: 0;
    color: #222;
}
/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background: #f4ddd9;
    color: #333;
    padding-bottom: 80px;
    overflow-x: hidden;
}

/* Variables */
:root {
    --primary-color: #8B1538;
    --secondary-color: #FFF5F5;
    --accent-color: #FF6B6B;
    --text-dark: #333;
    --text-light: #666;
    --border-color: #e0e0e0;
    --success-color: #25D366;
    --shadow: 0 2px 10px rgba(0,0,0,0.1);
    --border-radius: 12px;
}

/* Header */
.header {
    background: white;
    padding: 10px 16px;
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.logo-section {
    display: flex;
    align-items: center;
}

.header-logo {
    height: 35px;
    width: auto;
    border-radius: 6px;
}

.location-selector {
    display: flex;
    align-items: center;
    color: var(--primary-color);
    font-weight: 500;
    gap: 8px;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.whatsapp-btn {
    width: 40px;
    height: 40px;
    background: var(--success-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-size: 18px;
}

.profile-btn {
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
}

.search-container {
    display: flex;
    gap: 10px;
    align-items: center;
}

.search-box {
    flex: 1;
    position: relative;
}

.search-box input {
    width: 100%;
    padding: 12px 16px 12px 40px;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    font-size: 14px;
    background: white;
}

.search-icon {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-light);
}

.get-look-btn {
    background: var(--primary-color);
    color: white;
    padding: 12px 20px;
    border: none;
    border-radius: var(--border-radius);
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
}

/* Main Content */
.main-content {
    position: relative;
}

section {
    display: none;
    min-height: calc(100vh - 160px);
}

section.active {
    display: block;
}

/* Page Header */
.page-header {
    display: flex;
    align-items: center;
    padding: 16px;
    background: white;
    box-shadow: var(--shadow);
    gap: 16px;
}

.back-btn {
    background: none;
    border: none;
    font-size: 20px;
    color: var(--primary-color);
    cursor: pointer;
}

.page-header h1 {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-dark);
}

/* Hero Section */
.hero-banner {
    background: linear-gradient(135deg, rgba(139, 21, 56, 0.9), rgba(139, 21, 56, 0.7)), 
                url('https://images.unsplash.com/photo-1559599189-fe84dea4eb79?w=800&h=600&fit=crop') center/cover;
    padding: 40px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    overflow: hidden;
    min-height: 300px;
}

.hero-content h1 {
    font-size: 48px;
    font-weight: 700;
    color: white;
    line-height: 1.1;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero-content p {
    font-size: 24px;
    color: var(--text-dark);
    margin-top: 8px;
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: flex-end;
}

.hero-image img {
    max-width: 200px;
    height: 250px;
    object-fit: cover;
    border-radius: var(--border-radius);
}

/* Promo Section */
.promo-section {
    display: flex;
    gap: 10px;
    padding: 16px;
}

.promo-card {
    flex: 1;
    height: 80px;
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.buy-one {
    background: linear-gradient(135deg, #2E7D32, #4CAF50);
}

.free-service {
    background: linear-gradient(135deg, #FF5722, #FF8A65);
}

.promo-badge {
    color: white;
    font-weight: 700;
    font-size: 18px;
    text-align: center;
}

/* Section Headers */
.section-header {
    padding: 20px 16px 12px;
}

.section-header h2 {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.location-tag {
    color: var(--primary-color);
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 4px;
}

/* Service Grid */
.service-grid, .category-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    padding: 0 16px;
}

@media (min-width: 768px) {
    .category-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 1024px) {
    .category-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.service-card, .category-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.service-card:hover, .category-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.category-card {
    min-height: 120px;
    display: flex;
    flex-direction: column;
    padding: 0;
}

.service-icon, .category-icon {
    width: 100%;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    margin: 0;
}

.service-icon img, .category-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.category-card:hover .category-icon img {
    transform: scale(1.1);
}

.category-card p {
    padding: 12px 16px;
    margin: 0;
    font-size: 13px;
    color: var(--text-dark);
    font-weight: 600;
    text-align: center;
    background: white;
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.weekday-offer {
    background: linear-gradient(135deg, #2E7D32, #4CAF50);
    color: white;
}

.offer-text {
    font-weight: 600;
    font-size: 12px;
    text-align: center;
    line-height: 1.2;
}

.combo-badge {
    background: linear-gradient(135deg, #FF5722, #FF8A65);
    color: white;
    font-weight: 600;
    font-size: 10px;
    text-align: center;
    padding: 8px;
}

.combo-package {
    background: var(--secondary-color);
    color: var(--primary-color);
    font-weight: 600;
    font-size: 10px;
    text-align: center;
    padding: 8px;
}

.service-card p {
    font-size: 13px;
    color: var(--text-dark);
    font-weight: 500;
}

/* Service Filters */
.service-filters {
    display: flex;
    gap: 8px;
    padding: 0 16px 16px;
    overflow-x: auto;
}

.filter-btn {
    padding: 8px 16px;
    border: 1px solid var(--border-color);
    border-radius: 20px;
    background: white;
    color: var(--text-light);
    font-size: 13px;
    cursor: pointer;
    white-space: nowrap;
    transition: all 0.2s ease;
}

.filter-btn.active, .filter-btn:hover {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

/* Enhanced Service Grid Animations */
.service-grid.enhanced {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    padding: 0 16px;
}

.service-card.animated {
    position: relative;
    overflow: hidden;
    animation: fadeInUp 0.6s ease-out;
    animation-fill-mode: both;
}

.service-card.animated:nth-child(1) { animation-delay: 0.1s; }
.service-card.animated:nth-child(2) { animation-delay: 0.2s; }
.service-card.animated:nth-child(3) { animation-delay: 0.3s; }
.service-card.animated:nth-child(4) { animation-delay: 0.4s; }

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.service-card.animated .service-icon {
    position: relative;
}

.icon-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(139, 21, 56, 0.1), rgba(139, 21, 56, 0.3));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.service-card.animated:hover .icon-overlay {
    opacity: 1;
}

.card-shine {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transform: translateX(-100%) translateY(-100%) rotate(45deg);
    transition: transform 0.8s ease;
}

.service-card.animated:hover .card-shine {
    transform: translateX(100%) translateY(100%) rotate(45deg);
}

/* Scrollable Container */
.scrollable-container {
    position: relative;
    padding: 0 50px;
}

.scroll-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid var(--border-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 2;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.scroll-btn:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-50%) scale(1.1);
}

.scroll-left {
    left: 10px;
}

.scroll-right {
    right: 10px;
}

/* Featured Services */
.featured-services {
    display: flex;
    gap: 16px;
    padding: 0 16px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.featured-services::-webkit-scrollbar {
    display: none;
}

.service-cards {
    display: flex;
    gap: 16px;
    overflow-x: auto;
}

.featured-service-card {
    min-width: 220px;
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    cursor: pointer;
    transition: all 0.3s ease;
}

.featured-service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.featured-card-image {
    position: relative;
    height: 140px;
    overflow: hidden;
}

.featured-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.featured-service-card:hover .featured-card-image img {
    transform: scale(1.05);
}

.featured-service-label {
    position: absolute;
    top: 8px;
    left: 8px;
    background: var(--primary-color);
    color: white;
    padding: 3px 6px;
    border-radius: 8px;
    font-size: 9px;
    font-weight: 600;
    text-transform: uppercase;
}

.featured-discount-badge {
    position: absolute;
    top: 8px;
    right: 8px;
    background: var(--accent-color);
    color: white;
    padding: 3px 6px;
    border-radius: 8px;
    font-size: 9px;
    font-weight: 600;
}

.featured-card-content {
    padding: 12px;
}

.featured-card-title {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 8px;
    line-height: 1.3;
}

.featured-card-details {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
    padding: 8px 0;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.featured-duration {
    display: flex;
    align-items: center;
    gap: 4px;
    color: var(--text-light);
    font-size: 11px;
    background: var(--background-color);
    padding: 4px 6px;
    border-radius: 6px;
}

.featured-duration i {
    color: var(--primary-color);
}

.featured-pricing {
    text-align: right;
}

.featured-current-price {
    font-size: 16px;
    font-weight: 700;
    color: var(--primary-color);
    display: block;
}

.featured-original-price {
    font-size: 10px;
    color: var(--text-light);
    text-decoration: line-through;
    margin-top: 2px;
}

.featured-card-actions {
    display: flex;
    gap: 6px;
}

.featured-view-btn,
.featured-add-btn {
    flex: 1;
    padding: 8px;
    border-radius: 6px;
    font-size: 11px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
}

.featured-view-btn {
    background: white;
    border: 1px solid var(--border-color);
    color: var(--text-dark);
}

.featured-view-btn:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.featured-add-btn {
    background: linear-gradient(135deg, var(--primary-color), #a01b42);
    color: white;
}

.featured-add-btn:hover {
    background: linear-gradient(135deg, #6d0f2a, var(--primary-color));
    transform: translateY(-1px);
}

/* Product Categories */
.product-categories {
    display: flex;
    gap: 20px;
    padding: 0 16px;
    justify-content: space-around;
}

.product-category {
    text-align: center;
    cursor: pointer;
}

.product-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 12px;
}

.product-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-category p {
    font-size: 14px;
    color: var(--text-dark);
    font-weight: 500;
}

/* Package Cards */
.package-cards {
    display: flex;
    gap: 12px;
    padding: 0 16px;
    overflow-x: auto;
}

.package-card {
    min-width: 250px;
    height: 120px;
    border-radius: var(--border-radius);
    padding: 20px;
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.bridal {
    background: linear-gradient(135deg, #E91E63, #F06292);
}

.beauty {
    background: linear-gradient(135deg, #2196F3, #64B5F6);
}

.package-card h3 {
    font-size: 16px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 8px;
}

.package-card p {
    font-size: 12px;
    opacity: 0.9;
}

/* Features Section */
.features-section {
    display: flex;
    align-items: center;
    padding: 0 16px;
    gap: 20px;
}

.feature-list {
    flex: 1;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.feature-item i {
    color: var(--success-color);
    font-size: 16px;
}

.feature-item span {
    font-size: 14px;
    color: var(--text-dark);
}

.feature-image {
    width: 120px;
    height: 120px;
    border-radius: var(--border-radius);
    overflow: hidden;
}

.feature-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Brand Logos */
.brand-logos {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    padding: 0 16px;
}

.brand-logo {
    background: white;
    padding: 16px;
    border-radius: var(--border-radius);
    text-align: center;
    font-weight: 600;
    color: var(--text-dark);
    box-shadow: var(--shadow);
    font-size: 12px;
}

/* Trust Section */
.trust-section {
    background: var(--secondary-color);
    padding: 40px 16px;
    text-align: center;
    margin-top: 40px;
}

.trust-section h2 {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 12px;
    line-height: 1.3;
}

.trust-section p {
    color: var(--text-light);
    font-size: 14px;
}

/* Services List */
.services-list {
    padding: 16px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

@media (max-width: 768px) {
    .services-list {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .service-card-wrapper {
        min-width: unset;
    }
}

/* Service Card Wrapper */
.service-card-wrapper {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
}

.service-card-wrapper:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.service-card-image {
    width: 100%;
    height: 180px;
    overflow: hidden;
    position: relative;
}

.service-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.service-card-wrapper:hover .service-card-image img {
    transform: scale(1.05);
}

.service-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: var(--primary-color);
    color: white;
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
}

.service-badge.addon {
    background: var(--accent-color);
}

.service-badge.combo {
    background: var(--success-color);
}

.discount-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: var(--accent-color);
    color: white;
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 10px;
    font-weight: 600;
}

.service-card-content {
    padding: 16px;
}

.service-card-header {
    margin-bottom: 16px;
}

.service-card-title {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 8px;
    line-height: 1.3;
}

.service-card-description {
    font-size: 13px;
    color: var(--text-light);
    line-height: 1.4;
    margin-bottom: 8px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.combo-services {
    font-size: 11px;
    color: var(--success-color);
    font-weight: 500;
    background: rgba(34, 197, 94, 0.1);
    padding: 4px 8px;
    border-radius: 6px;
    display: inline-block;
}

.service-card-details {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
    padding: 12px 0;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.service-duration-card {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--text-light);
    font-size: 12px;
    background: var(--background-color);
    padding: 6px 10px;
    border-radius: 8px;
}

.service-duration-card i {
    color: var(--primary-color);
}

.service-card-pricing {
    text-align: right;
}

.service-current-price {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary-color);
    display: block;
}

.service-original-price {
    font-size: 12px;
    color: var(--text-light);
    text-decoration: line-through;
    margin-top: 2px;
}

.service-card-actions {
    display: flex;
    gap: 8px;
}

.service-view-btn,
.service-add-btn {
    flex: 1;
    padding: 10px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.service-view-btn {
    background: white;
    border: 2px solid var(--border-color);
    color: var(--text-dark);
}

.service-view-btn:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
    background: rgba(139, 21, 56, 0.05);
}

.service-add-btn {
    background: linear-gradient(135deg, var(--primary-color), #a01b42);
    color: white;
}

.service-add-btn:hover {
    background: linear-gradient(135deg, #6d0f2a, var(--primary-color));
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(139, 21, 56, 0.3);
}

.add-btn:hover {
    background: #6d0f2a;
}

.combo-description {
    background: var(--secondary-color);
    padding: 12px;
    border-radius: 8px;
    margin-top: 8px;
    font-size: 13px;
    color: var(--text-dark);
    line-height: 1.4;
}

/* Offers Section */
.offer-types {
    display: flex;
    justify-content: space-around;
    padding: 20px 16px;
}

.offer-type {
    text-align: center;
    cursor: pointer;
}

.offer-icon {
    width: 60px;
    height: 60px;
    border: 2px solid var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 8px;
    color: var(--primary-color);
    font-size: 20px;
}

.offer-type p {
    font-size: 12px;
    color: var(--text-dark);
    font-weight: 500;
}

.offers-list {
    padding: 0 16px;
}

.offer-card {
    margin-bottom: 20px;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.offer-content {
    padding: 24px;
    color: white;
    position: relative;
}

.weekday-offer-bg {
    background: linear-gradient(135deg, #FF5722, #FF8A65);
}

.new-user-offer {
    background: linear-gradient(135deg, #E91E63, #F06292);
}

.app-download {
    background: linear-gradient(135deg, #2196F3, #64B5F6);
}

.offer-content h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 8px;
}

.offer-content p {
    font-size: 14px;
    margin-bottom: 4px;
    opacity: 0.9;
}

.coupon-code {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(255,255,255,0.2);
    padding: 12px;
    border-radius: 8px;
    margin-top: 16px;
}

.coupon-code span {
    font-size: 14px;
}

.coupon-code strong {
    font-weight: 700;
    font-size: 16px;
}

.copy-btn {
    background: rgba(255,255,255,0.2);
    border: none;
    color: white;
    padding: 6px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
}

/* Cart Section */
.cart-actions {
    display: flex;
    gap: 8px;
    padding: 16px;
}

.cart-btn {
    flex: 1;
    padding: 12px;
    border-radius: var(--border-radius);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}

.cart-btn.secondary {
    background: white;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
}

.cart-btn.primary {
    background: var(--primary-color);
    border: 2px solid var(--primary-color);
    color: white;
}

.empty-cart, .empty-appointments {
    text-align: center;
    padding: 60px 20px;
}

.empty-cart-icon, .empty-icon {
    font-size: 80px;
    color: var(--text-light);
    margin-bottom: 24px;
}

.empty-cart h3, .empty-appointments h3 {
    font-size: 20px;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.empty-cart p, .empty-appointments p {
    color: var(--text-light);
    margin-bottom: 24px;
    line-height: 1.5;
}

.browse-btn {
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: var(--border-radius);
    font-weight: 600;
    cursor: pointer;
}

.cart-items {
    padding: 16px;
}

.cart-item {
    background: white;
    border-radius: var(--border-radius);
    padding: 16px;
    margin-bottom: 12px;
    box-shadow: var(--shadow);
}

.cart-item-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 8px;
}

.cart-item h4 {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-dark);
}

.remove-btn {
    background: none;
    border: none;
    color: var(--accent-color);
    font-size: 18px;
    cursor: pointer;
}

.cart-item-details {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.quantity-controls {
    display: flex;
    align-items: center;
    gap: 12px;
}

.qty-btn {
    background: var(--primary-color);
    color: white;
    border: none;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cart-total {
    background: white;
    margin: 16px;
    padding: 20px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

.total-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
    font-size: 14px;
}

.total-row.final {
    border-top: 1px solid var(--border-color);
    padding-top: 12px;
    font-weight: 600;
    font-size: 16px;
}

.discount {
    color: var(--success-color);
}

.checkout-btn {
    width: 100%;
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 16px;
    border-radius: var(--border-radius);
    font-size: 16px;
    font-weight: 600;
    margin-top: 16px;
    cursor: pointer;
}

/* Bottom Navigation */
.bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: white;
    display: flex;
    border-top: 1px solid var(--border-color);
    z-index: 1000;
}

.nav-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 8px 4px;
    cursor: pointer;
    transition: color 0.2s ease;
    position: relative;
}

.nav-item i {
    font-size: 20px;
    margin-bottom: 4px;
    color: var(--text-light);
    transition: color 0.2s ease;
}

.nav-item span {
    font-size: 11px;
    color: var(--text-light);
    transition: color 0.2s ease;
}

.nav-item.active i,
.nav-item.active span {
    color: var(--primary-color);
}

.cart-badge {
    position: absolute;
    top: 2px;
    right: 50%;
    transform: translateX(50%);
    background: var(--primary-color);
    color: white;
    border-radius: 10px;
    min-width: 18px;
    height: 18px;
    font-size: 10px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Responsive Design */
@media (max-width: 480px) {
    .hero-banner {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
    
    .hero-content h1 {
        font-size: 36px;
    }
    
    .service-grid, .category-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    
    .service-icon, .category-icon {
        width: 60px;
        height: 60px;
    }
    
    .featured-services {
        padding: 0 12px;
    }
    
    .service-detail-card {
        min-width: 240px;
    }
    
    .package-cards {
        padding: 0 12px;
    }
    
    .package-card {
        min-width: 200px;
    }
    
    .brand-logos {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 360px) {
    .hero-content h1 {
        font-size: 32px;
    }
    
    .service-grid, .category-grid {
        grid-template-columns: 1fr 1fr;
        gap: 8px;
    }
    
    .service-icon, .category-icon {
        width: 50px;
        height: 50px;
    }
    
    .service-card p, .category-card p {
        font-size: 12px;
    }
}

/* Animation */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.service-item, .offer-card, .cart-item {
    animation: fadeIn 0.3s ease-out;
}

/* Loading States */
.loading {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px;
}

.loading::after {
    content: '';
    width: 40px;
    height: 40px;
    border: 4px solid var(--border-color);
    border-top: 4px solid var(--primary-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Product Specific Styles */
.product-ingredients, .product-usage {
    font-size: 12px;
    color: #666;
    margin: 8px 0;
    line-height: 1.4;
}

.product-ingredients strong, .product-usage strong {
    color: #333;
    font-weight: 600;
}

.product-filters {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin: 20px 0;
    flex-wrap: wrap;
}

.product-filters .filter-btn {
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    border: 1px solid #ddd;
    color: #333;
    padding: 10px 20px;
    border-radius: 25px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.product-filters .filter-btn:hover {
    background: linear-gradient(135deg, #8B1538, #a91d42);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(139, 21, 56, 0.3);
}

.product-filters .filter-btn.active {
    background: linear-gradient(135deg, #8B1538, #a91d42);
    color: white;
    border-color: #8B1538;
    box-shadow: 0 4px 8px rgba(139, 21, 56, 0.3);
}

/* Hero Logo Styles */
.hero-logo {
    text-align: center;
    margin-bottom: 20px;
}

.hero-logo-image {
    height: 100px;
    width: auto;
    border-radius: 12px;
    transition: transform 0.3s ease;
    filter: drop-shadow(0 4px 12px rgba(0,0,0,0.15));
}

.hero-logo-image:hover {
    transform: scale(1.05);
}

/* Customer Modal */
.customer-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    padding: 20px;
}

.modal-content {
    background: white;
    border-radius: var(--border-radius);
    width: 100%;
    max-width: 500px;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid var(--border-color);
}

.modal-header h2 {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-dark);
}

.close-btn {
    background: none;
    border: none;
    font-size: 24px;
    color: var(--text-light);
    cursor: pointer;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--text-dark);
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    font-size: 14px;
    font-family: inherit;
    transition: border-color 0.2s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 2px rgba(139, 21, 56, 0.1);
}

.location-btn {
    background: var(--success-color);
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: background 0.2s ease;
    margin-bottom: 10px;
}

.location-btn:hover {
    background: #1ea952;
}

.location-status {
    font-size: 12px;
    padding: 4px 0;
}

.location-status.loading {
    color: var(--primary-color);
}

.location-status.success {
    color: var(--success-color);
}

.location-status.error {
    color: var(--accent-color);
}

.modal-actions {
    display: flex;
    gap: 12px;
    padding: 20px;
    border-top: 1px solid var(--border-color);
}

.cancel-btn,
.submit-btn {
    flex: 1;
    padding: 12px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}

.cancel-btn {
    background: white;
    border: 2px solid var(--border-color);
    color: var(--text-dark);
}

.cancel-btn:hover {
    border-color: var(--text-light);
}

.submit-btn {
    background: var(--primary-color);
    border: 2px solid var(--primary-color);
    color: white;
}

.submit-btn:hover {
    background: #6d0f2a;
    border-color: #6d0f2a;
}

#customer-form {
    padding: 20px;
}

/* Enhanced Premium Styles */
.service-detail-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-detail-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    cursor: pointer;
}

.add-btn {
    background: linear-gradient(135deg, var(--primary-color), #a01b42);
    transition: all 0.3s ease;
}

.add-btn:hover {
    background: linear-gradient(135deg, #6d0f2a, var(--primary-color));
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(139, 21, 56, 0.3);
}

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

.get-look-btn {
    background: linear-gradient(135deg, var(--primary-color), #a01b42);
    transition: all 0.3s ease;
}

.get-look-btn:hover {
    background: linear-gradient(135deg, #6d0f2a, var(--primary-color));
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(139, 21, 56, 0.3);
}

.checkout-btn {
    background: linear-gradient(135deg, var(--primary-color), #a01b42);
    transition: all 0.3s ease;
}

.checkout-btn:hover {
    background: linear-gradient(135deg, #6d0f2a, var(--primary-color));
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(139, 21, 56, 0.3);
}

/* Service Detail Page */
.service-detail-content {
    padding: 20px;
}

.service-detail-main {
    background: white;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.service-detail-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.service-detail-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-detail-info {
    padding: 20px;
}

.service-detail-info h2 {
    font-size: 24px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.service-description {
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.6;
}

.service-pricing {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding: 16px;
    background: var(--background-color);
    border-radius: 8px;
}

.price-info .current-price {
    font-size: 20px;
    font-weight: 600;
    color: var(--primary-color);
}

.price-info .original-price {
    font-size: 16px;
    color: var(--text-light);
    text-decoration: line-through;
    margin-left: 8px;
}

.discount-percent {
    background: var(--success-color);
    color: white;
    padding: 2px 6px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
    margin-left: 8px;
}

.duration-info {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-light);
}

.service-benefits,
.service-procedure,
.service-ideal {
    margin-bottom: 20px;
}

.service-benefits h3,
.service-procedure h3,
.service-ideal h3 {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.service-benefits ul {
    list-style: none;
    padding: 0;
}

.service-benefits li {
    padding: 6px 0;
    color: var(--text-light);
    position: relative;
    padding-left: 20px;
}

.service-benefits li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: 600;
}

.service-actions {
    display: flex;
    gap: 12px;
    margin-top: 24px;
}

.add-to-cart-btn,
.book-now-btn {
    flex: 1;
    padding: 14px;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.add-to-cart-btn {
    background: white;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
}

.add-to-cart-btn:hover {
    background: var(--primary-color);
    color: white;
}

.book-now-btn {
    background: var(--primary-color);
    color: white;
}

.book-now-btn:hover {
    background: #6d0f2a;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(139, 21, 56, 0.3);
}

/* Appointment Modal */
.appointment-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    padding: 20px;
}

.appointment-form {
    padding: 20px;
}

.service-summary {
    display: flex;
    gap: 16px;
    padding: 16px;
    background: var(--background-color);
    border-radius: 8px;
    margin-bottom: 20px;
}

.service-summary img {
    width: 60px;
    height: 60px;
    border-radius: 8px;
    object-fit: cover;
}

.service-summary .service-info h3 {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 4px;
}

.service-summary .service-info p {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 4px;
}

.service-summary .price {
    font-size: 16px;
    font-weight: 600;
    color: var(--primary-color);
}

.time-slots {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    gap: 8px;
    margin-top: 8px;
}

.time-slot {
    padding: 12px 8px;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    text-align: center;
    cursor: pointer;
    transition: all 0.2s ease;
    position: relative;
    font-size: 14px;
    font-weight: 500;
}

.time-slot:hover:not(.booked) {
    border-color: var(--primary-color);
    background: rgba(139, 21, 56, 0.1);
}

.time-slot.selected {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

.time-slot.booked {
    background: #f5f5f5;
    color: var(--text-light);
    border-color: #e0e0e0;
    cursor: not-allowed;
    opacity: 0.6;
}

.booked-label {
    position: absolute;
    top: -6px;
    right: -6px;
    background: var(--accent-color);
    color: white;
    font-size: 10px;
    padding: 2px 6px;
    border-radius: 4px;
    font-weight: 600;
}

.book-btn {
    background: var(--primary-color);
    border: 2px solid var(--primary-color);
    color: white;
}

.book-btn:hover {
    background: #6d0f2a;
    border-color: #6d0f2a;
}

/* Back Button */
.back-btn {
    background: none;
    border: none;
    color: var(--text-dark);
    font-size: 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
    padding: 8px 0;
}

.back-btn:hover {
    color: var(--primary-color);
}

/* Mobile responsive */
@media (max-width: 768px) {
    .service-pricing {
        flex-direction: column;
        gap: 12px;
        align-items: flex-start;
    }
    
    .service-actions {
        flex-direction: column;
    }
    
    .time-slots {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .service-summary {
        flex-direction: column;
        text-align: center;
    }
    
    .service-summary img {
        width: 80px;
        height: 80px;
        margin: 0 auto;
    }
}
