@import url('https://fonts.googleapis.com/css2?family=Hanken+Grotesk:ital,wght@0,100..900;1,100..900&display=swap');

:root {
  --primary-green: #ffffff5c;
  --dark-green: #173D3B;
  --card-bg: rgba(2, 44, 25, 0.4);
  --pill-bg: #ffffff;
  --text-white: #ffffff;
  --text-dark: #000000;
  --header-pill-bg: #173D3B;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  padding: 0;
  background-color: #173D3B;
  background-image: url('../svg/noise.svg'), linear-gradient(135deg, rgba(189, 189, 189, 0.58) 44%, #60b22f 100%);
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-size: cover;
  min-height: 100vh;
  font-family: 'Hanken Grotesk', sans-serif;
  color: var(--text-white);
}

.site-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  margin: 0 auto;
  max-width: 1400px;
}

.logo {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.logo-svg {
  height: 70px;
  width: auto;
}

.logo-subtitle {
  font-weight: 700;
  font-size: 1.2rem;
  letter-spacing: 1px;
}

.header-actions {
  display: flex;
  align-items: stretch;
  gap: 10px;
}

.site-link,
.lang-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: transparent;
  border: 1px solid var(--text-white);
  border-radius: 5px;
  color: var(--text-white);
  font-family: inherit;
  font-size: 14px;
  line-height: 1.2;
  padding: 6px 12px;
  white-space: nowrap;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.18s ease, color 0.18s ease;
}

.site-link svg {
  width: 14px;
  height: 14px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.site-link:hover,
.lang-btn:hover {
  background: var(--text-white);
  color: var(--dark-green);
}

@media (max-width: 600px) {
  .site-header {
    flex-wrap: wrap;
    gap: 12px;
    padding: 16px 12px;
  }

  .header-actions {
    gap: 8px;
  }

  .lang-btn .lang-label {
    display: none;
  }
}

@media (max-width: 480px) {
  .logo-svg {
    height: 52px;
  }

  .logo-subtitle {
    font-size: 0.95rem;
  }

  .header-actions {
    gap: 6px;
  }

  .site-link,
  .lang-btn {
    padding: 5px 9px;
    font-size: 13px;
  }
}

.menu-app {
  max-width: 1400px;
  margin: 0 auto;
  padding: 20px;
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 35px;
  margin-bottom: 40px;
  padding-top: 30px;
  align-items: start;
}

.menu-columns-container {
  display: flex;
  gap: 30px;
  padding-top: 30px;
  align-items: flex-start;
}

.menu-column {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 45px;
}

@media (max-width: 1100px) {
  .menu-columns-container {
    flex-wrap: wrap;
  }

  .menu-column {
    flex: 1 1 45%;
    min-width: 300px;
  }
}

@media (max-width: 768px) {
  .menu-column {
    flex: 1 1 100%;
  }
}

.menu-list-container {
  display: flex;
  flex-direction: column;
  gap: 45px;
  padding-top: 30px;
  max-width: 1000px;
  margin: 0 auto 40px auto;
}

@media (max-width: 768px) {
  .menu-list-container {
    width: 100%;
  }
}

.category-card {
  break-inside: avoid;
  page-break-inside: avoid;
  display: inline-block;
  width: 100%;
  background: var(--card-bg);
  border: 2px solid var(--primary-green);
  border-radius: 20px;
  padding: 45px 15px 15px 15px;
  margin-bottom: 45px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
  position: relative;
  overflow: visible;
}

.category-header {
  position: absolute;
  top: -25px;
  left: 30px;
  background: var(--header-pill-bg);
  border: 1px solid var(--primary-green);
  border-radius: 10px;
  padding: 10px 30px;
  text-align: left;
  width: auto;
  margin: 0;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
  z-index: 10;
}

.category-header span {
  display: block;
  font-family: 'Hanken Grotesk', sans-serif;
  font-weight: 900;
  font-size: 1.5rem;
  text-transform: uppercase;
  color: var(--text-white);
  letter-spacing: 1px;
  text-shadow: none;
}

.category-subtitle {
  font-size: 0.7rem !important;
  font-weight: 400 !important;
  display: block;
  margin-top: 2px;
}

.category-items {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.menu-item-pill {
  display: flex;
  background: var(--pill-bg);
  border-radius: 12px;
  overflow: hidden;
  min-height: 44px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
  transition: transform 0.2s;
  border: none;
}

.menu-item-pill:active {
  transform: scale(0.98);
}

.menu-item-name {
  background: var(--pill-bg);
  color: var(--text-dark);
  flex: 1;
  display: flex;
  align-items: center;
  padding: 8px 20px;
  font-weight: 800;
  font-size: 1.1rem;
  line-height: 1.2;
}

.menu-item-price {
  background: #173D3B;
  color: var(--text-white);
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.2rem;
  min-width: 90px;
  position: relative;
  border-radius: 12px;
}

.menu-item-price::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 1px;
  background: rgba(0, 0, 0, 0.1);
}

.poke-section {
  background: var(--card-bg);
  border: 2px solid var(--primary-green);
  border-radius: 20px;
  padding: 30px;
  margin-top: 40px;
  position: relative;
}

.poke-header-title {
  position: absolute;
  top: -25px;
  left: 30px;
  background: var(--header-pill-bg);
  color: var(--text-white);
  padding: 10px 30px;
  border-radius: 10px;
  font-weight: 900;
  font-size: 1.5rem;
  text-transform: uppercase;
  border: 1px solid var(--primary-green);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
}

.poke-sizes {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-top: 40px;
  margin-bottom: 50px;
  flex-wrap: wrap;
}

.poke-size-card {
  background: rgba(2, 44, 25, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 15px;
  padding: 30px 20px 20px 20px;
  text-align: center;
  width: 260px;
  position: relative;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.poke-size-header {
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
  background: var(--header-pill-bg);
  border: 1px solid var(--primary-green);
  border-radius: 10px;
  padding: 8px 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.4);
}

.poke-size-label {
  font-weight: 800;
  text-transform: uppercase;
  font-size: 1.1rem;
  color: var(--text-white);
}

.poke-size-price {
  font-weight: 900;
  font-size: 1.2rem;
  color: var(--text-white);
}

.poke-size-detail {
  margin-top: 10px;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.detail-row {
  display: flex;
  justify-content: space-between;
  color: var(--text-white);
  font-weight: 700;
  font-size: 1rem;
  text-transform: uppercase;
  padding-bottom: 2px;
}

.poke-ingredients-container {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.poke-ingredient-group {
  background: var(--pill-bg);
  border-radius: 15px;
  padding: 35px 20px 20px 20px;
  position: relative;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.poke-group-title {
  background: var(--header-pill-bg);
  color: var(--text-white);
  position: absolute;
  top: -15px;
  left: 20px;
  padding: 8px 30px;
  border-radius: 10px;
  font-weight: 900;
  text-transform: uppercase;
  font-size: 1.1rem;
  border: 1px solid var(--primary-green);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.poke-items-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 15px 40px;
}

.poke-item-checkbox {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  width: 100%;
  padding-bottom: 2px;
  border-bottom: 3px solid #062F1A;
}

.checkbox-label {
  font-weight: 800;
  font-size: 1.1rem;
  color: #062F1A;
  flex: 1;
  margin-right: 15px;
  padding-bottom: 5px;
  line-height: 1;
  margin-bottom: 0;
}

.poke-item-checkbox.no-checkbox .checkbox-label {
  padding: 10px 0px;
}

.checkbox-box {
  width: 30px;
  height: 26px;
  border: 3px solid #062F1A;
  border-radius: 8px;
  background: #fff;
  flex-shrink: 0;
  min-width: 26px;
  position: relative;
  bottom: -5px;
  left: 6px;
}

@media (max-width: 768px) {

  .category-header,
  .poke-header-title {
    left: 50%;
    transform: translateX(-50%);
    width: max-content;
    text-align: center;
  }

  .poke-sizes {
    flex-direction: column;
    align-items: center;
  }

  .poke-size-card {
    width: 100%;
    max-width: 400px;
  }
}

.overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.8);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 999;
}

.overlay.hidden {
  display: none;
}

.overlay-card {
  background: var(--dark-green);
  padding: 30px;
  border-radius: 20px;
  border: 2px solid var(--primary-green);
  text-align: center;
}

.lang-options button {
  display: block;
  width: 100%;
  margin: 10px 0;
  padding: 10px;
  font-weight: bold;
  cursor: pointer;
  border-radius: 100px;
}

.site-footer {
  text-align: center;
  padding: 40px 20px;
  opacity: 0.8;
  font-size: 0.8rem;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #173d3b;
  color: var(--white);
  padding: 20px;
  box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.3);
  z-index: 10000;
  transition: transform 0.3s ease;
}

.cookie-banner.hidden {
  transform: translateY(100%);
}

.cookie-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.cookie-content p {
  margin: 0;
  flex: 1;
  font-size: 14px;
  line-height: 1.5;
}

.cookie-buttons {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}

.cookie-btn {
  padding: 10px 20px;
  border: none;
  border-radius: 8px;
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: all 0.2s;
  font-family: 'Hanken Grotesk', sans-serif;
}

.cookie-accept {
  background: #00f500;
  color: #173d3b;
}

.cookie-accept:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(2, 245, 3, 0.3);
}

.cookie-info {
  background: transparent;
  color: #fff;
  border: 2px solid #fff;
}

.cookie-info:hover {
  background: rgba(255, 255, 255, 0.1);
}

@media (max-width: 720px) {
  .cookie-content {
    flex-direction: column;
    text-align: center;
  }

  .cookie-buttons {
    width: 100%;
    flex-direction: column;
  }

  .cookie-btn {
    width: 100%;
  }
}