:root {
    --primary: #FF6B35;
    --secondary: #4267B2;
    --success: #2ecc71;
    --danger: #e74c3c;
    --dark: #2c3e50;
    --light: #f4f7f6;
    --white: #ffffff;
}

body {
    font-family: 'Segoe UI', Arial, sans-serif;
    background-color: var(--light);
    margin: 0;
    color: var(--dark);
}

header {
    background: var(--white);
    padding: 15px 8%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

header h1 {
    color: var(--primary);
    margin: 0;
}

nav a {
    text-decoration: none;
    color: var(--dark);
    margin-left: 20px;
    font-weight: 600;
}

.container {
    padding: 30px 8%;
}

.card {
    background: var(--white);
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
    margin-bottom: 30px;
}

input, select, textarea {
    width: 100%;
    padding: 12px;
    margin: 10px 0;
    border: 1px solid #ddd;
    border-radius: 6px;
    box-sizing: border-box;
    font-size: 1rem;
}

button {
    background: var(--primary);
    color: white;
    border: none;
    padding: 12px 25px;
    border-radius: 6px;
    cursor: pointer;
    font-weight: bold;
    transition: 0.3s;
}

button:hover {
    opacity: 0.9;
}

.btn-success { background: var(--success); }
.btn-danger { background: var(--danger); }

.recipe-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #eee;
    padding-top: 15px;
    margin-top: 15px;
}

.social-icons a {
    font-size: 1.4rem;
    margin-left: 15px;
    transition: 0.3s;
}

.whatsapp { color: #25D366; }
.facebook { color: #4267B2; }
.instagram { color: #E1306C; }

.dynamic-row {
    display: flex;
    gap: 10px;
    align-items: center;
    margin-bottom: 5px;
}

.badge {
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: bold;
    text-transform: uppercase;
}

.badge-veg { background: #d4edda; color: #155724; }
.badge-nonveg { background: #f8d7da; color: #721c24; }

.comment-box {
    background: #f9f9f9;
    padding: 15px;
    border-radius: 8px;
    margin-top: 20px;
}

.comment {
    border-bottom: 1px solid #eee;
    padding: 10px 0;
}


/* Shopping CTA Styles */
        .shopping-cta { background: #f1f9f4; border: 1px dashed #27ae60; padding: 15px; border-radius: 10px; margin: 15px 0; display: flex; justify-content: space-between; align-items: center; }
        .shop-btn { background: #27ae60; color: white; padding: 8px 15px; text-decoration: none; border-radius: 5px; font-weight: bold; font-size: 0.85rem; }
        .shop-text { color: #1e6b3e; font-size: 0.9rem; font-weight: 500; }
		
		
		
		