/* ============================================
   ARUNA STORE - CUTE THEME
   Brown & White with rounded bubbles
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Fredoka+One&family=Nunito:wght@400;600;700;800&display=swap');

:root {
    --primary: #8B4513;
    --secondary: #D2691E;
    --accent: #FF6B6B;
    --bg: #FFF5EE;
    --card: #FFFFFF;
    --text: #5D4037;
    --light: #FFE4C4;
    --shadow: rgba(139, 69, 19, 0.15);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    font-family: 'Nunito', sans-serif;
    background: var(--bg);
    color: var(--text);
    min-height: 100vh;
    overflow-x: hidden;
}

/* ========== FLOATING BUBBLES BG ========== */
.bubbles-container {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}
.bubble {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--light), var(--bg));
    opacity: 0.4;
    animation: float-up linear infinite;
}
@keyframes float-up {
    0% { transform: translateY(100vh) scale(0); opacity: 0; }
    10% { opacity: 0.4; }
    90% { opacity: 0.4; }
    100% { transform: translateY(-100px) scale(1); opacity: 0; }
}

/* ========== NAVBAR ========== */
nav {
    position: fixed;
    top: 0; width: 100%;
    padding: 12px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    background: rgba(255, 245, 238, 0.95);
    backdrop-filter: blur(15px);
    border-bottom: 3px solid var(--light);
    box-shadow: 0 2px 20px var(--shadow);
}
.logo {
    font-family: 'Fredoka One', cursive;
    font-size: 1.6rem;
    color: var(--primary);
    display: flex;
    align-items: center;
    gap: 8px;
}
.logo::before { content: '🐾'; font-size: 1.4rem; }
.nav-links { display: flex; gap: 25px; align-items: center; }
.nav-links a {
    color: var(--text);
    text-decoration: none;
    font-weight: 700;
    font-size: 0.9rem;
    padding: 8px 16px;
    border-radius: 20px;
    transition: all 0.3s;
}
.nav-links a:hover {
    background: var(--light);
    color: var(--primary);
    transform: scale(1.05);
}
.admin-toggle {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border: none;
    padding: 8px 18px;
    border-radius: 20px;
    color: #fff;
    font-family: 'Nunito', sans-serif;
    font-weight: 700;
    cursor: pointer;
    font-size: 0.85rem;
    transition: all 0.3s;
    box-shadow: 0 4px 15px var(--shadow);
}
.admin-toggle:hover { transform: scale(1.05); box-shadow: 0 6px 20px var(--shadow); }

/* ========== HERO ========== */
.hero {
    position: relative;
    z-index: 2;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 120px 20px 60px;
}
.mascots {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
    font-size: 4rem;
    animation: bounce 2s ease-in-out infinite;
}
@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}
.hero h1 {
    font-family: 'Fredoka One', cursive;
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    color: var(--primary);
    margin-bottom: 10px;
    text-shadow: 3px 3px 0 var(--light);
}
.hero .subtitle {
    font-family: 'Fredoka One', cursive;
    font-size: 1.5rem;
    color: var(--secondary);
    margin-bottom: 15px;
}
.hero p {
    font-size: 1.1rem;
    color: var(--text);
    max-width: 500px;
    margin-bottom: 30px;
    line-height: 1.7;
}
.hero-btns { display: flex; gap: 15px; flex-wrap: wrap; justify-content: center; }
.btn {
    padding: 14px 35px;
    border-radius: 30px;
    font-family: 'Nunito', sans-serif;
    font-size: 1rem;
    font-weight: 800;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border: 3px solid transparent;
}
.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: #fff;
    box-shadow: 0 6px 20px var(--shadow);
}
.btn-primary:hover { transform: translateY(-3px) scale(1.03); box-shadow: 0 10px 30px var(--shadow); }
.btn-outline {
    background: var(--card);
    color: var(--primary);
    border-color: var(--primary);
}
.btn-outline:hover { background: var(--light); transform: translateY(-3px); }

/* ========== CATEGORY CARDS ========== */
.categories {
    position: relative;
    z-index: 2;
    padding: 60px 20px;
    max-width: 1200px;
    margin: 0 auto;
}
.section-title {
    font-family: 'Fredoka One', cursive;
    font-size: 2.2rem;
    text-align: center;
    color: var(--primary);
    margin-bottom: 10px;
}
.section-subtitle {
    text-align: center;
    color: var(--text);
    margin-bottom: 40px;
    opacity: 0.7;
}
.category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 25px;
}
.category-card {
    background: var(--card);
    border-radius: 25px;
    padding: 30px 25px;
    text-align: center;
    transition: all 0.3s;
    border: 3px solid var(--light);
    box-shadow: 0 5px 20px var(--shadow);
    cursor: pointer;
    text-decoration: none;
    color: inherit;
    display: block;
}
.category-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 15px 40px var(--shadow);
    border-color: var(--primary);
}
.category-icon {
    width: 70px; height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    font-size: 1.8rem;
    color: #fff;
}
.category-card h3 {
    font-family: 'Fredoka One', cursive;
    font-size: 1.2rem;
    margin-bottom: 8px;
    color: var(--primary);
}
.category-card p { font-size: 0.9rem; opacity: 0.8; }

/* ========== SERVICE ITEMS (BUBBLES) ========== */
.service-page {
    position: relative;
    z-index: 2;
    padding: 100px 20px 60px;
    max-width: 1000px;
    margin: 0 auto;
}
.service-header {
    text-align: center;
    margin-bottom: 40px;
}
.service-header h1 {
    font-family: 'Fredoka One', cursive;
    font-size: 2.5rem;
    color: var(--primary);
}
.service-header p { color: var(--text); opacity: 0.7; margin-top: 10px; }
.back-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary);
    text-decoration: none;
    font-weight: 700;
    margin-bottom: 20px;
    padding: 8px 16px;
    border-radius: 20px;
    background: var(--light);
    transition: all 0.3s;
}
.back-btn:hover { transform: translateX(-5px); }

.subcategory {
    margin-bottom: 40px;
}
.subcategory h2 {
    font-family: 'Fredoka One', cursive;
    font-size: 1.5rem;
    color: var(--primary);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.items-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 15px;
}
.item-bubble {
    background: var(--card);
    border: 3px solid var(--light);
    border-radius: 20px;
    padding: 18px 22px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s;
    box-shadow: 0 3px 10px var(--shadow);
}
.item-bubble:hover {
    transform: scale(1.02);
    border-color: var(--primary);
    box-shadow: 0 8px 25px var(--shadow);
}
.item-info h4 {
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 4px;
}
.item-info span {
    font-size: 0.8rem;
    color: var(--text);
    opacity: 0.6;
}
.item-price {
    text-align: right;
}
.item-price .price {
    font-family: 'Fredoka One', cursive;
    font-size: 1.1rem;
    color: var(--accent);
}
.item-price .note {
    font-size: 0.75rem;
    color: var(--secondary);
    font-weight: 700;
}

/* ========== CONTACT ========== */
.contact {
    position: relative;
    z-index: 2;
    padding: 60px 20px;
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}
.contact-links {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 25px;
    flex-wrap: wrap;
}
.contact-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    border-radius: 25px;
    text-decoration: none;
    color: #fff;
    font-weight: 800;
    transition: all 0.3s;
    box-shadow: 0 5px 15px var(--shadow);
}
.contact-btn:hover { transform: scale(1.05); }
.contact-btn.wa { background: linear-gradient(135deg, #25D366, #128C7E); }
.contact-btn.tg { background: linear-gradient(135deg, #0088CC, #005580); }

/* ========== FOOTER ========== */
footer {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 30px 20px;
    background: var(--light);
    color: var(--primary);
    font-weight: 700;
}

/* ========== ADMIN PANEL ========== */
.admin-panel {
    display: none;
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: var(--bg);
    z-index: 2000;
    overflow-y: auto;
}
.admin-panel.active { display: block; }
.admin-header {
    padding: 15px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--card);
    border-bottom: 3px solid var(--light);
    position: sticky;
    top: 0;
    z-index: 10;
}
.admin-header h2 {
    font-family: 'Fredoka One', cursive;
    color: var(--primary);
}
.close-admin {
    background: var(--accent);
    border: none;
    padding: 8px 20px;
    border-radius: 20px;
    color: #fff;
    font-family: 'Nunito', sans-serif;
    font-weight: 800;
    cursor: pointer;
    transition: all 0.3s;
}
.close-admin:hover { transform: scale(1.05); }
.admin-content {
    padding: 30px;
    max-width: 900px;
    margin: 0 auto;
}
.admin-section {
    background: var(--card);
    border: 3px solid var(--light);
    border-radius: 25px;
    padding: 25px;
    margin-bottom: 25px;
    box-shadow: 0 5px 20px var(--shadow);
}
.admin-section h3 {
    font-family: 'Fredoka One', cursive;
    color: var(--primary);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.form-group { margin-bottom: 18px; }
.form-group label {
    display: block;
    margin-bottom: 6px;
    color: var(--text);
    font-weight: 700;
    font-size: 0.9rem;
}
.form-group input, .form-group textarea, .form-group select {
    width: 100%;
    padding: 12px 15px;
    background: var(--bg);
    border: 2px solid var(--light);
    border-radius: 15px;
    color: var(--text);
    font-family: 'Nunito', sans-serif;
    font-size: 0.95rem;
    transition: all 0.3s;
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 10px var(--shadow);
}
.form-group textarea { min-height: 80px; resize: vertical; }
.admin-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
}
.save-btn {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border: none;
    padding: 14px 35px;
    border-radius: 25px;
    color: #fff;
    font-family: 'Fredoka One', cursive;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 6px 20px var(--shadow);
}
.save-btn:hover { transform: scale(1.05); box-shadow: 0 10px 30px var(--shadow); }

/* ========== PASSWORD PROTECT ========== */
.login-overlay {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(93, 64, 55, 0.9);
    z-index: 3000;
    display: flex;
    justify-content: center;
    align-items: center;
}
.login-box {
    background: var(--card);
    padding: 40px;
    border-radius: 30px;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
    max-width: 400px;
    width: 90%;
}
.login-box h2 {
    font-family: 'Fredoka One', cursive;
    color: var(--primary);
    margin-bottom: 10px;
}
.login-box p { margin-bottom: 25px; color: var(--text); }
.login-box input {
    width: 100%;
    padding: 15px;
    border: 3px solid var(--light);
    border-radius: 20px;
    font-family: 'Nunito', sans-serif;
    font-size: 1rem;
    margin-bottom: 15px;
    text-align: center;
}
.login-box button {
    width: 100%;
    padding: 15px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border: none;
    border-radius: 20px;
    color: #fff;
    font-family: 'Fredoka One', cursive;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s;
}
.login-box button:hover { transform: scale(1.03); }

/* ========== RESPONSIVE ========== */
@media (max-width: 768px) {
    nav { padding: 12px 15px; }
    .nav-links a:not(.admin-btn) { display: none; }
    .hero h1 { font-size: 2rem; }
    .mascots { font-size: 3rem; }
    .items-grid { grid-template-columns: 1fr; }
    .admin-content { padding: 15px; }
}

/* ========== SCROLLBAR ========== */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--primary); border-radius: 4px; }
