:root {
    --primary-color: #ff69b4; /* Pink */
    --secondary-color: #ff1493; /* Deep Pink */
    --bg-color: #fdfdfd;
    --text-color: #333;
    --dark-bg: #1a1a1a;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background-color: var(--bg-color);
    color: var(--text-color);
}

header {
    background-color: var(--dark-bg);
    color: white;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.logo h1 {
    text-align: center;
    padding: 15px;
    color: var(--primary-color);
}

nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
    background: #000;
}

nav ul li a {
    display: block;
    padding: 15px 25px;
    color: white;
    text-decoration: none;
    font-weight: bold;
    transition: 0.3s;
}

nav ul li a:hover {
    color: var(--primary-color);
}

.delivery-banner {
    background-color: var(--primary-color);
    color: white;
    text-align: center;
    padding: 10px;
    font-weight: bold;
}

.hero {
    text-align: center;
    padding: 60px 20px;
    background: linear-gradient(135deg, #1a1a1a 0%, #333 100%);
    color: white;
    border-bottom: 5px solid var(--primary-color);
}

.hero h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.section-title {
    text-align: center;
    padding: 40px 0 20px;
    color: var(--dark-bg);
    font-size: 2rem;
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: var(--primary-color);
    margin: 10px auto 0;
}

.product-grid, .tutorial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
    padding: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.product-card, .tutorial-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s;
    border: 1px solid #eee;
}

.product-card:hover, .tutorial-card:hover {
    transform: translateY(-5px);
}

.product-card img, .tutorial-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.product-info, .tutorial-info {
    padding: 15px;
    text-align: center;
}

.product-price {
    color: var(--secondary-color);
    font-weight: bold;
    font-size: 1.2rem;
    margin-top: 10px;
}

.booking-section {
    background: #f9f9f9;
    padding-bottom: 60px;
}

.booking-form {
    max-width: 500px;
    margin: 0 auto;
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    border-top: 5px solid var(--primary-color);
}

input, button {
    width: 100%;
    padding: 15px;
    margin-bottom: 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
}

button {
    background: var(--primary-color);
    color: white;
    border: none;
    cursor: pointer;
    font-weight: bold;
    transition: 0.3s;
}

button:hover {
    background: var(--secondary-color);
}

footer {
    background: var(--dark-bg);
    color: white;
    text-align: center;
    padding: 30px;
}

.social-links {
    margin-bottom: 15px;
}

.social-links a {
    color: white;
    font-size: 1.5rem;
    margin: 0 10px;
    text-decoration: none;
    transition: 0.3s;
}

.social-links a:hover {
    color: var(--primary-color);
}

footer p {
    margin-top: 20px;
    color: #aaa;
}

.floating-wa {
    position: fixed;
    bottom: 30px;
    left: 30px;
    background: #25d366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    text-decoration: none;
    z-index: 1000;
    transition: 0.3s;
}

.floating-wa:hover {
    transform: scale(1.1);
}

/* Admin Styles */
.admin-body {
    background: #f4f4f4;
}

.admin-login {
    max-width: 400px;
    margin: 100px auto;
    background: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    border-top: 5px solid var(--dark-bg);
}

.admin-login h2 {
    margin-bottom: 20px;
    text-align: center;
}

.hidden {
    display: none !important;
}

.error-msg {
    color: red;
    text-align: center;
    margin-top: 10px;
}

.admin-header {
    background: var(--dark-bg);
    color: white;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.btn-outline {
    background: transparent;
    border: 1px solid white;
    width: auto;
    padding: 10px 20px;
}

.btn-outline:hover {
    background: white;
    color: var(--dark-bg);
}

.admin-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    padding: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.admin-card {
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.admin-card h3 {
    margin-bottom: 15px;
    color: var(--primary-color);
}

.admin-lists {
    max-width: 1200px;
    margin: 20px auto;
    padding: 0 20px;
}

.admin-items {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 15px;
    margin-top: 15px;
}

.admin-item {
    background: white;
    padding: 10px;
    border-radius: 5px;
    text-align: center;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.admin-item img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 5px;
    margin-bottom: 10px;
}

.delete-btn {
    background: #ff4444;
    padding: 8px;
    margin-bottom: 0;
    margin-top: 10px;
}

.delete-btn:hover {
    background: #cc0000;
}

@media (max-width: 768px) {
    .floating-wa {
        bottom: 15px;
        left: 15px;
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
}
