:root {
    --primary: #8B5A3C;
    --secondary: #F5E6D3;
    --accent: #D4A574;
    --dark: #2C2C2C;
    --light: #FFFFFF;
    --gray-100: #F8F9FA;
    --gray-200: #E9ECEF;
    --gray-300: #DEE2E6;
    --gray-600: #6C757D;
    --gray-800: #343A40;
    --shadow-light: rgba(139, 90, 60, 0.1);
    --shadow-medium: rgba(139, 90, 60, 0.2);
    --shadow-dark: rgba(0, 0, 0, 0.15);
}

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

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.7;
    color: var(--dark);
    overflow-x: hidden;
}

.font-serif {
    font-family: 'Cormorant Garamond', serif;
}

/* Preloader */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.8s ease, visibility 0.8s ease;
}

.preloader.fade-out {
    opacity: 0;
    visibility: hidden;
}

.preloader-content {
    text-align: center;
    color: white;
}

.preloader-logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    animation: fadeInUp 1s ease;
}

.preloader-text {
    font-size: 0.9rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 2rem;
    animation: fadeInUp 1s ease 0.2s both;
}

.preloader-spinner {
    width: 60px;
    height: 60px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-top: 2px solid white;
    border-radius: 50%;
    animation: spin 1s linear infinite, fadeInUp 1s ease 0.4s both;
    margin: 0 auto;
}

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

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

    100% {
        transform: rotate(360deg);
    }
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--gray-100);
}

::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--accent);
}

/* Navigation */
.navbar {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--gray-200);
    transition: all 0.3s ease;
    padding: 1rem 0;
}

.navbar.scrolled {
    padding: 0.5rem 0;
    box-shadow: 0 4px 30px var(--shadow-light);
}

.navbar-brand {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--primary) !important;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.navbar-brand:hover {
    transform: scale(1.05);
}

.nav-link {
    color: var(--dark) !important;
    font-weight: 500;
    margin: 0 0.5rem;
    position: relative;
    transition: color 0.3s ease;
}

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

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary) !important;
}

/* Buttons */
.btn-primary-custom {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    border: none;
    color: white;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    width: 100%;
}

.btn-primary-custom::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--accent), var(--primary));
    transition: left 0.3s ease;
    z-index: -1;
}

.btn-primary-custom:hover::before {
    left: 0;
}

.btn-primary-custom:hover {
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px var(--shadow-medium);
}

.btn-outline-custom {
    border: 2px solid #fff;
    color: #fff;
    background: transparent;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    align-items: center;
    justify-content: center;
    display: flex
}

.btn-outline-custom:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px var(--shadow-medium);
}

/* Scroll to Top Button */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: white;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.4s ease;
    z-index: 1000;
    box-shadow: 0 5px 20px var(--shadow-medium);
}

.scroll-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-to-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px var(--shadow-medium);
}

/* Hero Section */
.hero {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, rgba(139, 90, 60, 0.8), rgba(212, 165, 116, 0.6)),
        url('/newmoban/_external/demo.mobanwang.com/mb/lo202602/202602016/html/assets/images/831601306_14.jpg') center/cover no-repeat;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(139, 90, 60, 0.8), rgba(212, 165, 116, 0.6));
}

.hero-content {
    position: relative;
    z-index: 2;
    color: white;
}

.hero-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(3rem, 6vw, 5rem);
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 2rem;
}

.hero-description {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
    max-width: 600px;
}

.floating-elements {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.floating-element {
    position: absolute;
    width: 10px;
    height: 10px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
}

.floating-element:nth-child(1) {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.floating-element:nth-child(2) {
    top: 60%;
    left: 80%;
    animation-delay: 2s;
}

.floating-element:nth-child(3) {
    top: 40%;
    left: 60%;
    animation-delay: 4s;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px);
        opacity: 0.3;
    }

    50% {
        transform: translateY(-20px);
        opacity: 0.8;
    }
}

/* Sections */
.section {
    padding: 100px 0;
}

.section-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 1rem;
    position: relative;
}

.section-subtitle {
    color: var(--gray-600);
    font-size: 1.1rem;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.section-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: white;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 2rem;
}

/* Service Cards */
.service-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    height: 100%;
    border: 1px solid var(--gray-200);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--secondary), rgba(139, 90, 60, 0.05));
    transition: left 0.4s ease;
    z-index: -1;
}

.service-card:hover::before {
    left: 0;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px var(--shadow-light);
    border-color: var(--accent);
}

.service-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;

    margin-bottom: 1.5rem;
    transition: transform 0.3s ease;
}

.service-card .service-icon {
    margin: auto;
}

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

.service-icon i {
    font-size: 1.8rem;
    color: white;
}

.service-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 1rem;

}

.service-card .service-title {
    text-align: center;
    margin-top: 3%;
}

.service-card p {
    text-align: center;
}

.service-price {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 1rem;
    text-align: center;
}

/* Gallery */
.gallery-item {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 2rem;
    cursor: pointer;
    transition: transform 0.4s ease;
}

.gallery-item:hover {
    transform: scale(1.02);
}

.gallery-item img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(139, 90, 60, 0.8), rgba(212, 165, 116, 0.6));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

/* Testimonials */
.testimonial-card {
    background: white;
    border-radius: 25px;
    padding: 3rem 2rem;
    text-align: center;
    border: 1px solid var(--gray-200);
    height: 100%;
    transition: all 0.3s ease;
    position: relative;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px var(--shadow-light);
}

.testimonial-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin: 0 auto 1.5rem;
    overflow: hidden;
    border: 4px solid var(--secondary);
}

.testimonial-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-stars {
    color: var(--accent);
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
}

/* Footer */
.footer {
    background: var(--dark);
    color: white;
    padding: 80px 0 30px;
}

.footer-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--accent);
    margin-bottom: 1.5rem;
}

.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: var(--primary);
    color: white;
    border-radius: 15px;
    text-decoration: none;
    margin-right: 1rem;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--accent);
    color: white;
    transform: translateY(-3px);
}

/* Contact Form */
.contact-form {
    background: white;
    border-radius: 25px;
    padding: 3rem;
    box-shadow: 0 15px 40px var(--shadow-light);
}

.form-control {
    border: 2px solid var(--gray-200);
    border-radius: 15px;
    padding: 15px 20px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: var(--gray-100);
}

.form-control:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 0.2rem rgba(139, 90, 60, 0.25);
    background: white;
}

/* Stats Counter */
.stats {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: white;
    position: relative;
}

.stat-item {
    text-align: center;
    padding: 2rem 1rem;
}

.stat-number {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3rem;
    font-weight: 700;
    display: block;
}

.stat-label {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.9;
}

/* Booking Modal */
.modal-content {
    border-radius: 25px;
    border: none;
    overflow: hidden;
}

.modal-header {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: white;
    border-bottom: none;
}

.modal-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    font-weight: 600;
}

/* Scroll Animation Classes */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease;
}

.animate-on-scroll.animated {
    opacity: 1;
    transform: translateY(0);
}

.animate-fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.animate-fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.animate-zoom-in {
    opacity: 0;
    transform: scale(0.9);
    transition: all 0.6s ease;
}

.animate-zoom-in.visible {
    opacity: 1;
    transform: scale(1);
}

.animate-slide-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.6s ease;
}

.animate-slide-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.animate-slide-right {
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.6s ease;
}

.animate-slide-right.visible {
    opacity: 1;
    transform: translateX(0);
}

.animate-bounce-in {
    opacity: 0;
    transform: scale(0.3);
    transition: all 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.animate-bounce-in.visible {
    opacity: 1;
    transform: scale(1);
}

.animate-flip-in {
    opacity: 0;
    transform: perspective(1000px) rotateY(90deg);
    transition: all 0.8s ease;
}

.animate-flip-in.visible {
    opacity: 1;
    transform: perspective(1000px) rotateY(0deg);
}

/* Staggered animations for children */
.stagger-children>* {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.stagger-children.animated>* {
    opacity: 1;
    transform: translateY(0);
}

.stagger-children.animated>*:nth-child(1) {
    transition-delay: 0.1s;
}

.stagger-children.animated>*:nth-child(2) {
    transition-delay: 0.2s;
}

.stagger-children.animated>*:nth-child(3) {
    transition-delay: 0.3s;
}

.stagger-children.animated>*:nth-child(4) {
    transition-delay: 0.4s;
}

.stagger-children.animated>*:nth-child(5) {
    transition-delay: 0.5s;
}

.stagger-children.animated>*:nth-child(6) {
    transition-delay: 0.6s;
}

/* Media Queries */
@media (max-width: 768px) {
    .section {
        padding: 60px 0;
    }

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

    .service-card,
    .testimonial-card {
        margin-bottom: 2rem;
    }

    .scroll-to-top {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
        font-size: 1rem;
    }


    .btn-primary-custom {
        font-size: 14px;
    }

    .btn-outline-custom {
        font-size: 14px;
    }
}

/* Additional Smooth Animations */
.smooth-transition {
    transition: all 0.3s cubic-bezier(0.4, 0.0, 0.2, 1);
}

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

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

/* Loading Animation for Images */
.image-loading {
    background: linear-gradient(90deg, var(--gray-200) 25%, var(--gray-100) 50%, var(--gray-200) 75%);
    background-size: 200% 100%;
    animation: loading 1.5s infinite;
}

@keyframes loading {
    0% {
        background-position: 200% 0;
    }

    100% {
        background-position: -200% 0;
    }
}

.hero-btn {
    width: 50% !important;
}

.cart-icon {
    position: relative;
    margin-left: 1rem;
    color: var(--primary) !important;
}

/* 404 Section */
.error-section {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 100px 0;
    background: linear-gradient(135deg, rgba(139, 90, 60, 0.05), rgba(212, 165, 116, 0.03));
    position: relative;
    overflow: hidden;
}

.error-container {
    text-align: center;
    max-width: 800px;
    padding: 0 20px;
    margin: auto;
}

.error-code {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(8rem, 20vw, 12rem);
    font-weight: 700;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.error-code::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    border-radius: 2px;
}

.error-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 1.5rem;
}

.error-description {
    font-size: 1.1rem;
    color: var(--gray-600);
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

.error-image {
    max-width: 400px;
    margin: 0 auto;
    opacity: 0.8;
}

.error-image img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 15px 40px var(--shadow-light);
}

/* Hero Section */
.beauty-hero {
    height: 70vh;
    position: relative;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, rgba(139, 90, 60, 0.8), rgba(212, 165, 116, 0.6)),
        url('/newmoban/_external/demo.mobanwang.com/mb/lo202602/202602016/html/assets/images/beauty-hero.jpeg') center/cover no-repeat;
    margin-top: 5%;
}

.beauty-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(139, 90, 60, 0.8), rgba(212, 165, 116, 0.6));

}

.beauty-hero-content {
    position: relative;
    z-index: 2;
    color: white;
}

.beauty-hero-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(3rem, 6vw, 4.5rem);
    font-weight: 350;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    margin-top: 2%;
}

/* Sections */
.section {
    padding: 80px 0;
}

.section-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 1rem;
    position: relative;
}

.section-subtitle {
    color: var(--gray-600);
    font-size: 1.1rem;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.section-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: white;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 2rem;
}

/* Service Cards */
.service-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    height: 100%;
    border: 1px solid var(--gray-200);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--secondary), rgba(139, 90, 60, 0.05));
    transition: left 0.4s ease;
    z-index: -1;
}

.service-card:hover::before {
    left: 0;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px var(--shadow-light);
    border-color: var(--accent);
}

.service-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: transform 0.3s ease;
}

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

.service-icon i {
    font-size: 1.8rem;
    color: white;
}

.service-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 1rem;
}

.service-price {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 1rem;
}

/* Skin Type Section */
.skin-type-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    height: 100%;
    border: 1px solid var(--gray-200);
    transition: all 0.4s ease;
    text-align: center;
}

.skin-type-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px var(--shadow-light);
    border-color: var(--accent);
}

.skin-type-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.skin-type-icon i {
    font-size: 2rem;
    color: white;
}

/* Process Section */
.process-step {
    text-align: center;
    padding: 2rem 1rem;
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1.5rem;
}

/* Testimonials */
.testimonial-card {
    background: white;
    border-radius: 25px;
    padding: 3rem 2rem;
    text-align: center;
    border: 1px solid var(--gray-200);
    height: 100%;
    transition: all 0.3s ease;
    position: relative;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px var(--shadow-light);
}

.testimonial-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin: 0 auto 1.5rem;
    overflow: hidden;
    border: 4px solid var(--secondary);
}

.testimonial-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-stars {
    color: var(--accent);
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
}

/* Blog Post Hero */
.blog-post-hero {
    padding: 150px 0 80px;
    background: linear-gradient(135deg, rgba(139, 90, 60, 0.9), rgba(212, 165, 116, 0.7)),
        url('/newmoban/_external/demo.mobanwang.com/mb/lo202602/202602016/html/assets/images/ayurvedic.jpeg') center/cover no-repeat;
    color: white;
    position: relative;
}

.blog-post-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(139, 90, 60, 0.9), rgba(212, 165, 116, 0.7));
}

.blog-post-hero-content {
    position: relative;
    z-index: 2;
}

.blog-post-badge {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-block;
    margin-bottom: 1.5rem;
    backdrop-filter: blur(10px);
}

.blog-post-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.blog-post-meta {
    display: flex;
    align-items: center;
    margin-bottom: 2rem;
    font-size: 1rem;
}

.blog-post-meta i {
    margin-right: 0.5rem;
    color: var(--accent);
}

.blog-post-meta span {
    margin-right: 2rem;
}

.author-info {
    display: flex;
    align-items: center;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.3);
}

.author-avatar {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 1.5rem;
    border: 3px solid rgba(255, 255, 255, 0.3);
}

.author-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-details h4 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.author-details p {
    opacity: 0.9;
    margin-bottom: 0;
}

/* Blog Content */
.blog-content {
    padding: 80px 0;
}

.blog-content-body {
    background: white;
    border-radius: 25px;
    padding: 3rem;
    box-shadow: 0 10px 30px var(--shadow-light);
}

.blog-content-body p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.blog-content-body h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    font-weight: 600;
    color: var(--primary);
    margin: 2.5rem 0 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--secondary);
}

.blog-content-body h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary);
    margin: 2rem 0 1rem;
}

.blog-content-body blockquote {
    border-left: 4px solid var(--accent);
    padding-left: 2rem;
    margin: 2rem 0;
    font-style: italic;
    font-size: 1.2rem;
    color: var(--gray-600);
}

.blog-content-body ul,
.blog-content-body ol {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
}

.blog-content-body li {
    margin-bottom: 0.5rem;
}

.blog-image {
    border-radius: 15px;
    overflow: hidden;
    margin: 2rem 0;
    box-shadow: 0 10px 25px var(--shadow-light);
}

.blog-image img {
    width: 100%;
    height: auto;
    display: block;
}

.image-caption {
    text-align: center;
    font-style: italic;
    color: var(--gray-600);
    margin-top: 0.5rem;
    font-size: 0.9rem;
}

.content-highlight {
    background: var(--secondary);
    padding: 2rem;
    border-radius: 15px;
    margin: 2rem 0;
    border-left: 4px solid var(--primary);
}

/* Social Sharing */
.social-sharing {
    display: flex;
    align-items: center;
    margin: 2rem 0;
    padding: 1.5rem 0;
    border-top: 1px solid var(--gray-200);
    border-bottom: 1px solid var(--gray-200);
}

.social-sharing span {
    font-weight: 600;
    margin-right: 1rem;
    color: var(--primary);
}

.social-share-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: var(--gray-100);
    color: var(--primary);
    border-radius: 50%;
    text-decoration: none;
    margin-right: 0.5rem;
    transition: all 0.3s ease;
}

.social-share-btn:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-3px);
}

/* Tags */
.blog-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin: 2rem 0;
}

.blog-tag {
    background: var(--secondary);
    color: var(--primary);
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
}

.blog-tag:hover {
    background: var(--primary);
    color: white;
}

/* Sidebar */
.sidebar {
    position: sticky;
    top: 100px;
}

.sidebar-widget {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: 0 10px 30px var(--shadow-light);
}

.widget-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--secondary);
}

.categories-list {
    list-style: none;
    padding: 0;
}

.categories-list li {
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--gray-200);
}

.categories-list li:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.categories-list a {
    color: var(--dark);
    text-decoration: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: color 0.3s ease;
}

.categories-list a:hover {
    color: var(--primary);
}

.categories-list span {
    background: var(--secondary);
    color: var(--primary);
    padding: 3px 10px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
}

.recent-post {
    display: flex;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--gray-200);
}

.recent-post:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.recent-post-image {
    width: 80px;
    height: 80px;
    border-radius: 15px;
    overflow: hidden;
    margin-right: 1rem;
    flex-shrink: 0;
}

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

.recent-post-content h4 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.recent-post-content h4 a {
    color: var(--dark);
    text-decoration: none;
    transition: color 0.3s ease;
}

.recent-post-content h4 a:hover {
    color: var(--primary);
}

.recent-post-date {
    font-size: 0.8rem;
    color: var(--gray-600);
}

.tags-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.tag-link {
    background: var(--secondary);
    color: var(--primary);
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.tag-link:hover {
    background: var(--primary);
    color: white;
}

/* Newsletter Widget */
.newsletter-widget {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: white;
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
}

.newsletter-widget .widget-title {
    color: white;
    border-bottom: 2px solid rgba(255, 255, 255, 0.3);
}

.newsletter-form .form-control {
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 15px;
    padding: 15px 20px;
    font-size: 1rem;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    margin-bottom: 1rem;
}

.newsletter-form .form-control::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.newsletter-form .form-control:focus {
    border-color: white;
    box-shadow: 0 0 0 0.2rem rgba(255, 255, 255, 0.25);
    background: rgba(255, 255, 255, 0.2);
}

.newsletter-form .btn {
    background: white;
    color: var(--primary);
    border: none;
    border-radius: 15px;
    padding: 15px 20px;
    font-weight: 600;
    width: 100%;
    transition: all 0.3s ease;
}

.newsletter-form .btn:hover {
    background: var(--secondary);
    transform: translateY(-2px);
}

/* Comments Section */
.comments-section {
    background: white;
    border-radius: 25px;
    padding: 3rem;
    box-shadow: 0 10px 30px var(--shadow-light);
    margin-top: 3rem;
}

.comments-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 2rem;
}

.comment {
    display: flex;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--gray-200);
}

.comment:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.comment-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 1.5rem;
    flex-shrink: 0;
}

.comment-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.comment-content h5 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.comment-meta {
    font-size: 0.9rem;
    color: var(--gray-600);
    margin-bottom: 1rem;
}

.comment-reply {
    color: var(--primary);
    font-weight: 600;
    text-decoration: none;
    font-size: 0.9rem;
}

.comment-reply:hover {
    text-decoration: underline;
}

.comment-form {
    margin-top: 3rem;
}

.form-control {
    border: 2px solid var(--gray-200);
    border-radius: 15px;
    padding: 15px 20px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: var(--gray-100);
}

.form-control:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 0.2rem rgba(139, 90, 60, 0.25);
    background: white;
}

/* Related Posts */
.related-posts {
    padding: 80px 0;
}

.section-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 3rem;
    text-align: center;
}

.blog-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 2rem;
    box-shadow: 0 10px 30px var(--shadow-light);
    transition: all 0.3s ease;
    height: 100%;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px var(--shadow-medium);
}

.blog-image {
    height: 250px;
    overflow: hidden;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.blog-card:hover .blog-image img {
    transform: scale(1.1);
}

.blog-content {
    padding: 2rem;
}

.blog-meta {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    color: var(--gray-600);
}

.blog-meta i {
    margin-right: 0.5rem;
    color: var(--accent);
}

.blog-meta span {
    margin-right: 1.5rem;
}

.blog-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 1rem;
    line-height: 1.3;
}

.blog-excerpt {
    color: var(--gray-600);
    margin-bottom: 1.5rem;
}

.read-more {
    color: var(--primary);
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
}

.read-more:hover {
    color: var(--accent);
    transform: translateX(5px);
}


/* Hero Section */
.blog-hero {
    height: 60vh;
    position: relative;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, rgba(139, 90, 60, 0.8), rgba(212, 165, 116, 0.6)),
        url('/newmoban/_external/demo.mobanwang.com/mb/lo202602/202602016/html/assets/images/831601306_14.jpg') center/cover no-repeat;
}

.blog-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(139, 90, 60, 0.8), rgba(212, 165, 116, 0.6));
}

.blog-hero-content {
    position: relative;
    z-index: 2;
    color: white;
}

.blog-hero-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(3rem, 5vw, 4rem);
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

/* Sections */
.section {
    padding: 80px 0;
}

.section-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 1rem;
    position: relative;
}

.section-subtitle {
    color: var(--gray-600);
    font-size: 1.1rem;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.section-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: white;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 2rem;
}

/* Blog Cards */
.blog-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 2rem;
    box-shadow: 0 10px 30px var(--shadow-light);
    transition: all 0.3s ease;
    height: 100%;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px var(--shadow-medium);
}

.blog-image {
    height: 250px;
    overflow: hidden;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.blog-card:hover .blog-image img {
    transform: scale(1.1);
}

.blog-content {
    padding: 2rem;
}

.blog-meta {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    color: var(--gray-600);
}

.blog-meta i {
    margin-right: 0.5rem;
    color: var(--accent);
}

.blog-meta span {
    margin-right: 1.5rem;
}

.blog-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 1rem;
    line-height: 1.3;
}

.blog-excerpt {
    color: var(--gray-600);
    margin-bottom: 1.5rem;
}

.blog-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.blog-tag {
    background: var(--secondary);
    color: var(--primary);
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
}

/* Featured Post */
.featured-post {
    background: white;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 15px 40px var(--shadow-light);
    margin-bottom: 3rem;
}

.featured-image {
    height: 400px;
    overflow: hidden;
}

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

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

.featured-content {
    padding: 3rem;
}

.featured-badge {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: white;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-block;
    margin-bottom: 1.5rem;
}

.featured-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.blog-hero-content {
    position: relative;
    z-index: 2;
    color: white;
}

.blog-hero-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(3rem, 5vw, 4rem);
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

/* Sections */
.section {
    padding: 80px 0;
}

.section-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 1rem;
    position: relative;
}

.section-subtitle {
    color: var(--gray-600);
    font-size: 1.1rem;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.section-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: white;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 2rem;
}

/* Pagination */
.pagination {
    justify-content: center;
    margin-top: 3rem;
}

.page-link {
    border: none;
    color: var(--primary);
    padding: 12px 20px;
    margin: 0 5px;
    border-radius: 15px;
    transition: all 0.3s ease;
}

.page-link:hover {
    background: var(--secondary);
    color: var(--primary);
}

.page-item.active .page-link {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: white;
}

.blogpart {
    margin-top: 2%;
}

.stagger-children .col-md-6 {
    margin-bottom: 2%;
}

/* Hero Section */
.branches-hero {
    height: 60vh;
    position: relative;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, rgba(139, 90, 60, 0.8), rgba(212, 165, 116, 0.6)),
        url('/newmoban/_external/demo.mobanwang.com/mb/lo202602/202602016/html/assets/images/branch-hero.jpeg') center/cover no-repeat;
    margin-top: 5%;
}

.branches-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(139, 90, 60, 0.8), rgba(212, 165, 116, 0.6));
}

.branches-hero-content {
    position: relative;
    z-index: 2;
    color: white;
}

.branches-hero-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
    margin-top: 5%;
}

/* Sections */
.section {
    padding: 80px 0;
}

.section-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2rem, 4vw, 2.5rem);
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 1.5rem;
    position: relative;
}

.section-subtitle {
    color: var(--gray-600);
    font-size: 1.1rem;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.section-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: white;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 2rem;
}

/* Branch Cards */
.branch-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 2rem;
    border: 1px solid var(--gray-200);
    transition: all 0.4s ease;
    height: auto;
}

.branch-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px var(--shadow-light);
    border-color: var(--accent);
}

.branch-image {
    height: 250px;
    overflow: hidden;
}

.branch-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.branch-content {
    padding: 2rem;
}

.branch-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.branch-subtitle {
    color: var(--gray-600);
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
}

.branch-info {
    margin-bottom: 1.5rem;
}

.branch-info-item {
    display: flex;
    margin-bottom: 0.8rem;
}

.branch-info-item i {
    color: var(--primary);
    margin-right: 10px;
    width: 20px;
}

.branch-amenities {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 1.5rem;
}

.amenity-tag {
    background: var(--secondary);
    color: var(--primary);
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
}

/* Map Section */
.map-container {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px var(--shadow-light);
    height: 500px;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* Location Filter */
.location-filter {
    background: white;
    border-radius: 15px;
    padding: 1.5rem;
    margin-bottom: 3rem;
    box-shadow: 0 10px 30px var(--shadow-light);
}

.filter-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.3rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.filter-options {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.filter-option {
    background: var(--gray-100);
    border: 1px solid var(--gray-300);
    color: var(--gray-800);
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

/* Stats Section */
.stats-section {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: white;
    padding: 80px 0;
}

.stat-item {
    text-align: center;
    padding: 1rem;
}

.stat-number {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1rem;
    opacity: 0.9;
}


/* Cart Section */
.cart-section {
    padding: 60px 0;
    margin-top: 4%;
}

.cart-container {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 30px var(--shadow-light);
}

.section-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2rem, 4vw, 2.5rem);
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 1.5rem;
    position: relative;
}
.map-container p{color: #2C2C2C !important;}
/* Cart Items */
.cart-header {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 0.5fr;
    padding: 1rem 0;
    border-bottom: 1px solid var(--gray-300);
    font-weight: 600;
    color: var(--gray-800);
}

.cart-item {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 0.5fr;
    padding: 1.5rem 0;
    border-bottom: 1px solid var(--gray-200);
    align-items: center;
}

.cart-product {
    display: flex;
    align-items: center;
}

.cart-product-image {
    width: 100px;
    height: 100px;
    border-radius: 10px;
    overflow: hidden;
    margin-right: 1rem;
}

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

.cart-product-details h4 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.3rem;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.cart-product-category {
    color: var(--gray-600);
    font-size: 0.9rem;
}

.cart-price {
    font-weight: 600;
    color: var(--primary);
}

.cart-quantity {
    display: flex;
    align-items: center;
}

.quantity-controls {
    display: flex;
    align-items: center;
    border: 1px solid var(--gray-300);
    border-radius: 50px;
    overflow: hidden;
}

.quantity-btn {
    width: 35px;
    height: 35px;
    background: white;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.3s ease;
}

.quantity-btn:hover {
    background: var(--gray-200);
}

.quantity-input {
    width: 50px;
    height: 35px;
    border: none;
    border-left: 1px solid var(--gray-300);
    border-right: 1px solid var(--gray-300);
    text-align: center;
    font-weight: 600;
}

.cart-total {
    font-weight: 700;
    color: var(--primary);
}

.cart-remove {
    text-align: center;
}

.btn-remove {
    background: none;
    border: none;
    color: var(--gray-600);
    cursor: pointer;
    transition: color 0.3s ease;
}

.btn-remove:hover {
    color: #dc3545;
}

/* Cart Summary */
.cart-summary {
    background: var(--gray-100);
    border-radius: 15px;
    padding: 2rem;
    margin-top: 2rem;
}

.summary-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--gray-300);
}

.summary-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1rem;
}

.summary-total {
    display: flex;
    justify-content: space-between;
    font-size: 1.2rem;
    font-weight: 700;
    margin: 1.5rem 0;
    padding-top: 1rem;
    border-top: 1px solid var(--gray-300);
    color: var(--primary);
}

.promo-code {
    margin: 1.5rem 0;
}

.promo-input-group {
    display: flex;
    margin-bottom: 0.5rem;
}

.promo-input {
    flex: 1;
    border: 1px solid var(--gray-300);
    border-radius: 50px 0 0 50px;
    padding: 0.75rem 1rem;
    outline: none;
}

.promo-input:focus {
    border-color: var(--primary);
}

.btn-apply {
    background: var(--primary);
    color: white;
    border: none;
    border-radius: 0 50px 50px 0;
    padding: 0 1.5rem;
    cursor: pointer;
    transition: background 0.3s ease;
}

.btn-apply:hover {
    background: var(--accent);
}

.promo-message {
    font-size: 0.9rem;
    color: var(--gray-600);
}

.promo-success {
    color: #28a745;
}

.checkout-actions {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.btn-checkout {
    flex: 2;
}

.btn-continue {
    flex: 1;
}

/* Empty Cart */
.empty-cart {
    text-align: center;
    padding: 3rem;
}

.empty-cart-icon {
    font-size: 4rem;
    color: var(--gray-300);
    margin-bottom: 1.5rem;
}

/* Recently Viewed */
.recently-viewed-section {
    padding: 60px 0;
    background: white;
}

.section-subtitle {
    color: var(--gray-600);
    font-size: 1.1rem;
    margin-bottom: 3rem;
    max-width: 600px;
}


.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px var(--shadow-light);
    border-color: var(--accent);
}

.product-image {
    height: 250px;
    overflow: hidden;
    position: relative;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.product-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--primary);
    color: white;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.product-content {
    padding: 1.5rem;
}

.product-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.product-price {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.current-price {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary);
    margin-right: 10px;
}

.original-price {
    font-size: 1rem;
    color: var(--gray-600);
    text-decoration: line-through;
}

.btn-shop {
    background: var(--primary);
    color: white;
    border: none;
    border-radius: 50px;
    padding: 10px 20px;
    font-weight: 600;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.btn-shop:hover {
    background: var(--accent);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px var(--shadow-medium);
}

/* Form Styles */
.form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    font-weight: 600;
    color: var(--gray-800);
    margin-bottom: 0.5rem;
}

.form-control {
    border: 1px solid var(--gray-300);
    border-radius: 10px;
    padding: 0.75rem 1rem;
    transition: all 0.3s ease;
}

.form-control:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 0.2rem rgba(139, 90, 60, 0.15);
}

.form-check-input:checked {
    background-color: var(--primary);
    border-color: var(--primary);
}

/* Checkout Steps */
.checkout-steps {
    display: flex;
    justify-content: space-between;
    margin-bottom: 2rem;
    position: relative;
}

.checkout-steps::before {
    content: '';
    position: absolute;
    top: 15px;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--gray-200);
    z-index: 1;
}

.step {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 2;
}

.step-icon {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: var(--gray-200);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.5rem;
    font-size: 0.8rem;
    color: var(--gray-600);
}

.step.active .step-icon {
    background: var(--primary);
    color: white;
}

.step.completed .step-icon {
    background: var(--accent);
    color: white;
}

.step-label {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--gray-600);
}

.step.active .step-label,
.step.completed .step-label {
    color: var(--primary);
}

/* Order Summary */
.order-summary {
    background: var(--gray-100);
    border-radius: 15px;
    padding: 2rem;
    margin-top: 2rem;
}

.summary-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--gray-300);
}

.summary-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1rem;
}

.summary-total {
    display: flex;
    justify-content: space-between;
    font-size: 1.2rem;
    font-weight: 700;
    margin: 1.5rem 0;
    padding-top: 1rem;
    border-top: 1px solid var(--gray-300);
    color: var(--primary);
}

.order-items {
    margin: 1.5rem 0;
}

.order-item {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--gray-200);
}

.order-item-image {
    width: 60px;
    height: 60px;
    border-radius: 8px;
    overflow: hidden;
    margin-right: 1rem;
}

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

.order-item-details {
    flex: 1;
}

.order-item-name {
    font-weight: 600;
    color: var(--dark);
}

.order-item-price {
    color: var(--primary);
    font-weight: 600;
}

/* Payment Methods */
.payment-methods {
    margin: 1.5rem 0;
}

.payment-method {
    border: 1px solid var(--gray-300);
    border-radius: 10px;
    padding: 1rem;
    margin-bottom: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.payment-method:hover {
    border-color: var(--primary);
}

.payment-method.selected {
    border-color: var(--primary);
    background-color: rgba(139, 90, 60, 0.05);
}

.payment-method-header {
    display: flex;
    align-items: center;
    margin-bottom: 0.5rem;
}

.payment-method-icon {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    background: var(--gray-200);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    color: var(--gray-600);
}

.payment-method-title {
    font-weight: 600;
    color: var(--dark);
}

.payment-details {
    margin-top: 1rem;
    display: none;
}

.payment-method.selected .payment-details {
    display: block;
}

/* Security Badge */
.security-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--gray-300);
}

.security-badge i {
    color: var(--primary);
    margin-right: 0.5rem;
}

.checkout-section {
    padding: 60px 0;
}

.checkout-container {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 30px var(--shadow-light);
}

.section-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2rem, 4vw, 2.5rem);
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 1.5rem;
    position: relative;
}




.checkout-section .btn-outline-custom,
.faq-section .btn-outline-custom .appointments .btn-outline-custom {
    border: 2px solid var(--primary);
    color: var(--primary);
    background: transparent;
    padding: 10px 25px;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
}


.checkout-section .btn-primary-custom,
.faq-section .btn-primary-custom,
.appointments .btn-primary-custom {

    background: linear-gradient(135deg, var(--primary), var(--accent));
    border: none;
    color: white;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    width: auto;
}

/* FAQ Section */
.faq-section {
    padding: 60px 0;
}

.section-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2rem, 4vw, 2.5rem);
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 1.5rem;
    position: relative;
}

.section-subtitle {
    color: var(--gray-600);
    font-size: 1.1rem;
    margin-bottom: 3rem;
    max-width: 600px;
}

.search-box {
    max-width: 500px;
    margin: 0 auto 3rem;
    position: relative;
}

.search-input {
    border: 1px solid var(--gray-300);
    border-radius: 50px;
    padding: 0.75rem 1.5rem;
    width: 100%;
    padding-left: 3rem;
    transition: all 0.3s ease;
}

.search-input:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 0.2rem rgba(139, 90, 60, 0.15);
}

.search-icon {
    position: absolute;
    left: 1.2rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--gray-600);
}

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

.category-btn {
    background: white;
    border: 1px solid var(--gray-300);
    border-radius: 50px;
    padding: 0.5rem 1.5rem;
    color: var(--dark);
    font-weight: 500;
    transition: all 0.3s ease;
}

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

.accordion {
    max-width: 900px;
    margin: 0 auto;
}

.accordion-item {
    background: white;
    border: 1px solid var(--gray-200);
    border-radius: 10px;
    margin-bottom: 1rem;
    overflow: hidden;
    box-shadow: 0 5px 15px var(--shadow-light);
    transition: all 0.3s ease;
}

.accordion-item:hover {
    box-shadow: 0 8px 25px var(--shadow-medium);
}

.accordion-button {
    background: white;
    color: var(--dark);
    font-weight: 600;
    padding: 1.5rem;
    border: none;
    box-shadow: none;
}

.accordion-button:not(.collapsed) {
    background: white;
    color: var(--primary);
    box-shadow: none;
}

.accordion-button:focus {
    box-shadow: none;
    border-color: transparent;
}

.accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%238B5A3C'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.accordion-button:not(.collapsed)::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%238B5A3C'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.accordion-body {
    padding: 1.5rem;
    color: var(--gray-600);
    border-top: 1px solid var(--gray-200);
}

.contact-card {
    background: white;
    border-radius: 20px;
    padding: 3rem;
    margin-top: 4rem;
    text-align: center;
    box-shadow: 0 10px 30px var(--shadow-light);
}

.contact-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    color: white;
    font-size: 2rem;
}

/* Hero Section */
.hair-hero {
    height: 70vh;
    position: relative;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, rgba(139, 90, 60, 0.8), rgba(212, 165, 116, 0.6)),
        url('/newmoban/_external/demo.mobanwang.com/mb/lo202602/202602016/html/assets/images/summer.jpeg') center/cover no-repeat;
    margin-top: 5%;
}

.hair-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(139, 90, 60, 0.8), rgba(212, 165, 116, 0.6));
}

.hair-hero-content {
    position: relative;
    z-index: 2;
    color: white;
}

.hair-hero-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(3rem, 6vw, 4.5rem);
    font-weight: 350;
    line-height: 1.2;
    margin-bottom: 0.5rem;
    margin-top: 0%;
}

/* Sections */
.section {
    padding: 80px 0;
}

.section-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 1rem;
    position: relative;
}

.section-subtitle {
    color: var(--gray-600);
    font-size: 1.1rem;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.section-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: white;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 2rem;
}

/* Service Cards */
.service-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    height: 100%;
    border: 1px solid var(--gray-200);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--secondary), rgba(139, 90, 60, 0.05));
    transition: left 0.4s ease;
    z-index: -1;
}

.service-card:hover::before {
    left: 0;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px var(--shadow-light);
    border-color: var(--accent);
}

.service-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: transform 0.3s ease;
}

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

.service-icon i {
    font-size: 1.8rem;
    color: white;
}

.service-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 1rem;
}

.service-price {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 1rem;
}

/* Hair Type Section */
.hair-type-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    height: 100%;
    border: 1px solid var(--gray-200);
    transition: all 0.4s ease;
    text-align: center;
}

.hair-type-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px var(--shadow-light);
    border-color: var(--accent);
}

.hair-type-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.hair-type-icon i {
    font-size: 2rem;
    color: white;
}

/* Process Section */
.hair-type-card hover-lift {
    text-align: center;
    padding: 2rem 1rem;
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1.5rem;
}

/* Testimonials */
.testimonial-card {
    background: white;
    border-radius: 25px;
    padding: 3rem 2rem;
    text-align: center;
    border: 1px solid var(--gray-200);
    height: 100%;
    transition: all 0.3s ease;
    position: relative;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px var(--shadow-light);
}

.testimonial-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin: 0 auto 1.5rem;
    overflow: hidden;
    border: 4px solid var(--secondary);
}

.testimonial-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-stars {
    color: var(--accent);
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
}

/* Hero Section */
.headspa-hero {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
        url('/newmoban/_external/demo.mobanwang.com/mb/lo202602/202602016/html/assets/images/headspa-hero.jpeg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: white;
    padding: 150px 0 100px;
    text-align: center;
    position: relative;
}

.headspa-hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background: linear-gradient(to bottom, transparent, var(--gray-100));
}

.headspa-hero h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(3rem, 6vw, 5rem);
    font-weight: 600;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
}

.headspa-hero p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 2rem;
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.5);
}

.japanese-badge {
    display: inline-block;
    background: var(--japan-red);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 2rem;
    letter-spacing: 1px;
}

/* Section Styles */
.section-padding {
    padding: 80px 0;
}

.section-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 1.5rem;
    position: relative;
}

.section-subtitle {
    color: var(--gray-600);
    font-size: 1.1rem;
    margin-bottom: 3rem;
    max-width: 600px;
}

.text-center .section-subtitle {
    margin-left: auto;
    margin-right: auto;
}

/* About Head Spa */
.about-headspa {
    background: white;
}

.about-content {
    display: flex;
    align-items: center;
    gap: 3rem;
}

@media (max-width: 768px) {
    .about-content {
        flex-direction: column;
    }
}

.about-image {
    flex: 1;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px var(--shadow-light);
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.about-image:hover img {
    transform: scale(1.05);
}

.about-text {
    flex: 1;
}

.about-text p {
    margin-bottom: 1.5rem;
}

/* Benefits Section */
.benefits-section {
    background: var(--gray-100);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.benefit-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 10px 30px var(--shadow-light);
    transition: all 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px var(--shadow-medium);
}

.benefit-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.8rem;
}

.benefit-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 1rem;
}

/* Process Section */
.process-section {
    background: white;
}

.hair-type-card hover-lifts {
    display: flex;
    justify-content: space-between;
    position: relative;
    margin: 3rem 0;
}

.hair-type-card hover-lifts::before {
    content: '';
    position: absolute;
    top: 40px;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--gray-300);
    z-index: 1;
}

.hair-type-card hover-lift {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 2;
    text-align: center;
    flex: 1;
}

.step-number {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--primary);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.step-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 1rem;
}

.step-description {
    color: var(--gray-600);
    padding: 0 1rem;
}

@media (max-width: 768px) {
    .hair-type-card hover-lifts {
        flex-direction: column;
        gap: 2rem;
    }

    .hair-type-card hover-lifts::before {
        display: none;
    }
}

/* Pricing Section */
.pricing-section {
    background: var(--gray-100);
}

.pricing-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.pricing-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px var(--shadow-light);
    transition: all 0.3s ease;
    position: relative;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px var(--shadow-medium);
}

.pricing-card.featured {
    border: 2px solid var(--primary);
    transform: scale(1.05);
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
}

.pricing-badge {
    position: absolute;
    top: 20px;
    right: -30px;
    background: var(--japan-red);
    color: white;
    padding: 0.5rem 2rem;
    font-size: 0.8rem;
    font-weight: 600;
    transform: rotate(45deg);
}

.pricing-header {
    padding: 2rem;
    text-align: center;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: white;
}

.pricing-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.pricing-price {
    font-size: 2.5rem;
    font-weight: 700;
}

.pricing-duration {
    font-size: 0.9rem;
    opacity: 0.8;
}

.pricing-body {
    padding: 2rem;
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
}

.pricing-features li {
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--gray-200);
    display: flex;
    align-items: center;
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-features li i {
    color: var(--primary);
    margin-right: 0.5rem;
}

.japanese-badge {
    display: inline-block;
    background: var(--japan-red);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 2rem;
    letter-spacing: 1px;
}

/* My Orders Section */
.my-orders-section {
    padding: 60px 0;
}

.section-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2rem, 4vw, 2.5rem);
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 1.5rem;
    position: relative;
}

.orders-container {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 30px var(--shadow-light);
}

.order-tabs {
    display: flex;
    border-bottom: 1px solid var(--gray-300);
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.order-tab {
    padding: 1rem 1.5rem;
    background: none;
    border: none;
    font-weight: 600;
    color: var(--gray-600);
    position: relative;
    transition: all 0.3s ease;
}

.order-tab.active {
    color: var(--primary);
}

.order-tab.active::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--primary);
}

.order-tab:hover {
    color: var(--primary);
}

/* Order Card */
.order-card {
    border: 1px solid var(--gray-200);
    border-radius: 15px;
    margin-bottom: 2rem;
    overflow: hidden;
    transition: all 0.3s ease;
}

.order-card:hover {
    box-shadow: 0 10px 30px var(--shadow-light);
}

.order-header {
    background: var(--gray-100);
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.order-info {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.order-detail {
    display: flex;
    flex-direction: column;
}

.order-label {
    font-size: 0.8rem;
    color: var(--gray-600);
    margin-bottom: 0.25rem;
}

.order-value {
    font-weight: 600;
    color: var(--dark);
}

.order-status {
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.8rem;
}

.status-pending {
    background: #FFF3CD;
    color: #856404;
}

.status-processing {
    background: #CCE5FF;
    color: #004085;
}

.status-shipped {
    background: #D1ECF1;
    color: #0C5460;
}

.status-delivered {
    background: #D4EDDA;
    color: #155724;
}

.status-cancelled {
    background: #F8D7DA;
    color: #721C24;
}

.order-items {
    padding: 1.5rem;
}

.order-item {
    display: flex;
    align-items: center;
    padding: 1rem 0;
    border-bottom: 1px solid var(--gray-200);
}

.order-item:last-child {
    border-bottom: none;
}

.order-item-image {
    width: 80px;
    height: 80px;
    border-radius: 10px;
    overflow: hidden;
    margin-right: 1.5rem;
}

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

.order-item-details {
    flex: 1;
}

.order-item-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.order-item-category {
    color: var(--gray-600);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.order-item-price {
    font-weight: 600;
    color: var(--dark);
}

.order-actions {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.btn-action {
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-review {
    background: var(--primary);
    color: white;
    border: none;
}

.btn-review:hover {
    background: var(--accent);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px var(--shadow-medium);
}

.btn-track {
    background: transparent;
    color: var(--primary);
    border: 1px solid var(--primary);
}

.btn-track:hover {
    background: var(--primary);
    color: white;
}

.btn-reorder {
    background: transparent;
    color: var(--gray-600);
    border: 1px solid var(--gray-300);
}

.btn-reorder:hover {
    background: var(--gray-200);
}

/* Empty State */
.empty-orders {
    text-align: center;
    padding: 3rem;
}

.empty-orders-icon {
    font-size: 4rem;
    color: var(--gray-300);
    margin-bottom: 1.5rem;
}

/* Review Modal */
.review-modal .modal-content {
    border-radius: 20px;
    overflow: hidden;
    border: none;
}

.review-modal .modal-header {
    background: var(--primary);
    color: white;
    border-bottom: none;
}

.review-modal .modal-title {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 600;
}

.review-modal .btn-close {
    filter: invert(1);
}

.review-product {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--gray-200);
}

.review-product-image {
    width: 80px;
    height: 80px;
    border-radius: 10px;
    overflow: hidden;
    margin-right: 1.5rem;
}

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

.review-product-details h5 {
    font-family: 'Cormorant Garamond', serif;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.rating-section {
    margin-bottom: 1.5rem;
}

.rating-label {
    font-weight: 600;
    margin-bottom: 0.5rem;
    display: block;
}

.star-rating {
    display: flex;
    gap: 0.5rem;
}

.star {
    font-size: 1.5rem;
    color: var(--gray-300);
    cursor: pointer;
    transition: color 0.2s ease;
}

.star.active {
    color: #FFC107;
}

.star:hover {
    color: #FFC107;
}

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

.form-label {
    font-weight: 600;
    color: var(--gray-800);
    margin-bottom: 0.5rem;
}

.form-control {
    border: 1px solid var(--gray-300);
    border-radius: 10px;
    padding: 0.75rem 1rem;
    transition: all 0.3s ease;
}

.form-control:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 0.2rem rgba(139, 90, 60, 0.15);
}

textarea.form-control {
    resize: vertical;
    min-height: 120px;
}

.appointment-hero {
    height: 40vh;
    position: relative;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, rgba(139, 90, 60, 0.8), rgba(212, 165, 116, 0.6)),
        url('/newmoban/_external/demo.mobanwang.com/mb/lo202602/202602016/html/assets/images/summer.jpeg') center/cover no-repeat;
         margin-top: 6%;
}

.appointment-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(139, 90, 60, 0.8), rgba(212, 165, 116, 0.6));
}

.appointment-hero-content {
    position: relative;
    z-index: 2;
    color: white;
}

.appointment-hero-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.5rem, 6vw, 3.5rem);
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
   
}

/* Sections */
.section {
    padding: 80px 0;
}

.section-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2rem, 4vw, 2.5rem);
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 1.5rem;
    position: relative;
}

.section-subtitle {
    color: var(--gray-600);
    font-size: 1.1rem;
    margin-bottom: 3rem;
    max-width: 600px;
}

/* Appointment Cards */
.appointment-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    margin-bottom: 2rem;
    border: 1px solid var(--gray-200);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.appointment-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--secondary), rgba(139, 90, 60, 0.05));
    transition: left 0.4s ease;
    z-index: -1;
}

.appointment-card:hover::before {
    left: 0;
}

.appointment-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px var(--shadow-light);
    border-color: var(--accent);
}

.appointment-status {
    display: inline-block;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.status-confirmed {
    background-color: #e8f5e8;
    color: #2e7d32;
}

.status-pending {
    background-color: #fff3e0;
    color: #ef6c00;
}

.status-completed {
    background-color: #f5f5f5;
    color: #616161;
}

.status-cancelled {
    background-color: #ffebee;
    color: #c62828;
}

.appointment-service {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.appointment-datetime {
    font-size: 1.1rem;
    color: var(--gray-800);
    margin-bottom: 0.5rem;
}

.appointment-staff {
    color: var(--gray-600);
    margin-bottom: 1.5rem;
}

/* Tabs */
.nav-tabs {
    border-bottom: 2px solid var(--gray-200);
    margin-bottom: 2rem;
}

.nav-tabs .nav-link {
    border: none;
    color: var(--gray-600);
    font-weight: 500;
    padding: 12px 25px;
    border-radius: 10px 10px 0 0;
    margin-bottom: -2px;
}

.nav-tabs .nav-link.active {
    color: var(--primary);
    background-color: white;
    border-bottom: 2px solid var(--primary);
}

/* Empty State */
.empty-state {
    text-align: center;
    padding: 3rem;
    background: white;
    border-radius: 20px;
    border: 1px solid var(--gray-200);
}

.empty-state-icon {
    font-size: 4rem;
    color: var(--gray-300);
    margin-bottom: 1.5rem;
}

/* Booking Modal */
.modal-content {
    border-radius: 25px;
    border: none;
    overflow: hidden;
}

.modal-header {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: white;
    border-bottom: none;
}

.modal-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    font-weight: 600;
}

/* Buttons */
.btn-primary-custom {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    border: none;
    color: white;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-primary-custom::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--accent), var(--primary));
    transition: left 0.3s ease;
    z-index: -1;
}

.btn-primary-custom:hover::before {
    left: 0;
}

.btn-primary-custom:hover {
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px var(--shadow-medium);
}

.btn-outline-custom {
    border: 2px solid var(--primary);
    color: var(--primary);
    background: transparent;
    padding: 10px 25px;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-outline-custom:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px var(--shadow-medium);
}

/* Contact Page Specific Styles */
.contact-hero {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    padding: 150px 0 100px;
    position: relative;
    overflow: hidden;
}

.min-vh-80 {
    min-height: 80vh;
}

.contact-hero-image img {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.contact-info-card {
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.contact-info-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.contact-icon {
    width: 80px;
    height: 80px;
    background: var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    color: white;
    font-size: 1.8rem;
}

.contact-form-wrapper {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.map-container {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.business-hours {
    background: white;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.accordion-button {
    font-weight: 500;
    padding: 1.2rem 1.25rem;
}

.accordion-button:not(.collapsed) {
    background-color: rgba(var(--primary-rgb), 0.05);
    color: var(--primary);
}

.accordion-body {
    padding: 1.25rem;
}

/* Form Styling */
.form-control {
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    padding: 12px 15px;
    transition: all 0.3s ease;
}

.form-control:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 0.2rem rgba(var(--accent-rgb), 0.25);
}

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

/* Hero Section */
.privacy-hero {
    height: 50vh;
    position: relative;
    display: flex;
    margin-top: 5%;
    align-items: center;
    background: linear-gradient(135deg, rgba(139, 90, 60, 0.8), rgba(212, 165, 116, 0.6)),
        url('/newmoban/_external/demo.mobanwang.com/mb/lo202602/202602016/html/assets/images/privacy-hero.jpeg') center/cover no-repeat;
}

.privacy-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(139, 90, 60, 0.8), rgba(212, 165, 116, 0.6));
}

.privacy-hero-content {
    position: relative;
    z-index: 2;
    color: white;
}

.privacy-hero-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
    margin-top: 5%;
}

/* Sections */
.section {
    padding: 80px 0;
}

.section-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2rem, 4vw, 2.5rem);
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 1.5rem;
    position: relative;
}

.section-subtitle {
    color: var(--gray-600);
    font-size: 1.1rem;
    margin-bottom: 3rem;
    max-width: 600px;
}

/* Privacy Content */
.privacy-content {
    background: white;
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 10px 40px var(--shadow-light);
    margin-top: -50px;
    position: relative;
    z-index: 2;
}

.privacy-section {
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--gray-200);
}

.privacy-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.privacy-section h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 1rem;
}

.privacy-section p {
    margin-bottom: 1rem;
    color: var(--gray-800);
}

.privacy-section ul,
.privacy-section ol {
    margin-bottom: 1rem;
    padding-left: 1.5rem;
}

.privacy-section li {
    margin-bottom: 0.5rem;
    color: var(--gray-800);
}

.highlight-box {
    background: var(--secondary);
    border-left: 4px solid var(--primary);
    padding: 1.5rem;
    border-radius: 0 10px 10px 0;
    margin: 1.5rem 0;
}

.table-of-contents {
    background: var(--gray-100);
    border-radius: 15px;
    padding: 2rem;
    margin-bottom: 3rem;
}

.table-of-contents h4 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.3rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.table-of-contents ul {
    list-style-type: none;
    padding-left: 0;
}

.table-of-contents li {
    margin-bottom: 0.5rem;
}

.table-of-contents a {
    color: var(--dark);
    text-decoration: none;
    transition: color 0.3s ease;
}

.table-of-contents a:hover {
    color: var(--primary);
}

/* Auth Section */
.auth-section {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 100px 0 60px;
    margin: auto;
}

.auth-container {
    background: white;
    border-radius: 25px;
    box-shadow: 0 20px 60px var(--shadow-light);
    overflow: hidden;

    width: 100%;
}

.auth-hero {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: white;
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
}

.auth-hero-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.auth-hero-subtitle {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 2rem;
}

.auth-hero-list {
    list-style: none;
    padding: 0;
}

.auth-hero-list li {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
}

.auth-hero-list i {
    margin-right: 10px;
    font-size: 1.2rem;
}

.auth-form-container {
    padding: 3rem;
}

.auth-tabs {
    border-bottom: 2px solid var(--gray-200);
    margin-bottom: 2rem;
}

.auth-tabs .nav-link {
    border: none;
    color: var(--gray-600);
    font-weight: 500;
    padding: 12px 25px;
    border-radius: 10px 10px 0 0;
    margin-bottom: -2px;
}

.auth-tabs .nav-link.active {
    color: var(--primary);
    background-color: transparent;
    border-bottom: 2px solid var(--primary);
}

.form-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 1.5rem;
}

.form-control {
    border: 1px solid var(--gray-300);
    border-radius: 10px;
    padding: 12px 15px;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.form-control:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 0.2rem rgba(139, 90, 60, 0.1);
}

.form-check-input:checked {
    background-color: var(--primary);
    border-color: var(--primary);
}

.divider {
    display: flex;
    align-items: center;
    margin: 2rem 0;
}

.divider::before,
.divider::after {
    content: '';
    flex: 1;
    border-bottom: 1px solid var(--gray-300);
}

.divider span {
    padding: 0 1rem;
    color: var(--gray-600);
    font-size: 0.9rem;
}

.social-login {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}

.social-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px;
    border: 1px solid var(--gray-300);
    border-radius: 10px;
    background: white;
    color: var(--dark);
    font-weight: 500;
    transition: all 0.3s ease;
}

.social-btn:hover {
    background: var(--gray-100);
    transform: translateY(-2px);
}

.social-btn i {
    margin-right: 10px;
    font-size: 1.2rem;
}

.btn-google {
    color: #DB4437;
}

.btn-facebook {
    color: #4267B2;
}

/* Hero Section */
.terms-hero {
    height: 50vh;
    position: relative;
    display: flex;
    margin-top: 5%;
    align-items: center;
    background: linear-gradient(135deg, rgba(139, 90, 60, 0.8), rgba(212, 165, 116, 0.6)),
        url('/newmoban/_external/demo.mobanwang.com/mb/lo202602/202602016/html/assets/images/summer.jpeg') center/cover no-repeat;
}

.terms-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(139, 90, 60, 0.8), rgba(212, 165, 116, 0.6));
}

.terms-hero-content {
    position: relative;
    z-index: 2;
    color: white;
}

.terms-hero-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
    margin-top: 5%;
}

/* Sections */
.section {
    padding: 80px 0;
}

.section-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2rem, 4vw, 2.5rem);
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 1.5rem;
    position: relative;
}

.section-subtitle {
    color: var(--gray-600);
    font-size: 1.1rem;
    margin-bottom: 3rem;
    max-width: 600px;
}

/* Terms Content */
.terms-content {
    background: white;
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 10px 40px var(--shadow-light);
    margin-top: -50px;
    position: relative;
    z-index: 2;
}

.terms-section {
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--gray-200);
}

.terms-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.terms-section h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 1rem;
}

.terms-section p {
    margin-bottom: 1rem;
    color: var(--gray-800);
}

.terms-section ul,
.terms-section ol {
    margin-bottom: 1rem;
    padding-left: 1.5rem;
}

.terms-section li {
    margin-bottom: 0.5rem;
    color: var(--gray-800);
}

.highlight-box {
    background: var(--secondary);
    border-left: 4px solid var(--primary);
    padding: 1.5rem;
    border-radius: 0 10px 10px 0;
    margin: 1.5rem 0;
}

.shop-hero {
    height: 60vh;
    position: relative;
    display: flex;
    margin-top: 5%;
    align-items: center;
    background: linear-gradient(135deg, rgba(139, 90, 60, 0.8), rgba(212, 165, 116, 0.6)),
        url('/newmoban/_external/demo.mobanwang.com/mb/lo202602/202602016/html/assets/images/shop-hero.jpeg') center/cover no-repeat;
}

.shop-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(139, 90, 60, 0.8), rgba(212, 165, 116, 0.6));
}

.shop-hero-content {
    position: relative;
    z-index: 2;
    color: white;
}

.shop-hero-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
    margin-top: 5%;
}

/* Sections */
.section {
    padding: 80px 0;
}

.section-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2rem, 4vw, 2.5rem);
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 1.5rem;
    position: relative;
}

.section-subtitle {
    color: var(--gray-600);
    font-size: 1.1rem;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.section-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: white;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 2rem;
}



.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px var(--shadow-light);
    border-color: var(--accent);
}

.product-image {
    height: 250px;
    overflow: hidden;
    position: relative;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.product-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--primary);
    color: white;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.product-content {
    padding: 1.5rem;
}

.product-category {
    color: var(--gray-600);
    font-size: 0.85rem;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.product-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.product-description {
    color: var(--gray-600);
    font-size: 0.9rem;
    margin-bottom: 1rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-price {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
}

.current-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
    margin-right: 10px;
}

.original-price {
    font-size: 1rem;
    color: var(--gray-600);
    text-decoration: line-through;
}

.product-rating {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.rating-stars {
    color: var(--accent);
    margin-right: 5px;
}

.rating-count {
    color: var(--gray-600);
    font-size: 0.85rem;
}

/* Shop Categories */
.category-filter {
    background: white;
    border-radius: 15px;
    padding: 1.5rem;
    margin-bottom: 3rem;
    box-shadow: 0 10px 30px var(--shadow-light);
}

.filter-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.3rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.filter-options {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.filter-option {
    background: var(--gray-100);
    border: 1px solid var(--gray-300);
    color: var(--gray-800);
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

/* Cart Icon */
.cart-icon {
    position: relative;
    margin-left: 1rem;
}

.cart-count {
    position: absolute;
    top: -8px;
    right: -8px;
    background: var(--primary);
    color: white;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    font-weight: 600;
}

/* Cart Modal */
.modal-content {
    border-radius: 25px;
    border: none;
    overflow: hidden;
}

.modal-header {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: white;
    border-bottom: none;
}

.modal-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    font-weight: 600;
}



/* Benefits Section */
.benefits-section {
    background: var(--secondary);
    padding: 80px 0;
}

.benefit-item {
    text-align: center;
    padding: 1rem;
}

.benefit-icon {
    width: 80px;
    height: 80px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    box-shadow: 0 10px 30px var(--shadow-light);
}

.benefit-icon i {
    font-size: 2rem;
    color: var(--primary);
}

.benefit-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

/* Product Detail Section */
.product-detail-section {
    padding: 60px 0;
    margin-top: 5%;
}

.product-image-gallery {
    position: sticky;
    top: 100px;
}

.main-product-image {
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 1rem;
    box-shadow: 0 10px 30px var(--shadow-light);
}

.main-product-image img {
    width: 100%;
    height: auto;
    display: block;
}

.product-thumbnails {
    display: flex;
    gap: 10px;
}

.thumbnail {
    width: 80px;
    height: 80px;
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.thumbnail.active {
    border-color: var(--primary);
}

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

.product-info {
    padding-left: 2rem;
}

.product-badge {
    display: inline-block;
    background: var(--primary);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.product-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 1rem;
}

.product-category {
    color: var(--gray-600);
    font-size: 1rem;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.product-rating {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
}

.rating-stars {
    color: var(--accent);
    margin-right: 10px;
}

.rating-count {
    color: var(--gray-600);
    margin-left: 5px;
}

.product-price {
    margin-bottom: 1.5rem;
}

.current-price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary);
    margin-right: 10px;
}

.original-price {
    font-size: 1.5rem;
    color: var(--gray-600);
    text-decoration: line-through;
}

.product-description {
    color: var(--gray-800);
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

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

.feature-item {
    display: flex;
    align-items: center;
    margin-bottom: 0.8rem;
}

.feature-item i {
    color: var(--primary);
    margin-right: 10px;
    width: 20px;
}

.purchase-options {
    background: var(--gray-100);
    border-radius: 15px;
    padding: 1.5rem;
    margin-bottom: 2rem;
}

.quantity-selector {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
}

.quantity-label {
    margin-right: 1rem;
    font-weight: 600;
}

.quantity-controls {
    display: flex;
    align-items: center;
    border: 1px solid var(--gray-300);
    border-radius: 50px;
    overflow: hidden;
}

.quantity-btn {
    width: 40px;
    height: 40px;
    background: white;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.3s ease;
}

.quantity-btn:hover {
    background: var(--gray-200);
}

.quantity-input {
    width: 60px;
    height: 40px;
    border: none;
    border-left: 1px solid var(--gray-300);
    border-right: 1px solid var(--gray-300);
    text-align: center;
    font-weight: 600;
}

.action-buttons {
    display: flex;
    gap: 1rem;
}

.btn-add-to-cart {
    flex: 2;
}

.btn-wishlist {
    flex: 1;
    background: white;
    border: 1px solid var(--gray-300);
    color: var(--dark);
}

.btn-wishlist:hover {
    background: var(--gray-100);
}

.product-meta {
    display: flex;
    gap: 2rem;
    margin-top: 1.5rem;
}

.meta-item {
    display: flex;
    align-items: center;
}

.meta-item i {
    color: var(--primary);
    margin-right: 8px;
}

/* Tabs Section */
.product-tabs-section {
    padding: 60px 0;
    background: var(--gray-100);
}

.product-tabs {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px var(--shadow-light);
}

.nav-tabs {
    border-bottom: 1px solid var(--gray-200);
    padding: 0 2rem;
}

.nav-tabs .nav-link {
    border: none;
    color: var(--gray-600);
    font-weight: 500;
    padding: 1rem 1.5rem;
    border-radius: 0;
    margin-bottom: -1px;
}

.nav-tabs .nav-link.active {
    color: var(--primary);
    background-color: white;
    border-bottom: 2px solid var(--primary);
}

.tab-content {
    padding: 2rem;
}

.tab-pane h4 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.ingredients-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1rem;
    margin-bottom: 2rem;
}

.ingredient-item {
    display: flex;
    align-items: center;
    padding: 0.5rem;
    border-radius: 10px;
    background: var(--gray-100);
}

.ingredient-item i {
    color: var(--primary);
    margin-right: 10px;
}

/* Reviews */
.review-item {
    padding: 1.5rem 0;
    border-bottom: 1px solid var(--gray-200);
}

.review-header {
    display: flex;
    justify-content: between;
    align-items: center;
    margin-bottom: 0.5rem;
}

.reviewer-name {
    font-weight: 600;
}

.review-date {
    color: var(--gray-600);
    font-size: 0.9rem;
}

.review-rating {
    color: var(--accent);
    margin-bottom: 0.5rem;
}

/* Related Products */
.related-products-section {
    padding: 80px 0;
}

.section-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2rem, 4vw, 2.5rem);
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 1.5rem;
    position: relative;
}

.section-subtitle {
    color: var(--gray-600);
    font-size: 1.1rem;
    margin-bottom: 3rem;
    max-width: 600px;
}



.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px var(--shadow-light);
    border-color: var(--accent);
}

.product-image {
    height: 250px;
    overflow: hidden;
    position: relative;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.product-badge-small {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--primary);
    color: white;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.product-content {
    padding: 1.5rem;
}

.product-title-small {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.product-price-small {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.current-price-small {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary);
    margin-right: 10px;
}

.original-price-small {
    font-size: 1rem;
    color: var(--gray-600);
    text-decoration: line-through;
}

/* Order Confirmation Section */
.order-confirmation-section {
    padding: 60px 0;
    margin-top: 10px;
}

.confirmation-container {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 30px var(--shadow-light);
    text-align: center;
}

.section-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2rem, 4vw, 2.5rem);
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 1.5rem;
    position: relative;
}

.confirmation-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    color: white;
    font-size: 2rem;
}

.confirmation-message {
    font-size: 1.2rem;
    color: var(--gray-600);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.order-details-container {
    background: var(--gray-100);
    border-radius: 15px;
    padding: 2rem;
    margin: 2rem 0;
    text-align: left;
}

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

.info-card {
    background: white;
    border-radius: 10px;
    padding: 1.5rem;
    box-shadow: 0 5px 15px var(--shadow-light);
}

.info-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.2rem;
    color: var(--primary);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
}

.info-title i {
    margin-right: 0.5rem;
}

.info-content p {
    margin-bottom: 0.5rem;
}

.info-content strong {
    color: var(--dark);
}

.order-items {
    margin: 2rem 0;
}

.order-item {
    display: flex;
    align-items: center;
    padding: 1.5rem;
    border-bottom: 1px solid var(--gray-200);
}

.order-item:last-child {
    border-bottom: none;
}

.order-item-image {
    width: 80px;
    height: 80px;
    border-radius: 10px;
    overflow: hidden;
    margin-right: 1.5rem;
}

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

.order-item-details {
    flex: 1;
}

.order-item-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.order-item-category {
    color: var(--gray-600);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.order-item-price {
    font-weight: 600;
    color: var(--dark);
}

.order-summary {
    background: white;
    border-radius: 10px;
    padding: 1.5rem;
    margin-top: 2rem;
    box-shadow: 0 5px 15px var(--shadow-light);
}

.summary-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.3rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--gray-300);
}

.summary-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1rem;
}

.summary-total {
    display: flex;
    justify-content: space-between;
    font-size: 1.2rem;
    font-weight: 700;
    margin: 1.5rem 0;
    padding-top: 1rem;
    border-top: 1px solid var(--gray-300);
    color: var(--primary);
}

.order-actions {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

/* Order Tracking */
.order-tracking {
    margin: 3rem 0;
}

.tracking-steps {
    display: flex;
    justify-content: space-between;
    position: relative;
    margin: 2rem 0;
}

.tracking-steps::before {
    content: '';
    position: absolute;
    top: 15px;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--gray-200);
    z-index: 1;
}

.tracking-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 2;
}

.tracking-step-icon {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: var(--gray-200);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.5rem;
    font-size: 0.8rem;
    color: var(--gray-600);
}

.tracking-step.active .tracking-step-icon {
    background: var(--primary);
    color: white;
}

.tracking-step.completed .tracking-step-icon {
    background: var(--accent);
    color: white;
}

.tracking-step-label {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--gray-600);
    text-align: center;
}

.tracking-step.active .tracking-step-label,
.tracking-step.completed .tracking-step-label {
    color: var(--primary);
}

/* Recommended Products */
.recommended-section {
    padding: 60px 0;
    background: white;
}

.product-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 2rem;
    border: 1px solid var(--gray-200);
    transition: all 0.4s ease;
    height: auto;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px var(--shadow-light);
    border-color: var(--accent);
}

.product-image {
    height: 250px;
    overflow: hidden;
    position: relative;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.product-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--primary);
    color: white;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.product-content {
    padding: 1.5rem;
}

.product-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.product-price {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.current-price {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary);
    margin-right: 10px;
}

.original-price {
    font-size: 1rem;
    color: var(--gray-600);
    text-decoration: line-through;
}

.btn-shop {
    background: var(--primary);
    color: white;
    border: none;
    border-radius: 50px;
    padding: 10px 20px;
    font-weight: 600;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.btn-shop:hover {
    background: var(--accent);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px var(--shadow-medium);
}

.profile-container {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 30px var(--shadow-light);
}

.profile-sidebar {
    background: var(--gray-100);
    border-radius: 15px;
    padding: 2rem;
    height: 100%;
}

.profile-picture {
    text-align: center;
    margin-bottom: 2rem;
}

.profile-avatar {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    border: 5px solid white;
    box-shadow: 0 10px 30px var(--shadow-light);
    margin-bottom: 1rem;
}

.profile-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.profile-email {
    color: var(--gray-600);
    margin-bottom: 1.5rem;
}

.profile-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.profile-menu-item {
    margin-bottom: 0.5rem;
}

.profile-menu-link {
    display: flex;
    align-items: center;
    padding: 0.75rem 1rem;
    color: var(--dark);
    text-decoration: none;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.profile-menu-link:hover,
.profile-menu-link.active {
    background: var(--primary);
    color: white;
}

.profile-menu-link i {
    margin-right: 0.75rem;
    width: 20px;
    text-align: center;
}

.profile-content {
    padding-left: 2rem;
}

@media (max-width: 768px) {
    .profile-content {
        padding-left: 0;
        margin-top: 2rem;
    }
}

.profile-tab {
    display: none;
}

.profile-tab.active {
    display: block;
}

.tab-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--gray-200);
}

/* Form Styles */
.form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    font-weight: 600;
    color: var(--gray-800);
    margin-bottom: 0.5rem;
}

.form-control {
    border: 1px solid var(--gray-300);
    border-radius: 10px;
    padding: 0.75rem 1rem;
    transition: all 0.3s ease;
}

.form-control:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 0.2rem rgba(139, 90, 60, 0.15);
}

.form-check-input:checked {
    background-color: var(--primary);
    border-color: var(--primary);
}

.form-text {
    color: var(--gray-600);
    font-size: 0.85rem;
}

/* Stats Cards */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.stat-card {
    background: var(--gray-100);
    border-radius: 15px;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
    text-decoration: none;
    color: #8b5a3c;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px var(--shadow-light);
}

.stat-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--primary);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.2rem;
}

.stat-value {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.5rem;
}


/* Address Cards */
.address-card {
    border: 1px solid var(--gray-200);
    border-radius: 15px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.address-card:hover {
    box-shadow: 0 5px 15px var(--shadow-light);
}

.address-card.default {
    border-color: var(--primary);
    background: rgba(139, 90, 60, 0.05);
}

.address-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.address-title {
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 0.25rem;
}

.address-badge {
    background: var(--primary);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
}

.address-actions {
    display: flex;
    gap: 0.5rem;
}

.btn-action {
    padding: 0.4rem 0.8rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-edit {
    background: transparent;
    color: var(--primary);
    border: 1px solid var(--primary);
}

.btn-edit:hover {
    background: var(--primary);
    color: white;
}

.btn-delete {
    background: transparent;
    color: #dc3545;
    border: 1px solid #dc3545;
}

.btn-delete:hover {
    background: #dc3545;
    color: white;
}

.profile-section {
    margin-top: 8%;
}

#changePhotoBtn {
    margin: auto;
    margin-bottom: 20px;
}

#home .btn-outline-custom {
    border: 2px solid #f5f4f4;
    color: #ffffff;
}

#about .section-badge {
    margin: auto;
    display: block;
    width: 38%;
    margin-bottom: 5%;
}

.text-muted {
    color: #fff !important;
}

.checkout-section {
    margin-top: 5%;
}

/* Offers Page Styles */
.offers-hero {
    padding: 180px 0 100px;
    background: linear-gradient(135deg, rgba(168, 139, 108, 0.9), rgba(118, 96, 72, 0.9)) center/cover no-repeat;
    position: relative;
    overflow: hidden;
}

.offer-card {
    background: white;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    padding: 30px;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.offer-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.featured-offer {
    border: 2px solid var(--accent);
    transform: scale(1.02);
}

.offer-badge {
    position: absolute;
    top: 20px;
    right: -30px;
    background: var(--accent);
    color: white;
    padding: 5px 30px;
    transform: rotate(45deg);
    font-size: 0.8rem;
    font-weight: 600;
}

.offer-header {
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--gray-200);
}

.offer-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--primary);
}

.offer-price {
    display: flex;
    align-items: center;
    gap: 15px;
}

.original-price {
    text-decoration: line-through;
    color: var(--gray-500);
    font-size: 1.2rem;
}

.current-price {
    color: var(--accent);
    font-size: 1.2rem;
    font-weight: 700;
}

.offer-content {
    flex-grow: 1;
    margin-bottom: 25px;
}

.offer-description {
    margin-bottom: 20px;
    color: var(--gray-600);
}

.offer-features {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
}

.offer-features li {
    padding: 8px 0;
    display: flex;
    align-items: center;
}

.offer-features i {
    color: var(--accent);
    margin-right: 10px;
    font-size: 0.9rem;
}

.offer-validity {
    display: flex;
    align-items: center;
    color: var(--gray-500);
    font-size: 0.9rem;
}

.offer-validity i {
    margin-right: 8px;
}

.offer-actions {
    margin-top: auto;
}

/* Seasonal Offers */
.seasonal-offer {
    border-top: 4px solid var(--primary);
}

/* Membership Cards */
.membership-card {
    background: white;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    padding: 30px;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
    position: relative;
}

.membership-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

.featured-membership {
    border: 2px solid var(--accent);
    transform: scale(1.05);
}

.membership-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--accent);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.membership-header {
    text-align: center;
    margin-bottom: 25px;
    padding-bottom: 25px;
    border-bottom: 1px solid var(--gray-200);
}

.membership-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--primary);
}

.membership-price {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.membership-price .price {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary);
}

.membership-price .duration {
    color: var(--gray-500);
    font-size: 0.9rem;
}

.membership-features {
    flex-grow: 1;
    margin-bottom: 30px;
}

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

.membership-features li {
    padding: 10px 0;
    display: flex;
    align-items: center;
}

.membership-features i {
    margin-right: 10px;
    font-size: 0.9rem;
}

.membership-features .fa-check {
    color: var(--success);
}

.membership-features .fa-times {
    color: var(--gray-400);
}

.membership-actions {
    margin-top: auto;
}

/* Newsletter Form */
.newsletter-form .input-group {
    border-radius: 50px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.newsletter-form .form-control {
    border: none;
    padding: 15px 25px;
    font-size: 1rem;
}

.newsletter-form .btn {
    border-radius: 0 50px 50px 0;
    padding: 15px 30px;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .offers-hero {
        padding: 150px 0 80px;
    }

    .featured-offer,
    .featured-membership {
        transform: none;
    }

    .offer-card:hover,
    .membership-card:hover {
        transform: none;
    }

    .newsletter-form .input-group {
        flex-direction: column;
        border-radius: 16px;
    }

    .newsletter-form .form-control {
        border-radius: 16px 16px 0 0;
    }

    .newsletter-form .btn {
        border-radius: 0 0 16px 16px;
        width: 100%;
    }
}

.offers-hero .hero-description {
    max-width: 100%;
}


.wishlist-hero {
    background: linear-gradient(135deg, rgba(168, 139, 108, 0.9), rgba(118, 96, 72, 0.9)) center/cover no-repeat;
    padding: 150px 0 80px;
    color: white;
    text-align: center;
    margin-top: 4%;
}

.wishlist-hero-title {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 600;
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

.wishlist-item {
    background: white;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    padding: 20px;
    margin-bottom: 30px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.6s ease forwards;
}

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

.wishlist-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.wishlist-remove {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 50%;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #d9534f;
    transition: all 0.3s ease;
}

.wishlist-remove:hover {
    background: #d9534f;
    color: white;
}

.wishlist-image {
    height: 180px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 15px;
}

.wishlist-empty {
    text-align: center;
    padding: 60px 20px;
}

.wishlist-empty-icon {
    font-size: 4rem;
    color: var(--gray-400);
    margin-bottom: 20px;
}

.wishlist-count {
    background: var(--primary);
    color: white;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    font-size: 0.7rem;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: -5px;
    right: -5px;
}

.wishlist-actions {
    display: flex;
    gap: 10px;
    margin-top: 15px;
}

.wishlist-actions .btn {
    padding: 10px 20px;
    font-size: 0.9rem;
    border-radius: 25px;
    flex: 1;
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wishlist-actions .btn-primary-custom {
    background: var(--primary);
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 25px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.wishlist-actions .btn-primary-custom:hover {
    background: var(--primary-dark);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.wishlist-actions .btn-outline-custom {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
    padding: 10px 22px;
    border-radius: 25px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.wishlist-actions .btn-outline-custom:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-2px);
}

#clearWishlist,
#moveAllToCart {
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: 500;
    transition: all 0.3s ease;
}

#moveAllToCart {
    background: var(--primary);
    color: white;
    border: none;
}

#moveAllToCart:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

@media (max-width: 1150px) {
    .navbar-brand {
        font-size: 1.2rem !important;
    }
    .cart-icon{margin-top: 38%;}
    .hero-title{margin-bottom: 1rem;}
}

@media (max-width: 768px) {
    .wishlist-hero-title {
        font-size: 2.5rem;
    }

    .wishlist-actions {
        flex-direction: column;
    }

    .wishlist-actions .btn {
        width: 100%;
    }

    .d-flex.gap-2 {
        /* flex-direction: column; */
        gap: 10px !important;
    }

    .d-flex.gap-2 .btn {
        width: 100%;
    }
    .cart-icon{margin-top: 38%;}
}

.wishlist-hero .hero-description {
    max-width: 100%;
}

.wishlist-item:nth-child(1) {
    animation-delay: 0.1s;
}

.wishlist-item:nth-child(2) {
    animation-delay: 0.2s;
}

.wishlist-item:nth-child(3) {
    animation-delay: 0.3s;
}

.wishlist-item:nth-child(4) {
    animation-delay: 0.4s;
}

.wishlist-item:nth-child(5) {
    animation-delay: 0.5s;
}

.wishlist-item:nth-child(6) {
    animation-delay: 0.6s;
}

.hair-hero .btn-outline-custom {
    border: 2px solid #fff;
    color: #fff
}

.beauty-hero .btn-outline-custom {
    border: 2px solid #fff;
    color: #fff
}

#homesubtext {
    background-color: #f8f9fa;
    padding: 10px;
}
/* Make navbar collapsible section scrollable on small screens */
@media (max-width: 991px) {
  .navbar-collapse {
    max-height: 70vh; /* adjust height as needed */
    overflow-y: auto;
    padding-bottom: 1rem;
  }

  /* Optional: make scroll smooth and hide ugly scrollbar on WebKit browsers */
  .navbar-collapse::-webkit-scrollbar {
    width: 6px;
  }
  .navbar-collapse::-webkit-scrollbar-thumb {
    background-color: rgba(0, 0, 0, 0.2);
    border-radius: 10px;
  }
}
