:root {
  --green: #0a8c3a;
  --green-dark: #066028;
  --red: #d53a2f;
  --bg-light: #fafafa;
  --bg-section: #ffffff;
  --text-dark: #222;
  --text-dim: #666;
  --border-color: #ddd;
  --card-bg: #fff;
  --shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
  --radius-lg: 12px;
  --radius-xl: 20px;
}

* {
  box-sizing: border-box;
  margin: 0;
}

.zeyada-regular {
  font-family: 'Zeyada', cursive;
  font-weight: 400;
  font-style: normal;
}

body {
  font-family: 'Montserrat', sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  color: var(--text-dark);
  background-color: var(--bg-light);
  line-height: 1.4;
}

/* HEADER TOP BAR */
header {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.07);
  position: relative;
  z-index: 10;
}

.header-top {
  background-color: var(--green);
  color: #fff;
  font-size: 13px;
  padding: 6px 16px;
  display: flex;
  justify-content: center;
}

.header-top .address {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #fff;
  margin-left: 190px;
}

.header-top .edit-address {
  font-size: 12px;
  border: 1px solid rgba(255, 255, 255, 0.6);
  background: transparent;
  color: #fff;
  border-radius: 4px;
  padding: 2px 6px;
  line-height: 1.2;
  cursor: pointer;
}

/* NAV BAR */
.nav-row {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  padding: 12px 16px 16px;
  gap: 16px;
}

.brand-area {
  display: flex;
  align-items: flex-start;
  position: absolute;
  left: 50px;
  top: 0;
  background-color: #fff;
  padding: 10px;
  border-bottom-right-radius: 10px;
  border-bottom-left-radius: 10px;
  border: 4px solid var(--green);
  border-top: none;
}
.logo {
  width: 140px;
}

.sec-logo {
  display: none;
}

#navigation {
  transition: all 0.3s ease-in-out;

  .references {
    margin-left: 190px;
    opacity: 0;
    max-width: 100%;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    padding: 5px 0;
  }

  .references a {
    color: #000;
    font-weight: 500;
    text-decoration: none;
  }
}

#navigation .hamburger-container {
  display: none;
}

.header-actions {
  display: flex;
  gap: 8px;
}

.header-actions button {
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  border-radius: 4px;
  border: 1px solid var(--border-color);
  background-color: #fff;
  padding: 8px 10px;
  cursor: pointer;
  line-height: 1.2;
}

.header-actions button.accent {
  background-color: #fff;
  border-color: var(--green);
  color: var(--green-dark);
  font-weight: 600;
}

.hero {
  background-image: linear-gradient(
      to bottom,
      rgba(255, 255, 255, 0) 70%,
      rgba(255, 255, 255, 0.8) 85%,
      rgba(255, 255, 255, 1) 100%
    ),
    url('../images/bg-second.png');
  background-size: cover;
  min-height: 50vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-end;
  padding-right: 50px;
}

.hero-inner {
  max-width: 100%;
}

.hero-headline {
  font-size: clamp(32px, 2vw + 24px, 46px);
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.description {
  background-color: #fff;
  display: flex;
  justify-content: flex-end;
  padding-right: 50px;
}

.description-subline {
  font-size: 14px;
  line-height: 1.5;
  max-width: 80%;
  color: var(--text-dim);
}

/* MENU SECTION */
.menu-section {
  background-color: var(--bg-section);
  max-width: 1200px;
  margin: 0 auto;
  padding: 48px 16px 80px;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(320px, 100%), 1fr));
  gap: 40px 24px;
}

.product-card {
  background-color: var(--card-bg);
  box-shadow: var(--shadow);
  border-radius: var(--radius-xl);
  padding: 24px 24px 16px;
  display: flex;
  flex-direction: column;
}

.product-toprow {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 16px;
}

.product-image-placeholder {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: repeating-conic-gradient(
    from 0deg,
    rgba(213, 58, 47, 0.08) 0deg 20deg,
    rgba(10, 140, 58, 0.08) 20deg 40deg
  );
  border: 4px solid #fff;
  box-shadow: 0 18px 30px rgba(0, 0, 0, 0.15);
  margin-bottom: 16px;
}

.product-titleblock {
  text-align: center;
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 0.08em;
  color: var(--text-dark);
}

.product-title {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--text-dark);
}

.product-desc {
  margin-top: 12px;
  font-size: 13px;
  line-height: 1.5;
  color: var(--text-dim);
  text-align: center;
}

.product-desc span {
  color: var(--text-dark);
}

.product-options {
  margin-top: 16px;
  background-color: #f8f8f8;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 12px 16px;
  font-size: 12px;
  line-height: 1.4;
  color: var(--text-dark);
  display: flex;
  gap: 8px;
  align-items: flex-start;
}

.checkbox-fake {
  width: 14px;
  height: 14px;
  border-radius: 3px;
  border: 1px solid var(--border-color);
  flex-shrink: 0;
  background-color: #fff;
  box-shadow: inset 0 0 0 2px #fff;
}

/* PRICES ROW */
.price-row {
  margin-top: 20px;
  border-top: 1px solid var(--border-color);
  display: flex;
  justify-content: space-evenly;
  text-align: center;
}

.row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  /* justify-content: space-between */
}

.price-col {
  padding: 16px 8px;
}
.price-col:last-child {
  border-right: 0;
}

.price-value {
  background-color: var(--red);
  color: #fff;
  font-weight: 600;
  border-radius: 4px;
  font-size: 14px;
  padding: 6px 8px;
  line-height: 1.2;
  display: inline-block;
  min-width: 60px;
}

.price-size {
  margin-top: 8px;
  font-size: 11px;
  color: var(--text-dim);
  line-height: 1.4;
}

/* FOOTER */
footer {
  background-color: #111;
  color: #eee;
  padding: 40px 16px;
  font-size: 13px;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(220px, 100%), 1fr));
  gap: 24px;
}

.footer-col-title {
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: #fff;
  margin-bottom: 12px;
}

.footer-link {
  color: #ccc;
  text-decoration: none;
  display: block;
  line-height: 1.6;
}

.footer-bottom {
  max-width: 1200px;
  margin: 24px auto 0;
  padding-top: 24px;
  border-top: 1px solid #333;
  text-align: center;
  color: #777;
  font-size: 12px;
}

.opacity--1 {
  opacity: 1 !important;
}

.more-card {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  background: var(--bg-section);
  border: 2px dashed var(--border-color);
  transition: all 0.2s ease-in-out;
}

.more-card:hover {
  border-color: var(--green);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  transform: translateY(-3px);
}

.more-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.width--340px {
  width: 340px !important;
}

.more-text {
  font-weight: 600;
  font-size: 16px;
  color: var(--text-dark);
}

.more-link {
  display: inline-block;
  padding: 8px 14px;
  background-color: var(--green);
  color: #fff;
  text-decoration: none;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 500;
  transition: background-color 0.2s ease-in-out;
}

.more-link:hover {
  background-color: var(--green-dark);
}

.menu-list {
  max-width: 900px;
  margin: 0 auto;
  padding: 40px 20px 80px;
  background-color: var(--bg-section);
}

.menu-section-title {
  font-size: 22px;
  color: var(--green-dark);
  text-transform: uppercase;
  margin-top: 60px;
  margin-bottom: 8px;
  letter-spacing: 0.05em;
  border-bottom: 2px solid var(--green);
  display: inline-block;
  padding-bottom: 4px;
}

.menu-section-subtitle {
  font-size: 13px;
  color: var(--text-dim);
  margin-bottom: 20px;
}

.menu-items,
.menu-items--foccacia,
.menu-items--calzone,
.menu-items--salads,
.menu-items--kids {
  list-style: none;
  padding: 0;
  margin: 0;
}

.menu-items li,
.menu-items--foccacia li,
.menu-items--calzone li,
.menu-items--salads li,
.menu-items--kids li {
  border-bottom: 1px solid var(--border-color);
  padding: 16px 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.menu-number {
  display: inline-block;
  width: 1.5em;
  font-weight: bold;
  color: #b22222;
}

.menu-item-desc {
  font-size: 13px;
  color: var(--text-dim);
}

.menu-item-desc span {
  color: var(--text-dark);
  font-weight: 500;
}

.menu-item-price {
  font-weight: 600;
  font-size: 14px;
  color: var(--red);
  align-self: flex-end;
}

.footer-col iframe {
  max-width: 100%;
}

.menu-item-name {
  font-family: 'Jua', system-ui, sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  margin: 0 20px 4px 0;
  letter-spacing: 0.03em;
  color: #e95d00ff;
}

.fb-widget-container {
  width: 0%;
  position: fixed;
  right: 0;
  top: 25%;
  z-index: 2;
  transition: width 0.3s ease-in;
}

.fb-widget-container .facebook-button {
  position: absolute;
  top: 0;
  right: 100%;
  z-index: 3;
  cursor: pointer;
  padding: 0;
  outline: none;
  border: none;
  background: none;
}

@media (max-width: 600px) {
  .menu-item-price {
    align-self: flex-start;
  }
}
