/*
Theme Name: Sushi-Station
Author: Elevated-Marketing
*/

body {
	margin: 0;
	font-family: Arial, sans-serif;
}


header, footer {
	padding: 20px;
	background: #f0f0f0;
}


.post-item {
	margin-bottom: 30px;
}

/* ===========================
   HEADER LAYOUT
   =========================== */

.sushi-header {
  background: white;
  border-bottom: 1px solid #eee;
  padding: 10px 0;
}

.sushi-header-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
}

/* LEFT MENU */
.sushi-menu {
  display: flex;
  gap: 30px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.sushi-menu a {
  text-decoration: none;
  color: #000;
  font-weight: 600;
  font-size: 14px;
}

/* CENTER LOGO */
.sushi-logo img {
  height: 60px;
}

/* RIGHT BUTTON */
.order-btn {
  background: #d38c0d; /* ?????-?????? ?? ? ???????? */
  color: white;
  padding: 10px 25px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 14px;
  transition: 0.2s;
}

.order-btn:hover {
  background: #b3780c;
}