* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Comic Sans MS', 'Segoe UI', sans-serif;
}

body {
    background-color: #f8f9ff;
    color: #333;
    line-height: 1.6;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
header {
    background: linear-gradient(135deg, #ff6b6b, #4ecdc4);
    color: white;
    padding: 20px 0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 28px;
    font-weight: bold;
    display: flex;
    align-items: center;
}

.logo i {
    margin-right: 10px;
    font-size: 32px;
}

.logo a {
    color: white;
    text-decoration: none;
}

nav ul {
    display: flex;
    list-style: none;
}

nav ul li {
    margin-left: 25px;
}

nav ul li a {
    color: white;
    text-decoration: none;
    font-weight: bold;
    font-size: 18px;
    padding: 8px 12px;
    border-radius: 5px;
    transition: background-color 0.3s;
}

nav ul li a:hover, nav ul li a.active {
    background-color: rgba(255, 255, 255, 0.2);
}

.header-right {
    display: flex;
    align-items: center;
}

.cart-icon {
    position: relative;
    font-size: 24px;
    cursor: pointer;
    margin-left: 20px;
}

.cart-count {
    position: absolute;
    top: -8px;
    right: -8px;
    background-color: #ffcc00;
    color: #333;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: bold;
}

/* Main Content */
.main-content {
    flex: 1;
    padding: 40px 0;
}

/* Page Header */
.page-header {
    text-align: center;
    margin-bottom: 40px;
}

.page-header h1 {
    font-size: 42px;
    color: #ff6b6b;
    margin-bottom: 10px;
}

.page-description {
    font-size: 18px;
    color: #666;
    max-width: 700px;
    margin: 0 auto;
}

/* Home Page */
.hero {
    background: linear-gradient(rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.7)), url('https://images.unsplash.com/photo-1533473359331-0135ef1b58bf?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80');
    background-size: cover;
    background-position: center;
    padding: 80px 40px;
    text-align: center;
    margin-bottom: 60px;
    border-radius: 15px;
}

.hero h1 {
    font-size: 48px;
    color: #ff6b6b;
    margin-bottom: 20px;
    text-shadow: 2px 2px 0 #ffcc00;
}

.hero p {
    font-size: 22px;
    color: #555;
    max-width: 700px;
    margin: 0 auto 30px;
}

.cta-button {
    display: inline-block;
    background: #ff6b6b;
    color: white;
    text-decoration: none;
    padding: 15px 40px;
    border-radius: 8px;
    font-weight: bold;
    font-size: 18px;
    transition: background 0.3s ease;
    margin-top: 20px;
}

.cta-button:hover {
    background: #ff5252;
}

/* About Preview on Home */
.about-preview {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    margin: 80px 0;
    gap: 40px;
}

.about-preview .about-image {
    flex: 1;
    min-width: 300px;
}

.about-preview .about-image img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.about-preview .about-text {
    flex: 1;
    min-width: 300px;
}

.about-preview .about-text h2 {
    color: #4ecdc4;
    font-size: 36px;
    margin-bottom: 20px;
}

.about-preview .about-text p {
    margin-bottom: 20px;
    font-size: 18px;
    color: #555;
}

/* Testimonials */
.testimonials {
    margin: 80px 0;
}

.testimonials h2 {
    text-align: center;
    color: #ff6b6b;
    font-size: 36px;
    margin-bottom: 40px;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
}

.testimonial-content {
    margin-bottom: 20px;
}

.testimonial-content p {
    font-style: italic;
    color: #555;
    font-size: 16px;
}

.testimonial-author h4 {
    color: #333;
    margin-bottom: 5px;
}

.testimonial-author p {
    color: #666;
    font-size: 14px;
}

/* Shop Page */
.shopping-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 60px;
}

.info-card {
    background: white;
    padding: 25px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.info-card i {
    font-size: 36px;
    color: #4ecdc4;
    margin-bottom: 15px;
}

.info-card h3 {
    color: #333;
    margin-bottom: 10px;
}

.info-card p {
    color: #666;
    font-size: 14px;
}

/* Toys Section */
.featured-toys h2, .toys-section h1 {
    text-align: center;
    color: #4ecdc4;
    font-size: 36px;
    margin-bottom: 40px;
    position: relative;
}

.featured-toys h2:after, .toys-section h1:after {
    content: '';
    position: absolute;
    width: 100px;
    height: 4px;
    background: #ffcc00;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
}

.toys-filter {
    display: flex;
    justify-content: center;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.filter-btn {
    background: white;
    border: 2px solid #4ecdc4;
    color: #4ecdc4;
    padding: 8px 20px;
    margin: 5px;
    border-radius: 30px;
    cursor: pointer;
    font-weight: bold;
    transition: all 0.3s ease;
}

.filter-btn:hover, .filter-btn.active {
    background: #4ecdc4;
    color: white;
}

.toys-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.toy-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.toy-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.toy-img {
    height: 200px;
    width: 100%;
    object-fit: cover;
}

.toy-info {
    padding: 20px;
}

.toy-category {
    display: inline-block;
    background: #ffcc00;
    color: #333;
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: bold;
    margin-bottom: 10px;
}

.toy-name {
    font-size: 20px;
    margin-bottom: 10px;
    color: #333;
}

.toy-description {
    color: #666;
    font-size: 14px;
    margin-bottom: 15px;
    height: 60px;
    overflow: hidden;
}

.toy-price {
    font-size: 24px;
    color: #ff6b6b;
    font-weight: bold;
    margin-bottom: 15px;
}

.add-to-cart {
    background: #4ecdc4;
    color: white;
    border: none;
    padding: 12px 20px;
    width: 100%;
    border-radius: 8px;
    cursor: pointer;
    font-weight: bold;
    font-size: 16px;
    transition: background 0.3s ease;
}

.add-to-cart:hover {
    background: #3db8af;
}

/* About Page */
.about-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    margin-bottom: 50px;
    gap: 40px;
}

.about-content .about-image {
    flex: 1;
    min-width: 300px;
}

.about-content .about-image img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.about-content .about-text {
    flex: 1;
    min-width: 300px;
}

.about-content .about-text h2 {
    color: #4ecdc4;
    font-size: 36px;
    margin-bottom: 20px;
}

.about-content .about-text p {
    margin-bottom: 20px;
    font-size: 18px;
    color: #555;
}

.mission-values {
    margin: 80px 0;
}

.mission-values h2 {
    text-align: center;
    color: #ff6b6b;
    font-size: 36px;
    margin-bottom: 40px;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.value-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
}

.value-card i {
    font-size: 36px;
    color: #4ecdc4;
    margin-bottom: 20px;
}

.value-card h3 {
    color: #333;
    margin-bottom: 15px;
}

.value-card p {
    color: #666;
}

.team-section {
    margin: 80px 0;
}

.team-section h2 {
    text-align: center;
    color: #4ecdc4;
    font-size: 36px;
    margin-bottom: 40px;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.team-member {
    background: white;
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
}

.team-member img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 20px;
    border: 5px solid #4ecdc4;
}

.team-member h3 {
    color: #333;
    margin-bottom: 10px;
}

.team-member .position {
    color: #ff6b6b;
    font-weight: bold;
    margin-bottom: 15px;
}

.team-member .bio {
    color: #666;
    font-size: 14px;
}

/* Contact Page */
.contact-container {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 60px;
}

.contact-info, .contact-form {
    flex: 1;
    min-width: 300px;
}

.contact-info h2, .contact-form h2 {
    color: #4ecdc4;
    font-size: 36px;
    margin-bottom: 20px;
}

.contact-details {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
    margin-bottom: 30px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
}

.contact-icon {
    background: #ffcc00;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    font-size: 20px;
    color: #333;
}

.contact-text h3 {
    margin-bottom: 5px;
    color: #333;
}

.contact-text p {
    color: #666;
}

.social-media h3 {
    color: #4ecdc4;
    margin-bottom: 15px;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    display: inline-block;
    width: 40px;
    height: 40px;
    background: #4ecdc4;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 18px;
    transition: background 0.3s;
}

.social-icons a:hover {
    background: #3db8af;
}

/* Contact Form */
.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: #555;
    font-weight: bold;
}

.form-control {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #ddd;
    border-radius: 8px;
    font-size: 16px;
    transition: border-color 0.3s;
}

.form-control:focus {
    border-color: #4ecdc4;
    outline: none;
}

textarea.form-control {
    min-height: 150px;
    resize: vertical;
}

.submit-btn {
    background: #ff6b6b;
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 8px;
    cursor: pointer;
    font-weight: bold;
    font-size: 18px;
    transition: background 0.3s ease;
    width: 100%;
}

.submit-btn:hover {
    background: #ff5252;
}

/* FAQ Section */
.faq-section {
    margin: 80px 0;
}

.faq-section h2 {
    text-align: center;
    color: #ff6b6b;
    font-size: 36px;
    margin-bottom: 40px;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.faq-item {
    background: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
}

.faq-item h3 {
    color: #4ecdc4;
    margin-bottom: 15px;
}

.faq-item p {
    color: #666;
}

/* Policy Pages */
.policy-container {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
    margin-bottom: 60px;
}

.policy-content h2 {
    color: #4ecdc4;
    margin: 30px 0 15px;
    font-size: 28px;
}

.policy-content h3 {
    color: #ff6b6b;
    margin: 20px 0 10px;
    font-size: 22px;
}

.policy-content p {
    margin-bottom: 15px;
    color: #555;
    line-height: 1.8;
}

.policy-content ul {
    margin-left: 20px;
    margin-bottom: 20px;
}

.policy-content li {
    margin-bottom: 10px;
    color: #555;
}

/* Cart Modal */
.cart-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 200;
    justify-content: center;
    align-items: center;
}

.cart-content {
    background: white;
    width: 90%;
    max-width: 800px;
    border-radius: 15px;
    padding: 30px;
    max-height: 80vh;
    overflow-y: auto;
}

.cart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    border-bottom: 2px solid #f0f0f0;
    padding-bottom: 15px;
}

.cart-header h2 {
    color: #4ecdc4;
}

.close-cart {
    font-size: 28px;
    cursor: pointer;
    color: #666;
}

.cart-items {
    margin-bottom: 30px;
}

.cart-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid #f0f0f0;
}

.cart-item-info h4 {
    margin-bottom: 5px;
    color: #333;
}

.cart-item-price {
    color: #ff6b6b;
    font-weight: bold;
}

.cart-item-quantity {
    display: flex;
    align-items: center;
}

.quantity-btn {
    background: #f0f0f0;
    border: none;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    cursor: pointer;
    font-weight: bold;
}

.quantity {
    margin: 0 15px;
    font-weight: bold;
}

.remove-item {
    background: #ff6b6b;
    color: white;
    border: none;
    padding: 5px 10px;
    border-radius: 5px;
    cursor: pointer;
    margin-left: 15px;
}

.cart-total {
    text-align: right;
    font-size: 24px;
    font-weight: bold;
    color: #333;
    border-top: 2px solid #f0f0f0;
    padding-top: 20px;
}

.checkout-btn {
    background: #ff6b6b;
    color: white;
    border: none;
    padding: 15px 30px;
    width: 100%;
    border-radius: 8px;
    cursor: pointer;
    font-weight: bold;
    font-size: 18px;
    margin-top: 20px;
    transition: background 0.3s ease;
}

.checkout-btn:hover {
    background: #ff5252;
}

/* Footer */
footer {
    background: #333;
    color: white;
    padding: 40px 0 20px;
    margin-top: 60px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.footer-section {
    flex: 1;
    min-width: 250px;
    margin-bottom: 30px;
}

.footer-section h3 {
    color: #4ecdc4;
    margin-bottom: 20px;
    font-size: 20px;
}

.footer-section p {
    margin-bottom: 10px;
}

.footer-links a {
    display: block;
    color: white;
    text-decoration: none;
    margin-bottom: 8px;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: #ffcc00;
}

.copyright {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #444;
    font-size: 14px;
    color: #aaa;
}

/* Responsive Design */
@media (max-width: 992px) {
    .header-content {
        flex-direction: column;
        text-align: center;
    }
    
    nav ul {
        margin-top: 20px;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    nav ul li {
        margin: 5px 10px;
    }
    
    .hero h1 {
        font-size: 36px;
    }
    
    .hero p {
        font-size: 18px;
    }
    
    .about-preview, .about-content {
        flex-direction: column;
    }
    
    .about-preview .about-image, .about-content .about-image {
        margin-bottom: 30px;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 60px 20px;
    }
    
    .hero h1 {
        font-size: 32px;
    }
    
    .toys-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    }
    
    .cart-content {
        width: 95%;
        padding: 20px;
    }
    
    .policy-container {
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .logo {
        font-size: 24px;
    }
    
    nav ul li a {
        font-size: 16px;
        padding: 6px 10px;
    }
    
    .hero h1 {
        font-size: 28px;
    }
    
    .page-header h1 {
        font-size: 32px;
    }
}