/* ==========================================================================
   R.braids - Luxury Braiding Studio Design System & Stylesheet
   ========================================================================== */

/* CSS Variables / Theme Tokens */
:root {
    --bg-main: #130a06;
    --bg-hero-gradient: radial-gradient(circle at 70% 30%, #2b170e 0%, #140b07 50%, #0a0402 100%);
    --bg-card: #1c0e08;
    
    --color-gold-cream: #ebd3b4;
    --color-gold-script: #e6b464;
    --color-gold-accent: #d9a861;
    --color-gold-hover: #f0c37f;
    --color-text-muted: #bcae9e;
    --color-text-bright: #f5ece1;
    --color-dark-btn-text: #1d0f07;
    
    --font-heading: 'Cormorant Garamond', Georgia, serif;
    --font-script: 'Alex Brush', cursive;
    --font-body: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;

    --transition-smooth: cubic-bezier(0.25, 1, 0.5, 1);
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-main);
    background-image: var(--bg-hero-gradient);
    background-attachment: fixed;
    color: var(--color-text-bright);
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100vh;
    -webkit-font-smoothing: antialiased;
}

a {
    color: inherit;
    text-decoration: none;
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    outline: none;
}

/* ==========================================================================
   Header & Navigation
   ========================================================================== */
.site-header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    padding: 24px 0;
    transition: background 0.3s ease, padding 0.3s ease;
}

.site-header.scrolled {
    position: fixed;
    background: rgba(19, 10, 6, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 14px 0;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.4);
    border-bottom: 1px solid rgba(217, 168, 97, 0.1);
}

.header-container {
    max-width: 1360px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Brand Logo */
.brand-logo {
    display: flex;
    align-items: center;
}

.logo-image {
    height: 75px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.5));
    transition: transform 0.3s var(--transition-smooth);
}

.brand-logo:hover .logo-image {
    transform: scale(1.03);
}

/* Nav Menu */
.nav-menu {
    display: flex;
    align-items: center;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 40px;
}

.nav-link {
    font-size: 1.08rem;
    font-weight: 500;
    color: #dfd3c4;
    letter-spacing: 0.5px;
    position: relative;
    padding: 6px 0;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: var(--color-gold-cream);
}

.nav-link.active {
    color: var(--color-gold-cream);
    font-weight: 600;
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--color-gold-accent);
    border-radius: 2px;
    box-shadow: 0 0 8px rgba(217, 168, 97, 0.6);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--color-gold-accent);
    transition: width 0.3s ease, left 0.3s ease;
    border-radius: 2px;
}

.nav-link:hover::after {
    width: 100%;
    left: 0;
}

/* Header Action Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s var(--transition-smooth);
}

.btn-header-book {
    background: linear-gradient(135deg, #e4b676 0%, #c5934f 100%);
    color: var(--color-dark-btn-text);
    padding: 10px 26px;
    font-size: 0.95rem;
    box-shadow: 0 4px 15px rgba(217, 168, 97, 0.2);
}

.btn-header-book:hover {
    background: linear-gradient(135deg, #f0c37f 0%, #d4a05a 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(217, 168, 97, 0.35);
}

/* Mobile Toggle */
.mobile-toggle {
    display: none;
    background: transparent;
    color: var(--color-gold-accent);
    font-size: 1.6rem;
    padding: 6px;
}

.nav-close-btn,
.nav-backdrop {
    display: none;
}

/* ==========================================================================
   Hero Section
   ========================================================================== */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 110px;
    padding-bottom: 50px;
    overflow: hidden;
}

.hero-bg-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: right center;
    filter: brightness(0.92) contrast(1.05);
}

.hero-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to right,
        rgba(19, 10, 6, 0.98) 0%,
        rgba(19, 10, 6, 0.92) 35%,
        rgba(19, 10, 6, 0.65) 55%,
        rgba(19, 10, 6, 0.25) 75%,
        rgba(19, 10, 6, 0.1) 100%
    );
    pointer-events: none;
}

.hero-container {
    max-width: 1360px;
    width: 100%;
    margin: 0 auto;
    padding: 0 40px;
    position: relative;
    z-index: 2;
}

/* Left Hero Content */
.hero-content {
    max-width: 680px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 4.8rem;
    line-height: 1.02;
    font-weight: 600;
    letter-spacing: 1.5px;
    color: var(--color-gold-cream);
    text-transform: uppercase;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    margin-bottom: 4px;
}

.title-line {
    display: block;
}

.hero-script {
    font-family: var(--font-script);
    font-size: 3.2rem;
    color: var(--color-gold-script);
    font-weight: 400;
    margin-top: -6px;
    margin-bottom: 24px;
    letter-spacing: 0.5px;
    text-shadow: 0 2px 10px rgba(230, 180, 100, 0.2);
}

.hero-description {
    font-size: 1.1rem;
    color: var(--color-text-muted);
    line-height: 1.65;
    font-weight: 400;
    max-width: 520px;
    margin-bottom: 36px;
}

/* Primary CTA Button */
.hero-cta-wrapper {
    margin-bottom: 50px;
}

.btn-primary-cta {
    background: linear-gradient(135deg, #e4b676 0%, #c5934f 100%);
    color: var(--color-dark-btn-text);
    padding: 16px 36px;
    font-size: 1.05rem;
    font-weight: 600;
    border-radius: 8px;
    box-shadow: 0 8px 25px rgba(217, 168, 97, 0.25);
    transition: all 0.3s var(--transition-smooth);
}

.btn-primary-cta:hover {
    background: linear-gradient(135deg, #f0c37f 0%, #d4a05a 100%);
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(217, 168, 97, 0.4);
}

/* Contact Info Row */
.hero-contact-info {
    display: flex;
    align-items: center;
    gap: 40px;
    padding-top: 10px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.05rem;
    font-weight: 500;
    color: #e5d8ca;
    transition: color 0.3s ease;
}

.contact-item:hover {
    color: var(--color-gold-cream);
}

.contact-icon {
    color: var(--color-gold-accent);
    font-size: 1.2rem;
}



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

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

.animate-up {
    animation: fadeInUp 0.9s var(--transition-smooth) forwards;
}

.animate-fade-in {
    animation: fadeIn 1.2s var(--transition-smooth) forwards;
}

.delay-1 { animation-delay: 0.15s; }
.delay-2 { animation-delay: 0.3s; }
.delay-3 { animation-delay: 0.45s; }
.delay-4 { animation-delay: 0.6s; }

/* ==========================================================================
   Booking Modal
   ========================================================================== */
.booking-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.booking-modal.active {
    opacity: 1;
    visibility: visible;
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 5, 3, 0.85);
    backdrop-filter: blur(8px);
}

.modal-card {
    position: relative;
    width: 90%;
    max-width: 480px;
    background: #1c0f09;
    border: 1px solid rgba(217, 168, 97, 0.3);
    border-radius: 16px;
    padding: 36px 30px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.8);
    z-index: 2;
    transform: translateY(20px);
    transition: transform 0.3s var(--transition-smooth);
}

.booking-modal.active .modal-card {
    transform: translateY(0);
}

.modal-close {
    position: absolute;
    top: 16px;
    right: 20px;
    background: transparent;
    color: var(--color-text-muted);
    font-size: 1.8rem;
    transition: color 0.2s ease;
}

.modal-close:hover {
    color: var(--color-gold-accent);
}

.modal-header {
    margin-bottom: 24px;
    text-align: center;
}

.modal-header h3 {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--color-gold-cream);
    margin-bottom: 6px;
}

.modal-header p {
    font-size: 0.9rem;
    color: var(--color-text-muted);
}

.booking-form .form-group {
    margin-bottom: 18px;
}

.booking-form label {
    display: block;
    font-size: 0.85rem;
    color: var(--color-gold-cream);
    margin-bottom: 6px;
    font-weight: 500;
}

.booking-form input,
.booking-form select {
    width: 100%;
    padding: 12px 14px;
    background: #120905;
    border: 1px solid rgba(217, 168, 97, 0.25);
    border-radius: 8px;
    color: var(--color-text-bright);
    font-family: inherit;
    font-size: 0.95rem;
    transition: border-color 0.2s ease;
}

.booking-form input:focus,
.booking-form select:focus {
    outline: none;
    border-color: var(--color-gold-accent);
}

.btn-full {
    width: 100%;
    margin-top: 10px;
}

/* ==========================================================================
   Responsive Layout Breakpoints
   ========================================================================== */
@media (max-width: 1100px) {
    .hero-title {
        font-size: 4rem;
    }
    .hero-script {
        font-size: 2.8rem;
    }
    .header-container {
        padding: 0 24px;
    }
    .hero-container {
        padding: 0 24px;
    }
}

@media (max-width: 900px) {
    .hero-bg-overlay {
        background: linear-gradient(
            to top,
            rgba(19, 10, 6, 0.95) 0%,
            rgba(19, 10, 6, 0.85) 60%,
            rgba(19, 10, 6, 0.5) 100%
        );
    }

    .hero-container {
        text-align: center;
        padding-top: 20px;
    }

    .hero-content {
        max-width: 100%;
        align-items: center;
        margin: 0 auto;
    }

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

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

    .hero-description {
        max-width: 100%;
    }

    .hero-contact-info {
        justify-content: center;
        flex-wrap: wrap;
        gap: 20px;
    }

    .mobile-toggle {
        display: block;
        position: relative;
        z-index: 110;
        cursor: pointer;
    }

    .nav-close-btn {
        display: block;
        position: absolute;
        top: 24px;
        right: 24px;
        background: transparent;
        color: var(--color-gold-accent);
        font-size: 2.2rem;
        cursor: pointer;
        line-height: 1;
        transition: transform 0.2s ease, color 0.2s ease;
    }

    .nav-close-btn:hover {
        color: var(--color-gold-cream);
        transform: scale(1.1);
    }

    .nav-backdrop {
        display: block;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: rgba(10, 5, 3, 0.75);
        backdrop-filter: blur(5px);
        -webkit-backdrop-filter: blur(5px);
        z-index: 102;
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.3s ease, visibility 0.3s ease;
    }

    .nav-backdrop.open {
        opacity: 1;
        visibility: visible;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 290px;
        height: 100vh;
        background: #180d08;
        border-left: 1px solid rgba(217, 168, 97, 0.2);
        box-shadow: -10px 0 35px rgba(0, 0, 0, 0.8);
        padding: 100px 32px 40px;
        z-index: 105;
        transition: right 0.4s var(--transition-smooth);
    }

    .nav-menu.open {
        right: 0;
    }

    .nav-list {
        flex-direction: column;
        gap: 24px;
    }

    .nav-link {
        font-size: 1.1rem;
    }

    .header-actions {
        display: none;
    }
}

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

    .hero-script {
        font-size: 2rem;
    }

    .hero-description {
        font-size: 0.95rem;
    }

    .btn-primary-cta {
        width: 100%;
        padding: 14px 24px;
        font-size: 1rem;
    }

    .hero-contact-info {
        flex-direction: column;
        gap: 12px;
    }
}

/* ==========================================================================
   About Section
   ========================================================================== */
.about-section {
    background-color: #eae0d2;
    color: #2b1f17;
    padding: 110px 0;
    position: relative;
    overflow: hidden;
}

.about-container {
    max-width: 1360px;
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

/* Left Column: Overlapping Collage Visual */
.about-visual-col {
    display: flex;
    justify-content: center;
    position: relative;
}

.about-collage-wrapper {
    position: relative;
    width: 100%;
    max-width: 580px;
    padding-bottom: 50px;
}

/* Leaf Accent */
.leaf-accent {
    position: absolute;
    bottom: -10px;
    left: -40px;
    width: 130px;
    height: 190px;
    z-index: 1;
    pointer-events: none;
}

/* Main Back Image */
.collage-img-main-wrap {
    width: 360px;
    height: 470px;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 45px rgba(45, 28, 18, 0.14);
    position: relative;
    z-index: 2;
    transition: transform 0.6s var(--transition-smooth);
}

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

.collage-img-main-wrap:hover {
    transform: scale(1.02);
}

/* Secondary Overlapping Front Image */
.collage-img-sub-wrap {
    position: absolute;
    bottom: 0;
    right: 20px;
    width: 270px;
    height: 350px;
    border-radius: 24px;
    overflow: hidden;
    border: 8px solid #eae0d2;
    box-shadow: 0 20px 45px rgba(45, 28, 18, 0.18);
    z-index: 3;
    transition: transform 0.6s var(--transition-smooth);
}

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

.collage-img-sub-wrap:hover {
    transform: scale(1.03) translateY(-6px);
}

/* Right Column: About Content */
.about-content-col {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-left: 20px;
}

.section-subtitle {
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 2.5px;
    color: #9e7953;
    text-transform: uppercase;
    margin-bottom: 14px;
    display: block;
}

.about-title {
    margin-bottom: 24px;
}

.title-serif {
    display: block;
    font-family: var(--font-heading);
    font-size: 3.2rem;
    font-weight: 600;
    line-height: 1.1;
    color: #271b13;
}

.title-script {
    display: block;
    font-family: var(--font-script);
    font-size: 3.1rem;
    font-weight: 400;
    color: #271b13;
    margin-top: -6px;
    letter-spacing: 0.5px;
}

.about-text {
    font-size: 1.05rem;
    color: #4a3b30;
    line-height: 1.8;
    margin-bottom: 36px;
    max-width: 520px;
}

.about-text p {
    margin-bottom: 16px;
}

.about-text p:last-child {
    margin-bottom: 0;
}

.btn-dark-cta {
    background-color: #20140e;
    color: #eae0d2;
    padding: 14px 34px;
    font-size: 0.98rem;
    font-weight: 600;
    border-radius: 8px;
    box-shadow: 0 6px 20px rgba(32, 20, 14, 0.2);
    transition: all 0.3s var(--transition-smooth);
}

.btn-dark-cta:hover {
    background-color: #38251b;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(32, 20, 14, 0.35);
}

/* Scroll reveal utility */
.scroll-reveal {
    opacity: 0;
    transform: translateY(35px);
    transition: opacity 0.8s ease-out, transform 0.8s var(--transition-smooth);
}

.scroll-reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive About Section */
@media (max-width: 1024px) {
    .about-container {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    .about-visual-col {
        justify-content: center;
    }
    .about-content-col {
        padding-left: 0;
        text-align: center;
        align-items: center;
    }
    .about-text {
        max-width: 100%;
    }
}

@media (max-width: 600px) {
    .about-section {
        padding: 70px 0;
    }
    .about-collage-wrapper {
        padding-bottom: 40px;
    }
    .collage-img-main-wrap {
        width: 260px;
        height: 350px;
    }
    .collage-img-sub-wrap {
        width: 200px;
        height: 260px;
        right: 0;
    }
    .leaf-accent {
        left: -10px;
        width: 90px;
        height: 140px;
    }
    .title-serif {
        font-size: 2.4rem;
    }
    .title-script {
        font-size: 2.3rem;
    }
}

/* ==========================================================================
   Services Section & Carousel
   ========================================================================== */
.services-section {
    background-color: #110804;
    background-image: radial-gradient(circle at 50% 50%, #201007 0%, #110804 70%);
    padding: 110px 0;
    position: relative;
}

.services-container {
    max-width: 1360px;
    margin: 0 auto;
    padding: 0 40px;
}

.services-header {
    text-align: center;
    margin-bottom: 60px;
}

.gold-text {
    color: var(--color-gold-accent);
}

.services-title {
    font-family: var(--font-heading);
    font-size: 3.6rem;
    font-weight: 600;
    color: var(--color-gold-cream);
    margin-top: 6px;
    letter-spacing: 0.5px;
}

.services-title-divider {
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #e4b676, #c5934f);
    border-radius: 2px;
    margin: 16px auto 0;
}

/* Carousel Container */
.services-carousel-wrapper {
    position: relative;
    padding: 0 50px;
}

.services-carousel-track-container {
    overflow: hidden;
    width: 100%;
    padding: 15px 0 35px;
}

.services-carousel-track {
    display: flex;
    gap: 28px;
    transition: transform 0.5s var(--transition-smooth);
    will-change: transform;
}

/* Service Card */
.service-card {
    flex: 0 0 calc((100% - 56px) / 3);
    background-color: #1d1009;
    border-radius: 20px;
    border: 1px solid rgba(217, 168, 97, 0.15);
    overflow: hidden;
    position: relative;
    box-shadow: 0 14px 35px rgba(0, 0, 0, 0.4);
    transition: transform 0.4s var(--transition-smooth), border-color 0.4s ease, box-shadow 0.4s ease;
}

.service-card:hover {
    transform: translateY(-8px);
    border-color: rgba(217, 168, 97, 0.45);
    box-shadow: 0 20px 45px rgba(217, 168, 97, 0.2);
}

.card-image-wrap {
    height: 260px;
    width: 100%;
    position: relative;
    overflow: hidden;
}

.card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s var(--transition-smooth);
}

.service-card:hover .card-img {
    transform: scale(1.06);
}

/* Round Badge Icon */
.card-badge-icon {
    width: 54px;
    height: 54px;
    background: linear-gradient(135deg, #e4b676 0%, #b88647 100%);
    border-radius: 50%;
    color: #1d0f07;
    margin: -44px auto 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 4px solid #1d1009;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.5);
    font-size: 1.25rem;
    position: relative;
    z-index: 5;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.card-badge-icon svg {
    width: 22px;
    height: 22px;
}

.service-card:hover .card-badge-icon {
    transform: scale(1.12);
}

.card-body {
    padding: 0 24px 28px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.card-title {
    font-family: var(--font-body);
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--color-gold-cream);
    margin-bottom: 8px;
}

.card-subtitle {
    font-size: 0.8rem;
    color: #e4b676;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 12px;
    display: inline-block;
}

.card-price-list {
    list-style: none;
    padding: 0;
    margin: 4px 0 22px;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.card-price-list li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 6px 12px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 6px;
    border-bottom: 1px dashed rgba(217, 168, 97, 0.15);
    font-size: 0.88rem;
    transition: background 0.2s ease;
}

.card-price-list li:hover {
    background: rgba(228, 182, 118, 0.08);
}

.card-price-list li:last-child {
    border-bottom: none;
}

.length-name {
    color: var(--color-text-muted, #d3c4b7);
    font-weight: 500;
}

.length-price {
    color: #e4b676;
    font-weight: 700;
    font-size: 0.95rem;
}

.btn-card-book {
    background: transparent;
    color: var(--color-gold-accent);
    border: 1px solid var(--color-gold-accent);
    padding: 10px 24px;
    font-size: 0.88rem;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s ease;
    width: 100%;
    margin-top: auto;
}

.btn-card-book:hover {
    background: linear-gradient(135deg, #e4b676 0%, #c5934f 100%);
    color: var(--color-dark-btn-text);
    border-color: transparent;
    box-shadow: 0 4px 15px rgba(217, 168, 97, 0.3);
}

/* Services Info Banner (Instructions & Colors) */
.services-info-banner {
    margin-top: 50px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
}

.info-box {
    background: #1d1009;
    border: 1px solid rgba(217, 168, 97, 0.25);
    border-radius: 16px;
    padding: 28px 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.info-box:hover {
    transform: translateY(-4px);
    border-color: rgba(217, 168, 97, 0.5);
}

.info-box-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.info-box-header .info-icon {
    font-size: 1.4rem;
    color: #e4b676;
}

.info-box-header h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--color-gold-cream);
    margin: 0;
}

.info-box p {
    color: #d3c4b7;
    font-size: 0.95rem;
    line-height: 1.65;
    margin-bottom: 8px;
}

.info-box .sub-info {
    margin-top: 14px;
    font-size: 0.86rem;
    color: #bfa795;
    line-height: 1.5;
}

.color-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 12px 0 14px;
}

.color-tag {
    background: rgba(228, 182, 118, 0.12);
    color: #e4b676;
    border: 1px solid rgba(228, 182, 118, 0.3);
    padding: 5px 14px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

@media (max-width: 768px) {
    .services-info-banner {
        grid-template-columns: 1fr;
    }
}

/* Navigation Arrows */
.carousel-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, #e4b676 0%, #c5934f 100%);
    color: var(--color-dark-btn-text);
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.5);
    z-index: 10;
    transition: all 0.3s var(--transition-smooth);
}

.carousel-nav-btn:hover {
    background: linear-gradient(135deg, #f0c37f 0%, #d4a05a 100%);
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 8px 25px rgba(217, 168, 97, 0.4);
}

.carousel-nav-btn.prev-btn {
    left: 0;
}

.carousel-nav-btn.next-btn {
    right: 0;
}

/* Dots Indicators */
.carousel-dots {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 15px;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(217, 168, 97, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: var(--color-gold-accent);
    width: 30px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(217, 168, 97, 0.5);
}

/* Responsive Carousel Breakpoints */
@media (max-width: 1100px) {
    .service-card {
        flex: 0 0 calc((100% - 28px) / 2);
    }
}

@media (max-width: 768px) {
    .services-carousel-wrapper {
        padding: 0 10px;
    }
    .carousel-nav-btn {
        display: none;
    }
    .service-card {
        flex: 0 0 100%;
    }
    .services-title {
        font-size: 2.8rem;
    }
}

/* ==========================================================================
   Why Choose Us Section
   ========================================================================== */
.why-us-section {
    background-color: #eae0d2;
    color: #2b1f17;
    padding: 110px 0;
    position: relative;
    overflow: hidden;
}

.why-us-container {
    max-width: 1360px;
    margin: 0 auto;
    padding: 0 40px;
}

.why-us-header {
    text-align: center;
    margin-bottom: 60px;
}

.brown-text {
    color: #9e7953;
}

.why-us-title {
    font-family: var(--font-heading);
    font-size: 3.6rem;
    font-weight: 600;
    color: #271b13;
    margin-top: 6px;
    letter-spacing: 0.5px;
}

.why-us-title-divider {
    width: 60px;
    height: 3px;
    background: #9e7953;
    border-radius: 2px;
    margin: 16px auto 0;
}

.why-us-carousel-wrapper {
    position: relative;
    padding: 0 50px;
}

.why-us-carousel-track-container {
    overflow: hidden;
    width: 100%;
    padding: 20px 0 40px;
}

.why-us-carousel-track {
    display: flex;
    transition: transform 0.5s var(--transition-smooth);
    will-change: transform;
}

/* Why Us Card */
.why-us-card {
    flex: 0 0 33.3333%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 0 30px;
    position: relative;
}

.why-us-card::after {
    content: '';
    position: absolute;
    right: 0;
    top: 10%;
    height: 80%;
    width: 1px;
    background: rgba(158, 121, 83, 0.3);
}

.why-us-card:last-child::after {
    display: none;
}

/* Double Circle Badge */
.why-icon-circle {
    width: 88px;
    height: 88px;
    border: 1.5px solid #9e7953;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    transition: transform 0.4s var(--transition-smooth), border-color 0.4s ease;
}

.icon-inner {
    width: 66px;
    height: 66px;
    background-color: #6b4929;
    border-radius: 50%;
    color: #eae0d2;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    box-shadow: 0 4px 15px rgba(107, 73, 41, 0.25);
}

.why-us-card:hover .why-icon-circle {
    transform: scale(1.08);
    border-color: #6b4929;
}

.why-card-title {
    font-family: var(--font-body);
    font-size: 1.25rem;
    font-weight: 700;
    color: #271b13;
    margin-bottom: 12px;
}

.why-card-text {
    font-size: 0.98rem;
    color: #57473b;
    line-height: 1.6;
    max-width: 270px;
}

/* Dark Buttons & Dots for Light Background */
.carousel-nav-btn.dark-btn {
    background: linear-gradient(135deg, #2a1b12 0%, #150b06 100%);
    color: var(--color-gold-cream);
}

.carousel-nav-btn.dark-btn:hover {
    background: linear-gradient(135deg, #402a1d 0%, #20120b 100%);
    box-shadow: 0 8px 25px rgba(32, 20, 14, 0.4);
}

.carousel-dots.dark-dots .dot {
    background: rgba(107, 73, 41, 0.25);
}

.carousel-dots.dark-dots .dot.active {
    background: #6b4929;
    box-shadow: 0 0 10px rgba(107, 73, 41, 0.4);
}

/* Responsive Why Choose Us Breakpoints */
@media (max-width: 1024px) {
    .why-us-card {
        flex: 0 0 50%;
    }
}

@media (max-width: 640px) {
    .why-us-carousel-wrapper {
        padding: 0 10px;
    }
    .why-us-card {
        flex: 0 0 100%;
        padding: 0 15px;
    }
    .why-us-card::after {
        display: none;
    }
    .why-us-title {
        font-size: 2.8rem;
    }
}

/* ==========================================================================
   Gallery Section
   ========================================================================== */
.gallery-section {
    background-color: #eae0d2;
    color: #2b1f17;
    padding: 110px 0;
    position: relative;
    overflow: hidden;
}

.gallery-container {
    max-width: 1360px;
    margin: 0 auto;
    padding: 0 40px;
}

.gallery-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 50px;
}

.gallery-title {
    font-family: var(--font-heading);
    font-size: 3.6rem;
    font-weight: 600;
    color: #271b13;
    margin-top: 6px;
    letter-spacing: 0.5px;
}

.gallery-title-divider {
    width: 60px;
    height: 3px;
    background: #9e7953;
    border-radius: 2px;
    margin-top: 14px;
}

.btn-outline-brown {
    background: transparent;
    border: 1.5px solid #a07d57;
    color: #271b13;
    padding: 12px 28px;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s var(--transition-smooth);
}

.btn-outline-brown:hover {
    background-color: #a07d57;
    color: #eae0d2;
    box-shadow: 0 6px 20px rgba(160, 125, 87, 0.3);
    transform: translateY(-2px);
}

/* Gallery Carousel */
.gallery-carousel-wrapper {
    position: relative;
    padding: 0 50px;
}

.gallery-carousel-track-container {
    overflow: hidden;
    width: 100%;
    padding: 15px 0 35px;
}

.gallery-carousel-track {
    display: flex;
    gap: 24px;
    transition: transform 0.5s var(--transition-smooth);
    will-change: transform;
}

/* Gallery Card */
.gallery-card {
    flex: 0 0 calc((100% - 48px) / 3);
    height: 280px;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(45, 28, 18, 0.14);
    transition: transform 0.4s var(--transition-smooth), box-shadow 0.4s ease;
}

.gallery-card:hover {
    transform: translateY(-6px) scale(1.02);
    box-shadow: 0 18px 40px rgba(45, 28, 18, 0.25);
}

.gallery-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s var(--transition-smooth);
}

.gallery-card:hover .gallery-img {
    transform: scale(1.08);
}

/* Overlay & Zoom Icon */
.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(28, 16, 10, 0.7);
    backdrop-filter: blur(2px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.35s ease;
    color: #eae0d2;
}

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

.gallery-zoom-icon {
    font-size: 2rem;
    color: #e4b676;
    margin-bottom: 12px;
    transform: scale(0.7);
    transition: transform 0.3s var(--transition-smooth);
}

.gallery-card:hover .gallery-zoom-icon {
    transform: scale(1);
}

.gallery-tag {
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* Lightbox Modal */
.lightbox-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.lightbox-modal.active {
    opacity: 1;
    visibility: visible;
}

.lightbox-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 5, 3, 0.92);
    backdrop-filter: blur(10px);
}

.lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 90vh;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.lightbox-full-img {
    max-width: 100%;
    max-height: 78vh;
    border-radius: 16px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.85);
    border: 2px solid rgba(217, 168, 97, 0.3);
    object-fit: contain;
}

.lightbox-caption {
    color: #ebd3b4;
    font-family: var(--font-heading);
    font-size: 1.8rem;
    margin-top: 16px;
    text-align: center;
}

.lightbox-close {
    position: absolute;
    top: -45px;
    right: 0;
    background: transparent;
    color: #eae0d2;
    font-size: 2.6rem;
    cursor: pointer;
    line-height: 1;
    transition: color 0.2s ease;
}

.lightbox-close:hover {
    color: #e4b676;
}

/* Responsive Gallery Breakpoints */
@media (min-width: 1300px) {
    .gallery-card {
        flex: 0 0 calc((100% - 72px) / 4);
    }
}

@media (max-width: 1024px) {
    .gallery-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }
    .gallery-card {
        flex: 0 0 calc((100% - 24px) / 2);
    }
}

@media (max-width: 640px) {
    .gallery-section {
        padding: 70px 0;
    }
    .gallery-carousel-wrapper {
        padding: 0 10px;
    }
    .gallery-card {
        flex: 0 0 100%;
        height: 240px;
    }
    .gallery-title {
        font-size: 2.8rem;
    }
}

/* ==========================================================================
   Testimonials Section
   ========================================================================== */
.testimonials-section {
    background-color: #110804;
    background-image: radial-gradient(circle at 50% 50%, #1f0f07 0%, #110804 70%);
    padding: 110px 0;
    position: relative;
    overflow: hidden;
}

.testimonials-container {
    max-width: 1360px;
    margin: 0 auto;
    padding: 0 40px;
}

.testimonials-header {
    text-align: center;
    margin-bottom: 60px;
}

.testimonials-title {
    font-family: var(--font-heading);
    font-size: 3.6rem;
    font-weight: 600;
    color: var(--color-gold-cream);
    margin-top: 6px;
    letter-spacing: 0.5px;
}

.testimonials-quote-badge {
    font-size: 2.2rem;
    color: var(--color-gold-accent);
    margin-top: 10px;
    opacity: 0.85;
}

/* Carousel */
.testimonials-carousel-wrapper {
    position: relative;
    padding: 0 50px;
}

.testimonials-carousel-track-container {
    overflow: hidden;
    width: 100%;
    padding: 25px 0 35px;
}

.testimonials-carousel-track {
    display: flex;
    gap: 28px;
    transition: transform 0.5s var(--transition-smooth);
    will-change: transform;
}

/* Testimonial Card */
.testimonial-card {
    flex: 0 0 calc((100% - 56px) / 3);
    background: rgba(26, 14, 8, 0.95);
    border-radius: 18px;
    border: 1px solid rgba(197, 146, 79, 0.35);
    padding: 28px 24px;
    display: flex;
    align-items: flex-start;
    gap: 18px;
    position: relative;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.4);
    transition: transform 0.4s var(--transition-smooth), border-color 0.4s ease, box-shadow 0.4s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    border-color: rgba(228, 182, 118, 0.65);
    box-shadow: 0 18px 45px rgba(217, 168, 97, 0.18);
}

.top-quote-mark {
    position: absolute;
    top: -18px;
    left: 50%;
    transform: translateX(-50%);
    background: #110804;
    padding: 0 10px;
    color: var(--color-gold-accent);
    font-family: var(--font-heading);
    font-size: 2.4rem;
    line-height: 1;
}

.testimonial-avatar-wrap {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    border: 2px solid var(--color-gold-accent);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
}

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

.testimonial-content {
    display: flex;
    flex-direction: column;
}

.star-rating {
    color: var(--color-gold-accent);
    font-size: 0.95rem;
    margin-bottom: 10px;
    display: flex;
    gap: 4px;
}

.testimonial-quote {
    font-size: 0.95rem;
    color: #d8c7b6;
    line-height: 1.55;
    margin-bottom: 12px;
    font-style: italic;
}

.testimonial-author {
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--color-gold-cream);
}

/* Responsive Testimonials Breakpoints */
@media (max-width: 1100px) {
    .testimonial-card {
        flex: 0 0 calc((100% - 28px) / 2);
    }
}

@media (max-width: 768px) {
    .testimonials-carousel-wrapper {
        padding: 0 10px;
    }
    .testimonial-card {
        flex: 0 0 100%;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .testimonials-title {
        font-size: 2.8rem;
    }
}

/* ==========================================================================
   Contact Section
   ========================================================================== */
.contact-section {
    background-color: #eae0d2;
    color: #2b1f17;
    padding: 110px 0;
    position: relative;
    overflow: hidden;
}

.leaf-accent-left {
    position: absolute;
    bottom: -10px;
    left: -30px;
    width: 140px;
    height: 220px;
    pointer-events: none;
    z-index: 1;
}

.leaf-accent-right {
    position: absolute;
    top: -10px;
    right: -30px;
    width: 140px;
    height: 220px;
    transform: scaleX(-1);
    pointer-events: none;
    z-index: 1;
}

.contact-container {
    max-width: 1360px;
    margin: 0 auto;
    padding: 0 40px;
    position: relative;
    z-index: 2;
}

.contact-grid {
    display: grid;
    grid-template-columns: 0.95fr 1.15fr 0.9fr;
    gap: 40px;
    align-items: stretch;
}

/* Column 1: Info Details */
.contact-info-col {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-title {
    font-family: var(--font-heading);
    font-size: 3.4rem;
    font-weight: 600;
    color: #271b13;
    margin-top: 4px;
    margin-bottom: 30px;
    line-height: 1.1;
}

.contact-details-list {
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.contact-detail-row {
    display: flex;
    align-items: center;
    gap: 16px;
    color: #4a3b30;
    font-size: 1.02rem;
    font-weight: 500;
    transition: color 0.3s ease;
}

a.contact-detail-row:hover {
    color: #9e7953;
}

.detail-icon-wrap {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: rgba(158, 121, 83, 0.15);
    color: #9e7953;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.15rem;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.contact-detail-row:hover .detail-icon-wrap {
    transform: scale(1.08);
    background-color: rgba(158, 121, 83, 0.25);
}

.detail-text-group {
    display: flex;
    flex-direction: column;
    line-height: 1.4;
}

.sub-schedule {
    font-size: 0.9rem;
    color: #7a6657;
}

/* Column 2: Form */
.contact-form-col {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-main-form {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.dual-inputs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.contact-main-form input,
.contact-main-form textarea {
    width: 100%;
    padding: 15px 20px;
    background-color: #e5dad0;
    border: 1px solid rgba(160, 125, 87, 0.35);
    border-radius: 8px;
    font-family: inherit;
    font-size: 0.98rem;
    color: #271b13;
    transition: all 0.3s ease;
}

.contact-main-form input::placeholder,
.contact-main-form textarea::placeholder {
    color: #8c7667;
}

.contact-main-form input:focus,
.contact-main-form textarea:focus {
    outline: none;
    border-color: #9e7953;
    background-color: #ede2d8;
    box-shadow: 0 0 12px rgba(158, 121, 83, 0.2);
}

.btn-send-message {
    align-self: flex-start;
    padding: 14px 34px;
    font-size: 1rem;
}

/* Column 3: Promo Book Box */
.contact-book-box-col {
    display: flex;
}

.book-promo-card {
    background-color: #decbba;
    border-radius: 20px;
    padding: 38px 30px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    box-shadow: 0 14px 35px rgba(45, 28, 18, 0.1);
    border: 1px solid rgba(160, 125, 87, 0.2);
    transition: transform 0.4s var(--transition-smooth);
}

.book-promo-card:hover {
    transform: translateY(-4px);
}

.book-promo-icon-wrap {
    font-size: 3rem;
    color: #6b4929;
    margin-bottom: 18px;
}

.book-promo-title {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 600;
    color: #271b13;
    line-height: 1.15;
    margin-bottom: 14px;
}

.book-promo-text {
    font-size: 0.98rem;
    color: #57473b;
    line-height: 1.65;
    margin-bottom: 28px;
}

.btn-promo-book {
    width: 100%;
    padding: 14px 0;
    font-size: 1.02rem;
}

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer {
    background-color: #0d0603;
    color: var(--color-text-muted);
    padding: 60px 0 30px;
    border-top: 1px solid rgba(217, 168, 97, 0.15);
}

.footer-container {
    max-width: 1360px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.footer-logo {
    height: 75px;
    width: auto;
    object-fit: contain;
    margin-bottom: 10px;
    filter: drop-shadow(0 2px 8px rgba(0,0,0,0.5));
}

.footer-tagline {
    font-size: 0.95rem;
    color: var(--color-gold-cream);
    letter-spacing: 0.5px;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin: 30px 0;
}

.footer-links a {
    font-size: 0.95rem;
    color: #dfd3c4;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--color-gold-accent);
}

.footer-socials {
    display: flex;
    gap: 24px;
    margin-bottom: 30px;
}

.footer-socials a {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #1c0e08;
    border: 1px solid rgba(217, 168, 97, 0.25);
    color: var(--color-gold-accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.footer-socials a:hover {
    background: linear-gradient(135deg, #e4b676 0%, #c5934f 100%);
    color: var(--color-dark-btn-text);
    transform: translateY(-3px);
    box-shadow: 0 6px 18px rgba(217, 168, 97, 0.3);
}

.footer-copyright {
    font-size: 0.88rem;
    color: #8c7b6d;
    border-top: 1px solid rgba(217, 168, 97, 0.1);
    padding-top: 24px;
    width: 100%;
}

/* Responsive Contact & Footer Breakpoints */
@media (max-width: 1100px) {
    .contact-grid {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
    .contact-book-box-col {
        grid-column: span 2;
    }
}

@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
    .contact-book-box-col {
        grid-column: span 1;
    }
    .dual-inputs {
        grid-template-columns: 1fr;
    }
    .btn-send-message {
        width: 100%;
    }
    .contact-title {
        font-size: 2.8rem;
    }
    .footer-links {
        gap: 16px;
        flex-direction: column;
    }
}

/* ==========================================================================
   Makeup Services Section
   ========================================================================== */
.makeup-section {
    background-color: #150904;
    background-image: radial-gradient(circle at 50% 30%, #2a140b 0%, #120703 80%);
    padding: 110px 0;
    position: relative;
    overflow: hidden;
}

.makeup-leaf svg path {
    fill: #e4b676;
}

.makeup-container {
    max-width: 1360px;
    margin: 0 auto;
    padding: 0 40px;
    position: relative;
    z-index: 3;
}

.makeup-header {
    text-align: center;
    margin-bottom: 65px;
}

.makeup-title {
    margin-top: 8px;
}

.makeup-title .title-serif {
    display: block;
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 600;
    color: var(--color-gold-cream);
    line-height: 1.05;
}

.makeup-title .title-script {
    display: block;
    font-family: var(--font-script);
    font-size: 3.2rem;
    color: var(--color-gold-script);
    margin-top: -8px;
}

.makeup-title-divider {
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #e4b676, #c5934f);
    border-radius: 2px;
    margin: 16px auto 0;
}

.makeup-grid {
    display: grid;
    grid-template-columns: 480px 1fr;
    gap: 50px;
    align-items: start;
}

/* Premium Arched Price Card (Matching User's Photo) */
.makeup-arch-card {
    background: #ecd9c7;
    color: #3b2216;
    border-radius: 220px 220px 24px 24px;
    padding: 48px 36px 36px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.65), 0 0 0 1px rgba(228, 182, 118, 0.35);
    position: relative;
    overflow: hidden;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.makeup-arch-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.75), 0 0 0 2px rgba(228, 182, 118, 0.6);
}

.arch-card-header {
    text-align: center;
    margin-bottom: 28px;
    position: relative;
}

.arch-flower-emblem {
    width: 68px;
    height: 68px;
    margin: 0 auto 12px;
}

.arch-brand-subtitle {
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 2.5px;
    color: #8c5b41;
    display: block;
    margin-bottom: 6px;
}

.arch-main-title {
    font-family: var(--font-heading);
    font-size: 3.4rem;
    font-weight: 700;
    color: #4a1d17;
    letter-spacing: 3px;
    line-height: 1;
    margin-bottom: 0;
}

.arch-script-subtitle {
    font-family: var(--font-script);
    font-size: 2.7rem;
    color: #934c3e;
    margin-top: -6px;
}

.makeup-category-block {
    margin-bottom: 26px;
}

.category-banner {
    background-color: #cb8e78;
    color: #2b120c;
    padding: 10px 16px;
    text-align: center;
    border-radius: 6px;
    margin-bottom: 16px;
    box-shadow: 0 4px 12px rgba(74, 29, 23, 0.15);
}

.category-banner h4 {
    font-family: var(--font-body);
    font-size: 0.92rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    margin: 0;
    text-transform: uppercase;
}

.makeup-item-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.makeup-item {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding-bottom: 12px;
    border-bottom: 1px dashed rgba(140, 91, 65, 0.3);
}

.makeup-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.item-info {
    display: flex;
    flex-direction: column;
    padding-right: 12px;
}

.item-name {
    font-size: 1.05rem;
    font-weight: 600;
    color: #2e170e;
}

.item-desc {
    font-size: 0.82rem;
    color: #755243;
    margin-top: 3px;
    line-height: 1.35;
}

.item-price {
    font-size: 1.2rem;
    font-weight: 700;
    color: #4a1d17;
}

.arch-card-footer {
    margin-top: 28px;
}

/* Feature Cards Grid */
.makeup-cards-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
}

.makeup-feature-card {
    background-color: #1d1009;
    border-radius: 18px;
    border: 1px solid rgba(217, 168, 97, 0.18);
    overflow: hidden;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4);
    transition: transform 0.4s var(--transition-smooth), border-color 0.4s ease;
    display: flex;
    flex-direction: column;
}

.makeup-feature-card:hover {
    transform: translateY(-6px);
    border-color: rgba(217, 168, 97, 0.45);
}

.makeup-img-wrap {
    height: 210px;
    width: 100%;
    position: relative;
    overflow: hidden;
}

.makeup-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.makeup-feature-card:hover .makeup-img {
    transform: scale(1.06);
}

.makeup-badge-tag {
    position: absolute;
    top: 14px;
    right: 14px;
    background: linear-gradient(135deg, #e4b676 0%, #c5934f 100%);
    color: #1d0f07;
    font-weight: 700;
    font-size: 1.05rem;
    padding: 6px 14px;
    border-radius: 20px;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.4);
}

.makeup-card-info {
    padding: 22px 20px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.makeup-card-info h3 {
    font-family: var(--font-body);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--color-gold-cream);
    margin-bottom: 8px;
}

.makeup-card-info p {
    font-size: 0.88rem;
    color: var(--color-text-muted);
    line-height: 1.5;
    margin-bottom: 18px;
}

.makeup-card-info .btn-card-book {
    margin-top: auto;
}

@media (max-width: 1100px) {
    .makeup-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .makeup-arch-card {
        max-width: 520px;
        margin: 0 auto;
    }
}

@media (max-width: 640px) {
    .makeup-cards-col {
        grid-template-columns: 1fr;
    }
    .makeup-arch-card {
        border-radius: 120px 120px 20px 20px;
        padding: 35px 22px 28px;
    }
    .arch-main-title {
        font-size: 2.5rem;
    }
    .makeup-title .title-serif {
        font-size: 2.6rem;
    }
    .makeup-title .title-script {
        font-size: 2.4rem;
    }
}
