/*
Theme Name: KebabStop Fast Food
Description: A fully dynamic WordPress Woocommerce theme for fast food with mango and light red color scheme.
Author: Antigravity
Version: 1.0.0
*/
:root {
    --primary-color: #FFC107; /* Mango */
    --secondary-color: #FF5722; /* Light Red */
    --bg-color: #fcfcfc;
    --text-color: #333333;
    --white: #ffffff;
    --border-radius: 12px;
    --shadow: 0 8px 16px rgba(255, 87, 34, 0.1);
    --transition: 0.3s ease all;
}
/* Basic reset & fonts */
body {
    font-family: 'Inter', 'Roboto', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-color);
    margin: 0; padding: 0;
}
a { text-decoration: none; color: inherit; transition: var(--transition); }
img { max-width: 100%; height: auto; }
