/* =========================================
   Design System & Variables
   ========================================= */
   :root {
    /* Colors */
    --clr-bg: #FDFBF7; /* Soft Cream */
    --clr-bg-alt: #F4EFEB;
    --clr-primary: #D4AF37; /* Gold / Rose Gold tone */
    --clr-primary-dark: #B5952F;
    --clr-text-main: #333333; /* Charcoal */
    --clr-text-light: #666666;
    --clr-white: #FFFFFF;

    /* Typography */
    --ff-heading: 'Playfair Display', serif;
    --ff-body: 'Inter', sans-serif;

    /* Transitions */
    --transition: all 0.3s ease-in-out;
}

/* =========================================
   Reset & Base
   ========================================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 130px;
}

body {
    font-family: var(--ff-body);
    background-color: var(--clr-bg);
    color: var(--clr-text-main);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4 {
    font-family: var(--ff-heading);
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul {
    list-style: none;
}

/* =========================================
   Utilities
   ========================================= */
.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

.center {
    text-align: center;
}

.subtitle {
    display: block;
    font-family: var(--ff-body);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.85rem;
    color: var(--clr-primary);
    margin-bottom: 0.5rem;
}

.bg-light {
    background-color: var(--clr-bg-alt);
}

.mt-2 {
    margin-top: 2rem;
}

.w-100 {
    width: 100%;
}

section {
    padding: 5rem 0;
}

/* =========================================
   Buttons
   ========================================= */
.btn-primary, .btn-secondary, .btn-primary-small {
    display: inline-block;
    padding: 1rem 2rem;
    font-family: var(--ff-body);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    border: none;
}

.btn-primary {
    background-color: var(--clr-primary);
    color: var(--clr-white);
}

.btn-primary:hover {
    background-color: var(--clr-primary-dark);
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: transparent;
    color: var(--clr-text-main);
    border: 1px solid var(--clr-text-main);
}

.btn-secondary:hover {
    background-color: var(--clr-text-main);
    color: var(--clr-white);
}

.btn-primary-small {
    padding: 0.6rem 1.2rem;
    background-color: var(--clr-primary);
    color: var(--clr-white);
}

.btn-primary-small:hover {
    background-color: var(--clr-primary-dark);
}

/* =========================================
   Navbar (Premium Design)
   ========================================= */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 0.8rem 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2); /* Subtle gold border */
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    text-decoration: none;
    transition: var(--transition);
}

.logo:hover {
    opacity: 0.8;
}

.logo-text {
    font-family: var(--ff-heading);
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--clr-text-main);
    letter-spacing: 1px;
}

.nav-logo {
    height: 90px; /* Increased size */
    transition: var(--transition);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    align-items: center;
}

.nav-links a {
    color: var(--clr-text-main);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-family: var(--ff-heading);
    transition: var(--transition);
    position: relative;
}

.nav-links a:not(.btn-primary-small)::after {
    content: '';
    position: absolute;
    width: 0;
    height: 1px;
    bottom: -4px;
    left: 0;
    background-color: var(--clr-primary);
    transition: width 0.3s ease;
}

.nav-links a:hover:not(.btn-primary-small)::after {
    width: 100%;
}

.nav-links a:hover {
    color: var(--clr-primary);
}

.hamburger {
    display: none;
    cursor: pointer;
}

.hamburger .bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    transition: all 0.3s ease-in-out;
    background-color: var(--clr-text-main);
}

/* =========================================
   Hero Section
   ========================================= */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 60px;
}

.hero-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    overflow: hidden;
}

.hero-slider .slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 20%; /* Keep the top/face area visible */
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.hero-slider .slide.active {
    opacity: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.2) 100%);
}

.hero-content {
    max-width: 600px;
    margin-left: 0;
    padding-right: 2rem;
    position: relative; /* Ensure it stays above overlay */
    z-index: 10;
}

.hero h1 {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    color: var(--clr-white);
    text-shadow: 0 2px 5px rgba(0,0,0,0.3);
}

.hero p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 0 1px 4px rgba(0,0,0,0.3);
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
}

.hero-buttons .btn-secondary {
    background-color: var(--clr-white);
    color: var(--clr-text-main);
    border-color: var(--clr-white);
}

.hero-buttons .btn-secondary:hover {
    background-color: var(--clr-primary);
    color: var(--clr-white);
    border-color: var(--clr-primary);
}

/* =========================================
   About
   ========================================= */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.about-text p {
    color: var(--clr-text-light);
    margin-bottom: 1rem;
}

.about-image img {
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* =========================================
   Treatments
   ========================================= */
.section-header {
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.5rem;
}

.treatment-card {
    background: var(--clr-white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: var(--transition);
}

.treatment-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.premium-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    margin-bottom: 3rem;
}

.premium-card .treatment-img img {
    height: 100%;
    object-fit: cover;
}

.treatment-info {
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
}

.treatment-info h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.treatment-desc {
    color: var(--clr-text-light);
    margin-bottom: 1.5rem;
}

.benefits-list {
    margin-bottom: 2rem;
}

.benefits-list li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--clr-text-light);
}

.benefits-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--clr-primary);
    font-weight: bold;
}

.treatment-footer {
    margin-top: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.price {
    font-family: var(--ff-heading);
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--clr-primary);
}

.treatments-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
}

/* =========================================
   Gallery
   ========================================= */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.gallery-item {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    aspect-ratio: 1/1;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 2rem 1rem;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    color: var(--clr-white);
    font-family: var(--ff-heading);
    font-size: 1.2rem;
    text-align: center;
    transform: translateY(100%);
    transition: var(--transition);
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

/* =========================================
   Reviews
   ========================================= */
.reviews-grid {
    display: flex;
    overflow-x: auto;
    gap: 2rem;
    padding-bottom: 2rem;
    scroll-snap-type: x mandatory;
}

.reviews-grid::-webkit-scrollbar {
    height: 8px;
}

.reviews-grid::-webkit-scrollbar-track {
    background: #f1f1f1; 
    border-radius: 4px;
}

.reviews-grid::-webkit-scrollbar-thumb {
    background: var(--clr-primary); 
    border-radius: 4px;
}

.review-card {
    min-width: 320px;
    flex: 0 0 320px;
    scroll-snap-align: start;
    background: var(--clr-white);
    padding: 2rem 1.5rem;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.stars {
    color: var(--clr-primary);
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.review-card p {
    font-style: italic;
    color: var(--clr-text-light);
    margin-bottom: 1.5rem;
}

.reviewer {
    font-family: var(--ff-heading);
    font-weight: 600;
}

/* =========================================
   FAQ
   ========================================= */
.faq-container {
    max-width: 800px;
}

.accordion-item {
    border-bottom: 1px solid #ddd;
    margin-bottom: 1rem;
}

.accordion-header {
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    padding: 1.5rem 0;
    font-family: var(--ff-heading);
    font-size: 1.2rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--clr-text-main);
}

.accordion-header::after {
    content: '+';
    font-size: 1.5rem;
    color: var(--clr-primary);
    transition: var(--transition);
}

.accordion-header.active::after {
    content: '-';
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

.accordion-content p {
    padding-bottom: 1.5rem;
    color: var(--clr-text-light);
}

/* =========================================
   Contact Form
   ========================================= */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-info h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.contact-info p {
    color: var(--clr-text-light);
    margin-bottom: 2rem;
}

.info-item {
    margin-bottom: 1rem;
}

.info-item strong {
    display: block;
    color: var(--clr-primary);
    margin-bottom: 0.25rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

input, select, textarea {
    width: 100%;
    padding: 1rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: var(--ff-body);
    font-size: 1rem;
    background-color: var(--clr-white);
}

input:focus, select:focus, textarea:focus {
    outline: none;
    border-color: var(--clr-primary);
}

/* =========================================
   Footer
   ========================================= */
footer {
    background-color: var(--clr-text-main);
    color: var(--clr-white);
    padding: 3rem 0;
}

footer h3 {
    color: var(--clr-primary);
    font-size: 1.5rem;
}

footer p {
    color: #aaa;
    font-size: 0.9rem;
}

/* =========================================
   WhatsApp Float
   ========================================= */
.whatsapp-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #25D366;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    z-index: 1000;
    transition: var(--transition);
}

.whatsapp-btn:hover {
    transform: scale(1.1);
}

/* =========================================
   Service Categories & Cards
   ========================================= */
.category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.category-card {
    background: var(--clr-white);
    border-radius: 8px;
    overflow: hidden;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: var(--transition);
    display: block;
    cursor: pointer;
}

.category-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.category-img {
    height: 200px;
    width: 100%;
    object-fit: cover;
}

.category-title {
    padding: 1.5rem;
    font-family: var(--ff-heading);
    font-size: 1.3rem;
    color: var(--clr-primary);
}

/* =========================================
   Service Page Headers
   ========================================= */
.service-header {
    position: relative;
    height: 60vh;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--clr-white);
    padding-top: 60px;
}

.service-header-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -2;
}

.service-header-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: -1;
}

.service-header-content {
    max-width: 800px;
    padding: 0 2rem;
}

.service-header-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    color: var(--clr-white);
}

.service-header-content p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

/* =========================================
   Treatment Option Cards
   ========================================= */
.treatment-option-card {
    display: flex;
    background: var(--clr-white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    margin-bottom: 2rem;
}

.treatment-option-img {
    width: 40%;
}

.treatment-option-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.treatment-option-info {
    width: 60%;
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
}

.treatment-meta {
    display: flex;
    gap: 2rem;
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
    font-weight: 500;
}

/* =========================================
   Why Choose Us
   ========================================= */
.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    text-align: center;
}

.feature-card {
    padding: 2rem;
}

.feature-icon {
    font-size: 2.5rem;
    color: var(--clr-primary);
    margin-bottom: 1rem;
}

.feature-title {
    font-family: var(--ff-heading);
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

/* =========================================
   Media Queries
   ========================================= */
@media (max-width: 992px) {
    .hero h1 { font-size: 3rem; }
    .about-grid, .contact-grid { grid-template-columns: 1fr; }
    .premium-card { grid-template-columns: 1fr; }
    .treatments-grid { grid-template-columns: 1fr; }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); }
    .reviews-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    .nav-links {
        position: absolute;
        left: 0;
        top: -400px;
        flex-direction: column;
        background-color: var(--clr-white);
        width: 100%;
        text-align: center;
        transition: 0.4s ease-in-out;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.1);
        padding: 1rem 0;
        z-index: -1;
        opacity: 0;
    }
    .nav-links.active {
        top: 100%;
        opacity: 1;
    }
    .nav-links li { margin: 1rem 0; }
    
    .nav-logo { height: 50px; }
    .logo-text { font-size: 1.3rem; }
    .logo { margin-right: auto; gap: 0.5rem; }
    
    .cart-icon-container { position: absolute !important; right: 80px !important; margin: 0 !important; top: 50%; transform: translateY(-50%); }
    .hamburger { display: block; position: absolute; right: 20px; top: 50%; transform: translateY(-50%); }
    .hamburger.active .bar:nth-child(2) { opacity: 0; }
    .hamburger.active .bar:nth-child(1) { transform: translateY(8px) rotate(45deg); }
    .hamburger.active .bar:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }
    .hero-content { padding-right: 0; text-align: center; margin: 0 auto; }
    .hero-buttons { justify-content: center; }
    .gallery-grid { grid-template-columns: 1fr; }
}

/* =========================================
   Reels Section
   ========================================= */
.reels {
    padding: 5rem 0;
    overflow: hidden;
}
.reels-swiper {
    width: 100%;
    padding-top: 50px;
    padding-bottom: 50px;
}
.reels-swiper .swiper-slide {
    background-position: center;
    background-size: cover;
    width: 300px;
    height: 500px;
    background-color: #000;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0,0,0,0.2);
    position: relative;
}
.reels-swiper .swiper-slide video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    background: linear-gradient(45deg, var(--clr-primary), var(--clr-primary-dark));
}
.reel-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 1.5rem;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    color: var(--clr-white);
    pointer-events: none;
}
.reel-name {
    font-size: 1.1rem;
    font-weight: 600;
}
.sound-toggle-btn {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(0,0,0,0.4);
    border: none;
    color: white;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    cursor: pointer;
    backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
}
.play-pause-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0,0,0,0.2);
    color: white;
    font-size: 3rem;
    opacity: 0;
    transition: opacity 0.3s;
    pointer-events: none;
    z-index: 5;
}
.swiper-slide:hover .play-pause-overlay.paused {
    opacity: 1;
}


/* =========================================
   Review Form Styles
   ========================================= */
.review-form-container {
    max-width: 600px;
    margin: 3rem auto 0;
    padding: 2rem;
    background-color: var(--clr-white);
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    text-align: center;
}
.review-form-container h3 {
    font-family: var(--ff-heading);
    color: var(--clr-text-main);
    margin-bottom: 1rem;
}
.star-rating {
    font-size: 2rem;
    color: #ccc;
    cursor: pointer;
    margin-bottom: 1rem;
}
.star-rating span {
    transition: color 0.2s;
}
.star-rating span.active, .star-rating span:hover, .star-rating span:hover ~ span {
    color: #FACC15; /* Gold color */
}
.star-rating:hover span {
    color: #ccc;
}
.star-rating:hover span:hover,
.star-rating:hover span:hover ~ span {
    /* To handle LTR hover properly we actually use JS to fill */
}
.star-rating span.hover-active {
    color: #FACC15;
}


/* =========================================
   Instagram Integration Section
   ========================================= */
.instagram-section {
    padding: 5rem 0;
    background-color: #faf9f6;
}
.insta-card {
    max-width: 800px;
    margin: 0 auto;
    background: var(--clr-white);
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.06);
    overflow: hidden;
    position: relative;
}
.insta-header {
    display: flex;
    align-items: center;
    padding: 2rem;
    border-bottom: 1px solid #eee;
    justify-content: center;
    gap: 2rem;
}
.insta-profile-pic {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--clr-primary);
    padding: 3px;
}
.insta-stats {
    display: flex;
    gap: 2rem;
    text-align: center;
}
.stat strong {
    display: block;
    font-size: 1.5rem;
    font-family: var(--ff-heading);
    color: var(--clr-text-main);
}
.stat span {
    font-size: 0.9rem;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.insta-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 4px;
    position: relative;
}
.insta-item {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
}
.insta-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}
.insta-item:hover img {
    transform: scale(1.05);
}
.play-icon {
    position: absolute;
    top: 10px;
    right: 10px;
    color: white;
    font-size: 1.2rem;
    background: rgba(0,0,0,0.3);
    width: 25px;
    height: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}
.insta-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: linear-gradient(to top, rgba(230, 190, 138, 0.9) 0%, rgba(230, 190, 138, 0) 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    padding-bottom: 2rem;
    pointer-events: none;
}
.insta-overlay h3 {
    color: white;
    font-family: var(--ff-heading);
    font-size: 2rem;
    margin-bottom: 1rem;
    text-shadow: 0 2px 4px rgba(0,0,0,0.2);
}
.insta-arrow-btn {
    pointer-events: auto;
    background: white;
    color: var(--clr-primary);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 1.5rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    transition: transform 0.3s ease;
}
.insta-arrow-btn:hover {
    transform: translateY(-5px);
}
.insta-footer {
    text-align: center;
    padding: 1.5rem;
    background: var(--clr-white);
}
.insta-follow-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 2rem;
    background: transparent;
    border: 2px solid var(--clr-text-main);
    color: var(--clr-text-main);
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}
.insta-follow-btn:hover {
    background: var(--clr-text-main);
    color: white;
}


/* =========================================
   Additional Mobile Responsiveness Fixes
   ========================================= */
@media (max-width: 768px) {
    section {
        padding: 3rem 0;
    }
    .insta-header {
        flex-direction: column;
        gap: 0.5rem;
        padding: 1.5rem 1rem;
    }
    .insta-stats {
        gap: 1.5rem;
    }
    .review-form-container {
        padding: 1.5rem 1rem;
        margin-top: 2rem;
        border-radius: 8px;
    }
    /* Force date/time inputs to stack on mobile */
    .contact-form form > div[style*="grid-template-columns: 1fr 1fr"] {
        grid-template-columns: 1fr !important;
    }
}

@media (max-width: 480px) {
    .nav-logo { height: 40px; }
    .logo-text { font-size: 1.1rem; }
    .logo { gap: 0.3rem; }
    
    /* Slightly smaller reels for very small screens */
    .reels-swiper .swiper-slide {
        width: 260px;
        height: 440px;
    }
    .insta-overlay h3 {
        font-size: 1.5rem;
    }
    .insta-overlay {
        padding-bottom: 1rem;
    }
    .hero h1 {
        font-size: 2.2rem;
    }
}


/* =========================================
   Fix for Features Grid & Hero Buttons
   ========================================= */
@media (max-width: 992px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 1.5rem;
    }
}
@media (max-width: 768px) {
    .hero {
        height: 60vh !important;
        min-height: 450px !important;
        padding-top: 100px !important;
    }
    .features-grid {
        grid-template-columns: 1fr !important;
        gap: 1rem;
    }
    .feature-card {
        padding: 1rem 0;
    }
    .hero-buttons {
        display: flex;
        flex-direction: column;
        gap: 1rem;
        width: 100%;
        max-width: 300px;
        margin: 1rem auto 0;
    }
    .hero-buttons a {
        width: 100%;
    }
}


/* =========================================
   Fix for Fixed Navbar Overlap
   ========================================= */
.hero, .service-header {
    padding-top: 140px !important;
}

/* =========================================
   Add to Cart System Styles
   ========================================= */

/* Navbar Cart Icon */
.cart-icon-container {
    position: relative;
    cursor: pointer;
    display: flex;
    align-items: center;
    color: var(--clr-text-main);
    transition: var(--transition);
}

.cart-icon-container:hover {
    color: var(--clr-primary);
}

.cart-icon-badge {
    position: absolute;
    top: -8px;
    right: -10px;
    background-color: var(--clr-primary);
    color: var(--clr-white);
    font-size: 0.75rem;
    font-weight: bold;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Dual Buttons for Service Cards */
.action-buttons {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    margin-top: 1rem;
}

.btn-secondary-small {
    padding: 0.6rem 1.2rem;
    background-color: transparent;
    color: var(--clr-primary);
    border: 1px solid var(--clr-primary);
    font-family: var(--ff-body);
    text-transform: uppercase;
    font-size: 0.8rem;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
}

.btn-secondary-small:hover {
    background-color: var(--clr-primary);
    color: var(--clr-white);
}

/* Cart Sidebar Overlay */
.cart-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease;
}

.cart-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Cart Sidebar */
.cart-sidebar {
    position: fixed;
    top: 0;
    right: -400px;
    width: 100%;
    max-width: 400px;
    height: 100vh;
    background: var(--clr-white);
    z-index: 2000;
    box-shadow: -5px 0 15px rgba(0,0,0,0.1);
    transition: right 0.3s ease;
    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;
}

.cart-header h3 {
    margin: 0;
    color: var(--clr-primary);
}

.close-cart {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--clr-text-light);
    transition: color 0.3s;
}

.close-cart:hover {
    color: #ff4d4d;
}

.cart-items {
    flex: 1;
    overflow-y: auto;
    padding: 1.5rem;
}

.cart-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #eee;
    padding-bottom: 1rem;
    margin-bottom: 1rem;
}

.cart-item-info h4 {
    font-size: 1.1rem;
    margin-bottom: 0.2rem;
}

.cart-item-info p {
    font-size: 0.9rem;
    color: var(--clr-text-light);
    margin: 0;
}

.cart-item-remove {
    background: #ff4d4d;
    color: white;
    border: none;
    border-radius: 4px;
    padding: 0.3rem 0.6rem;
    cursor: pointer;
    font-size: 0.8rem;
}

.cart-footer {
    padding: 1.5rem;
    border-top: 1px solid #eee;
    background: var(--clr-bg-alt);
}

.cart-total {
    display: flex;
    justify-content: space-between;
    font-weight: bold;
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
}

.cart-checkout-btn {
    width: 100%;
    text-align: center;
}

/* =========================================
   Select Treatments Page
   ========================================= */

.select-treatments-page .booking-main {
    background: #fff;
    padding: 2rem;
    border: 1px solid #eee;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.02);
}

.treatment-tabs {
    display: flex;
    gap: 1.5rem;
    border-bottom: 2px solid #f0f0f0;
    margin-bottom: 2rem;
    overflow-x: auto;
    white-space: nowrap;
    padding-bottom: 0.5rem;
}

.treatment-tabs::-webkit-scrollbar {
    display: none;
}
.treatment-tabs {
    -ms-overflow-style: none;  /* IE and Edge */
    scrollbar-width: none;  /* Firefox */
}

.tab-btn {
    background: none;
    border: none;
    font-size: 1rem;
    font-weight: 600;
    color: #888;
    cursor: pointer;
    padding: 0.5rem 0;
    position: relative;
    font-family: var(--ff-body);
    transition: color 0.3s ease;
}

.tab-btn:hover {
    color: #333;
}

.tab-btn.active {
    color: #000;
}

.tab-btn.active::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 100%;
    height: 2px;
    background: #000;
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
    animation: fadeIn 0.4s ease forwards;
}

.tab-section-title {
    font-size: 1.6rem;
    font-family: var(--ff-body);
    margin-bottom: 1.5rem;
    color: #000;
    font-weight: 700;
}

.service-list-item {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 1.5rem 0;
    border-bottom: 1px solid #eee;
}

.service-list-item:last-child {
    border-bottom: none;
}

.service-list-info {
    flex: 1;
    padding-right: 2rem;
}

.service-list-info h3 {
    font-size: 1.1rem;
    font-family: var(--ff-body);
    color: #000;
    margin-bottom: 0.3rem;
}

.service-meta {
    font-size: 0.9rem;
    color: #555;
    margin-bottom: 0.8rem;
    font-weight: 500;
}

.service-desc {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.5;
    margin-bottom: 0.5rem;
}

.read-more {
    font-size: 0.9rem;
    color: #000;
    text-decoration: underline;
    font-weight: 600;
}

.btn-add-inline {
    background: #000;
    color: #fff;
    border: 1px solid #000;
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-weight: 600;
    cursor: pointer;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.btn-add-inline:hover {
    background: #fff;
    color: #000;
}

@media (max-width: 600px) {
    .booking-main {
        padding: 1rem;
    }
    .service-list-item {
        flex-direction: column;
        align-items: stretch;
        gap: 0.8rem;
    }
    .btn-add-inline {
        margin-top: 0.5rem;
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
        padding: 0.8rem 1.5rem;
    }
    .service-list-info {
        padding-right: 0;
        width: 100%;
    }
}

/* =========================================
   Booking Page Structure
   ========================================= */
.booking-page-container {
    display: flex;
    max-width: 1200px;
    margin: 2rem auto;
    padding: 0 5%;
    gap: 3rem;
    align-items: flex-start;
}

.booking-main {
    flex: 1;
    min-width: 0;
}

.booking-sidebar {
    width: 400px;
    background: #fff;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    position: sticky;
    top: 100px;
}

/* Sidebar Details */
.summary-section {
    margin-bottom: 2rem;
}

.summary-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 1rem;
    border-bottom: 1px solid #eee;
    padding-bottom: 0.5rem;
}

.summary-header h3 {
    font-size: 1.2rem;
    margin-bottom: 0;
}

.edit-btn {
    font-size: 0.9rem;
    text-decoration: underline;
    color: #666;
}

.summary-content {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #444;
}

.btn-continue {
    width: 100%;
    background: var(--clr-primary, #D4AF37);
    color: #fff;
    border: none;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    transition: background 0.3s ease;
}

.btn-continue:hover:not([disabled]) {
    background: var(--clr-primary-dark, #B5952F);
}

.btn-continue[disabled] {
    background: #ccc;
    cursor: not-allowed;
}

@media (max-width: 992px) {
    .booking-page-container {
        flex-direction: column;
        align-items: stretch;
    }
    .booking-main {
        width: 100%;
        max-width: 100%;
        overflow: hidden;
    }
    .booking-sidebar {
        width: 100%;
        position: static;
        margin-top: 2rem;
    }
}
