* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

/* Enhanced focus states for accessibility */
*:focus-visible {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
    border-radius: 4px;
}

/* Loading animation for images */
img {
    transition: opacity 0.3s ease;
}

img[src=""] {
    opacity: 0;
}

:root {
    --primary-color: #d4a5a5;
    --primary-dark: #c89696;
    --primary-light: #e8c4c4;
    --secondary-color: #2c2c2c;
    --accent-color: #f8f0f0;
    --accent-pink: #f5e1e1;
    --accent-lavender: #e8d5e8;
    --text-dark: #2d2d2d;
    --text-light: #666;
    --white: #ffffff;
    --gradient: linear-gradient(135deg, #d4a5a5 0%, #e8c4c4 50%, #f5e1e1 100%);
    --gradient-soft: linear-gradient(135deg, #f8f0f0 0%, #f5e1e1 50%, #e8d5e8 100%);
    --shadow-soft: 0 10px 40px rgba(212, 165, 165, 0.15);
    --shadow-hover: 0 15px 50px rgba(212, 165, 165, 0.25);
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
    background: linear-gradient(180deg, #ffffff 0%, #fafafa 100%);
}

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(15px);
    box-shadow: 0 2px 30px rgba(212, 165, 165, 0.12);
    z-index: 1000;
    padding: 1rem 0;
    transition: all 0.3s ease;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo h1 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 0.2rem;
}

.tagline {
    font-size: 0.85rem;
    color: var(--text-light);
    font-weight: 300;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    padding: 0.5rem 0;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-color), var(--primary-light));
    transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 2px;
}

.nav-menu a:hover {
    color: var(--primary-color);
    transform: translateY(-2px);
}

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

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    transition: 0.3s;
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    background: url('https://images.unsplash.com/photo-1522335789203-aabd1fc54bc9?w=1920&h=1080&fit=crop') center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    margin-top: 80px;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(255, 190, 210, 0.75) 0%, 
        rgba(255, 210, 230, 0.80) 30%,
        rgba(255, 225, 245, 0.75) 60%,
        rgba(255, 235, 250, 0.70) 100%);
    z-index: 1;
    animation: shimmer 8s ease-in-out infinite;
}

@keyframes shimmer {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.95; transform: scale(1.02); }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at center, 
        rgba(0, 0, 0, 0.25) 0%,
        rgba(0, 0, 0, 0.15) 30%,
        rgba(0, 0, 0, 0.08) 60%,
        transparent 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    animation: fadeInUp 1.2s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 2rem;
}

.hero-content::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: float 6s ease-in-out infinite;
    pointer-events: none;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(20px, -20px) scale(1.1); }
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 4.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    position: relative;
    filter: drop-shadow(2px 2px 10px rgba(0, 0, 0, 0.6)) 
            drop-shadow(0 0 30px rgba(0, 0, 0, 0.4))
            drop-shadow(4px 4px 8px rgba(0, 0, 0, 0.5));
    background: 
        radial-gradient(ellipse 350px 500px at 25% 100%, #90ee90 0%, #90ee90 35%, transparent 65%),
        radial-gradient(ellipse 400px 450px at 60% 100%, #20b2aa 0%, #20b2aa 35%, transparent 65%),
        radial-gradient(ellipse 380px 520px at 15% 100%, #ff536d 0%, #ff536d 35%, transparent 65%),
        radial-gradient(ellipse 420px 480px at 75% 100%, #9370db 0%, #9370db 35%, transparent 65%),
        radial-gradient(ellipse 360px 550px at 45% 100%, #87ceeb 0%, #87ceeb 35%, transparent 65%),
        linear-gradient(180deg, rgba(144, 238, 144, 0.2) 0%, rgba(32, 178, 170, 0.2) 25%, rgba(255, 182, 193, 0.2) 50%, rgba(147, 112, 219, 0.2) 75%, rgba(135, 206, 235, 0.2) 100%);
    background-size: 
        700px 1000px,
        800px 900px,
        760px 1040px,
        840px 960px,
        720px 1100px,
        100% 100%;
    background-position: 
        25% 100%,
        60% 100%,
        15% 100%,
        75% 100%,
        45% 100%,
        0% 0%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: lavaLamp 25s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}

.hero-title::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    right: -20px;
    bottom: -20px;
    background: radial-gradient(ellipse, rgba(0, 0, 0, 0.2) 0%, transparent 70%);
    z-index: -1;
    border-radius: 50%;
    opacity: 0.5;
}

@keyframes lavaLamp {
    0% {
        background-position: 
            25% 100%,
            60% 100%,
            15% 100%,
            75% 100%,
            45% 100%,
            0% 0%;
        background-size: 
            350px 500px,
            800px 900px,
            760px 1040px,
            840px 960px,
            720px 1100px,
            100% 100%;
    }
    20% {
        background-position: 
            25% 70%,
            60% 100%,
            15% 100%,
            75% 100%,
            45% 100%,
            0% 0%;
        background-size: 
            450px 600px,
            800px 900px,
            760px 1040px,
            840px 960px,
            720px 1100px,
            100% 100%;
    }
    40% {
        background-position: 
            25% 30%,
            60% 60%,
            15% 100%,
            75% 100%,
            45% 100%,
            0% 0%;
        background-size: 
            550px 700px,
            900px 1000px,
            760px 1040px,
            840px 960px,
            720px 1100px,
            100% 100%;
    }
    50% {
        background-position: 
            25% 10%,
            60% 40%,
            15% 80%,
            75% 100%,
            45% 100%,
            0% 0%;
        background-size: 
            600px 750px,
            950px 1050px,
            860px 1140px,
            840px 960px,
            720px 1100px,
            100% 100%;
    }
    60% {
        background-position: 
            25% -5%,
            60% 20%,
            15% 50%,
            75% 80%,
            45% 100%,
            0% 0%;
        background-size: 
            350px 500px,
            850px 950px,
            900px 1200px,
            940px 1060px,
            720px 1100px,
            100% 100%;
    }
    75% {
        background-position: 
            25% 100%,
            60% -5%,
            15% 20%,
            75% 50%,
            45% 80%,
            0% 0%;
        background-size: 
            350px 500px,
            350px 500px,
            760px 1040px,
            1000px 1100px,
            820px 1200px,
            100% 100%;
    }
    85% {
        background-position: 
            25% 100%,
            60% 100%,
            15% -5%,
            75% 20%,
            45% 50%,
            0% 0%;
        background-size: 
            350px 500px,
            800px 900px,
            350px 500px,
            840px 960px,
            920px 1300px,
            100% 100%;
    }
    95% {
        background-position: 
            25% 100%,
            60% 100%,
            15% 100%,
            75% -5%,
            45% 20%,
            0% 0%;
        background-size: 
            350px 500px,
            800px 900px,
            760px 1040px,
            350px 500px,
            720px 1100px,
            100% 100%;
    }
    100% {
        background-position: 
            25% 100%,
            60% 100%,
            15% 100%,
            75% 100%,
            45% -5%,
            0% 0%;
        background-size: 
            350px 500px,
            800px 900px,
            760px 1040px,
            840px 960px,
            350px 500px,
            100% 100%;
    }
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    font-weight: 300;
    color: #ffffff;
    text-shadow: 1px 1px 8px rgba(0, 0, 0, 0.6), 
                 0 0 20px rgba(0, 0, 0, 0.4);
}

.cta-button {
    display: inline-block;
    padding: 18px 45px;
    background: linear-gradient(135deg, #ffffff 0%, #f8f0f0 100%);
    color: var(--primary-color);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 25px rgba(212, 165, 165, 0.3);
    position: relative;
    overflow: hidden;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.5s;
}

.cta-button:hover::before {
    left: 100%;
}

.cta-button:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 12px 35px rgba(212, 165, 165, 0.4);
    background: linear-gradient(135deg, #ffffff 0%, #ffffff 100%);
}

/* Gallery Section */
.gallery-section {
    padding: 100px 0;
    background: linear-gradient(180deg, #ffffff 0%, #fafafa 50%, #ffffff 100%);
    position: relative;
}

.gallery-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 200px;
    background: linear-gradient(180deg, transparent 0%, rgba(248, 240, 240, 0.3) 100%);
    pointer-events: none;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    text-align: center;
    margin-bottom: 1rem;
    color: var(--text-dark);
    position: relative;
    display: inline-block;
    width: 100%;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--gradient);
    border-radius: 2px;
    animation: expandLine 1s ease-out 0.5s both;
}

@keyframes expandLine {
    from {
        width: 0;
        opacity: 0;
    }
    to {
        width: 80px;
        opacity: 1;
    }
}

.section-subtitle {
    text-align: center;
    color: var(--text-light);
    font-size: 1.1rem;
    margin-bottom: 4rem;
}

.gallery-filters {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.filter-btn {
    background: var(--white);
    color: var(--text-dark);
    border: 2px solid var(--primary-light);
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(212, 165, 165, 0.1);
}

.filter-btn:hover {
    border-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(212, 165, 165, 0.2);
}

.filter-btn.active {
    background: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
    box-shadow: 0 4px 15px rgba(212, 165, 165, 0.3);
}

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

.gallery-item {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.gallery-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(212, 165, 165, 0) 0%, rgba(232, 196, 196, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.5s;
    pointer-events: none;
    z-index: 1;
}

.gallery-item:hover::before {
    opacity: 1;
}

.gallery-item:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: var(--shadow-hover);
}

.before-after-container {
    position: relative;
    width: 100%;
    height: 500px;
    overflow: hidden;
    cursor: grab;
    user-select: none;
}

.before-after-container:active {
    cursor: grabbing;
}

.image-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
}

.before-image,
.after-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.before-image {
    z-index: 1;
}

.after-image {
    z-index: 2;
    clip-path: inset(0 50% 0 0);
    transition: clip-path 0.1s;
}

.before-image img,
.after-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.before-image .label,
.after-image .label {
    position: absolute;
    top: 20px;
    padding: 10px 24px;
    background: linear-gradient(135deg, rgba(212, 165, 165, 0.9) 0%, rgba(232, 196, 196, 0.9) 100%);
    color: var(--white);
    font-weight: 600;
    z-index: 10;
    border-radius: 25px;
    font-size: 0.9rem;
    box-shadow: 0 4px 15px rgba(212, 165, 165, 0.3);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.before-image:hover .label,
.after-image:hover .label {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(212, 165, 165, 0.4);
}

.before-image .label {
    left: 20px;
}

.after-image .label {
    right: 20px;
}

.slider-handle {
    position: absolute;
    top: 0;
    left: 50%;
    width: 4px;
    height: 100%;
    background: var(--white);
    z-index: 3;
    transform: translateX(-50%);
    cursor: ew-resize;
}

.slider-line {
    width: 100%;
    height: 100%;
    background: var(--white);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}

.slider-circle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 55px;
    height: 55px;
    background: linear-gradient(135deg, #ffffff 0%, #f8f0f0 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 20px rgba(212, 165, 165, 0.4);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid rgba(212, 165, 165, 0.2);
}

.slider-circle:hover {
    transform: translate(-50%, -50%) scale(1.15);
    box-shadow: 0 8px 25px rgba(212, 165, 165, 0.5);
    background: linear-gradient(135deg, #ffffff 0%, #ffffff 100%);
}

.slider-circle svg {
    width: 24px;
    height: 24px;
    color: var(--primary-color);
}

.gallery-info {
    padding: 1.5rem;
    text-align: center;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.95) 0%, rgba(248, 240, 240, 0.5) 100%);
    transition: all 0.3s ease;
}

.gallery-item:hover .gallery-info {
    background: linear-gradient(180deg, rgba(255, 255, 255, 1) 0%, rgba(248, 240, 240, 0.8) 100%);
}

.gallery-info h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.gallery-info p {
    color: var(--text-light);
    font-size: 0.95rem;
}

/* Services Section */
.services-section {
    padding: 100px 0;
    background: var(--gradient-soft);
    position: relative;
    overflow: hidden;
}

.services-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(212, 165, 165, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 8s ease-in-out infinite;
}

.services-section::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -5%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(232, 213, 232, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 10s ease-in-out infinite reverse;
}

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

.service-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 20px rgba(212, 165, 165, 0.1);
    position: relative;
    border: 1px solid rgba(212, 165, 165, 0.08);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.service-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(212, 165, 165, 0.03) 0%, rgba(232, 196, 196, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    border-radius: 20px;
    pointer-events: none;
}

.service-card:hover::after {
    opacity: 1;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(212, 165, 165, 0.18);
    border-color: rgba(212, 165, 165, 0.2);
}

.service-icon {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    display: inline-block;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    filter: drop-shadow(0 2px 4px rgba(212, 165, 165, 0.15));
}

.service-card:hover .service-icon {
    transform: translateY(-5px);
    filter: drop-shadow(0 4px 8px rgba(212, 165, 165, 0.25));
}

.service-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.service-card p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.see-examples-btn {
    background: var(--primary-color);
    color: var(--white);
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: auto;
    box-shadow: 0 4px 15px rgba(212, 165, 165, 0.3);
    width: 100%;
}

.see-examples-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 165, 165, 0.4);
}

.see-examples-btn:active {
    transform: translateY(0);
}

/* Reviews Section */
.reviews-section {
    padding: 100px 0;
    background: linear-gradient(180deg, #fafafa 0%, #ffffff 50%, #fafafa 100%);
    position: relative;
}

.reviews-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 200px;
    background: linear-gradient(180deg, transparent 0%, rgba(248, 240, 240, 0.3) 100%);
    pointer-events: none;
}

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

.review-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: var(--shadow-soft);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    border: 1px solid rgba(212, 165, 165, 0.1);
}

.review-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(212, 165, 165, 0) 0%, rgba(232, 196, 196, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.5s;
    border-radius: 20px;
    pointer-events: none;
    z-index: 0;
}

.review-card:hover::before {
    opacity: 1;
}

.review-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: var(--shadow-hover);
    border-color: rgba(212, 165, 165, 0.3);
}

.review-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.review-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 600;
    font-size: 1.2rem;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(212, 165, 165, 0.3);
}

.review-info {
    flex: 1;
}

.review-info h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.review-rating {
    display: flex;
    gap: 0.2rem;
}

.review-rating .star {
    color: #ffd700;
    font-size: 1.2rem;
    filter: drop-shadow(0 1px 2px rgba(255, 215, 0, 0.3));
}

.review-text {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1rem;
    font-style: italic;
    position: relative;
    z-index: 1;
}

.review-date {
    color: var(--text-light);
    font-size: 0.85rem;
    font-weight: 500;
    position: relative;
    z-index: 1;
}

/* Shop Section */
.shop-section {
    padding: 100px 0;
    background: var(--gradient-soft);
    position: relative;
    overflow: hidden;
}

.shop-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(212, 165, 165, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 8s ease-in-out infinite;
}

.shop-section::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -5%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(232, 213, 232, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 10s ease-in-out infinite reverse;
}

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

.product-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(212, 165, 165, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    border: 1px solid rgba(212, 165, 165, 0.08);
    display: flex;
    flex-direction: column;
}

.product-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(212, 165, 165, 0.03) 0%, rgba(232, 196, 196, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.product-card:hover::after {
    opacity: 1;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 35px rgba(212, 165, 165, 0.18);
    border-color: rgba(212, 165, 165, 0.2);
}

.product-image {
    position: relative;
    width: 100%;
    height: 250px;
    background: linear-gradient(135deg, #f8f0f0 0%, #f5e1e1 50%, #e8d5e8 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.product-placeholder {
    font-size: 5rem;
    opacity: 0.6;
    transition: transform 0.4s ease;
}

.product-card:hover .product-placeholder {
    transform: scale(1.1) rotate(5deg);
}

.product-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--primary-color);
    color: var(--white);
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    box-shadow: 0 2px 10px rgba(212, 165, 165, 0.3);
    z-index: 2;
}

.product-info {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.product-info h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
    color: var(--text-dark);
}

.product-description {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    flex-grow: 1;
    font-size: 0.95rem;
}

.product-price {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.product-button {
    background: var(--primary-color);
    color: var(--white);
    border: none;
    padding: 0.9rem 1.5rem;
    border-radius: 25px;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(212, 165, 165, 0.3);
    width: 100%;
    margin-top: auto;
}

.product-button:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 165, 165, 0.4);
}

.product-button:active {
    transform: translateY(0);
}

/* Contact Section */
.contact-section {
    padding: 100px 0;
    background: linear-gradient(180deg, #ffffff 0%, #fafafa 100%);
    position: relative;
}

.map-container {
    margin-top: 5rem;
    width: 100%;
}

.map-title {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    text-align: center;
    margin-bottom: 2rem;
    color: var(--text-dark);
    position: relative;
}

.map-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--gradient);
    border-radius: 2px;
}

.map-wrapper {
    position: relative;
    width: 100%;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(212, 165, 165, 0.15);
    transition: all 0.3s ease;
}

.map-wrapper:hover {
    box-shadow: 0 15px 50px rgba(212, 165, 165, 0.25);
    transform: translateY(-5px);
}

.map-wrapper iframe {
    display: block;
    width: 100%;
    height: 450px;
    border: none;
    border-radius: 15px;
}

.map-link-wrapper {
    text-align: center;
    margin-top: 1.5rem;
}

.map-link-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.9rem 2rem;
    background: var(--gradient);
    color: var(--white);
    text-decoration: none;
    border-radius: 25px;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(212, 165, 165, 0.3);
}

.map-link-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 165, 165, 0.4);
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-color) 50%, var(--primary-light) 100%);
}

.map-link-button span {
    font-size: 1.2rem;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-top: 4rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.contact-item h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.contact-item p {
    color: var(--text-light);
    font-size: 1.1rem;
}

.social-links {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.social-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    display: inline-block;
}

.social-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(212, 165, 165, 0.1);
    border-radius: 8px;
    opacity: 0;
    transition: opacity 0.3s;
}

.social-link:hover::before {
    opacity: 1;
}

.social-link:hover {
    color: var(--primary-dark);
    transform: translateY(-3px);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-form input,
.contact-form textarea {
    padding: 18px;
    border: 2px solid rgba(212, 165, 165, 0.2);
    border-radius: 12px;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    background: rgba(255, 255, 255, 0.8);
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    background: rgba(255, 255, 255, 1);
    box-shadow: 0 0 0 4px rgba(212, 165, 165, 0.1);
    transform: translateY(-2px);
}

.submit-button {
    padding: 18px 45px;
    background: var(--gradient);
    color: var(--white);
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 25px rgba(212, 165, 165, 0.3);
    position: relative;
    overflow: hidden;
}

.submit-button::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.submit-button:hover::before {
    width: 300px;
    height: 300px;
}

.submit-button:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 12px 35px rgba(212, 165, 165, 0.4);
}

.submit-button:active {
    transform: translateY(-2px) scale(1.02);
}

/* Photo Management Section */
.manage-section {
    padding: 100px 0;
    background: var(--accent-color);
    min-height: 100vh;
}

.manage-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-top: 4rem;
}

.upload-form {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.upload-form h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    margin-bottom: 2rem;
    color: var(--text-dark);
}

.form-group {
    margin-bottom: 1.5rem;
}

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

.form-group input[type="file"] {
    width: 100%;
    padding: 10px;
    border: 2px dashed #e0e0e0;
    border-radius: 10px;
    font-family: 'Poppins', sans-serif;
    cursor: pointer;
    transition: border-color 0.3s;
}

.form-group input[type="file"]:hover {
    border-color: var(--primary-color);
}

.form-group input[type="text"],
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    transition: border-color 0.3s;
}

.form-group input[type="text"]:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.image-preview {
    margin-top: 1rem;
    border-radius: 10px;
    overflow: hidden;
    max-height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f5f5f5;
}

.image-preview img {
    max-width: 100%;
    max-height: 200px;
    object-fit: contain;
    border-radius: 10px;
}

.gallery-manager {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    max-height: 80vh;
    overflow-y: auto;
}

.gallery-manager h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    margin-bottom: 2rem;
    color: var(--text-dark);
}

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

.gallery-manager-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem;
    background: var(--accent-color);
    border-radius: 10px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.gallery-manager-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.manager-item-preview {
    display: flex;
    gap: 0.5rem;
    flex-shrink: 0;
}

.preview-image {
    position: relative;
    width: 80px;
    height: 80px;
    border-radius: 8px;
    overflow: hidden;
    border: 2px solid var(--white);
}

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

.preview-image span {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.7);
    color: var(--white);
    font-size: 0.7rem;
    padding: 2px 4px;
    text-align: center;
}

.manager-item-info {
    flex: 1;
}

.manager-item-info h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.manager-item-info p {
    color: var(--text-light);
    font-size: 0.9rem;
}

.delete-button {
    padding: 10px 20px;
    background: #e74c3c;
    color: var(--white);
    border: none;
    border-radius: 8px;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.3s, transform 0.3s;
    flex-shrink: 0;
}

.delete-button:hover {
    background: #c0392b;
    transform: scale(1.05);
}

.no-items {
    text-align: center;
    color: var(--text-light);
    padding: 2rem;
    font-style: italic;
}

.manage-link {
    color: var(--primary-color) !important;
    font-weight: 600;
}

.logout-link {
    color: #e74c3c !important;
    font-weight: 600;
}

/* Login Modal */
.login-modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    align-items: center;
    justify-content: center;
}

.login-modal.active {
    display: flex;
}

.login-modal-content {
    background: var(--white);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    max-width: 400px;
    width: 90%;
    text-align: center;
    animation: fadeInUp 0.3s ease-out;
}

.login-modal-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.login-modal-content > p {
    color: var(--text-light);
    margin-bottom: 2rem;
}

.login-modal-content form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.login-modal-content input[type="password"] {
    padding: 15px;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    transition: border-color 0.3s;
    width: 100%;
}

.login-modal-content input[type="password"]:focus {
    outline: none;
    border-color: var(--primary-color);
}

.close-modal {
    margin-top: 1rem;
    background: transparent;
    border: none;
    color: var(--text-light);
    cursor: pointer;
    font-size: 0.9rem;
    text-decoration: underline;
    transition: color 0.3s;
}

.close-modal:hover {
    color: var(--text-dark);
}

.error-message {
    color: #e74c3c;
    font-size: 0.9rem;
    margin-top: 0.5rem;
}

.logout-button {
    padding: 10px 25px;
    background: #e74c3c;
    color: var(--white);
    border: none;
    border-radius: 8px;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.3s, transform 0.3s;
    font-size: 0.95rem;
}

.logout-button:hover {
    background: #c0392b;
    transform: scale(1.05);
}

/* Service Modal */
.service-modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.service-modal.active {
    display: flex;
}

.service-modal-content {
    background: var(--white);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    max-width: 600px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
    position: relative;
    animation: fadeInUp 0.3s ease-out;
}

.service-modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: transparent;
    border: none;
    font-size: 2rem;
    color: var(--text-light);
    cursor: pointer;
    line-height: 1;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s;
}

.service-modal-close:hover {
    background: var(--accent-color);
    color: var(--text-dark);
    transform: rotate(90deg);
}

#service-modal-body h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

#service-modal-body h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    color: var(--text-dark);
}

#service-modal-body p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1rem;
}

#service-modal-body ul {
    list-style: none;
    padding-left: 0;
    margin: 1rem 0;
}

#service-modal-body ul li {
    padding: 0.75rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-light);
    line-height: 1.8;
}

#service-modal-body ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

.service-card {
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px);
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #2c2c2c 0%, #1a1a1a 100%);
    color: var(--white);
    padding: 2.5rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(212, 165, 165, 0.3), transparent);
}

.footer p {
    margin: 0.5rem 0;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: var(--white);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .hamburger {
        display: flex;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .map-container {
        margin-top: 3rem;
    }

    .map-wrapper iframe {
        height: 350px;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .manage-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .reviews-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .shop-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .before-after-container {
        height: 400px;
    }
}

