:root {
    --red: #FF6B6B;
    --blue: #4D96FF;
    --yellow: #FFD93D;
    --green: #6BCB77;
    --white: #ffffff;
    --text: #333;
    --bg-light: #F7F9FC;
    
    --font-fun: 'Fredoka One', cursive;
    --font-body: 'Nunito', sans-serif;
    --radius: 20px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    font-family: var(--font-body);
    background-color: var(--bg-light);
    color: var(--text);
    line-height: 1.6;
}

.container { width: 90%; max-width: 1100px; margin: 0 auto; padding: 0 20px; }
a { text-decoration: none; color: inherit; transition: 0.3s; }

/* Header */
.toy-header { background-color: var(--white); padding: 15px 0; border-bottom: 5px solid var(--yellow); position: sticky; top: 0; z-index: 1000; box-shadow: 0 5px 15px rgba(0,0,0,0.05); }
.header-flex { display: flex; justify-content: space-between; align-items: center; }

.logo { font-family: var(--font-fun); font-size: 2rem; color: var(--red); letter-spacing: 1px; }
.logo .blue { color: var(--blue); }
.logo .yellow { color: var(--yellow); }

.toy-nav ul { display: flex; gap: 20px; list-style: none; align-items: center; }
.toy-nav a { font-weight: 800; font-size: 1.1rem; color: var(--text); }
.toy-nav a:hover, .toy-nav a.active { color: var(--blue); transform: scale(1.1); display: inline-block; }

.btn-pop { background-color: var(--red); color: var(--white) !important; padding: 10px 25px; border-radius: 50px; box-shadow: 0 4px 0 #D43F3F; transition: 0.2s; }
.btn-pop:hover { transform: translateY(2px); box-shadow: 0 2px 0 #D43F3F; }

/* Mobile Menu */
.mobile-toggle { display: none; background: none; border: none; font-size: 2rem; cursor: pointer; }
.mobile-menu { position: fixed; top: 0; right: -100%; width: 100%; height: 100%; background: var(--white); z-index: 2000; padding: 40px; display: flex; flex-direction: column; align-items: center; justify-content: center; transition: 0.4s; border-left: 5px solid var(--blue); }
.mobile-menu.active { right: 0; }
.close-menu { position: absolute; top: 20px; right: 20px; font-size: 2rem; border: none; background: none; cursor: pointer; }
.mobile-menu a { font-family: var(--font-fun); font-size: 1.5rem; margin-bottom: 20px; color: var(--text); }

/* Hero */
.hero-toy { padding: 50px 0 80px; background-color: var(--white); overflow: hidden; position: relative; }
.hero-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; }

.bubble-tag { background-color: var(--blue); color: var(--white); padding: 5px 15px; border-radius: 20px; font-weight: 800; display: inline-block; margin-bottom: 20px; font-size: 0.9rem; transform: rotate(-2deg); }
.hero-text h1 { font-family: var(--font-fun); font-size: 3.5rem; line-height: 1.1; margin-bottom: 20px; color: var(--red); text-shadow: 2px 2px 0 var(--yellow); }
.hero-text p { font-size: 1.3rem; margin-bottom: 30px; font-weight: 700; color: #555; }

.hero-btns { display: flex; gap: 15px; }
.btn-primary { background-color: var(--yellow); color: var(--text); padding: 15px 30px; border-radius: 50px; font-weight: 900; box-shadow: 0 5px 0 #D4B106; font-size: 1.1rem; }
.btn-primary:hover { transform: translateY(3px); box-shadow: 0 2px 0 #D4B106; }
.btn-secondary { background-color: var(--white); border: 3px solid var(--blue); color: var(--blue); padding: 12px 30px; border-radius: 50px; font-weight: 800; }
.btn-secondary:hover { background-color: var(--blue); color: var(--white); }

.hero-img img { width: 100%; border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%; border: 8px solid var(--white); box-shadow: 0 10px 30px rgba(0,0,0,0.1); animation: float 6s ease-in-out infinite; }
@keyframes float { 0% { transform: translateY(0px); } 50% { transform: translateY(-20px); } 100% { transform: translateY(0px); } }

/* Categories */
.section-padding { padding: 80px 0; }
.section-title { text-align: center; margin-bottom: 60px; }
.section-title h2 { font-family: var(--font-fun); font-size: 2.5rem; color: var(--text); }
.crayon-line { width: 120px; height: 8px; background: linear-gradient(90deg, var(--red), var(--blue), var(--yellow), var(--green)); margin: 10px auto; border-radius: 5px; }

.toy-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; }
.toy-card { background: var(--white); padding: 30px 20px; border-radius: var(--radius); text-align: center; transition: 0.3s; border-bottom: 6px solid transparent; box-shadow: 0 5px 15px rgba(0,0,0,0.05); }
.toy-card:hover { transform: translateY(-10px); }
.toy-icon { font-size: 3.5rem; margin-bottom: 15px; }
.toy-card h3 { font-family: var(--font-fun); font-size: 1.3rem; margin-bottom: 10px; }
.toy-card p { font-size: 0.9rem; margin-bottom: 20px; font-weight: 700; color: #777; }
.buy-btn { background: #eee; border: none; padding: 8px 20px; border-radius: 20px; font-weight: 800; cursor: pointer; transition: 0.3s; }
.buy-btn:hover { background: var(--text); color: var(--white); }

.card-red { border-color: var(--red); }
.card-blue { border-color: var(--blue); }
.card-yellow { border-color: var(--yellow); }
.card-green { border-color: var(--green); }

/* About */
.page-header { padding: 60px 0; text-align: center; color: var(--white); border-radius: 0 0 50% 50% / 30px; }
.bg-yellow { background-color: var(--yellow); color: var(--text); }
.bg-blue { background-color: var(--blue); }
.page-header h1 { font-family: var(--font-fun); font-size: 3rem; text-shadow: 2px 2px 0 rgba(0,0,0,0.1); }

.about-flex { display: flex; gap: 50px; align-items: center; }
.text-block h2 { font-family: var(--font-fun); font-size: 2rem; color: var(--blue); margin-bottom: 20px; }
.fun-list { list-style: none; margin-top: 20px; font-size: 1.2rem; font-weight: 800; }
.fun-list li { margin-bottom: 10px; }
.img-block img { width: 100%; border-radius: var(--radius); border: 10px solid var(--white); transform: rotate(3deg); box-shadow: 0 10px 20px rgba(0,0,0,0.1); }

/* Reviews */
.review-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.review-card { background: var(--white); padding: 30px; border-radius: var(--radius); box-shadow: 0 5px 20px rgba(0,0,0,0.05); text-align: center; }
.stars { color: var(--yellow); font-size: 1.2rem; margin-bottom: 10px; }
.review-card h3 { font-family: var(--font-fun); color: var(--red); margin-bottom: 10px; font-size: 1.2rem; }
.review-card p { font-style: italic; color: #555; margin-bottom: 15px; }
.kid-name { font-weight: 900; color: var(--blue); }

/* Contact Form */
.contact-box { display: flex; background: var(--white); border-radius: var(--radius); overflow: hidden; box-shadow: 0 10px 40px rgba(0,0,0,0.05); }
.info-side { flex: 1; background-color: var(--red); color: var(--white); padding: 50px; }
.info-side h2 { font-family: var(--font-fun); margin-bottom: 20px; }
.details p { margin-bottom: 10px; font-weight: 700; font-size: 1.1rem; }

.toy-form { flex: 1.5; padding: 50px; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-weight: 800; margin-bottom: 5px; color: var(--text); }
.form-group input, .form-group select, .form-group textarea { width: 100%; padding: 12px; border: 2px solid #eee; border-radius: 10px; font-family: var(--font-body); font-weight: 600; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--blue); outline: none; }
.submit-btn { width: 100%; background-color: var(--green); color: var(--white); border: none; padding: 15px; border-radius: 10px; font-weight: 900; cursor: pointer; font-size: 1.1rem; transition: 0.3s; }
.submit-btn:hover { background-color: #55a65e; }

/* Legal */
.safety-doc { max-width: 800px; margin: 0 auto; background: var(--white); padding: 50px; border-radius: var(--radius); border: 5px solid var(--yellow); }
.safety-doc h1 { font-family: var(--font-fun); text-align: center; color: var(--blue); }
.safety-doc h3 { color: var(--red); margin-top: 30px; margin-bottom: 10px; font-family: var(--font-fun); }

/* Footer */
.toy-footer { background-color: var(--white); padding: 50px 0; border-top: 10px solid var(--blue); text-align: center; margin-top: auto; }
.f-logo { font-family: var(--font-fun); font-size: 1.5rem; color: var(--text); margin-bottom: 20px; }
.f-socials a { color: var(--blue); margin: 0 15px; font-weight: 800; font-size: 1.1rem; }
.f-socials a:hover { color: var(--red); }

@media (max-width: 900px) {
    .toy-nav { display: none; }
    .mobile-toggle { display: block; }
    .hero-grid, .toy-grid, .about-flex, .review-grid, .contact-box { grid-template-columns: 1fr; flex-direction: column; }
    .hero-text h1 { font-size: 2.5rem; }
    .img-block img { transform: rotate(0); }
}