:root {
  --primary: #FF6B35;
  --primary-dark: #E85D2C;
  --secondary: #7DCE82;
  --accent: #FF6B35;
  --text-dark: #3A3335;
  --text-light: #FFFFFF;
  --background: #F7F7F7;
  --card-bg: #FFFFFF;
  --success: #4CAF50;
  --warning: #FFC107;
  --error: #F44336;
  --gray-100: #F7F7F7;
  --gray-200: #E5E5E5;
  --gray-300: #D4D4D4;
  --gray-400: #A3A3A3;
  --gray-500: #737373;
  --gray-600: #525252;
  --gray-700: #404040;
  --gray-800: #262626;
  
  --border-radius: 8px;
  --shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  --animation: 0.3s ease;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Open Sans', sans-serif;
  color: var(--text-dark);
  background-color: var(--background);
  line-height: 1.5;
  min-height: 100vh;
  position: relative;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Poppins', sans-serif;
  line-height: 1.2;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
}

button {
  cursor: pointer;
  font-family: 'Open Sans', sans-serif;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
}

/* Header styles */
header {
  background-color: var(--card-bg);
  box-shadow: var(--shadow);
  position: sticky;
  top: 0;
  z-index: 100;
}

header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.logo h1 {
  font-size: 24px;
  font-weight: 700;
  color: var(--primary);
}

nav ul {
  display: flex;
  list-style: none;
}

nav li {
  margin-left: 24px;
}

nav a {
  font-weight: 600;
  padding: 8px 0;
  position: relative;
}

nav a:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--primary);
  transition: width var(--animation);
}

nav a:hover:after,
nav a.active:after {
  width: 100%;
}

.cart-icon {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.cart-count {
  position: absolute;
  top: -8px;
  right: -8px;
  background-color: var(--primary);
  color: var(--text-light);
  font-size: 12px;
  font-weight: 600;
  height: 20px;
  width: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Hero section */
.hero {
  background-color: var(--primary);
  color: var(--text-light);
  padding: 48px 0;
  text-align: center;
  margin-bottom: 32px;
}

.hero h2 {
  font-size: 36px;
  margin-bottom: 16px;
}

.hero p {
  font-size: 18px;
  max-width: 600px;
  margin: 0 auto;
}

/* Main content */
main {
  display: flex;
  gap: 32px;
  padding-bottom: 64px;
}

.menu-container {
  flex: 1;
}

/* Overlay */
.overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5);
  display: none;
  z-index: 150;
}

.overlay.active {
  display: block;
}

/* Footer */
footer {
  background-color: var(--gray-800);
  color: var(--text-light);
  padding: 24px 0;
  text-align: center;
}

/* Responsive styles */
@media (max-width: 768px) {
  nav {
    display: none;
  }
  
  main {
    flex-direction: column;
  }
  
  .hero h2 {
    font-size: 28px;
  }
  
  .hero p {
    font-size: 16px;
  }
}