/* ===== RESET & BASE ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family: 'Nunito', 'Comic Sans MS', 'Chalkboard SE', sans-serif;
    background: #FFF9F0;
    color: #2D1B3D;
    line-height: 1.6;
    scroll-behavior: smooth;
}
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}
a {
    text-decoration: none;
    color: inherit;
}
img {
    max-width: 100%;
    display: block;
}

/* ===== BUTTONS – Fun & Colorful ===== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 2rem;
    border-radius: 60px;
    font-weight: 700;
    font-size: 1rem;
    border: none;
    cursor: pointer;
    transition: 0.3s;
    text-decoration: none;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    letter-spacing: 0.3px;
}
.btn-primary {
    background: linear-gradient(135deg, #FF6B6B, #FF9F43);
    color: #fff;
}
.btn-primary:hover {
    transform: scale(1.05) translateY(-3px);
    box-shadow: 0 8px 25px rgba(255,107,107,0.4);
}
.btn-secondary {
    background: linear-gradient(135deg, #48DBFB, #0ABDE3);
    color: #fff;
}
.btn-secondary:hover {
    transform: scale(1.05) translateY(-3px);
    box-shadow: 0 8px 25px rgba(72,219,251,0.4);
}
.btn-whatsapp {
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: #fff;
}
.btn-whatsapp:hover {
    transform: scale(1.05) translateY(-3px);
    box-shadow: 0 8px 25px rgba(37,211,102,0.4);
}
.btn-outline {
    background: transparent;
    border: 3px solid #FF6B6B;
    color: #FF6B6B;
}
.btn-outline:hover {
    background: #FF6B6B;
    color: #fff;
    transform: scale(1.05);
}
.btn-block {
    width: 100%;
    justify-content: center;
}
.btn-lg {
    padding: 1rem 2.5rem;
    font-size: 1.2rem;
}

/* ===== NAVIGATION ===== */
.navbar {
    background: #FFEAA7;
    box-shadow: 0 4px 15px rgba(255,107,107,0.2);
    position: sticky;
    top: 0;
    z-index: 999;
    padding: 0.6rem 0;
    border-bottom: 5px solid #FF9F43;
}
.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 800;
    font-size: 1.4rem;
    color: #2D1B3D;
}
.nav-logo img {
    height: 45px;
    width: auto;
    border-radius: 50%;
    border: 3px solid #FF6B6B;
}
.nav-logo span {
    background: linear-gradient(135deg, #FF6B6B, #FECA57);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.nav-menu {
    display: flex;
    list-style: none;
    gap: 1.8rem;
    align-items: center;
}
.nav-menu a {
    font-weight: 700;
    font-size: 1rem;
    color: #2D1B3D;
    transition: 0.2s;
    padding: 0.3rem 0.8rem;
    border-radius: 30px;
}
.nav-menu a:hover {
    background: #FF6B6B;
    color: #fff;
    transform: scale(1.05);
}
.nav-admin-btn {
    background: #FF9F43 !important;
    color: #fff !important;
    padding: 0.4rem 1.4rem !important;
    border-radius: 50px !important;
}
.nav-admin-btn:hover {
    background: #FF6B6B !important;
}
.nav-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.8rem;
    color: #FF6B6B;
    cursor: pointer;
}

/* ===== HERO ===== */
.hero {
    position: relative;
    background: linear-gradient(135deg, #FF9F43 0%, #FECA57 40%, #FF6B6B 100%);
    color: #2D1B3D;
    padding: 5rem 0 8rem;
    overflow: hidden;
    border-bottom: 8px dashed #FFF;
}
.hero-overlay {
    position: absolute;
    inset: 0;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" opacity="0.15"><circle cx="20" cy="20" r="15" fill="%23ffffff"/><circle cx="80" cy="40" r="10" fill="%23ffffff"/><circle cx="50" cy="80" r="20" fill="%23ffffff"/><circle cx="10" cy="70" r="8" fill="%23ffffff"/><circle cx="90" cy="80" r="12" fill="%23ffffff"/></svg>') repeat;
    background-size: 120px 120px;
}
.hero-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 3rem;
}
.hero-text {
    max-width: 700px;
}
.hero-badge {
    background: rgba(255,255,255,0.3);
    display: inline-block;
    padding: 0.3rem 1.5rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 1rem;
    backdrop-filter: blur(4px);
    color: #2D1B3D;
    border: 2px solid #FFF;
}
.hero h1 {
    font-family: 'Fredoka One', 'Comic Sans MS', cursive;
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.5px;
    text-shadow: 4px 4px 0 rgba(255,255,255,0.3);
    color: #2D1B3D;
}
.hero-subtitle {
    font-size: 1.3rem;
    opacity: 0.9;
    margin: 1.5rem 0 2rem;
    max-width: 550px;
    font-weight: 600;
    background: rgba(255,255,255,0.2);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    display: inline-block;
}
.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}
.hero-stats {
    display: flex;
    gap: 4rem;
    margin-top: 1rem;
    flex-wrap: wrap;
}
.stat-item {
    text-align: center;
    background: rgba(255,255,255,0.25);
    padding: 0.5rem 1.5rem;
    border-radius: 40px;
    backdrop-filter: blur(4px);
}
.stat-number {
    font-size: 2.8rem;
    font-weight: 800;
    display: block;
    color: #2D1B3D;
    text-shadow: 2px 2px 0 rgba(255,255,255,0.5);
}
.stat-label {
    font-size: 1rem;
    font-weight: 700;
    opacity: 0.9;
}
.hero-wave {
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    z-index: 1;
}
.hero-wave svg {
    display: block;
    width: 100%;
    height: auto;
}

/* ===== SECTION COMMON ===== */
section {
    padding: 4rem 0;
}
.section-label {
    display: inline-block;
    background: #FECA57;
    color: #2D1B3D;
    padding: 0.2rem 1.5rem;
    border-radius: 50px;
    font-weight: 800;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    margin-bottom: 0.5rem;
    border: 3px solid #FF6B6B;
}
.section-title {
    font-family: 'Fredoka One', 'Comic Sans MS', cursive;
    font-size: 2.8rem;
    font-weight: 700;
    color: #2D1B3D;
    margin-bottom: 1.5rem;
}
.section-title span {
    color: #FF6B6B;
    background: #FECA57;
    padding: 0 0.5rem;
    border-radius: 20px;
    display: inline-block;
}
.section-desc {
    max-width: 600px;
    color: #555;
    margin-bottom: 2rem;
    font-weight: 600;
}

/* ===== ABOUT ===== */
.about {
    background: #FFF0E0;
}
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}
.about-text p {
    margin-bottom: 1rem;
    color: #2D1B3D;
    font-weight: 500;
}
.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.8rem;
    margin: 1.5rem 0;
}
.about-features div {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 700;
    background: #FFF;
    padding: 0.3rem 1rem;
    border-radius: 30px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.05);
}
.about-features i {
    color: #FF6B6B;
    font-size: 1.2rem;
}
.about-image img {
    border-radius: 40px;
    box-shadow: 0 20px 40px rgba(255,107,107,0.2);
    width: 100%;
    height: 300px;
    object-fit: cover;
    border: 6px solid #FFEAA7;
}

/* ===== SERVICES ===== */
.services {
    background: #E0F7FA;
}
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
}
.service-card {
    background: #FFF;
    padding: 2rem 1.5rem;
    border-radius: 40px;
    text-align: center;
    transition: 0.3s;
    border: 4px solid #FECA57;
    box-shadow: 0 8px 20px rgba(0,0,0,0.05);
}
.service-card:hover {
    transform: translateY(-10px) rotate(-1deg);
    box-shadow: 0 15px 40px rgba(255,107,107,0.2);
    border-color: #FF6B6B;
}
.service-icon {
    font-size: 3rem;
    color: #FF6B6B;
    margin-bottom: 1rem;
    background: #FFEAA7;
    width: 80px;
    height: 80px;
    line-height: 80px;
    border-radius: 50%;
    margin-inline: auto;
}
.service-card h3 {
    font-family: 'Fredoka One', cursive;
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
}
.service-card p {
    color: #555;
    font-size: 0.95rem;
}

/* ===== GALLERY ===== */
.gallery {
    background: #FFF9F0;
}
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1.5rem;
}
.gallery-grid img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 30px;
    transition: 0.3s;
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
    border: 5px solid #FFEAA7;
}
.gallery-grid img:hover {
    transform: scale(1.05) rotate(1deg);
    border-color: #FF6B6B;
}

/* ===== PRODUCTS ===== */
.products {
    background: #F3E5F5;
}
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 2rem;
}
.product-card {
    background: #FFF;
    border-radius: 40px;
    padding: 1.5rem;
    border: 4px solid #CE93D8;
    transition: 0.3s;
    display: flex;
    flex-direction: column;
    box-shadow: 0 8px 20px rgba(0,0,0,0.05);
}
.product-card:hover {
    transform: translateY(-8px);
    border-color: #FF6B6B;
    box-shadow: 0 15px 35px rgba(255,107,107,0.15);
}
.product-card img {
    width: 100%;
    height: 160px;
    object-fit: cover;
    border-radius: 24px;
    margin-bottom: 1rem;
    border: 4px solid #FFEAA7;
}
.product-card h3 {
    font-family: 'Fredoka One', cursive;
    font-size: 1.3rem;
}
.product-card .price {
    font-weight: 800;
    color: #FF6B6B;
    font-size: 1.5rem;
    margin: 0.5rem 0;
}
.product-card .category {
    font-size: 0.8rem;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 1px;
    background: #F3E5F5;
    padding: 0.2rem 1rem;
    border-radius: 30px;
    display: inline-block;
    align-self: flex-start;
}
.product-card .desc {
    color: #555;
    font-size: 0.9rem;
    flex-grow: 1;
    margin: 0.5rem 0;
}
.product-card .btn {
    align-self: flex-start;
    margin-top: 0.5rem;
}

/* ===== CONTACT ===== */
.contact {
    background: #E8F5E9;
}
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}
.contact-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    background: #FFF;
    padding: 1rem 1.5rem;
    border-radius: 30px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    border-left: 8px solid #FF6B6B;
}
.contact-item i {
    font-size: 1.8rem;
    color: #FF6B6B;
    margin-top: 0.2rem;
}
.contact-item h4 {
    font-weight: 800;
    margin-bottom: 0.2rem;
}
.contact-item a {
    color: #2D1B3D;
    font-weight: 700;
}
.contact-item a:hover {
    color: #FF6B6B;
}
.contact-whatsapp-btn {
    margin-top: 0.5rem;
}
.contact-map iframe {
    width: 100%;
    height: 100%;
    min-height: 300px;
    border-radius: 40px;
    border: 6px solid #FFEAA7;
}

/* ===== FOOTER ===== */
.footer {
    background: #2D1B3D;
    color: #FFEAA7;
    padding: 3rem 0 0;
}
.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 2rem;
    padding-bottom: 2rem;
    border-bottom: 4px solid #FF6B6B;
}
.footer-brand img {
    height: 50px;
    margin-bottom: 0.5rem;
    border-radius: 50%;
    border: 4px solid #FF6B6B;
}
.footer-brand h3 {
    font-family: 'Fredoka One', cursive;
    color: #FFEAA7;
    font-size: 1.5rem;
}
.footer-brand p {
    opacity: 0.8;
}
.footer-links h4, .footer-contact h4 {
    color: #FFEAA7;
    font-family: 'Fredoka One', cursive;
    margin-bottom: 0.8rem;
}
.footer-links a {
    display: block;
    margin: 0.4rem 0;
    opacity: 0.8;
    transition: 0.2s;
}
.footer-links a:hover {
    opacity: 1;
    color: #FF6B6B;
    transform: translateX(5px);
}
.footer-contact p {
    margin: 0.4rem 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.footer-contact a {
    color: #FECA57;
}
.footer-bottom {
    padding: 1.5rem 0;
    text-align: center;
    font-size: 0.9rem;
    opacity: 0.7;
}

/* ===== WHATSAPP FLOAT ===== */
.whatsapp-float {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    background: #25D366;
    color: #fff;
    width: 65px;
    height: 65px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    box-shadow: 0 8px 30px rgba(37,211,102,0.5);
    z-index: 999;
    transition: 0.3s;
    border: 4px solid #FFF;
}
.whatsapp-float:hover {
    transform: scale(1.1) rotate(-5deg);
}

/* ===== ADMIN ===== */
.admin-section {
    background: #FFF9F0;
    padding: 3rem 0;
}
.admin-container {
    max-width: 900px;
    margin: 0 auto;
}
.admin-login-box, .admin-dashboard {
    background: #FFF;
    border-radius: 40px;
    padding: 2.5rem 2rem;
    box-shadow: 0 15px 40px rgba(255,107,107,0.15);
    border: 4px solid #FECA57;
}
.admin-login-icon {
    font-size: 3rem;
    color: #FF6B6B;
}
.admin-tabs {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 2rem;
    border-bottom: 4px solid #FFEAA7;
    padding-bottom: 0.5rem;
    flex-wrap: wrap;
}
.admin-tab {
    padding: 0.5rem 1.5rem;
    border: none;
    background: none;
    font-weight: 700;
    color: #888;
    cursor: pointer;
    border-radius: 50px;
    transition: 0.2s;
}
.admin-tab.active {
    background: #FF6B6B;
    color: #fff;
}
.admin-logo-upload, .admin-gallery-upload, .admin-product-form {
    background: #FFF9F0;
    padding: 1.5rem;
    border-radius: 30px;
}
.admin-drop-zone, .admin-upload-zone {
    border: 4px dashed #FF6B6B;
    background: #FFF0E0;
}
.admin-gallery-list .gallery-item {
    border: 4px solid #FECA57;
    border-radius: 20px;
}
.admin-product-list .product-item {
    background: #FFF0E0;
    border-radius: 20px;
    border: 3px solid #CE93D8;
}
.admin-message.success {
    background: #C8E6C9;
    color: #2E7D32;
}
.admin-message.error {
    background: #FFCDD2;
    color: #C62828;
}
.toast {
    background: #2D1B3D;
    color: #FFEAA7;
}

/* ===== RESPONSIVE – Mobile first ===== */
@media (max-width: 768px) {
    .nav-toggle {
        display: block;
    }
    .nav-menu {
        display: none;
        flex-direction: column;
        gap: 1rem;
        background: #FFEAA7;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        padding: 1.5rem;
        box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        border-bottom: 4px solid #FF6B6B;
    }
    .nav-menu.active {
        display: flex;
    }
    .hero h1 {
        font-size: 2.5rem;
    }
    .hero-stats {
        gap: 1rem;
        flex-wrap: wrap;
    }
    .about-grid, .contact-grid, .footer-content {
        grid-template-columns: 1fr;
    }
    .admin-logo-upload {
        flex-direction: column;
        align-items: stretch;
    }
    .admin-product-form .form-row {
        grid-template-columns: 1fr;
    }
    .admin-dashboard {
        padding: 1.5rem;
    }
    .admin-tabs {
        flex-direction: column;
        align-items: stretch;
    }
    .admin-tab {
        text-align: center;
    }
}

/* ===== EXTRA SMALL PHONES ===== */
@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }
    .hero {
        padding: 3rem 0 6rem;
    }
    .hero h1 {
        font-size: 2rem;
    }
    .hero-subtitle {
        font-size: 1rem;
        padding: 0.3rem 1rem;
    }
    .stat-item {
        padding: 0.3rem 0.8rem;
    }
    .stat-number {
        font-size: 2rem;
    }
    .section-title {
        font-size: 2rem;
    }
    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    }
    .gallery-grid img {
        height: 150px;
    }
    .products-grid {
        grid-template-columns: 1fr;
    }
    .about-features {
        grid-template-columns: 1fr;
    }
    .contact-item {
        padding: 0.8rem 1rem;
    }
    .btn {
        padding: 0.5rem 1.2rem;
        font-size: 0.9rem;
    }
    .btn-lg {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
    }
    .whatsapp-float {
        width: 50px;
        height: 50px;
        font-size: 2rem;
        bottom: 1rem;
        right: 1rem;
    }
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .footer-contact p {
        justify-content: center;
    }
}