@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@700&family=Poppins:wght@300;400;500;600&display=swap');

:root {
    --primary: #ff2a68;
    --secondary: #ff5e62;
    --accent: #FFD740;
    --glass: rgba(255, 255, 255, 0.95);
    --shadow: 0 15px 35px rgba(0,0,0,0.1);
}

body { 
    margin: 0; 
    font-family: 'Poppins', sans-serif; 
    background: #fdfdfd; 
    color: #333; 
    line-height: 1.6; 
}

/* HEADER - Stylish & Bold */
header { 
    background: linear-gradient(135deg, var(--primary), var(--secondary)); 
    color: #fff; 
    padding: 40px 20px; 
    text-align: center; 
    border-bottom: 5px solid var(--accent);
    box-shadow: 0 4px 20px rgba(255, 42, 104, 0.3);
}

header h1 { 
    font-family: 'Playfair Display', serif; 
    font-size: 52px; 
    margin: 0; 
    letter-spacing: 3px; 
    text-transform: uppercase;
    text-shadow: 2px 4px 6px rgba(0,0,0,0.1);
}

nav { margin-top: 20px; }
nav a, nav button { 
    color: #fff; 
    margin: 0 20px; 
    text-decoration: none; 
    font-size: 18px; 
    font-weight: 500;
    transition: 0.3s;
}
nav a:hover { color: var(--accent); transform: translateY(-2px); }

/* HERO SECTION - Visual Impact */
.hero { 
    background: linear-gradient(135deg, var(--primary), var(--secondary)); 
    padding: 140px 20px; 
    text-align: center; 
    color: #fff;
    clip-path: ellipse(150% 100% at 50% 0%);
}
.hero h2 { font-size: 64px; margin: 0; font-family: 'Playfair Display', serif; }
.hero p { font-size: 22px; opacity: 0.9; margin-top: 10px; }

/* PRODUCT GRID - Modern Cards */
.products { 
    display: grid; 
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); 
    gap: 40px; 
    padding: 60px 10%; 
}



.product { 
    background: var(--glass); 
    border-radius: 20px; 
    overflow: hidden; 
    box-shadow: var(--shadow); 
    text-align: center; 
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(255,255,255,0.3);
    animation: fadeInUp 1s ease-out;
}

.product:hover { 
    transform: translateY(-15px) scale(1.02); 
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.product img { 
    width: 100%; 
    height: 320px; 
    object-fit: cover; 
    transition: 0.5s;
}

.product:hover img { transform: scale(1.1); }

.product h3 { 
    font-size: 22px; 
    margin: 20px 0 10px; 
    color: var(--primary); 
    font-family: 'Playfair Display', serif;
}

.product p { font-size: 20px; font-weight: 600; color: #444; margin-bottom: 20px; }

/* BUTTONS - Sleek & Interactive */
button { 
    background: linear-gradient(to right, var(--primary), var(--secondary)); 
    color: white; 
    padding: 14px 35px; 
    border: none; 
    border-radius: 50px; 
    cursor: pointer; 
    font-weight: 600;
    font-size: 16px;
    box-shadow: 0 4px 15px rgba(255, 42, 104, 0.3);
    transition: 0.3s;
    margin-bottom: 25px;
}

button:hover { 
    box-shadow: 0 6px 20px rgba(255, 42, 104, 0.5);
    transform: scale(1.05);
}

/* ADMIN & FORMS - Clean Glass Design */
.section { 
    max-width: 900px; 
    margin: 60px auto; 
    padding: 40px; 
    background: white; 
    border-radius: 25px; 
    box-shadow: var(--shadow); 
}

input { 
    width: 100%; 
    padding: 15px; 
    margin: 15px 0; 
    border-radius: 12px; 
    border: 1px solid #eee; 
    background: #f9f9f9;
    box-sizing: border-box;
}

input:focus { border-color: var(--primary); outline: none; background: #fff; }

.order-card { 
    background: #fff; 
    padding: 25px; 
    margin: 20px 0; 
    border-radius: 18px; 
    border-left: 8px solid var(--primary); 
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

/* ANIMATIONS */
@keyframes fadeInUp { 
    from { opacity: 0; transform: translateY(40px); } 
    to { opacity: 1; transform: translateY(0); } 
}

footer {
    background: #1a1a1a;
    color: #fff;
    padding: 60px 20px;
    text-align: center;
    margin-top: 80px;
}