/* Global Styles */
:root {
    --pink: #FFD1DC;        /* Soft pink (primary) */
    --pink-light: #FFE6EB;  /* Lighter pink */
    --pink-dark: #F4A6B6;   /* Darker pink */
    --pink-darker: #E67B94; /* Even darker for contrast */
    --gold: #D4AF37;        /* Gold accent */
    --gold-light: #E8C874;  /* Lighter gold */
    --white: #FFFFFF;
    --off-white: #FFF9FA;   /* Very light pinkish white */
}

body {
    font-family: 'Montserrat', sans-serif;
    margin: 0;
    padding: 0;
    color: #333;
    background-color: pink;
}

h1, h2, h3 {
    font-family: 'Montserrat', sans-serif;
}

/* Header & Navigation */
header {
    background-color: var(--white);
    border-bottom: 1px solid var(--pink-light);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 1rem 0;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.logo h1 {
    font-size: 2.5rem;
    color: var(--gold);
}

.logo span {
    color: var(--pink);
}

nav ul {
    display: flex;
    list-style: none;
}

nav ul li {
    margin-left: 2rem;
}

nav ul li a {
    text-decoration: none;
    color: var(--pink-darker);
    font-weight: 600;
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(255, 209, 220, 0.7), rgba(255, 255, 255, 0.7)), url('../images/salon-hero.jpg');
    background-size: cover;
    height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero-content h2 {
    font-size: 4rem;
    color: var(--gold);
    margin: 0;
}

.hero-content p {
    font-size: 1.5rem;
    margin: 1rem 0 2rem;
}

.btn {
    background: var(--pink-dark);
    color: white;
    padding: 0.8rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    margin: 0 0.5rem;
    transition: all 0.3s;
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--pink-dark);
    color: var(--pink-darker);
}

/* Featured Services */
.featured-services {
    max-width: 1200px;
    margin: 4rem auto;
    text-align: center;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.service-card {
    border: 1px solid var(--pink-light);
    border-radius: 10px;
    padding: 1.5rem;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.service-card img {
    width: 100%;
    border-radius: 8px;
}

/* Footer */
footer {
    background: linear-gradient(to right, var(--pink), var(--pink-dark));
    text-align: center;
    padding: 1.5rem;
    margin-top: 4rem;
}

/* Booking Page Styles */
/* ===== Booking Section ===== */
.booking-section {
    background: linear-gradient(to bottom, var(--white) 0%, rgba(255, 209, 220, 0.1) 100%);
    padding: 4rem 0;
}

.section-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 3rem;
    color: #000000;
    text-align: center;
    margin-bottom: 0.5rem;
}

.section-subtitle {
    font-family: 'Montserrat', sans-serif;
    text-align: center;
    color: #000000;
    margin-bottom: 2rem;
}

/* Branch Selection */
.branch-options {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.branch-card {
    background: var(--white);
    border: 1px solid var(--pink-light);
    border-radius: 10px;
    overflow: hidden;
    width: 300px;
    box-shadow: 0 4px 15px rgba(244, 166, 182, 0.15);
    text-align: center;
    transition: transform 0.3s;
}

.branch-card:hover {
    transform: translateY(-5px);
}

.branch-img {
    height: 180px;
    background-size: cover;
    background-position: center;
}

.branch-card h4 {
    font-family: 'Montserrat', sans-serif;
    margin: 1rem 0 0.5rem;
    color: #333;
}

.branch-card p {
    font-family: 'Montserrat', sans-serif;
    color: #666;
    margin-bottom: 1rem;
}

/* Service Selection */
.service-categories {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
    margin: 1.5rem 0;
}

.category-btn {
    background: var(--white);
    border: 1px solid var(--pink);
    color: #000000;
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-family: 'Montserrat', sans-serif;
    cursor: pointer;
    transition: all 0.3s;
}

.category-btn.active {
    background: var(--pink);
    color: #000000;
}

.service-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
    margin: 1.5rem 0;
}

.service-card {
    background: var(--white);
    border: 1px solid var(--pink);
    border-radius: 8px;
    padding: 1rem;
    cursor: pointer;
    transition: all 0.3s;
}

.service-card:hover {
    background: rgba(255, 209, 220, 0.2);
}

.service-card.selected {
    background: var(--pink);
    color: #000000;
}

/* Date/Time Picker */
.date-picker {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid var(--pink);
    border-radius: 5px;
    font-family: 'Montserrat', sans-serif;
    margin: 1rem 0;
    text-align: center;
}

.time-slots {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    gap: 0.5rem;
    margin: 1rem 0;
}

.time-slot {
    background: var(--white);
    border: 1px solid var(--pink);
    padding: 0.5rem;
    text-align: center;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s;
}

.time-slot:hover {
    background: rgba(255, 209, 220, 0.2);
}

.time-slot.selected {
    background: var(--gold);
    color: var(--white);
    border-color: var(--gold);
}

/* Form Styles */
.form-group {
    margin-bottom: 1rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid var(--pink);
    border-radius: 5px;
    font-family: 'Montserrat', sans-serif;
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

/* Buttons */
.btn-pink {
    background: var(--pink);
    color: #000000;
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 5px;
    font-family: 'Montserrat', sans-serif;
    cursor: pointer;
    margin: 1rem 0;
}

.btn-gold {
    background: var(--gold);
    color: var(--white);
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 5px;
    font-family: 'Montserrat', sans-serif;
    cursor: pointer;
    margin: 1rem 0.5rem 0 0;
}

.btn-gold-outline {
    background: transparent;
    border: 1px solid var(--gold);
    color: var(--gold);
    padding: 0.8rem 1.5rem;
    border-radius: 5px;
    font-family: 'Montserrat', sans-serif;
    cursor: pointer;
    margin-top: 1rem;
}

/* Steps Navigation */
.booking-step {
    display: none;
}

.booking-step.active {
    display: block;
}

.back-btn {
    margin-top: 1.5rem;
}

/* Selection Feedback */
.branch-card.selected,
.service-card.selected,
.time-slot.selected {
    transform: scale(1.02);
    box-shadow: 0 0 0 2px var(--gold);
}

.branch-card.selected {
    background: rgba(255, 209, 220, 0.3);
}



/* Payment Section */
.payment-section {
    background: rgba(255, 209, 220, 0.1);
    border: 1px dashed var(--pink);
    padding: 1.5rem;
    margin: 2rem 0;
    border-radius: 10px;
}

.bank-details {
    background: white;
    padding: 1rem;
    border-radius: 5px;
    margin: 1rem 0;
}

.bank-details p {
    margin: 0.5rem 0;
    color: #555;
}

.terms-group {
    display: flex;
    align-items: center;
    margin: 1.5rem 0;
}

.terms-group input {
    margin-right: 0.5rem;
}

.terms-group a {
    color: var(--gold);
}

/* Confirmation Modal */
.confirmation-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 1000;
    justify-content: center;
    align-items: center;
}

.modal-content {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    max-width: 500px;
}

.success-icon {
    font-size: 4rem;
    color: var(--gold);
    margin-bottom: 1rem;
}

.booking-summary {
    text-align: left;
    margin: 1.5rem 0;
    padding: 1rem;
    background: rgba(255, 209, 220, 0.2);
    border-radius: 5px;
}



/* Services Page */
.services-container {
    max-width: 1200px;
    margin: 2rem auto;
    padding: 0 2rem;
}

.service-categories {
    display: flex;
    gap: 0.5rem;
    margin: 2rem 0;
    flex-wrap: wrap;
}

.category-btn {
    background: white;
    border: 1px solid var(--pink);
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.3s;
}

.category-btn.active {
    background: var(--pink);
    color: white;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.service-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.service-card h3 {
    margin: 1rem;
    color: var(--gold);
}

.price {
    margin: 0 1rem;
    font-weight: bold;
    color: var(--pink);
}

/* Shop Page */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 2rem;
}

.cart-sidebar {
    position: fixed;
    right: -350px;
    top: 0;
    width: 350px;
    height: 100vh;
    background: white;
    box-shadow: -2px 0 10px rgba(0,0,0,0.1);
    transition: right 0.3s;
    padding: 1rem;
}

.cart-sidebar.active {
    right: 0;
}


/* Contact Page */
.contact-container {
    max-width: 1200px;
    margin: 2rem auto;
    padding: 0 2rem;
}

.contact-header {
    text-align: center;
    margin-bottom: 3rem;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 4rem;
}

.contact-info {
    display: grid;
    gap: 1.5rem;
}

.info-card {
    background: white;
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.info-card i {
    font-size: 1.5rem;
    color: var(--gold);
    margin-bottom: 1rem;
}

.info-card h3 {
    color: var(--pink);
    margin-bottom: 1rem;
}

.map-container {
    margin: 4rem 0;
}

.map-container h3 {
    text-align: center;
    margin-bottom: 1.5rem;
}

.map-embed {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

/* Footer Social Links */
.social-links {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 1rem;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: pink;
    color: white;
    border-radius: 50%;
    transition: all 0.3s;
}

.social-links a:hover {
    background: var(--pink);
    transform: translateY(-3px);
}

@media (max-width: 768px) {
    .contact-content {
        grid-template-columns: 1fr;
    }
}

/* Services Page */
.services-container {
    max-width: 1200px;
    margin: 2rem auto;
    padding: 0 2rem;
}

.service-categories {
    display: flex;
    gap: 1rem;
    margin: 2rem 0;
    flex-wrap: wrap;
    justify-content: center;
}

.category-btn {
    background: white;
    border: 1px solid var(--pink);
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    cursor: pointer;
}

.category-btn.active {
    background: var(--pink);
    color: white;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
}

.service-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.service-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.service-card h3 {
    margin: 1rem;
    color: var(--gold);
}

.duration, .price {
    margin: 0 1rem;
    color: #666;
}

.price {
    font-weight: bold;
    color: var(--pink);
}

/* Shop Page */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 2rem auto;
}

.product-card {
    background: white;
    border-radius: 10px;
    padding: 1rem;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    text-align: center;
}

.product-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 5px;
}

.product-card h3 {
    margin: 1rem 0 0.5rem;
    color: var(--gold);
}

.price {
    font-weight: bold;
    color: var(--pink);
    margin-bottom: 1rem;
}

/* Policy Banner */
.policy-banner {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
    padding: 2rem;
    background: #fef6f8;
}

.policy-card {
    background: white;
    padding: 1.5rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.policy-card i {
    font-size: 2rem;
    color: var(--gold);
    margin-bottom: 1rem;
}

/* Location Section */
.location-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    background: white;
}

.location-info {
    padding: 3rem;
}

.branch {
    margin-bottom: 2rem;
}

.branch h4 {
    color: var(--pink);
    margin-bottom: 0.5rem;
}

/* Product Spotlight */
.product-spotlight {
    display: grid;
    grid-template-columns: 1fr 1fr;
    background: #fef6f8;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-details {
    padding: 3rem;
}

.benefits li {
    margin-bottom: 0.5rem;
}

.benefits .fa-check {
    color: var(--gold);
}

@media (max-width: 768px) {
    .location-section, 
    .product-spotlight {
        grid-template-columns: 1fr;
    }
    
    .location-info {
        padding: 2rem;
    }
    
    .product-image {
        height: 300px;
    }
}



/* Shop Page */
.shop-container {
    max-width: 1200px;
    margin: 2rem auto;
    padding: 0 2rem;
    position: relative;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 2rem;
}

.product-card {
    background: white;
    border-radius: 10px;
    padding: 1.5rem;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    text-align: center;
}

.product-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 5px;
    margin-bottom: 1rem;
}

.quantity-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 1rem 0;
}

.quantity-btn {
    width: 30px;
    height: 30px;
    background: var(--pink);
    color: white;
    border: none;
    border-radius: 50%;
    font-size: 1rem;
    cursor: pointer;
}

.quantity {
    margin: 0 1rem;
    font-weight: bold;
}

/* Cart Sidebar */
.cart-sidebar {
    position: fixed;
    top: 0;
    right: -400px;
    width: 400px;
    height: 100vh;
    background: white;
    box-shadow: -2px 0 10px rgba(0,0,0,0.1);
    transition: right 0.3s;
    z-index: 1000;
    display: flex;
    flex-direction: column;
}

.cart-sidebar.active {
    right: 0;
}

.cart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    border-bottom: 1px solid #eee;
}

.close-cart {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
}

.cart-items {
    flex: 1;
    overflow-y: auto;
    padding: 1rem;
}

.cart-item {
    display: flex;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #f5f5f5;
}

.cart-item img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 5px;
    margin-right: 1rem;
}

.cart-item-info {
    flex: 1;
    text-align: left;
}

.cart-item-info h4 {
    margin: 0 0 0.5rem 0;
    color: var(--gold);
}

.remove-item {
    color: #ff6b6b;
    background: none;
    border: none;
    cursor: pointer;
}

.delivery-options {
    padding: 1rem;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
}

.delivery-options label {
    display: block;
    margin: 0.5rem 0;
    cursor: pointer;
}

.totals {
    padding: 1.5rem;
}

.totals p {
    display: flex;
    justify-content: space-between;
    margin: 0.5rem 0;
}

.total {
    font-weight: bold;
    font-size: 1.2rem;
    margin-top: 1rem !important;
}

.checkout-btn {
    width: 100%;
    padding: 1rem;
    border-radius: 0;
}

/* Payment Modal (Same as booking) */
.payment-modal {
    /* Use same styles as booking confirmation modal */
}

@media (max-width: 768px) {
    .cart-sidebar {
        width: 100%;
    }
}



/* ===== New Background Image Sections ===== */
.fullscreen-section {
    height: 100vh;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    position: relative;
    color: white;
}

.section-overlay {
    background-color: rgba(0, 0, 0, 0.5);
    padding: 40px;
    max-width: 600px;
    margin-left: 10%;
    border-radius: 10px;
}

.buy-section {
    background-image: url('../images/buy.jpg');
}

.book-section {
    background-image: url('../images/new1.jpg');
}

.revamp-section {
    background-image: url('../images/new2.jpg');
}

.policy-section {
    background-image: url('../images/policy.jpg');
}

.training-section {
    background-image: url('../images/training.jpg');
}

.section-btn {
    display: inline-block;
    padding: 12px 30px;
    margin-top: 20px;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    transition: all 0.3s ease;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .section-overlay {
        margin-left: 5%;
        margin-right: 5%;
        padding: 30px;
    }
    
    .fullscreen-section {
        height: 80vh; /* Slightly smaller on mobile */
    }
}

@media (max-width: 480px) {
    .section-overlay {
        padding: 20px;
    }
    
    .fullscreen-section {
        height: 70vh;
    }
}

/* Add this to your existing CSS */
.hero-banner {
    background: url('../images/new3.jpg') no-repeat center center;
    background-size: cover;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    color: white;
    overflow: hidden; /* Prevents any overflow issues */
}

/* Mobile-specific adjustments */
@media (max-width: 768px) {
    .hero-banner {
        background-attachment: scroll; /* Disables parallax on mobile */
        background-size: contain; /* Shows full image without cropping */
        background-color: #FFFFFF; /* Fallback color */
        height: auto;
         /* Reduced height for mobile */
        padding: 20px 0; /* Adds breathing room */
    }

    /* Optional: Switch to a different cropped version for mobile */
    /* .hero-banner {
        background-image: url('../images/banner-mobile.jpg');
    } */
}

.hero-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
     /* Stronger overlay for better contrast */
}

.hero-content {
    position: relative;
    z-index: 1;
    width: 90%; /* Better mobile width */
    margin: 0 auto;
    padding: 20px;
}


/* Keep your existing .hero-content styles */


/* Logo Image Styles */
.logo-img {
    height: 60px; /* Adjust based on your logo proportions */
    width: auto; /* Maintain aspect ratio */
    transition: all 0.3s ease;
}

/* For responsive adjustments */
@media (max-width: 768px) {
    .logo-img {
        height: 50px;
    }
}

@media (max-width: 480px) {
    .logo-img {
        height: 40px;
    }
}

/* Navigation Styles */
nav ul li a {
    text-decoration: none;
    color: #333;
    font-weight: 600;
    padding: 8px 15px;
    border-radius: 20px;
    transition: all 0.3s ease;
    position: relative;
}

/* Hover Effect */
nav ul li a:hover {
    color: var(--gold);
    background-color: rgba(212, 175, 55, 0.1);
}

/* Active Page Indicator */
nav ul li a.active {
    color: var(--white);
    background-color: var(--gold);
}

/* Optional: Add underline animation on hover */
nav ul li a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: var(--gold);
    transition: width 0.3s ease;
}

nav ul li a:hover::after {
    width: 100%;
}

/* Payment Modal Styles */
.payment-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.7);
    z-index: 1000;
    justify-content: center;
    align-items: center;
}

.modal-content {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    max-width: 500px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
}

.close-payment {
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 1.5rem;
    cursor: pointer;
}

.bank-details {
    background: #f9f9f9;
    padding: 1rem;
    border-radius: 5px;
    margin: 1rem 0;
    border-left: 3px solid var(--gold);
}

.bank-details p {
    margin: 0.5rem 0;
    color: #555;
}

.form-group {
    margin: 1rem 0;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.form-group input[type="file"] {
    width: 100%;
    padding: 0.5rem;
    border: 1px solid #ddd;
    border-radius: 5px;
}

.small {
    font-size: 0.8rem;
    color: #666;
    margin-top: 0.5rem;
}

/* Order Summary in Modal */
.order-summary {
    margin: 1rem 0;
    padding: 1rem;
    background: #f5f5f5;
    border-radius: 5px;
}

.order-summary h4 {
    margin-top: 0;
    color: var(--gold);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .modal-content {
        padding: 1.5rem;
    }
    
    .bank-details p {
        font-size: 0.9rem;
    }
}



    
    
    
    
    
    
    
    
    

/* ===== Small Mobile Devices ===== */
@media (max-width: 480px) {
    /* Logo */
    .logo-img {
        height: 40px;
    }
    
    /* Hero Banner */
    .hero-banner {
        height: 70vh;
    }
    
    .hero-content h2 {
        font-size: 2rem;
    }
    
    /* Products Grid */
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    /* Booking Form */
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 0.7rem;
    }
    
    /* Fullscreen Sections */
    .fullscreen-section {
        height: 50vh;
    }
    
    .section-overlay {
        padding: 1.5rem;
    }
    
    /* Cart Items */
    .cart-item {
        flex-direction: column;
    }
    
    .cart-item img {
        width: 100%;
        margin-bottom: 1rem;
    }
}

/* ===== Tablet Styles ===== */
@media (min-width: 768px) and (max-width: 991px) {
    .services-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .products-grid {
        grid-template-columns: 1fr 1fr 1fr;
    }
    
    .fullscreen-section {
        height: 70vh;
    }
}

/* ===== Desktop Styles ===== */
@media (min-width: 992px) {
    .menu-toggle {
        display: none;
    }
    
    nav ul {
        display: flex;
    }
}


/* Mobile Menu Styles */
.menu-toggle {
    display: none; /* Hidden by default on desktop */
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 24px;
    cursor: pointer;
    z-index: 1000;
    position: relative; /* Add this */
}

.menu-toggle .bar {
    height: 3px;
    width: 100%;
    background-color: #333;
    border-radius: 3px;
    transition: all 0.3s ease;
}

/* Mobile styles */
@media (max-width: 991px) {
    nav {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 15px;
    }
    
    .menu-toggle {
        display: flex; /* Show on mobile */
    }
    
    nav ul {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        height: 100vh;
        background: pink;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        padding: 0;
        margin: 0;
        transition: all 0.5s ease;
        z-index: 999;
        box-shadow: -5px 0 15px rgba(0,0,0,0.1);
    }
    
    nav ul.active {
        right: 0;
    }
}



@media (max-width: 768px) {
  /* Default state (cart closed) */
  .shop-container {
    width: 100%;
    transition: transform 0.3s ease; /* Smooth slide */
  }

  /* Cart open state */
  .cart-sidebar.active + .shop-container {
    transform: translateX(-90%); /* Shift left by cart width */
  }

  /* Cart sidebar styling */
  .cart-sidebar {
    width: 90%;
    right: -90%;
    z-index: 1000;
  }
  
  .cart-sidebar.active {
    right: 0;
  }
}



@media (max-width: 991px) {
  /* Mobile menu links spacing */
  nav ul {
    flex-direction: column; /* Stack vertically */
    gap: 1.5rem; /* Space between links */
    padding: 2rem 0; /* Top/bottom padding */
  }

  nav ul li {
    margin-left: 0; /* Remove default left margin */
  }

  nav ul li a {
    padding: 0.8rem 1.5rem; /* Larger tap targets */
    display: block; /* Full-width click area */
    border-radius: 8px; /* Rounded corners */
    background: rgba(212, 175, 55, 0.1); /* Gold highlight */
  }
}


/* Add to your CSS */
.cart-backdrop {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 999; /* Below cart (1000) but above content */
}

.cart-sidebar.active ~ .cart-backdrop {
  display: block;
}


@media (max-width: 768px) {
  .cart-sidebar {
    width: 85%; /* Slightly narrower */
  }
  
  .cart-sidebar.active + .shop-container {
    transform: translateX(-85%); /* Match width */
  }
}


/* Product Image Fixes */
.product-card img {
  width: 100%;
  height: 200px; /* Base height */
  object-fit: contain; /* Ensures full image is visible */
  object-position: center;
  background: #f8f8f8; /* Fallback background */
  padding: 10px; /* Adds breathing room */
}

@media (max-width: 768px) {
  .product-card img {
    height: 180px; /* Slightly smaller on tablets */
  }
}

@media (max-width: 480px) {
  .product-card img {
    height: 150px; /* Smaller on phones */
    max-width: 90%; /* Prevents edge touching */
    margin: 0 auto; /* Centers the image */
    display: block;
  }
}




/* Service Dropdown Styles */
.form-group {
  position: relative !important;
  margin-bottom: 1.5rem !important;
}

select#service {
  width: 100% !important;
  padding: 12px 15px !important;
  border: 1px solid var(--pink) !important;
  border-radius: 8px !important;
  background-color: var(--white) !important;
  font-family: 'Montserrat', sans-serif !important;
  font-size: 14px !important;
  color: var(--dark) !important;
  appearance: none !important;
  -webkit-appearance: none !important;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
  background-repeat: no-repeat !important;
  background-position: right 15px center !important;
  background-size: 16px !important;
  cursor: pointer !important;
  transition: all 0.3s ease !important;
}

select#service:focus {
  outline: none !important;
  border-color: var(--gold) !important;
  box-shadow: 0 0 0 2px rgba(212, 175, 55, 0.2) !important;
}

/* Dropdown Options Styling */
select#service option {
  padding: 10px 15px !important;
  border-bottom: 1px solid rgba(255, 209, 220, 0.3) !important;
  white-space: normal !important;
  font-size: 13px !important;
}

select#service optgroup {
  font-weight: 600 !important;
  color: var(--gold) !important;
  background: rgba(255, 209, 220, 0.1) !important;
  padding: 5px 0 !important;
}

select#service optgroup option {
  padding-left: 20px !important;
  color: #333 !important;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  select#service {
    font-size: 13px;
    padding: 10px 12px;
  }
  
  select#service option {
    padding: 8px 12px;
  }
}

/* For very long options - adds scrollbar */
select#service {
  max-height: 200px;
  overflow-y: auto;
}

/* Custom scrollbar for dropdown */
select#service::-webkit-scrollbar {
  width: 6px;
}

select#service::-webkit-scrollbar-track {
  background: rgba(255, 209, 220, 0.2);
}

select#service::-webkit-scrollbar-thumb {
  background-color: var(--pink);
  border-radius: 3px;
}





/* Strictly Contained Dropdown */
select#service {
    max-width: 100%;
    width: 100%;
    box-sizing: border-box;
    overflow-y: auto;
    white-space: normal;
    word-wrap: break-word;
}

/* For modern browsers */
select#service option {
    white-space: normal;
    word-break: break-word;
    max-width: 100%;
    padding: 8px 12px;
    border-bottom: 1px solid #f0f0f0;
}

/* Force containment in WebKit browsers */
@media screen and (-webkit-min-device-pixel-ratio:0) {
    select#service {
        -webkit-appearance: none;
        appearance: none;
        background-image: none;
        padding-right: 15px; /* Space for custom arrow */
    }
    
    select#service option {
        display: inline-block;
        width: 100%;
    }
}






/* Custom Select Styles (fallback) */
.custom-select {
    position: relative;
    width: 100%;
    margin-bottom: 1.5rem;
}

.custom-select__trigger {
    padding: 12px 15px;
    border: 1px solid var(--pink);
    border-radius: 8px;
    background-color: white;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.custom-select__options {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    max-height: 300px;
    overflow-y: auto;
    background: white;
    border: 1px solid var(--pink);
    border-radius: 0 0 8px 8px;
    z-index: 100;
    display: none;
}

.custom-select.open .custom-select__options {
    display: block;
}

.custom-option {
    padding: 10px 15px;
    border-bottom: 1px solid rgba(255, 209, 220, 0.3);
    cursor: pointer;
}

.custom-option:hover {
    background: rgba(255, 209, 220, 0.2);
}

.custom-option.optgroup-label {
    font-weight: bold;
    color: var(--gold);
    background: rgba(255, 209, 220, 0.1);
}





/* Service Selection with Image Preview */
.service-selection {
    position: relative;
}

.select-with-preview {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.service-preview {
    display: none;
    background: white;
    border: 1px solid var(--pink);
    border-radius: 8px;
    padding: 1rem;
    animation: fadeIn 0.3s ease;
}

.preview-image-container {
    position: relative;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

#service-preview-image {
    width: 100%;
    max-height: 300px;
    object-fit: cover;
    display: block;
}

.image-note {
    background: rgba(255,255,255,0.9);
    padding: 8px 12px;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    font-size: 0.85rem;
    color: #333;
}

.image-note i {
    color: var(--gold);
    margin-right: 5px;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .service-preview {
        margin-top: 1rem;
    }
    
    #service-preview-image {
        max-height: 200px;
    }
}




/* Formspree file upload styling */
input[type="file"] {
    width: 100%;
    padding: 12px;
    border: 2px dashed var(--pink);
    border-radius: 8px;
    background: var(--off-white);
    cursor: pointer;
}

input[type="file"]::file-selector-button {
    background: var(--pink);
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 4px;
    margin-right: 12px;
    cursor: pointer;
}




/* Product Filters */
.product-filters {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 8px 16px;
    background: #f8f8f8;
    border: 1px solid #ddd;
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-btn.active {
    background: #d4347f;
    color: white;
    border-color: #d4347f;
}

.filter-btn:hover {
    background: #e0e0e0;
}

.filter-btn.active:hover {
    background: #c12b6f;
}
