/* ====================================
   Gabby's Dollhouse - CSS Styles
   ==================================== */

/* ========== CSS Variables ========== */
:root {
    /* Brand Colors - Gabby's Dollhouse */
    --primary-purple: #8B4FD9;
    --primary-pink: #FF6EB4;
    --primary-blue: #4FC3F7;
    --primary-yellow: #FFD166;
    --primary-orange: #FF9B42;
    
    /* Secondary Colors */
    --light-purple: #C4A1E8;
    --light-pink: #FFB3D9;
    --light-blue: #B3E5FC;
    --light-yellow: #FFF4CC;
    
    /* Neutral Colors */
    --white: #FFFFFF;
    --light-gray: #F8F9FA;
    --gray: #6C757D;
    --dark-gray: #343A40;
    --dark: #212529;
    
    /* Gradients */
    --gradient-rainbow: linear-gradient(135deg, var(--primary-purple), var(--primary-pink), var(--primary-blue), var(--primary-yellow));
    --gradient-purple-pink: linear-gradient(135deg, var(--primary-purple), var(--primary-pink));
    --gradient-blue-purple: linear-gradient(135deg, var(--primary-blue), var(--primary-purple));
    
    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.15);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.2);
    --shadow-colorful: 0 8px 32px rgba(139, 79, 217, 0.3);
    
    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 6rem;
    
    /* Typography */
    --font-primary: 'Fredoka', sans-serif;
    --font-secondary: 'Nunito', sans-serif;
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
    --header-height: 120px;
}


/* ========== Global Styles ========== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

body {
    font-family: var(--font-secondary);
    line-height: 1.6;
    color: var(--dark);
    background-color: var(--white);
    overflow-x: hidden;
    padding-top: var(--header-height);
}

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

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-normal);
}

/* ========== Container ========== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

/* ========== Header ========== */
#header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
    z-index: 1000;
    transition: var(--transition-normal);
}

#header.scrolled {
    box-shadow: var(--shadow-md);
}

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

.logo img {
    height: 110px;
    width: auto;
    transition: var(--transition-normal);
}

.logo img:hover {
    transform: scale(1.05);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: var(--spacing-md);
}

.nav-menu a {
    font-family: var(--font-primary);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-purple);
    padding: 0.5rem 1rem;
    border-radius: 25px;
    transition: var(--transition-normal);
}

.nav-menu a:hover {
    background: var(--gradient-purple-pink);
    color: var(--white);
    transform: translateY(-2px);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-menu-toggle span {
    width: 30px;
    height: 3px;
    background: var(--primary-purple);
    border-radius: 3px;
    transition: var(--transition-normal);
}

/* ========== Hero Section ========== */
.hero {
    position: relative;
    min-height: calc(100vh - var(--header-height));
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 0;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("../images/top-bn-d.jpg") center / cover no-repeat;
    opacity: 1;
    z-index: 0;
}

.hero-pattern {
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 20% 30%, rgba(255,255,255,0.8) 1px, transparent 1px),
        radial-gradient(circle at 80% 70%, rgba(255,255,255,0.7) 1px, transparent 1px),
        radial-gradient(circle at 40% 80%, rgba(255,255,255,0.6) 1px, transparent 1px);
    background-size: 60px 60px;
    opacity: 0.12;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 40px 50px;
    max-width: 980px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.42);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-radius: 28px;
    box-shadow: var(--shadow-lg);
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--white);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    box-shadow: var(--shadow-md);
    font-family: var(--font-primary);
    font-weight: 600;
    color: var(--primary-purple);
    margin-bottom: var(--spacing-md);
    animation: float 3s ease-in-out infinite;
}

.sparkle {
    font-size: 1.2rem;
    animation: sparkle 1.5s ease-in-out infinite;
}

.hero-title {
    font-size: 4rem;
    color: var(--primary-purple);
    margin-bottom: var(--spacing-sm);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
    animation: fadeInUp 0.8s ease;
}

.hero-title .subtitle {
    display: block;
    font-size: 2rem;
    background: var(--gradient-purple-pink);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-top: 0.5rem;
}

.hero-description {
    font-size: 1.3rem;
    color: var(--gray);
    max-width: 700px;
    margin: 0 auto var(--spacing-lg);
    animation: fadeInUp 0.8s ease 0.2s both;
}

.hero-buttons {
    display: flex;
    gap: var(--spacing-sm);
    justify-content: center;
    margin-bottom: var(--spacing-lg);
    animation: fadeInUp 0.8s ease 0.4s both;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    font-family: var(--font-primary);
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    transition: var(--transition-normal);
}

.btn-primary {
    background: #e93a87;
    color: var(--white);
    box-shadow: var(--shadow-colorful);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(139, 79, 217, 0.4);
}

.btn-secondary {
    background: var(--white);
    color: var(--primary-purple);
    border: 2px solid var(--primary-purple);
}

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

.hero-features {
    display: flex;
    gap: var(--spacing-md);
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease 0.6s both;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--white);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    box-shadow: var(--shadow-sm);
    font-weight: 600;
    color: var(--primary-purple);
}

.feature-item i {
    color: var(--primary-pink);
}

/* Floating Decorations */
.hero-decoration {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.floating-cat,
.floating-star {
    position: absolute;
    font-size: 3rem;
    animation: float 3s ease-in-out infinite;
}

.cat-1 { top: 20%; left: 10%; animation-delay: 0s; }
.cat-2 { top: 60%; right: 10%; animation-delay: 1s; }
.cat-3 { bottom: 20%; left: 15%; animation-delay: 2s; }
.star-1 { top: 30%; right: 20%; animation-delay: 0.5s; }
.star-2 { top: 70%; left: 25%; animation-delay: 1.5s; }
.star-3 { top: 50%; right: 15%; animation-delay: 2.5s; }

/* ========== Video Section ========== */
.video-section {
    padding: var(--spacing-xl) 0;
    background: var(--light-gray);
}

.section-header {
    text-align: center;
    margin-bottom: var(--spacing-lg);
}

.section-title {
    font-size: 3rem;
    color: var(--primary-purple);
    margin-bottom: var(--spacing-sm);
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: var(--gradient-purple-pink);
    border-radius: 2px;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--gray);
    margin-top: 1.5rem;
}

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

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    height: 0;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* ========== About Section ========== */
.about-section {
    padding: var(--spacing-xl) 0;
    background: var(--white);
}

.title-decoration {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-top: 1rem;
}

.decoration-cat {
    font-size: 2rem;
}

.decoration-line {
    width: 100px;
    height: 3px;
    background: var(--gradient-purple-pink);
    border-radius: 2px;
}

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

.about-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--dark-gray);
}

.about-intro {
    font-size: 1.3rem;
    margin-bottom: var(--spacing-md);
}

.about-text p {
    margin-bottom: var(--spacing-sm);
}

.brand-highlight {
    background: var(--gradient-purple-pink);
    padding: var(--spacing-md);
    border-radius: 20px;
    margin: var(--spacing-md) 0;
}

.brand-highlight p {
    color: var(--white);
    font-size: 1.2rem;
    margin: 0;
}

.about-cta {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary-purple);
    text-align: center;
    margin-top: var(--spacing-md);
}

/* ========== Benefits Section ========== */
.benefits-section {
    padding: var(--spacing-xl) 0;
    background: var(--light-gray);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-md);
    margin-top: var(--spacing-lg);
}

.benefit-card {
    background: var(--white);
    padding: var(--spacing-md);
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: var(--transition-normal);
}

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

.benefit-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto var(--spacing-sm);
    background: #e93a87;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--white);
}

.benefit-card h3 {
    font-size: 1.5rem;
    color: var(--primary-purple);
    margin-bottom: var(--spacing-sm);
}

.benefit-card p {
    color: var(--gray);
    line-height: 1.6;
}

/* ========== Toys Section ========== */
.toys-section {
    padding: var(--spacing-xl) 0;
    background: #40c0c1;
}

.toys-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: var(--spacing-md);
    margin-top: var(--spacing-lg);
}

.toy-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition-normal);
    cursor: pointer;
}

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

.toy-image {
    position: relative;
    width: 100%;
    padding-top: 100%; /* 1:1 Aspect Ratio */
    overflow: hidden;
    background: var(--light-gray);
}

.toy-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-normal);
}

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

.toy-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: var(--gradient-purple-pink);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-family: var(--font-primary);
    font-size: 0.9rem;
    font-weight: 700;
    box-shadow: var(--shadow-sm);
}

.toy-info {
    padding: var(--spacing-sm);
}

.toy-title {
    font-size: 1.1rem;
    color: var(--primary-purple);
    margin-bottom: 0.5rem;
}

.toy-description {
    font-size: 0.95rem;
    color: var(--gray);
    line-height: 1.4;
}

/* ========== Where to Buy Section ========== */
.where-to-buy-section {
    padding: var(--spacing-xl) 0;
    background: var(--white);
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-md);
    margin-top: var(--spacing-lg);
}

.partner-card {
    background: var(--white);
    padding: var(--spacing-md);
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: var(--transition-normal);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--spacing-sm);
}



/* Hover effect (clean): keep logo PNG looking natural, add gradient border instead of recoloring the whole card */
.partner-card{
    border: 2px solid transparent;
    background: var(--white);
}

.partner-card:hover{
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    /* Gradient border without messing with PNG transparency */
    background:
        linear-gradient(var(--white), var(--white)) padding-box,
        var(--gradient-purple-pink) border-box;
}

.partner-card:hover .partner-name{
    color: var(--primary-purple);
}

.partner-logo{
    background: transparent;
    padding: 0;
    border-radius: 16px;
}

.partner-logo img{
    filter: none;
}

.partner-card:hover .partner-logo img{
    transform: scale(1.4);

}

.partner-logo {
    width: 100%;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--spacing-sm);
}


.partner-logo img {
    max-width: 150px;
    max-height: 80px;
    object-fit: contain;
    transition: var(--transition-normal);
}

.partner-name {
    font-family: var(--font-primary);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary-purple);
    transition: var(--transition-normal);
}

/* ========== Footer ========== */
.footer {
    background: #e93a87;
    color: var(--white);
    padding: var(--spacing-xl) 0 var(--spacing-md);
}

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

.footer-section h3 {
    font-size: 1.5rem;
    margin-bottom: var(--spacing-sm);
}

.company-name {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: var(--spacing-sm);
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    font-size: 1rem;
}

.contact-item i {
    font-size: 1.2rem;
    width: 20px;
}

.contact-item a {
    color: var(--white);
}

.contact-item a:hover {
    text-decoration: underline;
}

.social-links {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-sm);
}

.social-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(255, 255, 255, 0.2);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    transition: var(--transition-normal);
}

.social-link:hover {
    background: var(--white);
    color: var(--primary-purple);
    transform: translateX(5px);
}

.social-link i {
    font-size: 1.5rem;
}

.website-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--white);
    font-weight: 600;
    transition: var(--transition-normal);
}

.website-link:hover {
    transform: translateX(5px);
}

.footer-logo {
    text-align: center;
}

.footer-logo img {
    max-width: 200px;
    margin: 0 auto;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: var(--spacing-md);
    text-align: center;
}

.footer-bottom p {
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.footer-legal {
    font-size: 0.85rem;
    opacity: 0.8;
}

/* ========== Modal ========== */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    animation: fadeIn 0.3s ease;
}

.modal-content {
    margin: auto;
    display: block;
    max-width: 90%;
    max-height: 90vh;
    object-fit: contain;
    animation: zoomIn 0.3s ease;
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 40px;
    color: var(--white);
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    transition: var(--transition-normal);
}

.modal-close:hover {
    color: var(--primary-pink);
    transform: scale(1.2);
}

#modalCaption {
    text-align: center;
    color: var(--white);
    padding: 20px;
    font-size: 1.2rem;
}

/* ========== Back to Top Button ========== */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: #6759a6;
    color: var(--white);
    border: none;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    box-shadow: var(--shadow-colorful);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-normal);
    z-index: 999;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(139, 79, 217, 0.5);
}

/* ========== Animations ========== */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

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

@keyframes zoomIn {
    from { transform: scale(0.5); }
    to { transform: scale(1); }
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

@keyframes sparkle {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.2); }
}


/* ========== Hero Banner Images (New) ========== */
/* Desktop banner */
.hero-background{
    background-image: url("../images/top-bn-d.jpg");
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

/* Slightly lower hero text plaque on desktop to sit in the empty middle area */
@media (min-width: 769px) {
    .hero { align-items: flex-start; }
    .hero-content { 
    }
    .hero-content { max-width: 820px; } }
}

/* Mobile banner */
@media (max-width: 768px) {
    :root { --header-height: 90px; }

    .hero-background{
        background-image: url("../images/top-bn-m.jpg");
        background-position: center;
        background-size: cover;
        background-repeat: no-repeat;
    }
    /* Keep plaque readable but do NOT dim the banner */
    .hero-content { background: rgba(255, 255, 255, 0.46); }
}

/* ========== Responsive Design ========== */
@media (max-width: 992px) {
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-title .subtitle {
        font-size: 1.5rem;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
    
    .toys-grid {
        grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    }
}

@media (max-width: 768px) {
    .hero-background { background-position: center; }
    .hero-content { padding: 40px 50px; }
    .mobile-menu-toggle {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: var(--white);
        flex-direction: column;
        padding: var(--spacing-md);
        box-shadow: var(--shadow-md);
        transition: var(--transition-normal);
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-title .subtitle {
        font-size: 1.3rem;
    }
    
    .hero-description {
        font-size: 1.1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .toys-grid {
        grid-template-columns: 1fr;
    }
    
    .partners-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .floating-cat,
    .floating-star {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .hero-content { background: rgba(255,255,255,0.48); }
    .logo img {
        height: 90px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-title .subtitle {
        font-size: 1.1rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .btn {
        padding: 0.75rem 1.5rem;
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .partners-grid {
        grid-template-columns: 1fr;
    }
    
    .modal-close {
        top: 10px;
        right: 20px;
        font-size: 30px;
    }
}

/* Prevent fixed header from covering anchored sections */
section { scroll-margin-top: calc(var(--header-height) + 12px); }

/* Reduce inner spacing to remove empty bottom area */
.hero-content h1 {
    margin-bottom: 20px;
}

.hero-content p {
    margin-bottom: 25px;
}

.hero-content .btn,
.hero-content a.button {
    margin-bottom: 0;
}


/* === Fix: remove extra empty space under the button inside hero plaque (desktop & mobile) === */
.hero-content{
    padding-bottom: 24px !important;
}
.hero-buttons{
    margin-bottom: 0 !important;
}



/* === Move hero plaque lower on all devices === */
.hero-content{
    margin-top: 80px !important;
}

@media (min-width: 769px){
    .hero-content{
        margin-top: 120px !important;
    }
}



/* === Move hero plaque lower (reliable): shift the whole hero container down === */
.hero{
    align-items: flex-start !important;
}

.hero > .container{
    padding-top: 160px !important; /* mobile/tablet default */
}

@media (min-width: 769px){
    .hero > .container{
        padding-top: 120px !important; /* desktop lower */
    }
}




/* === Toys Section: "Де купити" buttons + bottom banner === */
.toy-actions{
    margin-top: 14px;
    display: flex;
    justify-content: center;
}

.toy-buy-btn{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 220px;
    padding: 0.75rem 1.25rem;
    border-radius: 999px;
    font-family: var(--font-primary);
    font-weight: 700;
    font-size: 1rem;
    background: #e93a87;
    color: #fff;
    border: none;
    cursor: pointer;
    transition: var(--transition-normal);
    box-shadow: 0 10px 26px rgba(233, 58, 135, 0.28);
}

.toy-buy-btn:hover{
    transform: translateY(-2px);
    box-shadow: 0 14px 34px rgba(233, 58, 135, 0.35);
    filter: brightness(1.02);
}

.toys-more-banner{
    margin-top: var(--spacing-lg);
    padding: 1.25rem 1.5rem;
    border-radius: 22px;
    background: rgba(255,255,255,0.24);
    border: 1px solid rgba(255,255,255,0.35);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    box-shadow: var(--shadow-md);
    text-align: center;
}

.toys-more-banner p{
    margin: 0;
    font-family: var(--font-primary);
    font-weight: 700;
    font-size: 1.25rem;
    color: #fff;
    text-shadow: 0 2px 12px rgba(0,0,0,0.12);
}

@media (max-width: 768px){
    .toys-more-banner p{ font-size: 1.05rem; }
}




/* === Toys section header contrast (title + subtitle) === */
.toys-section .section-title{
    color: #ffffff;
    text-shadow: 0 6px 18px rgba(0,0,0,0.18);
}

.toys-section .section-title::after{
    background: rgba(255,255,255,0.85);
}

.toys-section .section-subtitle{
    color: rgba(255,255,255,0.92);
    font-weight: 700;
    text-shadow: 0 4px 14px rgba(0,0,0,0.16);
}



/* Click behavior: modal opens only from image */
.toy-card{ cursor: default; }
.toy-image{ cursor: zoom-in; }
.toy-buy-btn{ cursor: pointer; }

