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

:root {
    --primary-beige: #F5F1E8;
    --secondary-beige: #E8E2D1;
    --accent-beige: #D8D0B8;
    --dark-brown: #5D4037;
    --medium-brown: #8B7355;
    --light-brown: #A1887F;
    --text-dark: #333333;
    --text-light: #666666;
    --white: #FFFFFF;
    --shadow: 0 4px 12px rgba(93, 64, 55, 0.08);
    --transition: all 0.3s ease;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-dark);
    background-color: var(--primary-beige);
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* Language Switcher */
.language-switcher {
    position: fixed;
    top: 20px;
    right: 20px;
    display: flex;
    background-color: var(--white);
    border-radius: 20px;
    padding: 5px;
    box-shadow: var(--shadow);
    z-index: 1000;
}

.lang-btn {
    background: none;
    border: none;
    padding: 8px 16px;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    border-radius: 15px;
    cursor: pointer;
    transition: var(--transition);
}

.lang-btn.active {
    background-color: var(--dark-brown);
    color: var(--white);
}

/* Header & Navigation */
.header {
    background-color: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 999;
    padding: 5px 0;
}

.logo-container {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.logo {
    height: 60px;
    width: auto;
}

.mobile-menu-btn {
    display: none;
    font-size: 1.5rem;
    color: var(--dark-brown);
    cursor: pointer;
    position: absolute;
    right: 0;
    padding: 10px;
    transition: var(--transition);
}

.mobile-menu-btn:hover {
    color: var(--medium-brown);
}

.nav-list {
    display: flex;
    list-style: none;
    justify-content: center;
    gap: 40px;
    margin-top: 10px;
}

.nav-list a {
    text-decoration: none;
    color: var(--dark-brown);
    font-weight: 500;
    font-size: 1.1rem;
    position: relative;
    padding: 5px 0;
    transition: var(--transition);
}

.nav-list a:hover,
.nav-list a.active {
    color: var(--medium-brown);
}

.nav-list a.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--medium-brown);
}

/* Hero Section */
.hero {
    padding: 40px 0 30px;
}

/* Contact page hero centering */
body:has(.contact-form) .hero {
    padding: 40px 0 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

body:has(.contact-form) .hero p {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 500px;
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    margin: 0;
}

/* Dolls page hero styling */
body:has(.dolls-section) .hero {
    padding: 40px 0 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

body:has(.dolls-section) .hero p {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 500px;
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    margin: 0;
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    color: var(--dark-brown);
    margin-bottom: 15px;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: var(--medium-brown);
    margin-bottom: 20px;
    font-weight: 400;
}

.hero-text {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 30px;
    max-width: 500px;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.btn {
    display: inline-block;
    padding: 14px 32px;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 500;
    font-size: 1rem;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
}

.btn-primary {
    background-color: var(--dark-brown);
    color: var(--white);
}

.btn-primary:hover {
    background-color: var(--medium-brown);
    transform: translateY(-3px);
    box-shadow: var(--shadow);
}

.btn-secondary {
    background-color: transparent;
    color: var(--dark-brown);
    border: 2px solid var(--dark-brown);
}

.btn-secondary:hover {
    background-color: rgba(93, 64, 55, 0.05);
    transform: translateY(-3px);
}

.hero-image {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
    max-width: 300px;
}

.hero-img {
    width: 100%;
    height: auto;
    display: block;
    transition: var(--transition);
}

.hero-img:hover {
    transform: scale(1.02);
}

.image-credit {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.85);
    text-align: center;
    padding: 10px;
    font-size: 0.9rem;
    color: var(--text-light);
}

/* Features Section */
.features {
    padding: 80px 0;
    background-color: var(--white);
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    text-align: center;
    color: var(--dark-brown);
    margin-bottom: 60px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

/* Events page: two cards side-by-side on desktop */
.events-grid {
    grid-template-columns: repeat(2, 1fr);
}

.features-grid {
    align-items: stretch;
}

.feature-card {
    text-align: center;
    padding: 40px 30px;
    background-color: var(--primary-beige);
    border-radius: 10px;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    height: 100%;
}

/* Home page: keep the 3 icon feature cards as smaller squares */
section.features:not(.dolls-section) .features-grid:has(.feature-icon) {
    justify-items: center;
}

section.features:not(.dolls-section) .feature-card:has(.feature-icon) {
    width: 100%;
    max-width: 280px;
    aspect-ratio: 1;
    padding: 28px 20px;
    justify-content: center;
}

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

.feature-icon {
    font-size: 2.5rem;
    color: var(--medium-brown);
    margin-bottom: 20px;
}

.feature-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: var(--dark-brown);
    margin-bottom: 15px;
}

.feature-card p {
    color: var(--text-light);
}

/* CTA Section */
.cta {
    padding: 100px 0;
    background-color: var(--secondary-beige);
    text-align: center;
}

.cta h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: var(--dark-brown);
    margin-bottom: 20px;
}

.cta p {
    font-size: 1.2rem;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto 40px;
}

/* Footer */
.footer {
    background-color: var(--dark-brown);
    color: var(--primary-beige);
    padding: 30px 0 20px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
    margin-bottom: 20px;
}

.footer-brand img {
    height: 60px;
    margin-bottom: 10px;
}

.footer-brand p {
    font-size: 0.95rem;
    opacity: 0.8;
}

.footer-links h4,
.footer-social h4 {
    font-size: 1rem;
    margin-bottom: 10px;
    color: var(--white);
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: var(--primary-beige);
    text-decoration: none;
    opacity: 0.8;
    transition: var(--transition);
}

.footer-links a:hover {
    opacity: 1;
    padding-left: 5px;
}

.social-icons {
    display: flex;
    gap: 10px;
    margin-bottom: 10px;
}

.social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--white);
    font-size: 1rem;
    transition: var(--transition);
}

.social-icons a:hover {
    background-color: var(--medium-brown);
    transform: translateY(-3px);
}

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

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.9rem;
    opacity: 0.7;
}

#current-year {
    font-weight: 600;
}

@media (max-width: 768px) {
    .logo-container {
        flex-direction: column;
        gap: 2px;
    }
    
    .mobile-menu-btn {
        display: block;
        position: static;
        font-size: 1.75rem;
    }
    
    .nav-menu {
        position: fixed;
        top: 140px;
        left: 0;
        width: 100%;
        background-color: var(--white);
        box-shadow: var(--shadow);
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }
    
    .nav-menu.active {
        max-height: 500px;
    }
    
    .nav-list {
        flex-direction: column;
        gap: 0;
        padding: 0;
        margin: 0;
    }
    
    .nav-list li {
        border-bottom: 1px solid var(--secondary-beige);
    }
    
    .nav-list li:last-child {
        border-bottom: none;
    }
    
    .nav-list a {
        display: block;
        padding: 18px 20px;
        text-align: center;
        font-size: 1rem;
    }
    
    .nav-list a.active::after {
        display: none;
    }

    .hero .container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-image {
        justify-self: center;
        margin: 0 auto;
    }

    .hero-text {
        margin: 0 auto 30px;
    }

    .hero-buttons {
        justify-content: center;
    }

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

    .cta h2 {
        font-size: 2rem;
    }
}

@media (max-width: 576px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .btn {
        padding: 12px 24px;
        width: 100%;
        text-align: center;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }

}

/* ===== PAGE STYLES FOR OTHER PAGES ===== */
/* Page Hero for other pages */
.page-hero {
    padding: 100px 0 60px;
    background-color: var(--white);
    text-align: center;
}

.page-title {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    color: var(--dark-brown);
    margin-bottom: 15px;
}

.page-subtitle {
    font-size: 1.3rem;
    color: var(--medium-brown);
    font-weight: 400;
    max-width: 600px;
    margin: 0 auto;
}

/* About Page Styles */
.page-content {
    padding: 80px 0;
}

.content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
    margin-bottom: 80px;
}

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

.content-text h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: var(--medium-brown);
    margin: 30px 0 15px;
}

.content-text p {
    margin-bottom: 20px;
    color: var(--text-light);
    line-height: 1.7;
}

.feature-list {
    list-style: none;
    margin: 20px 0;
}

.feature-list li {
    margin-bottom: 12px;
    padding-left: 25px;
    position: relative;
    color: var(--text-light);
}

.feature-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--medium-brown);
    font-weight: bold;
}

.content-image {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

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

.image-caption {
    text-align: center;
    padding: 15px;
    font-size: 0.9rem;
    color: var(--text-light);
    background-color: var(--primary-beige);
    border-top: 1px solid var(--accent-beige);
}

/* Artist Section */
.artist-section {
    background-color: var(--white);
    padding: 60px;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.artist-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    color: var(--dark-brown);
    text-align: center;
    margin-bottom: 40px;
}

.artist-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 50px;
    align-items: center;
}

.artist-image {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

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

.artist-info h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: var(--medium-brown);
    margin-bottom: 20px;
}

.artist-info p {
    margin-bottom: 20px;
    color: var(--text-light);
    line-height: 1.7;
}

/* ===== ABOUT PAGE STYLES ===== */
.about-hero {
    padding: 100px 0 80px;
    background: linear-gradient(135deg, var(--white) 0%, var(--primary-beige) 100%);
    text-align: center;
}

.about-title {
    font-family: 'Playfair Display', serif;
    font-size: 3.2rem;
    color: var(--dark-brown);
    margin-bottom: 20px;
    line-height: 1.2;
}

.about-subtitle {
    font-size: 1.4rem;
    color: var(--medium-brown);
    max-width: 700px;
    margin: 0 auto 40px;
    line-height: 1.6;
}

.about-content {
    padding: 80px 0;
    background-color: var(--white);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 80px;
}

.about-image {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform 0.5s ease;
}

.about-image:hover {
    transform: translateY(-10px);
}

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

.about-text h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    color: var(--dark-brown);
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 15px;
}

.about-text h2:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background-color: var(--medium-brown);
}

.about-text p {
    color: var(--text-light);
    margin-bottom: 25px;
    line-height: 1.7;
    font-size: 1.1rem;
}

.about-features {
    background-color: var(--primary-beige);
    padding: 80px 0;
}

.feature-list-about {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.feature-item {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(93, 64, 55, 0.12);
}

.feature-icon-about {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--secondary-beige) 0%, var(--accent-beige) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    color: var(--dark-brown);
    font-size: 1.8rem;
}

.feature-item h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    color: var(--dark-brown);
    margin-bottom: 15px;
}

.artist-section-about {
    padding: 100px 0;
    background-color: var(--white);
}

.artist-card {
    max-width: 800px;
    margin: 0 auto;
    background: var(--primary-beige);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.artist-header {
    background: linear-gradient(135deg, var(--dark-brown) 0%, var(--medium-brown) 100%);
    padding: 50px;
    text-align: center;
    color: var(--white);
}

.artist-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.artist-header p {
    font-size: 1.2rem;
    opacity: 0.9;
}

.artist-body {
    padding: 50px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.artist-photo {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.artist-photo img {
    width: 100%;
    height: auto;
    display: block;
}

.artist-info h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: var(--dark-brown);
    margin-bottom: 20px;
}

.artist-info p {
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.7;
}

/* Responsive for About Page */
@media (max-width: 992px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .feature-list-about {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .artist-body {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .about-title {
        font-size: 2.5rem;
    }
    
    .about-subtitle {
        font-size: 1.2rem;
    }
    
    .feature-list-about {
        grid-template-columns: 1fr;
    }
    
    .artist-header {
        padding: 40px 20px;
    }
    
    .artist-body {
        padding: 40px 20px;
    }
}

/* ===== SIMPLE ABOUT PAGE ===== */
.page-header {
    padding: 100px 0 60px;
    text-align: center;
    background-color: var(--white);
}

.page-header h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    color: var(--dark-brown);
    margin-bottom: 15px;
}

.page-header p {
    font-size: 1.2rem;
    color: var(--medium-brown);
    max-width: 600px;
    margin: 0 auto;
}

.about-section {
    padding: 80px 0;
}

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

.about-card {
    background: var(--white);
    padding: 50px;
    border-radius: 10px;
    box-shadow: var(--shadow);
    margin-bottom: 60px;
}

.about-card h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    color: var(--dark-brown);
    margin-bottom: 25px;
    text-align: center;
}

.about-card p {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.about-image {
    margin: 40px 0;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

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

.about-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.feature-box {
    text-align: center;
    padding: 30px;
    background: var(--primary-beige);
    border-radius: 8px;
}

.feature-box i {
    font-size: 2rem;
    color: var(--medium-brown);
    margin-bottom: 20px;
}

.feature-box h3 {
    font-family: 'Playfair Display', serif;
    color: var(--dark-brown);
    margin-bottom: 10px;
    font-size: 1.3rem;
}

@media (max-width: 768px) {
    .about-card {
        padding: 30px 20px;
    }
    
    .page-header {
        padding: 80px 0 40px;
    }
    
    .page-header h1 {
        font-size: 2.5rem;
    }
}

/* ===== ABOUT PAGE THAT MATCHES INDEX ===== */
.about-page .container {
    max-width: 800px;
    margin: 0 auto;
}

.about-header {
    padding: 100px 0 60px;
    text-align: center;
}

.about-header h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3.2rem;
    color: var(--dark-brown);
    margin-bottom: 20px;
}

.about-header p {
    font-size: 1.3rem;
    color: var(--medium-brown);
    max-width: 600px;
    margin: 0 auto;
}

.about-content {
    padding: 60px 0;
}

.about-section {
    background-color: var(--white);
    padding: 60px;
    border-radius: 10px;
    box-shadow: var(--shadow);
    margin-bottom: 60px;
}

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

.about-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    color: var(--dark-brown);
    margin-bottom: 30px;
    text-align: center;
}

.about-section p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 25px;
    font-size: 1.1rem;
    text-align: left;
}

.about-image-container {
    margin: 40px auto;
    max-width: 600px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

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

.about-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.about-feature-item {
    text-align: center;
    padding: 30px;
    background-color: var(--primary-beige);
    border-radius: 8px;
    transition: var(--transition);
}

.about-feature-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.about-feature-item i {
    font-size: 2.5rem;
    color: var(--medium-brown);
    margin-bottom: 20px;
}

.about-feature-item h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    color: var(--dark-brown);
    margin-bottom: 10px;
}

@media (max-width: 768px) {
    .about-section {
        padding: 40px 30px;
    }
    
    .about-header h1 {
        font-size: 2.5rem;
    }
    
    .about-features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

/* Contact Form Styles */
.contact-form .form-group {
    margin-bottom: 20px;
}

.contact-form label {
    display: block;
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    color: var(--dark-brown);
    margin-bottom: 6px;
    font-weight: 500;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    color: var(--dark-brown);
    transition: border-color 0.3s;
    background-color: var(--white);
    box-sizing: border-box;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--medium-brown);
}

.contact-form textarea {
    resize: vertical;
    min-height: 100px;
    line-height: 1.5;
}

@media (max-width: 768px) {
    .contact-form {
        padding: 30px 25px;
    }
}

/* Dolls Page Styles */
.dolls-section .feature-card.sold {
    position: relative;
}

/* Fade only the card contents (keeps layout identical) */
.dolls-section .feature-card.sold > * {
    opacity: 0.55;
}

/* Subtle overlay that does not block clicks */
.dolls-section .feature-card.sold::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.25);
    border-radius: 10px;
    pointer-events: none;
}

/* SOLD badge */
.dolls-section .feature-card.sold::after {
    content: "SOLD";
    position: absolute;
    top: 14px;
    right: 14px;
    padding: 6px 10px;
    background: rgba(92, 74, 55, 0.92);
    color: #fff;
    border-radius: 999px;
    font-size: 0.8rem;
    letter-spacing: 0.08em;
    font-weight: 600;
    pointer-events: none;
}

.dolls-section .doll-image-carousel {
    position: relative;
    width: 100%;
    max-width: 250px;
    height: 250px;
    background-color: var(--secondary-beige);
    border-radius: 8px;
    margin: 0 auto 20px;
    overflow: hidden;
}

.dolls-section .doll-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 200ms ease;
}

.dolls-section .doll-image.active {
    opacity: 1;
}

.dolls-section .carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(255, 255, 255, 0.85);
    border: none;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    z-index: 10;
}

.dolls-section .carousel-btn:hover {
    background-color: rgba(255, 255, 255, 1);
}

.dolls-section .carousel-btn.prev {
    left: 10px;
}

.dolls-section .carousel-btn.next {
    right: 10px;
}

.dolls-section .carousel-btn i {
    color: var(--dark-brown);
    font-size: 1rem;
}

.doll-image-placeholder {
    width: 100%;
    height: 250px;
    background-color: var(--secondary-beige);
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: var(--transition);
}

.doll-image-placeholder:hover {
    background-color: var(--accent-beige);
}

.doll-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: var(--dark-brown);
    margin-bottom: 0;
    flex-shrink: 0;
}

.doll-subtitle {
    color: var(--medium-brown);
    font-size: 0.85rem;
    margin-bottom: 0;
    font-weight: 500;
    flex-shrink: 0;
}

.doll-description {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 15px;
    flex-shrink: 0;
}

.doll-details {
    color: var(--medium-brown);
    font-size: 0.9rem;
    margin-bottom: 0;
    font-weight: 500;
    flex-shrink: 0;
}

.doll-price {
    color: var(--dark-brown);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0;
    padding-bottom: 40px;
    flex-shrink: 0;
}

.dolls-section .feature-card .btn {
    margin-top: 20px;
    flex-shrink: 0;
    padding: 10px 30px;
    font-size: 0.95rem;
}

