/* ============================================
   KANKA BANA - Çocuk Oyuncak Sitesi CSS
   Renk Paleti: Ultra Canlı & Neşeli
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Fredoka+One&family=Comic+Neue:wght@400;700&display=swap');

:root {
    --primary: #FF6B6B;
    --secondary: #4ECDC4;
    --accent: #FFE66D;
    --purple: #9B59B6;
    --orange: #FF8C42;
    --green: #27AE60;
    --blue: #3498DB;
    --red: #E74C3C;
    --pink: #FF6B9D;
    --rainbow-1: #FF0000;
    --rainbow-2: #FF7F00;
    --rainbow-3: #FFFF00;
    --rainbow-4: #00FF00;
    --rainbow-5: #0000FF;
    --rainbow-6: #4B0082;
    --rainbow-7: #9400D3;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Comic Neue', cursive;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 25%, #f093fb 50%, #f5576c 75%, #4facfe 100%);
    background-attachment: fixed;
    overflow-x: hidden;
    min-height: 100vh;
}

/* ============================================
   YÜZEN BALONCUKLAR
   ============================================ */
.bubbles-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 9999;
    overflow: hidden;
}

.bubble {
    position: absolute;
    bottom: -100px;
    border-radius: 50%;
    animation: float-up linear infinite;
    opacity: 0.7;
}

@keyframes float-up {
    0% {
        transform: translateY(0) scale(1) rotate(0deg);
        opacity: 0.7;
    }
    50% {
        opacity: 0.4;
    }
    100% {
        transform: translateY(-100vh) scale(0.5) rotate(360deg);
        opacity: 0;
    }
}

/* ============================================
   YÜZEN YILDIZLAR
   ============================================ */
.stars-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 9998;
}

.star {
    position: absolute;
    color: gold;
    animation: twinkle ease-in-out infinite;
}

@keyframes twinkle {
    0%, 100% { opacity: 0.2; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.5); }
}

/* ============================================
   NAVBAR
   ============================================ */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 15px 50px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(15px);
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    border-bottom: 3px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
}

.navbar:hover {
    background: rgba(255, 255, 255, 0.25);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Fredoka One', cursive;
    font-size: 2rem;
    color: white;
    text-shadow: 3px 3px 0px rgba(0,0,0,0.3);
    animation: rainbow-text 3s ease-in-out infinite;
}

@keyframes rainbow-text {
    0% { color: #FF6B6B; }
    14% { color: #FF8C42; }
    28% { color: #FFE66D; }
    42% { color: #4ECDC4; }
    56% { color: #3498DB; }
    70% { color: #9B59B6; }
    84% { color: #FF6B9D; }
    100% { color: #FF6B6B; }
}

.logo-emoji {
    font-size: 2.5rem;
    animation: bounce 1s ease-in-out infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 25px;
}

.nav-link {
    text-decoration: none;
    color: white;
    font-weight: 700;
    font-size: 1.1rem;
    padding: 10px 20px;
    border-radius: 25px;
    background: rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.nav-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    transition: left 0.5s ease;
}

.nav-link:hover::before {
    left: 100%;
}

.nav-link:hover {
    background: rgba(255, 255, 255, 0.4);
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.cart-icon {
    position: relative;
    font-size: 2rem;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.cart-icon:hover {
    transform: scale(1.2) rotate(15deg);
}

.cart-count {
    position: absolute;
    top: -5px;
    right: -10px;
    background: #FF6B6B;
    color: white;
    font-size: 0.8rem;
    padding: 3px 8px;
    border-radius: 50%;
    font-weight: bold;
    animation: pulse 1s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.2); }
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding-top: 100px;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(255, 107, 107, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(78, 205, 196, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(255, 230, 109, 0.2) 0%, transparent 50%);
    animation: hero-glow 5s ease-in-out infinite;
}

@keyframes hero-glow {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

.hero-content {
    text-align: center;
    z-index: 10;
    position: relative;
}

.hero-title {
    font-family: 'Fredoka One', cursive;
    font-size: 5rem;
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.bounce-text {
    display: inline-block;
    animation: letter-bounce 1s ease-in-out infinite;
    color: white;
    text-shadow: 4px 4px 0px rgba(0,0,0,0.3);
}

.bounce-text:nth-child(1) { animation-delay: 0s; color: #FF6B6B; }
.bounce-text:nth-child(2) { animation-delay: 0.1s; color: #FF8C42; }
.bounce-text:nth-child(3) { animation-delay: 0.2s; color: #FFE66D; }
.bounce-text:nth-child(4) { animation-delay: 0.3s; color: #4ECDC4; }
.bounce-text:nth-child(5) { animation-delay: 0.4s; color: #3498DB; }
.bounce-text:nth-child(6) { animation-delay: 0.5s; }
.bounce-text:nth-child(7) { animation-delay: 0.6s; color: #9B59B6; }
.bounce-text:nth-child(8) { animation-delay: 0.7s; color: #FF6B9D; }
.bounce-text:nth-child(9) { animation-delay: 0.8s; color: #E74C3C; }
.bounce-text:nth-child(10) { animation-delay: 0.9s; color: #27AE60; }

@keyframes letter-bounce {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    25% { transform: translateY(-20px) rotate(-5deg); }
    75% { transform: translateY(-10px) rotate(5deg); }
}

.hero-subtitle {
    font-size: 1.8rem;
    color: white;
    margin-bottom: 40px;
    text-shadow: 2px 2px 0px rgba(0,0,0,0.3);
    animation: fade-in-up 1s ease-out;
}

@keyframes fade-in-up {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

.hero-images {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 40px;
}

.hero-img {
    width: 200px;
    height: 200px;
    object-fit: cover;
    border-radius: 50%;
    border: 5px solid white;
    box-shadow: 0 15px 40px rgba(0,0,0,0.3);
    transition: all 0.5s ease;
    animation: float-rotate 6s ease-in-out infinite;
}

.hero-img-1 { animation-delay: 0s; }
.hero-img-2 { animation-delay: 2s; }
.hero-img-3 { animation-delay: 4s; }

@keyframes float-rotate {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-30px) rotate(10deg); }
}

.hero-img:hover {
    transform: scale(1.2) rotate(15deg) !important;
    box-shadow: 0 25px 60px rgba(0,0,0,0.4);
    border-color: #FFE66D;
}

.hero-btn {
    padding: 20px 50px;
    font-size: 1.5rem;
    font-family: 'Fredoka One', cursive;
    background: linear-gradient(45deg, #FF6B6B, #FF8C42, #FFE66D, #4ECDC4, #3498DB);
    background-size: 300% 300%;
    color: white;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    transition: all 0.3s ease;
    animation: gradient-shift 3s ease infinite;
    position: relative;
    overflow: hidden;
}

@keyframes gradient-shift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.hero-btn:hover {
    transform: translateY(-10px) scale(1.1);
    box-shadow: 0 20px 50px rgba(0,0,0,0.4);
}

.btn-emoji {
    display: inline-block;
    animation: spin 2s linear infinite;
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.hero-decoration {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.floating-item {
    position: absolute;
    font-size: 3rem;
    animation: float-around 10s ease-in-out infinite;
}

.floating-item:nth-child(1) { top: 20%; left: 10%; animation-delay: 0s; }
.floating-item:nth-child(2) { top: 60%; right: 15%; animation-delay: 2s; }
.floating-item:nth-child(3) { bottom: 20%; left: 20%; animation-delay: 4s; }
.floating-item:nth-child(4) { top: 40%; right: 10%; animation-delay: 6s; }

@keyframes float-around {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    25% { transform: translate(30px, -30px) rotate(90deg); }
    50% { transform: translate(-20px, 20px) rotate(180deg); }
    75% { transform: translate(20px, 30px) rotate(270deg); }
}

/* ============================================
   SECTION STYLES
   ============================================ */
section {
    padding: 80px 50px;
    position: relative;
}

.section-title {
    font-family: 'Fredoka One', cursive;
    font-size: 3rem;
    text-align: center;
    color: white;
    margin-bottom: 50px;
    text-shadow: 3px 3px 0px rgba(0,0,0,0.3);
    animation: title-glow 2s ease-in-out infinite;
}

@keyframes title-glow {
    0%, 100% { text-shadow: 3px 3px 0px rgba(0,0,0,0.3), 0 0 20px rgba(255,255,255,0.5); }
    50% { text-shadow: 3px 3px 0px rgba(0,0,0,0.3), 0 0 40px rgba(255,255,255,0.8); }
}

.title-emoji {
    display: inline-block;
    animation: bounce 1s ease-in-out infinite;
}

/* ============================================
   CATEGORIES
   ============================================ */
.categories {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.category-card {
    background: white;
    border-radius: 25px;
    padding: 40px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.4s ease;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.category-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--card-color);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 0;
}

.category-card:hover::before {
    opacity: 0.15;
}

.category-card:hover {
    transform: translateY(-15px) scale(1.05);
    box-shadow: 0 25px 50px rgba(0,0,0,0.3);
}

.category-icon {
    font-size: 4rem;
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
    transition: transform 0.4s ease;
}

.category-card:hover .category-icon {
    transform: scale(1.3) rotate(15deg);
}

.category-card h3 {
    font-family: 'Fredoka One', cursive;
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 10px;
    position: relative;
    z-index: 1;
}

.category-card p {
    color: #666;
    font-weight: 700;
    position: relative;
    z-index: 1;
}

.category-bg {
    position: absolute;
    bottom: -50px;
    right: -50px;
    width: 150px;
    height: 150px;
    background: var(--card-color);
    border-radius: 50%;
    opacity: 0.1;
    transition: all 0.4s ease;
}

.category-card:hover .category-bg {
    transform: scale(3);
    opacity: 0.2;
}

/* ============================================
   PRODUCTS
   ============================================ */
.products {
    background: rgba(0, 0, 0, 0.1);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 35px;
    max-width: 1300px;
    margin: 0 auto;
}

.product-card {
    background: white;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0,0,0,0.2);
    transition: all 0.4s ease;
    position: relative;
}

.product-card:hover {
    transform: translateY(-20px) scale(1.02);
    box-shadow: 0 30px 60px rgba(0,0,0,0.3);
}

.product-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: #FF6B6B;
    color: white;
    padding: 8px 15px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.9rem;
    z-index: 10;
    animation: badge-pulse 2s ease-in-out infinite;
}

@keyframes badge-pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.product-img-wrapper {
    position: relative;
    overflow: hidden;
    height: 250px;
}

.product-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.product-card:hover .product-img {
    transform: scale(1.2);
}

.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.product-card:hover .product-overlay {
    opacity: 1;
}

.quick-view {
    padding: 12px 30px;
    background: white;
    border: none;
    border-radius: 25px;
    font-family: 'Comic Neue', cursive;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.quick-view:hover {
    background: #FFE66D;
    transform: scale(1.1);
}

.product-info {
    padding: 25px;
    text-align: center;
}

.product-info h3 {
    font-family: 'Fredoka One', cursive;
    font-size: 1.3rem;
    color: #333;
    margin-bottom: 10px;
}

.product-rating {
    font-size: 1.2rem;
    margin-bottom: 15px;
    animation: star-shine 2s ease-in-out infinite;
}

@keyframes star-shine {
    0%, 100% { filter: brightness(1); }
    50% { filter: brightness(1.3); }
}

.product-price {
    margin-bottom: 20px;
}

.old-price {
    text-decoration: line-through;
    color: #999;
    font-size: 1rem;
    margin-right: 10px;
}

.new-price {
    font-family: 'Fredoka One', cursive;
    font-size: 1.5rem;
    color: #E74C3C;
    animation: price-glow 1.5s ease-in-out infinite;
}

@keyframes price-glow {
    0%, 100% { color: #E74C3C; }
    50% { color: #FF6B6B; }
}

.add-to-cart {
    width: 100%;
    padding: 15px;
    background: linear-gradient(45deg, #FF6B6B, #FF8C42);
    color: white;
    border: none;
    border-radius: 25px;
    font-family: 'Fredoka One', cursive;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.add-to-cart::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    transition: left 0.5s ease;
}

.add-to-cart:hover::before {
    left: 100%;
}

.add-to-cart:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(255, 107, 107, 0.4);
}

/* ============================================
   DEALS BANNER
   ============================================ */
.deals-banner {
    background: linear-gradient(45deg, #FF6B6B, #FF8C42, #FFE66D, #4ECDC4, #3498DB, #9B59B6);
    background-size: 400% 400%;
    animation: rainbow-bg 5s ease infinite;
    text-align: center;
    padding: 60px 20px;
}

@keyframes rainbow-bg {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.deals-title {
    font-family: 'Fredoka One', cursive;
    font-size: 3rem;
    color: white;
    text-shadow: 3px 3px 0px rgba(0,0,0,0.3);
    margin-bottom: 30px;
    animation: title-bounce 1s ease-in-out infinite;
}

@keyframes title-bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.countdown {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 30px;
}

.countdown-item {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    padding: 20px 30px;
    border-radius: 20px;
    color: white;
    min-width: 100px;
}

.countdown-number {
    display: block;
    font-family: 'Fredoka One', cursive;
    font-size: 3rem;
    text-shadow: 2px 2px 0px rgba(0,0,0,0.3);
    animation: number-flip 1s ease-in-out;
}

@keyframes number-flip {
    0% { transform: rotateX(90deg); }
    100% { transform: rotateX(0deg); }
}

.countdown-label {
    font-size: 1rem;
    font-weight: 700;
}

.deals-text {
    font-size: 1.5rem;
    color: white;
    font-weight: 700;
    text-shadow: 2px 2px 0px rgba(0,0,0,0.3);
}

/* ============================================
   ABOUT SECTION
   ============================================ */
.about {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.about-card {
    background: white;
    border-radius: 25px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.4s ease;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    position: relative;
    overflow: hidden;
}

.about-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #FF6B6B, #FF8C42, #FFE66D, #4ECDC4, #3498DB);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.about-card:hover::after {
    transform: scaleX(1);
}

.about-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0,0,0,0.3);
}

.about-icon {
    font-size: 4rem;
    margin-bottom: 20px;
    transition: transform 0.4s ease;
}

.about-card:hover .about-icon {
    transform: scale(1.3) rotate(360deg);
}

.about-card h3 {
    font-family: 'Fredoka One', cursive;
    font-size: 1.3rem;
    color: #333;
    margin-bottom: 15px;
}

.about-card p {
    color: #666;
    font-weight: 700;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 60px 50px 30px;
    backdrop-filter: blur(10px);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-section h3 {
    font-family: 'Fredoka One', cursive;
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: #FFE66D;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section a {
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-section a:hover {
    color: #FFE66D;
    transform: translateX(10px);
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-link {
    font-size: 2rem;
    transition: all 0.3s ease;
    display: inline-block;
}

.social-link:hover {
    transform: scale(1.3) rotate(15deg);
}

.footer-bottom {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 2px solid rgba(255,255,255,0.2);
    text-align: center;
}

/* ============================================
   COPYRIGHT PROTECTION (JS + CSS)
   ============================================ */
.copyright-protection {
    font-family: 'Fredoka One', cursive;
    font-size: 1.2rem;
    color: #FFE66D;
    padding: 20px;
    position: relative;
}

.copyright-protection::before {
    content: '🔒';
    margin-right: 10px;
    animation: lock-shake 2s ease-in-out infinite;
}

@keyframes lock-shake {
    0%, 100% { transform: rotate(0deg); }
    25% { transform: rotate(-10deg); }
    75% { transform: rotate(10deg); }
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 768px) {
    .navbar {
        padding: 15px 20px;
        flex-direction: column;
        gap: 15px;
    }
    
    .nav-links {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-images {
        flex-direction: column;
        align-items: center;
    }
    
    .countdown {
        flex-wrap: wrap;
    }
    
    section {
        padding: 50px 20px;
    }
}

/* ============================================
   SCROLLBAR
   ============================================ */
::-webkit-scrollbar {
    width: 15px;
}

::-webkit-scrollbar-track {
    background: linear-gradient(180deg, #667eea, #764ba2, #f093fb, #f5576c);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, #FF6B6B, #FF8C42, #FFE66D);
    border-radius: 10px;
    border: 3px solid transparent;
    background-clip: padding-box;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, #FFE66D, #4ECDC4, #3498DB);
}

/* ============================================
   SELECTION
   ============================================ */
::selection {
    background: #FFE66D;
    color: #333;
    text-shadow: none;
}
/* ============================================
   İÇ SAYFALAR
   ============================================ */
.nav-link.active { background: rgba(255,255,255,.3); transform: translateY(-2px); }
.logo { text-decoration: none; }
a.cart-icon { text-decoration: none; color: inherit; }
.page-shell { padding-top: 105px; min-height: 75vh; }
.page-hero { width: min(1180px, calc(100% - 40px)); margin: 30px auto; padding: 58px 30px; text-align: center; border-radius: 35px; color: white; background: linear-gradient(135deg, rgba(255,107,107,.94), rgba(155,89,182,.94)); box-shadow: 0 20px 50px rgba(0,0,0,.22); position: relative; overflow: hidden; }
.page-hero::before,.page-hero::after { content:'⭐'; position:absolute; font-size:5rem; opacity:.22; animation:bounce 2s ease-in-out infinite; }
.page-hero::before { left:7%; top:18%; }.page-hero::after { right:7%; bottom:12%; animation-delay:.7s; }
.page-hero h1 { font-family:'Fredoka One',cursive; font-size:clamp(2.4rem,6vw,4.8rem); text-shadow:4px 4px 0 rgba(0,0,0,.22); margin-bottom:12px; }
.page-hero p { font-size:1.25rem; font-weight:700; max-width:720px; margin:auto; }
.content-panel { width:min(1180px,calc(100% - 40px)); margin:30px auto 70px; background:rgba(255,255,255,.93); border-radius:35px; padding:40px; box-shadow:0 20px 50px rgba(0,0,0,.2); }
.content-title { font-family:'Fredoka One',cursive; text-align:center; font-size:2.4rem; color:#7b3fb3; margin-bottom:30px; }
.catalog-grid,.feature-grid,.deal-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:25px; }
.catalog-card,.feature-box,.deal-card { background:white; border-radius:25px; padding:24px; box-shadow:0 10px 28px rgba(0,0,0,.12); border:4px solid var(--card-color,#4ECDC4); transition:.3s; }
.catalog-card:hover,.feature-box:hover,.deal-card:hover { transform:translateY(-10px) rotate(1deg); }
.catalog-card img { width:100%; height:210px; object-fit:cover; border-radius:18px; margin-bottom:16px; }
.catalog-card h3,.feature-box h3,.deal-card h3 { font-family:'Fredoka One',cursive; color:#333; font-size:1.45rem; margin-bottom:8px; }
.catalog-card p,.feature-box p,.deal-card p { color:#555; line-height:1.6; }
.page-price { display:flex; justify-content:space-between; align-items:center; margin-top:15px; font-size:1.35rem; font-weight:700; color:#e74c3c; }
.mini-btn { display:inline-block; border:0; border-radius:999px; padding:11px 18px; background:linear-gradient(45deg,#FF6B6B,#FF8C42); color:white; text-decoration:none; font-weight:700; cursor:pointer; box-shadow:0 6px 15px rgba(255,107,107,.3); }
.category-list { display:grid; grid-template-columns:repeat(2,1fr); gap:24px; }
.category-row { display:flex; align-items:center; gap:20px; padding:25px; border-radius:24px; background:linear-gradient(135deg,#fff,#fff9dd); border:4px solid var(--card-color); }
.category-row .big-emoji { font-size:4rem; }.category-row h3 { font-family:'Fredoka One',cursive; font-size:1.7rem; margin-bottom:5px; }
.deal-card { text-align:center; position:relative; overflow:hidden; }.deal-percent { font-family:'Fredoka One',cursive; font-size:3rem; color:#e74c3c; }.deal-code { background:#ffe66d; border:2px dashed #ff8c42; padding:10px; margin:15px 0; border-radius:12px; font-weight:700; }
.story { font-size:1.15rem; line-height:1.9; color:#444; }.story p { margin-bottom:18px; }.feature-box { text-align:center; }.feature-box .big-emoji { font-size:4rem; display:block; margin-bottom:12px; }
.contact-grid { display:grid; grid-template-columns:.8fr 1.2fr; gap:30px; }.contact-info { display:grid; gap:18px; }.info-bubble { padding:20px; border-radius:20px; background:#f7f0ff; border-left:6px solid #9b59b6; }.info-bubble strong { display:block; margin-bottom:6px; color:#7b3fb3; }
.fun-form { display:grid; gap:16px; }.fun-form label { font-weight:700; color:#555; }.fun-form input,.fun-form textarea,.fun-form select { width:100%; padding:14px 16px; border:3px solid #4ecdc4; border-radius:15px; font:inherit; outline:none; background:#fff; }.fun-form input:focus,.fun-form textarea:focus,.fun-form select:focus { border-color:#ff6b6b; box-shadow:0 0 0 4px rgba(255,107,107,.15); }.fun-form textarea { min-height:140px; resize:vertical; }
.faq-list { display:grid; gap:16px; }.faq-item { border:3px solid #4ecdc4; border-radius:20px; overflow:hidden; background:white; }.faq-question { width:100%; padding:20px; border:0; background:white; text-align:left; font:700 1.12rem 'Comic Neue',cursive; cursor:pointer; display:flex; justify-content:space-between; }.faq-answer { display:none; padding:0 20px 20px; line-height:1.7; color:#555; }.faq-item.open .faq-answer { display:block; }.faq-item.open .faq-question { color:#9b59b6; }
.cart-layout { display:grid; grid-template-columns:1.5fr .7fr; gap:28px; }.cart-list { display:grid; gap:16px; }.cart-row { display:grid; grid-template-columns:90px 1fr auto; gap:18px; align-items:center; padding:18px; background:#fff; border:3px solid #ffe66d; border-radius:20px; }.cart-row img { width:90px; height:75px; object-fit:cover; border-radius:14px; }.cart-row h3 { font-family:'Fredoka One',cursive; }.cart-total { padding:25px; border-radius:24px; color:white; background:linear-gradient(135deg,#9b59b6,#ff6b9d); height:max-content; }.cart-total h2 { font-family:'Fredoka One',cursive; margin-bottom:20px; }.total-line { display:flex; justify-content:space-between; padding:10px 0; border-bottom:1px solid rgba(255,255,255,.3); }.empty-note { display:none; text-align:center; padding:30px; font-size:1.2rem; }
@media(max-width:900px){.catalog-grid,.feature-grid,.deal-grid{grid-template-columns:repeat(2,1fr)}.contact-grid,.cart-layout{grid-template-columns:1fr}.category-list{grid-template-columns:1fr}}
@media(max-width:600px){.page-shell{padding-top:85px}.page-hero,.content-panel{width:calc(100% - 24px);padding:28px 18px}.catalog-grid,.feature-grid,.deal-grid{grid-template-columns:1fr}.cart-row{grid-template-columns:70px 1fr}.cart-row img{width:70px;height:65px}.cart-row .remove-item{grid-column:1/-1}.navbar{padding-left:15px!important;padding-right:15px!important}}
