/* Buff Nail Studio - Custom Styles */

/* ==================== Font Face Declarations ==================== */
@font-face {
    font-family: 'Genty';
    src: url('/fonts/Genty.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Aileron';
    src: url('/fonts/Aileron-Regular.otf') format('opentype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Aileron';
    src: url('/fonts/Aileron-Thin.otf') format('opentype');
    font-weight: 200;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Aileron';
    src: url('/fonts/Aileron-UltraLight.otf') format('opentype');
    font-weight: 100;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Abhaya Libre';
    src: url('/fonts/AbhayaLibre.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

/* ==================== CSS Variables ==================== */
:root {
    --primary-burgundy: #6d2932;
    --primary-burgundy-light: #8b3a45;
    --primary-burgundy-dark: #4a1d24;
    --accent-rose: #d4a5a5;
    --accent-gold: #c9a961;
    --bg-cream: #faf8f5;
    --bg-white: #ffffff;
    --text-dark: #2c2c2c;
    --text-light: #6b6b6b;
    --border-light: #e8e6e3;
    
    --font-heading: 'Abhaya Libre', serif;
    --font-body: 'Abhaya Libre', serif;
    
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.16);
}

/* ==================== Reset & Base ==================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 20px;
}

body {
    font-family: var(--font-body);
    font-weight: normal;
    color: var(--text-dark);
    background-color: var(--bg-cream);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

/* ==================== Navigation ==================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
    z-index: 1000;
    padding: 1.2rem 0;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: 'Genty', serif !important;
    font-size: 1.8rem;
    font-weight: normal !important;
    color: var(--primary-burgundy);
    letter-spacing: 1px;
}

.nav-links {
    display: flex;
    gap: 2.5rem;
}

.nav-links a {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-dark);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-burgundy);
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-links a:hover {
    color: var(--primary-burgundy);
}

/* ==================== Hero Section ==================== */
.hero {
    position: relative;
    height: 55vh;
    min-height: 450px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-burgundy-dark) 0%, var(--primary-burgundy) 50%, var(--primary-burgundy-light) 100%);
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="2" fill="white" opacity="0.1"/></svg>');
    background-size: 50px 50px;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, transparent 0%, rgba(0,0,0,0.3) 100%);
}

.hero-content {
    position: relative;
    text-align: center;
    color: white;
    z-index: 1;
    padding: 2rem 2rem 0 2rem;
    margin-top: 3rem;
}

.hero-title {
    font-family: 'Genty' !important;
    font-size: 5rem;
    font-weight: normal !important;
    margin-bottom: 0.5rem;
    letter-spacing: 3px;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 1.5rem;
    font-weight: 400;
    margin-bottom: 0.5rem;
    letter-spacing: 2px;
    opacity: 0.95;
}

.hero-tagline {
    font-size: 1.2rem;
    font-weight: 300;
    margin-bottom: 0.5rem;
    letter-spacing: 1px;
    opacity: 0.9;
}

.hero-location {
    font-size: 1rem;
    font-weight: 300;
    margin-bottom: 2.5rem;
    opacity: 0.85;
    letter-spacing: 1px;
}

.cta-button {
    display: inline-block;
    padding: 1rem 3rem;
    background: white;
    color: var(--primary-burgundy);
    font-weight: 600;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 50px;
    box-shadow: var(--shadow-lg);
    transition: all 0.3s ease;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
    background: var(--accent-rose);
    color: white;
}

/* ==================== Sections ==================== */
section {
    padding: 5rem 0;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    font-size: 3rem;
    color: var(--primary-burgundy);
    margin-bottom: 1rem;
}

.divider {
    width: 80px;
    height: 3px;
    background: var(--accent-gold);
    margin: 0 auto 1rem;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

/* ==================== About Section ==================== */
.about-section {
    background: var(--bg-white);
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.lead {
    font-size: 1.3rem;
    color: var(--primary-burgundy);
    font-weight: 500;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.about-content p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 2rem;
    background: var(--bg-cream);
    border-radius: 15px;
    transition: transform 0.3s ease;
}

.stat:hover {
    transform: translateY(-5px);
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-burgundy);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.95rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ==================== Services Section ==================== */
.services-section {
    background: var(--bg-cream);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.service-card {
    background: var(--bg-white);
    padding: 3rem 2rem;
    border-radius: 20px;
    box-shadow: var(--shadow-sm);
    text-align: center;
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.service-card h3 {
    font-size: 1.8rem;
    color: var(--primary-burgundy);
    margin-bottom: 1rem;
}

.service-card p {
    font-size: 1rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.service-features {
    list-style: none;
    text-align: left;
}

.service-features li {
    padding: 0.5rem 0;
    color: var(--text-dark);
    position: relative;
    padding-left: 1.5rem;
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-gold);
    font-weight: bold;
}

/* ==================== Gallery Section ==================== */
.gallery-section {
    background: var(--bg-white);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    aspect-ratio: 1;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.gallery-item:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-md);
}

.gallery-item:hover img {
    transform: scale(1.1);
    transition: transform 0.3s ease;
}

.gallery-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 500;
    color: white;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

.gallery-cta {
    text-align: center;
    margin-top: 3rem;
    font-size: 1.2rem;
}

.instagram-link {
    color: var(--primary-burgundy);
    font-weight: 600;
    text-decoration: underline;
}

.instagram-link:hover {
    color: var(--primary-burgundy-light);
}

/* ==================== Testimonials Section ==================== */
.testimonials-section {
    background: var(--primary-burgundy);
    color: white;
}

.testimonials-section .section-header h2 {
    color: white;
}

.testimonials-section .divider {
    background: var(--accent-gold);
}

.testimonials-carousel-wrapper {
    position: relative;
    margin-top: 3rem;
    padding: 0 4rem;
    overflow: hidden;
}

.testimonials-grid {
    display: flex;
    gap: 2.5rem;
    transition: transform 0.4s ease;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 2.5rem;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    flex: 0 0 calc(33.333% - 1.667rem);
    min-width: 300px;
    display: flex;
    flex-direction: column;
}

.carousel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    color: white;
}

.carousel-arrow:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-50%) scale(1.1);
}

.carousel-arrow-left {
    left: 0;
}

.carousel-arrow-right {
    right: 0;
}

.stars {
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.testimonial-card p {
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.testimonial-author {
    font-style: italic;
    font-size: 0.95rem;
    opacity: 0.9;
    text-align: left;
    margin-top: auto;
}

/* ==================== Contact Section ==================== */
.contact-section {
    background: var(--bg-cream);
}

.contact-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 4rem;
    margin-top: 3rem;
}

.contact-info h3 {
    font-size: 2rem;
    color: var(--primary-burgundy);
    margin-bottom: 2rem;
}

.info-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    align-items: flex-start;
}

.info-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.info-item strong {
    display: block;
    color: var(--primary-burgundy);
    font-size: 1.1rem;
    margin-bottom: 0.3rem;
}

.info-item p {
    color: var(--text-light);
    line-height: 1.6;
}

.contact-cta {
    background: var(--bg-white);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    text-align: center;
}

.contact-cta h3 {
    font-size: 1.8rem;
    color: var(--primary-burgundy);
    margin-bottom: 0.8rem;
}

.contact-cta p {
    font-size: 1rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.cta-button-large {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: var(--primary-burgundy);
    color: white;
    font-weight: 600;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 50px;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
}

.cta-button-large:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
    background: var(--primary-burgundy-light);
}

.booking-buttons {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    margin-bottom: 1rem;
}

.booking-buttons .cta-button-large {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.booking-buttons .cta-button-large svg {
    flex-shrink: 0;
}

.email-button {
    border: none;
    cursor: pointer;
    text-decoration: none;
    font-family: inherit;
}

/* Email Copy Notification */
.email-notification {
    position: fixed;
    top: 20px;
    right: 20px;
    background: var(--primary-burgundy);
    color: white;
    padding: 1rem 2rem;
    border-radius: 10px;
    box-shadow: var(--shadow-lg);
    font-weight: 500;
    font-size: 1rem;
    opacity: 0;
    transform: translateY(-20px);
    transition: all 0.3s ease;
    pointer-events: none;
    z-index: 10000;
}

.email-notification.show {
    opacity: 1;
    transform: translateY(0);
}

.social-info {
    margin-top: 1.5rem;
    font-size: 0.95rem;
    color: var(--text-light);
}

/* ==================== Footer ==================== */
.footer {
    background: var(--primary-burgundy-dark);
    color: white;
    padding: 3rem 0 1.5rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-brand h3 {
    font-family: 'Genty', serif;
    font-size: 1.8rem;
    font-weight: normal;
    margin-bottom: 0.5rem;
}

.footer-brand p,
.footer-info p {
    opacity: 0.8;
    line-height: 1.8;
}

.footer-social {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-social a {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    transition: all 0.3s ease;
}

.footer-social a svg {
    flex-shrink: 0;
}

.footer-social a:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    opacity: 0.7;
    font-size: 0.9rem;
}

/* ==================== Pricing Section ==================== */
.pricing-section {
    background: var(--bg-cream);
}

.pricing-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.pricing-card {
    background: var(--bg-white);
    padding: 3rem 2.5rem;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.pricing-card h3 {
    font-size: 2rem;
    color: var(--primary-burgundy);
    margin-bottom: 2rem;
    text-align: center;
    border-bottom: 2px solid var(--accent-gold);
    padding-bottom: 1rem;
}

.price-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.price-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    border-bottom: 1px solid var(--border-light);
}

.price-item.special-note {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
}

.service-name {
    font-size: 1.1rem;
    color: var(--text-dark);
    font-weight: 500;
}

.service-price {
    font-size: 1.3rem;
    color: var(--primary-burgundy);
    font-weight: 600;
}

.price-item.special-note .service-price {
    font-size: 1rem;
    font-style: italic;
    color: var(--text-light);
}

.pricing-note {
    text-align: center;
    margin-top: 3rem;
    font-size: 1.1rem;
    color: var(--primary-burgundy);
    font-weight: 500;
    padding: 1.5rem;
    background: var(--bg-white);
    border-radius: 15px;
    box-shadow: var(--shadow-sm);
}

/* ==================== Aftercare Section ==================== */
.aftercare-section {
    background: var(--bg-white);
}

.aftercare-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.aftercare-card {
    background: var(--bg-cream);
    padding: 2.5rem 2rem;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.aftercare-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent-gold);
}

.aftercare-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.aftercare-card h3 {
    font-size: 1.5rem;
    color: var(--primary-burgundy);
    margin-bottom: 1rem;
}

.aftercare-card p {
    font-size: 1rem;
    color: var(--text-light);
    line-height: 1.7;
}

/* ==================== Policy Box ==================== */
.policy-box {
    background: var(--bg-cream);
    padding: 1.5rem;
    border-radius: 15px;
    margin-bottom: 1.5rem;
    border-left: 4px solid var(--accent-gold);
}

.policy-box p {
    margin-bottom: 0.6rem;
    line-height: 1.5;
}

.policy-box p:last-child {
    margin-bottom: 0;
}

.policy-note {
    color: inherit;
    font-weight: normal;
}

.info-item em {
    font-size: 0.95rem;
    display: block;
    margin-top: 0.3rem;
}

/* Studio Images Section */
.studio-images-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.studio-image {
    width: 100%;
    height: 350px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}

/* ==================== Responsive Design ==================== */
@media (max-width: 768px) {
    .nav-links {
        gap: 1rem;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .nav-links a {
        font-size: 0.8rem;
        padding: 0.3rem 0.8rem;
    }
    
    .hero {
        height: 62vh;
        min-height: 440px;
    }
    
    .hero-content {
        margin-top: 2.5rem;
        padding: 2rem 1rem 0 1rem;
    }
    
    .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-subtitle {
        font-size: 0.95rem;
    }
    
    .hero-tagline {
        font-size: 0.95rem;
    }
    
    .hero-location {
        font-size: 0.85rem;
    }
    
    .cta-button {
        margin-top: 0.5rem;
    }
    
    .studio-images-section {
        padding: 0.5rem 0 2rem 0 !important;
    }
    
    .studio-images-grid {
        display: flex;
        overflow-x: auto;
        gap: 1rem;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        padding: 0 1rem;
    }
    
    .studio-image {
        flex: 0 0 75%;
        height: 280px;
        scroll-snap-align: start;
    }
    
    .section-header h2 {
        font-size: 1.8rem;
    }
    
    .services-grid {
        display: flex;
        overflow-x: auto;
        gap: 1.5rem;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        padding: 0 1rem;
        margin-top: 2rem;
    }
    
    .service-card {
        flex: 0 0 85%;
        scroll-snap-align: start;
    }
    
    .gallery-grid {
        display: flex;
        overflow-x: auto;
        gap: 1rem;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        padding: 0 1rem;
        margin-top: 2rem;
    }
    
    .gallery-item {
        flex: 0 0 75%;
        scroll-snap-align: start;
    }
    
    .testimonials-carousel-wrapper {
        padding: 0;
        margin-top: 2rem;
    }
    
    .testimonials-grid {
        display: flex;
        overflow-x: auto;
        gap: 1.5rem;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        padding: 0 1rem;
        transform: none !important;
    }
    
    .testimonial-card {
        flex: 0 0 85%;
        scroll-snap-align: start;
        min-width: 280px;
    }
    
    .carousel-arrow {
        display: none;
    }
    
    .aftercare-grid {
        display: flex;
        overflow-x: auto;
        gap: 1.5rem;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        padding: 0 1rem;
        margin-top: 2rem;
    }
    
    .aftercare-card {
        flex: 0 0 85%;
        scroll-snap-align: start;
    }
    
    .contact-content,
    .pricing-content {
        grid-template-columns: 1fr;
    }
    
    html {
        scroll-padding-top: 100px;
    }
}

@media (max-width: 480px) {
    /* Reduce overall section padding */
    section {
        padding: 2.5rem 0;
    }
    
    .container {
        padding: 0 0.75rem;
    }
    
    .logo {
        font-size: 1.1rem;
    }
    
    /* Reduce hero height and spacing */
    .hero {
        height: 55vh;
        min-height: 400px;
    }
    
    .hero-content {
        margin-top: 9rem;
        padding: 1rem 0.5rem 0 0.5rem;
    }
    
    .hero-title {
        font-size: 1.8rem;
        margin-bottom: 0.3rem;
    }
    
    .hero-subtitle {
        font-size: 0.85rem;
        margin-bottom: 0.3rem;
    }
    
    .hero-tagline {
        font-size: 0.85rem;
        margin-bottom: 0.3rem;
    }
    
    .hero-location {
        font-size: 0.8rem;
        margin-bottom: 1.2rem;
    }
    
    .nav-container {
        flex-direction: column;
        gap: 0.5rem;
        padding: 0.8rem 1rem;
    }
    
    .nav-links {
        gap: 0.5rem;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .nav-links a {
        font-size: 0.7rem;
        padding: 0.25rem 0.5rem;
    }
    
    .cta-button {
        font-size: 0.9rem;
        padding: 0.7rem 1.5rem;
        margin-top: 0rem;
    }
    
    /* Reduce section header spacing */
    .section-header {
        margin-bottom: 1.5rem;
    }
    
    .section-header h2 {
        font-size: 1.5rem;
        margin-bottom: 0.5rem;
    }
    
    /* Reduce studio images spacing */
    .studio-images-section {
        padding: 1.5rem 0 1.5rem 0 !important;
    }
    
    .studio-images-grid {
        padding: 0 0.75rem;
        gap: 0.75rem;
    }
    
    .studio-image {
        flex: 0 0 70%;
        height: 200px;
        border-radius: 8px;
    }
    
    /* Compact services section */
    .services-grid {
        padding: 0 0.75rem;
        gap: 1rem;
        margin-top: 1rem;
    }
    
    .service-card {
        flex: 0 0 80%;
        padding: 1.5rem 1.25rem;
    }
    
    /* Compact gallery */
    .gallery-grid {
        padding: 0 0.75rem;
        gap: 0.75rem;
        margin-top: 1rem;
    }
    
    .gallery-item {
        flex: 0 0 70%;
    }
    
    /* Compact testimonials */
    .testimonials-carousel-wrapper {
        margin-top: 1rem;
    }
    
    .testimonials-grid {
        padding: 0 0.75rem;
        gap: 1rem;
    }
    
    .testimonial-card {
        flex: 0 0 85%;
        padding: 1.25rem;
    }
    
    /* Compact aftercare */
    .aftercare-grid {
        padding: 0 0.75rem;
        gap: 1rem;
        margin-top: 1rem;
    }
    
    .aftercare-card {
        flex: 0 0 85%;
        padding: 1.25rem;
    }
    
    /* Reduce stats spacing */
    .stats {
        gap: 1.5rem;
        margin-top: 1.5rem;
    }
    
    /* Compact about content */
    .about-content p {
        margin-bottom: 0.75rem;
    }
    
    html {
        scroll-padding-top: 100px;
    }
}

/* ==================== Shop Page Styles ==================== */
.shop-section {
    padding: 4rem 0;
    background-color: var(--background-light);
}

.section-intro {
    text-align: center;
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-top: 1rem;
    font-family: 'Aileron', sans-serif;
}

.shop-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.product-card {
    background: white;
    cursor: pointer;
    transition: transform 0.2s ease;
    text-align: center;
}

.product-card:hover {
    transform: translateY(-3px);
}

.product-image-wrapper {
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    background-color: #f5f5f5;
    border-radius: 4px;
    margin-bottom: 1rem;
}

.product-image-carousel {
    position: relative;
    width: 100%;
    height: 280px;
    overflow: hidden;
    background-color: var(--background-light);
}

.product-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.3s ease;
}

.product-card:hover .product-image {
    opacity: 0.85;
}

.product-info {
    padding: 0.5rem 0;
}

.product-name {
    font-family: 'Genty', serif;
    font-size: 1.1rem;
    color: var(--primary-burgundy);
    margin: 0 0 0.5rem 0;
    font-weight: normal;
    letter-spacing: 0.5px;
}

.product-price {
    font-family: 'Aileron', sans-serif;
    font-size: 0.95rem;
    color: var(--text-muted);
    margin: 0;
}

.product-description {
    font-family: 'Aileron', sans-serif;
    color: var(--text-muted);
    line-height: 1.4;
    margin-bottom: 0.75rem;
    font-size: 0.85rem;
}

.product-description p {
    margin-bottom: 0.5rem;
}

.product-description strong {
    color: var(--primary-burgundy);
}

.product-pricing {
    background-color: var(--background-light);
    padding: 0.75rem;
    border-radius: 6px;
    margin-bottom: 0.75rem;
}

.price-option {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.3rem 0;
}

.price-option:not(:last-child) {
    border-bottom: 1px solid rgba(109, 41, 50, 0.1);
    margin-bottom: 0.3rem;
}

.price-label {
    font-family: 'Aileron', sans-serif;
    font-size: 0.8rem;
    color: var(--text-muted);
}

.price {
    font-family: 'Genty', serif;
    font-size: 1.1rem;
    color: var(--primary-burgundy);
    font-weight: bold;
}

.product-features {
    margin-bottom: 1rem;
}

.product-features ul {
    list-style: none;
    padding: 0;
}

.product-features li {
    font-family: 'Aileron', sans-serif;
    padding: 0.25rem 0;
    color: var(--text-muted);
    line-height: 1.4;
    font-size: 0.8rem;
}

.product-cta {
    border-top: 1px solid var(--background-light);
    padding-top: 0.75rem;
    text-align: center;
}

.contact-prompt {
    font-family: 'Aileron', sans-serif;
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-bottom: 0;
}

.social-buttons-mini {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.social-btn-mini {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-family: 'Aileron', sans-serif;
    font-size: 0.95rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-btn-mini.instagram {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: white;
}

.social-btn-mini.facebook {
    background-color: #1877f2;
    color: white;
}

.social-btn-mini:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.order-info-section {
    margin-top: 4rem;
    display: flex;
    justify-content: center;
}

.order-info-card {
    background: white;
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    text-align: center;
    max-width: 800px;
    width: 100%;
}

.order-info-card h3 {
    font-family: 'Genty', serif;
    font-size: 1.8rem;
    color: var(--primary-burgundy);
    margin-bottom: 1.5rem;
}

.order-info-card p {
    font-family: 'Aileron', sans-serif;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 2rem;
    font-size: 1.05rem;
}

.contact-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 20px;
}

/* Product Modal */
.product-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 1000;
    overflow-y: auto;
    padding: 2rem;
}

.product-modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--primary-burgundy);
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.modal-close:hover {
    background: var(--primary-burgundy-dark);
    transform: rotate(90deg);
}

.modal-image-carousel {
    position: relative;
    width: 100%;
    height: 400px;
    overflow: hidden;
    background-color: var(--background-light);
    border-radius: 16px 16px 0 0;
}

.modal-carousel-images {
    position: relative;
    width: 100%;
    height: 100%;
}

.modal-carousel-images .modal-product-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.modal-carousel-images .modal-product-image.active {
    opacity: 1;
}

.modal-image-carousel .carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(109, 41, 50, 0.8);
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.modal-image-carousel .carousel-btn:hover {
    background-color: var(--primary-burgundy);
}

.modal-image-carousel .carousel-btn.prev {
    left: 1rem;
}

.modal-image-carousel .carousel-btn.next {
    right: 1rem;
}

.modal-image-carousel .carousel-dots {
    position: absolute;
    bottom: 1rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.5rem;
    z-index: 10;
}

.modal-image-carousel .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.modal-image-carousel .dot.active {
    background-color: white;
}

.modal-image-carousel .dot:hover {
    background-color: rgba(255, 255, 255, 0.8);
}

.modal-body {
    padding: 1.5rem 2rem 2rem 2rem;
}

.modal-title {
    font-family: 'Genty', serif;
    font-size: 2.5rem;
    color: var(--primary-burgundy);
    margin-bottom: 1rem;
}

.modal-subtitle {
    font-family: 'Aileron', sans-serif;
    font-size: 1.2rem;
    color: var(--accent-rose);
    margin-bottom: 2rem;
    font-style: italic;
}

.modal-description {
    font-family: 'Aileron', sans-serif;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

.modal-description p {
    margin-bottom: 0.75rem;
}

.modal-description p:last-child {
    margin-bottom: 0;
}

.modal-features {
    margin-bottom: 1.5rem;
}

.modal-pricing {
    margin-bottom: 0;
}

.modal-pricing h4 {
    font-family: 'Genty', serif;
    font-size: 1.3rem;
    color: var(--primary-burgundy);
    margin: 0 0 1rem 0;
}

.modal-pricing .price-option {
    padding: 0.5rem 0;
}

.modal-pricing .price-label {
    font-size: 0.95rem;
}

.modal-pricing .price {
    font-size: 1.1rem;
}

.modal-features h4 {
    font-family: 'Genty', serif;
    font-size: 1.3rem;
    color: var(--primary-burgundy);
    margin-bottom: 1rem;
}

.modal-features ul {
    list-style: none;
    padding: 0;
}

.modal-features li {
    font-family: 'Aileron', sans-serif;
    padding: 0.5rem 0;
    color: var(--text-muted);
    line-height: 1.6;
    font-size: 0.95rem;
}

.modal-cta {
    text-align: center;
    padding-top: 1.5rem;
    border-top: 2px solid var(--background-light);
}

.modal-cta p {
    font-family: 'Aileron', sans-serif;
    font-size: 1rem;
    color: var(--text-muted);
}

/* Responsive Shop Page */
@media (max-width: 1200px) {
    .shop-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 900px) {
    .shop-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .shop-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .product-name {
        font-size: 0.95rem;
    }
    
    .product-price {
        font-size: 0.85rem;
    }
    
    .order-info-card {
        padding: 2rem 1.5rem;
    }
    
    .order-info-card h3 {
        font-size: 1.5rem;
    }
    
    .order-info-card p {
        font-size: 1rem;
    }
    
    .contact-buttons {
        flex-direction: column;
    }
    
    .product-modal {
        padding: 1rem;
    }
    
    .modal-image-carousel {
        height: 250px;
    }
    
    .modal-image-carousel .carousel-btn {
        width: 35px;
        height: 35px;
        font-size: 1.2rem;
    }
    
    .modal-image-carousel .carousel-btn.prev {
        left: 0.5rem;
    }
    
    .modal-image-carousel .carousel-btn.next {
        right: 0.5rem;
    }
    
    .modal-body {
        padding: 1.5rem;
    }
    
    .modal-title {
        font-size: 2rem;
    }
    
    .modal-subtitle {
        font-size: 1rem;
    }
}
