::-webkit-scrollbar {
  width: 12px;
}

::-webkit-scrollbar-track {
  background: #050f01;
}

::-webkit-scrollbar-thumb {
  background-color: #fffa9c;
  border-radius: 6px;
  border: 2px solid #050f01;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scrollbar-width: thin;
  scrollbar-color: #fffa9c #050f01;
}
ul,
li {
  margin: 0;
  padding: 0;
  list-style: none;
}

/* ==== Fundal full-width, fix ==== */
body {
  background-color: #333;
  font-family: "Rubik", sans-serif;
  color: #333;
}

body.has-background {
  background-image: url("/smart/files/img/background_image.webp");
  background-repeat: no-repeat;
  background-position: center center;
  background-attachment: fixed;
  background-size: cover;
}

.pattern_background {
  background-image: url(/smart/files/img/bg-pattern.png);
  background-size: inherit;
  background-repeat: repeat;
}

/* Cooookie */
.cookie-circle {
  width: 50px;
  height: 50px;
  position: fixed;
  bottom: 20px;
  right: 20px;
  padding: 5px;
  background-color: #fffa9c;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
  cursor: pointer;
  z-index: 10;
  transition: width 0.3s ease, border-radius 0.3s ease, padding 0.3s ease;
  overflow: hidden;
}
.cookie-circle .cookie-icon {
  width: 40px;
  height: 40px;
  object-fit: contain;
  flex-shrink: 0;
  transition: opacity 0.2s ease;
}
.cookie-text,
.accept-btn-cookie {
  display: none;
  opacity: 0;
  transition: opacity 0.3s ease 0.2s;
}
.cookie-text {
  margin-bottom: 10px;
  font-size: 14px;
  line-height: 1.3;
  color: #333;
  text-align: left;
  font-family: monospace;
}
.accept-btn-cookie {
  background: #df9912;
  border: none;
  color: #fff;
  padding: 6px 12px;
  border-radius: 3px;
  font-size: 13px;
  cursor: pointer;
  place-self: center;
}

.accept-btn-cookie:hover {
  background: #916105;
}

.cookie-circle.open {
  width: 330px;
  height: auto;
  border-radius: 10px;
  padding: 15px;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
}
.cookie-circle.open .cookie-icon {
  display: none;
}
.cookie-circle.open .cookie-text,
.cookie-circle.open .accept-btn-cookie {
  display: block;
  opacity: 1;
}

@keyframes cookie-bounce {
  0% {
    transform: translateY(0);
  }
  15% {
    transform: translateY(-15px);
  }
  30% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-7.5px);
  }
  65% {
    transform: translateY(0);
  }
  80% {
    transform: translateY(-3px);
  }
  100% {
    transform: translateY(0);
  }
}

.cookie-circle:not(.open) {
  animation: cookie-bounce 2s ease-in-out infinite;
}

.cookie-circle.open {
  animation: none;
}

.center {
  justify-self: center;
}

.wrapper {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}

.lang-switcher {
  position: absolute;
  right: 50px;
  top: 23px;
}

.lang-switcher img {
  width: 30px;
}

.top-nav {
  position: relative;
  width: 100%;
  background: #081609e3;
  margin-top: 20px;
  z-index: 2;
  box-shadow: 0 6px 6px rgba(0, 0, 0, 0.5);
  min-height: 50px;
}

.top-nav .wrapper {
  display: flex;
  justify-content: space-around;
  align-items: center;
  padding: 20px 0;
  text-transform: uppercase;
  font-family: system-ui;
}

.top-nav .wrapper i {
  padding-right: 5px;
}

.top-nav ul {
  display: flex;
}
.top-nav li {
  margin: 0 45px;
}
.top-nav a {
  color: #fffa9c;
  text-decoration: none;
  font-family: "Amatic SC", cursive;
  font-size: 1.3rem;
  font-weight: 600;
}

.top-nav .active a {
  color: #ffe622;
  position: relative;
}

.top-nav .active a::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 10%;
  width: 80%;
  height: 2px;
  background-color: #ffe622;
  transform: rotate(-2deg);
  transform-origin: left center;
}

.top-nav ul li a {
  position: relative;
}

.top-nav ul li a::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 50%;
  width: 80%;
  height: 2px;
  background-color: #fffa9c;
  transform-origin: center;
  transform: translateX(-50%) rotate(-2deg) scaleX(0);
  transition: transform 0.3s ease;
}

.top-nav ul li:not(.active) a:hover::after {
  transform: translateX(-50%) rotate(-2deg) scaleX(1);
}

.top-logo {
  position: absolute;
  top: -28px;
  left: 50%;
  transform: translateX(-50%);
  height: 180px;
  z-index: 1;
}

.category-nav {
  background: #fffa9c;
  display: flex;
  justify-content: center;
  padding: 10px 0;
  margin-top: 120px;
  box-shadow: 0 6px 6px rgba(0, 0, 0, 0.5);
}
.category-nav.wrapper {
  padding: 0 15px;
  border-radius: 12px;
}
.category-nav li {
  margin: 20px 15px;
}
.category-nav a {
  display: inline-flex;
  align-items: center;
  color: #df9912;
  text-decoration: none;
  font-family: "Lobster", cursive;
  letter-spacing: 0.05rem;
  font-size: 1.2rem;
}
.category-nav a:hover {
  color: #916105;
}
.category-nav i {
  font-size: 1.4em;
  margin-right: 5px;
}

.hero {
  margin: 140px 0;
  text-align: center;
  color: #fff;
  min-height: 100px;
}
.hero h1 {
  font-size: 5rem;
  font-weight: bold;
  text-shadow: 5px 5px 6px rgba(0, 0, 0, 0.6);
}
.hero p {
  margin-top: 8px;
  font-size: 1.4rem;
  font-weight: bold;
  text-shadow: 5px 5px 6px rgba(0, 0, 0, 0.6);
}

.sf-hero {
  position: relative;
  text-align: center;
  color: #fff;
  padding: 100px 20px;
  margin: 0;
  min-height: 95vh;
  align-content: center;
  top: 1px;
}
.sf-hero::before {
  content: "";
  position: absolute;
  inset: 0;
}

.sf-hero__wrapper {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
}

.sf-hero__welcome {
  font-family: "Herr Von Muellerhoff", cursive;
  font-display: swap;
  font-size: 10.5rem;
  font-weight: 500;
  margin: 0px 0 -56px;
  color: #fffa9c;
  line-height: 1;
  position: relative;
  z-index: 2;
}

.sf-hero__title {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 3.5rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.sf-hero__divider-img {
  display: inline-block;
  margin-bottom: 10px;
  max-width: 200px;
  height: auto;
}

.sf-hero__subtitle {
  font-family: "Montserrat", sans-serif;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin: 0 0 30px;
}

.sf-hero__btn {
  display: inline-block;
  padding: 12px 30px;
  font-family: "Montserrat", sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  text-decoration: none;
  background: #fff;
  color: #111;
  border-radius: 4px;
  transition: background 0.3s, color 0.3s;
}
.sf-hero__btn:hover {
  background: #f0f0f0;
  color: #000;
}

.svg-divider {
  display: block;
  margin: -1px 0 0;
  line-height: 0;
}
.svg-divider svg {
  display: block;
  width: 100%;
  transform: translateY(0.5px);
}

.products-section {
  width: 100%;
  background-color: #fff;
  padding: 60px 0;
  background: url(background_menu5.png) no-repeat center center;
  background-size: cover;
}

.products-section .wrapper {
  max-width: 1200px;
  margin: 0 auto;
}

.products-title {
  font-size: 1.5em;
  color: #333;
  margin-bottom: 16px;
  display: inline-block;
  border-bottom: 2px solid #df9912;
  width: 5%;
}

.products-container {
  display: flex;
  gap: 30px;
}

.categories-list {
  flex: 0 0 25%;
  background: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  padding: 20px;
  height: fit-content;
}
.categories-list ul {
  list-style: none;
  max-height: 500px;
  overflow-y: auto;
}
.categories-list li + li {
  margin-top: 12px;
}
.categories-list a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-decoration: none;
  color: #333;
  font-weight: bold;
  padding: 6px 8px;
  border-radius: 4px;
  transition: background-color 0.2s, color 0.2s;
}
.categories-list .cat-name {
  position: relative;
}
.categories-list .cat-name::before {
  content: "-";
  margin-right: 8px;
  color: #ccc;
}
.categories-list .cat-count {
  background: #eee;
  color: #666;
  font-size: 0.85em;
  padding: 2px 8px;
  border-radius: 12px;
  min-width: 24px;
  text-align: center;
}
.categories-list li.active a {
  color: #df9912;
}
.categories-list li.active .cat-name::before {
  color: #ccc;
}
.categories-list li.active .cat-count {
  background: #df9912;
  color: #fff;
}
.categories-list a:hover {
  background: #f5f5f5;
  color: #d73030;
}
.categories-list a:hover .cat-name::before {
  color: #d73030;
}
.categories-list a:hover .cat-count {
  background: #d73030;
  color: #fff;
}

.products-grid {
  flex: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.product-card {
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}
.image-container {
  position: relative;
}
.image-container img {
  width: 100%;
  display: block;
  object-fit: cover;
}
.price-tag {
  position: absolute;
  top: 10px;
  left: 10px;
  background: rgba(0, 0, 0, 0.7);
  color: #fff;
  padding: 6px 10px;
  border-radius: 4px;
  font-weight: bold;
  font-size: 0.9em;
}
.product-title {
  margin: 12px 10px 4px;
  font-size: 1.1em;
  font-weight: bold;
  color: #333;
}
.product-weight {
  margin: 0 10px 12px;
  font-size: 0.95em;
  color: #666;
}

.site-footer ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

/* ==== Container general footer ==== */
.site-footer {
  background: #f5f7e9;
  padding: 60px 0 0;
  font-family: sans-serif;
  color: #444;
}

.footer-divider {
  border: none;
  border-top: 1px solid #e0e0e0;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  height: 1px;
  background-color: transparent;
  background-image: linear-gradient(
    90deg,
    rgba(206, 211, 246, 0) 0,
    #bbb 38%,
    #bbb 64%,
    rgba(206, 211, 246, 0) 99%
  );
  opacity: 0.4;
  border: none;
}

.footer-divider-top {
  margin-bottom: 40px;
}

.footer-top {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto 40px;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 40px;
}
.footer-logo img {
  max-width: 180px;
  height: auto;
}
.footer-menu {
  display: flex;
  flex: 1;
  flex-wrap: wrap;
  gap: 40px;
}

.footer-column > ul:not(.social-list):not(.contact-list) li + li {
  margin-top: 8px;
}

.footer-column h3 {
  font-size: 1em;
  margin-bottom: 12px;
  color: #222;
}
.footer-column a {
  color: #666;
  text-decoration: none;
  font-size: 0.95em;
  transition: color 0.2s;
}
.footer-column a:hover {
  color: #000;
}

.contact-list li + li {
  margin-top: 0;
}
.social-list {
  display: flex;
}
.social-list li + li {
  margin-top: 0;
}
.social-list a + a {
  margin-left: 12px;
}
.social-list a {
  color: #666;
  font-size: 1.2em;
  transition: color 0.2s;
}
.social-list a:hover {
  color: #000;
}

.footer-divider-bottom {
  margin: 40px auto;
}

.footer-bottom {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 30px;
  font-size: 0.85em;
  color: #888;
}
.footer-credit .heart {
  color: #d73030;
  margin: 0 4px;
}

.back-to-top {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 44px;
  height: 44px;
  background: #6c1f7f;
  color: #fff;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.1em;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
  transition: background 0.2s;
}
.back-to-top:hover {
  background: #4d135f;
}

.site-footer ul {
  list-style: none;
  padding: 0;
  margin-top: 8px;
}

.site-footer {
  background: #f6f8e9;
  padding: 60px 0 0;
  font-family: sans-serif;
  color: #444;
}

.footer-divider {
  border: none;
  border-top: 1px solid #5e665e;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  background-image: linear-gradient(
    90deg,
    rgba(206, 211, 246, 0) 0,
    #bbb 38%,
    #bbb 64%,
    rgba(206, 211, 246, 0) 99%
  );
  opacity: 0.4;
  border: none;
}

.footer-divider-top {
  margin-bottom: 40px;
}
.footer-divider-bottom {
  margin: 40px auto;
}

.footer-middle {
  display: flex;
  align-items: flex-start;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto 40px;
}
.footer-logo {
  flex: 2;
}
.footer-logo img {
  height: auto;
}

.footer-spacer {
  flex: 1;
}

.footer-links {
  flex: 1;
}
.footer-links h3 {
  font-size: 1.2em;
  margin-bottom: 12px;
  color: #df9912;
  border-bottom: 2px solid #df9912;
  width: 20%;
}
.footer-links ul li + li {
  margin-top: 8px;
}
.footer-links a {
  color: #df9912;
  text-decoration: none;
  font-size: 0.95em;
  transition: color 0.2s;
  font-weight: bold;
}
.footer-links a:hover {
  color: #000;
}

.footer-contact {
  flex: 1;
}
.footer-contact h3 {
  font-size: 1.2em;
  margin-bottom: 12px;
  color: #df9912;
  border-bottom: 2px solid #df9912;
  width: 20%;
}
.contact-info li {
  display: flex;
  font-size: 14px;
  margin-bottom: 4px;
  color: #fffa9c;
}
.contact-info li i {
  margin-right: 8px;
  color: #fffa9c;
  margin-top: 4px;
}
.contact-info a {
  color: #df9912;
  text-decoration: none;
  transition: color 0.2s;
}
.contact-info a:hover {
  color: #df9912;
}
.social-list {
  display: flex;
  margin-top: 16px;
}
.social-list li + li {
  margin-left: 12px;
}
.social-list a {
  color: #df9912;
  font-size: 1.2em;
  transition: color 0.2s;
}
.social-list a:hover {
  color: #000;
}

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding-bottom: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85em;
  color: #888;
}
.footer-credit .heart {
  color: #d73030;
  margin: 0 4px;
}

.menu-section {
  max-width: 1200px;
  margin: 60px auto;
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 40px;
  padding: 0 20px;
  min-height: 1000px;
}

.menu-categories {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.menu-categories button {
  background: rgba(255, 215, 0, 0.1);
  border: 1px solid #fffa9c;
  color: #fffa9c;
  padding: 8px 20px;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: "Amatic SC", cursive;
  font-size: 27px;
  font-weight: 700;
}

.menu-categories button a {
  text-decoration: none;
  color: #fffa9c;
  font-size: 27px;
}

.menu-categories button:hover a {
  color: #1f1c2c;
}

.menu-categories button.active a {
  text-decoration: none;
  color: #1f1c2c;
  font-size: 27px;
}

.menu-categories button.active,
.menu-categories button:hover {
  background: #fffa9c;
  color: #1f1c2c;
  font-weight: bold;
}

.menu-items {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.menu-card {
  display: flex;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  overflow: hidden;
  backdrop-filter: blur(10px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
}

.menu-card:hover {
  transform: scale(1.01);
}

.menu-card img {
  width: 270px;
  height: 170px;
  object-fit: cover;
}

.menu-card-content {
  padding: 20px;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  max-height: 280px;
  font-family: "Montserrat", sans-serif;
}

.menu-card-content .menu-card-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 6px;
}
.menu-card-content .menu-card-header h2 {
  font-size: 32px;
  margin: 0;
  color: #fffa9c;
  text-transform: uppercase;
  font-family: "Amatic SC", cursive;
  text-shadow: 3px 3px 4px rgba(0, 0, 0, 0.7);
}
.menu-card-content .menu-card-header .details {
  font-size: 14px;
  color: #eee;
  margin: 0;
  text-shadow: 3px 3px 4px rgba(0, 0, 0, 0.5);
  align-self: center;
}

.menu-card-content .description {
  font-size: 15px;
  color: #eee;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: 8px;
}

.menu-card-content .calo {
  font-size: 12px;
  color: #bbb;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  transition: -webkit-line-clamp 0.3s;
  margin-bottom: 10px;
}
.menu-card-content:hover .calo {
  -webkit-line-clamp: unset;
}

.menu-card-content .price {
  text-align: right;
  font-size: 20px;
  color: #fffa9c;
  font-weight: bold;
}

.menu-card-content .footer-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-top: 10px;
}

.menu-card-content .footer-row .calo {
  flex: 0 0 70%;
  font-size: 12px;
  color: #ddd;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  transition: -webkit-line-clamp 0.3s;
}

.menu-card-content:hover .footer-row .calo {
  -webkit-line-clamp: unset;
}

.menu-card-content .footer-row .price {
  font-size: 20px;
  color: #fffa9c;
  font-weight: bold;
  text-align: right;
  margin: 0;
  text-shadow: 3px 3px 4px rgba(0, 0, 0, 0.5);
}

.astelios-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 10px 20px;
}

.astelios-footer {
  background-image: linear-gradient(to bottom, #081609 0%, #0e0e0e 100%);
  font-family: "Segoe UI", sans-serif;
  color: #3a3a3a;
}

.astelios-subscribe {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
  margin-bottom: 50px;
}

.astelios-subscribe-text h2 {
  font-size: 26px;
  font-weight: 600;
  color: #2b2b3a;
  max-width: 600px;
  font-weight: 700;
  font-size: 2.125rem;
  line-height: 1.35em;
}

.astelios-subscribe-form {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.astelios-subscribe-form input {
  padding: 10px 15px;
  border: 1px solid #ccc;
  border-radius: 4px;
  width: 240px;
  font-size: larger;
  font-weight: 600;
}

.astelios-subscribe-form button {
  background-color: #733d9d;
  color: white;
  font-weight: bold;
  border: none;
  padding: 14px 20px;
  border-radius: 4px;
  cursor: pointer;
  height: 54px;
  font-size: 0.925rem;
  padding: 0.7rem 1.3rem;
}

.astelios-divider {
  height: 1px;
  background: rgba(0, 0, 0, 0.08);
  margin: 40px auto;
  width: 100%;
  background-color: transparent;
  background-image: linear-gradient(
    90deg,
    rgba(206, 211, 246, 0) 0,
    #fffa9c 38%,
    #fffa9c 64%,
    rgba(206, 211, 246, 0) 99%
  );
  opacity: 0.4;
}

.astelios-footer-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px;
}

.astelios-footer-logo {
  text-align: center;
  flex: 1 1 140px;
}

.astelios-footer-logo .logo {
  width: 140px;
}

.astelios-footer-columns {
  display: flex;
  flex: 3 1 700px;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 40px;
}

.column h3 {
  font-size: 16px;
  margin-bottom: 10px;
  font-weight: bold;
  color: #fffa9c;
  font-family: "Amatic SC", cursive;
  font-size: 1.7rem;
  font-weight: bold;
}

.column a {
  display: block;
  margin-bottom: 6px;
  color: #fffa9c;
  text-decoration: none;
  font-size: 14px;
  font-family: "Amatic SC", cursive;
  font-size: 1.1rem;
  font-weight: bold;
}

.column a i {
  margin-right: 8px;
  color: #fffa9c;
  margin-top: 4px;
}

.column a:hover {
  color: #efe630;
}

.email {
  font-size: 14px;
  margin-bottom: 10px;
  color: #fffa9c;
}

.socials a {
  display: inline;
}

.socials i {
  font-size: 18px;
  margin-right: 10px;
  color: #fffa9c;
  cursor: pointer;
}

.socials i:hover {
  color: #efe630;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.astelios-footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  font-size: 13px;
  color: #fffa9c;
  margin-top: 40px;
}

@media (max-width: 768px) {
  .astelios-subscribe {
    flex-direction: column;
    text-align: center;
  }

  .astelios-subscribe-form {
    justify-content: center;
  }

  .astelios-footer-content {
    flex-direction: column;
    align-items: center;
  }

  .astelios-footer-bottom {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }

  .astelios-footer-columns {
    justify-content: center;
  }
}

.socials {
  margin-top: 20px;
}

/* special-dishes.css */
.special-dishes * {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

.special-dishes {
  min-height: 500px;
}

.background-special {
  background: #000000e6;
  background: linear-gradient(to bottom, #081609 0%, #142d18 50%, #081609 100%);
}

.special-dishes__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 0;
}

.special-dishes__header {
  text-align: center;
  max-width: 850px;
  margin: 0 auto 40px;
}
.special-dishes__leaf {
  position: relative;
  z-index: 1;
  width: 65px;
  vertical-align: middle;
  transform: rotate(343deg);
  top: -34px;
  left: 22px;
}
.special-dishes__title {
  position: relative;
  display: inline-block;
  margin-left: 10px;
  font-size: 42px;
  text-transform: uppercase;
  vertical-align: middle;
  right: 20px;
  font-family: "Montserrat";
  color: #fff;
  z-index: 2;
}
.special-dishes__description {
  margin-top: 20px;
  line-height: 1.6;
  color: #b8b8b8;
  font-family: "Montserrat", sans-serif;
}

.special-dishes__carousel {
  --visible: 4;
  position: relative;
  padding-bottom: 60px;
}
.special-dishes__track-container {
  overflow: hidden;
}
.special-dishes__track {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.special-dishes__slide {
  flex: 0 0 calc(100% / var(--visible));
  padding: 0 20px;
  text-align: center;
}
.special-dishes__slide img {
  width: 100%;
  display: block;
  border-radius: 8px;
}
.special-dishes__slide h3 {
  margin: 15px 0 10px;
  font-size: 32px;
  text-transform: uppercase;
  font-family: "Amatic SC", cursive;
  color: #fff;
  font-weight: bold;
}
.special-dishes__slide p {
  font-size: 14px;
  line-height: 1.4;
  color: #ccc;
  margin-bottom: 12px;
  color: #b8b8b8;
  font-family: "Montserrat", sans-serif;
}
.special-dishes__price {
  font-size: 18px;
  font-weight: bold;
  color: #fffa9c;
}

.special-dishes__btn {
  position: absolute;
  top: auto;
  bottom: 0;
  transform: none;
  background: rgba(0, 0, 0, 0.5);
  border: none;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 24px;
  cursor: pointer;
  z-index: 10;
}
.special-dishes__btn--prev {
  left: 45%;
}
.special-dishes__btn--next {
  right: 45%;
}
.special-dishes__btn:focus {
  outline: none;
}

/* about.css */
.about {
  background: #000;
  background-image: url(/smart/files/img/bg-pattern.png);
  background-repeat: repeat;
  color: #fff;
  min-height: 900px;
}
.about__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 0;
}
.about__inner {
  display: flex;
  align-items: flex-start;
  gap: 40px;
}
.about__media {
  flex: 0 0 37%;
}
.about__media img {
  width: 100%;
  display: block;
  border-radius: 8px;
}
/* ABOUT PAGE CSS SEPARAT */
.about2 {
  background: #000;
  background-image: url(/smart/files/img/bg-pattern.png);
  background-repeat: repeat;
  color: #fff;
  padding-top: 150px;
  min-height: 1500px;
}
.about__inner2 {
  display: flex;
  align-items: flex-start;
  gap: 40px;
  justify-content: center;
}
.about__media2 {
  flex: 0 0 25%;
}
.about__media2 img {
  width: 100%;
  display: block;
  border-radius: 8px;
}
.about__features2 {
  display: flex;
  justify-content: space-between;
  list-style: none;
  padding: 0;
  margin: 100px 0;
}
.sf-hero__title2 {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 3.5rem;
  letter-spacing: 0.08em; /* modificat */
  text-transform: uppercase;
  text-align: center;
}

/* EXIT ABOUT */

/* COTNACT PAGE CSS SEPARAT */
.sf-hero__title_contact {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 3.5rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-align: center;
  padding-top: 120px;
  color: #fffa9c;
  position: relative;
  top: 30px;
  left: -120px;
}
/* EXIT COTNACT */
.about__content {
  flex: 0 0 60%;
  align-self: center;
}
.about__header {
  display: flex;
  align-items: center;
}
.about__leaf {
  width: 40px;
  position: relative;
  margin-right: 10px;
  transform: rotate(344deg) scale(2.5);
  top: -25px;
  left: 10px;
}
.about__title {
  font-size: 32px;
  position: relative;
  text-transform: uppercase;
  font-family: "Montserrat", sans-serif;
  z-index: 2;
  left: -20px;
}
.about__description {
  margin-top: 20px;
  line-height: 1.6;
  color: #b8b8b8;
  font-family: "Montserrat", sans-serif;
}
.about__features {
  display: flex;
  justify-content: space-between;
  list-style: none;
  padding: 0;
  margin: 40px 0 0;
}
.about__feature {
  flex: 1;
  text-align: center;
}
.about__feature-icon {
  width: 60px;
  height: auto;
  fill: #fffa9c;
  transform: scale(1.4);
  margin-bottom: 10px;
}
.about__feature-title {
  font-size: 16px;
  text-transform: uppercase;
  font-weight: bold;
  margin-top: 8px;
  font-family: "Montserrat", sans-serif;
}

/* review.css */
.review {
  background: linear-gradient(to bottom, #081609 0%, #142d18 50%, #081609 100%);
  color: #fff;
  min-height: 300px;
}
.review__container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}

.review__header {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.review__star {
  width: 40px;
  position: relative;
  margin-right: 10px;
  transform: scale(2);
  top: -25px;
  left: 240px;
}
.review__title {
  font-size: 32px;
  position: relative;
  text-transform: uppercase;
  font-family: "Montserrat", sans-serif;
  z-index: 2;
  left: -20px;
}

/* Swiper setup */
.review__swiper {
  position: relative;
  overflow: hidden;
}
.swiper-wrapper {
  display: flex;
  align-items: center;
}

/* Card */
.review__card {
  width: 360px;
  padding: 20px;
  background: #111;
  border-radius: 8px;
  text-align: left;
  transition: transform 0.5s ease, opacity 0.5s ease, box-shadow 0.5s ease;
  opacity: 0.5;
  transform: scale(0.8);
}
.review__card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}
.review__avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  margin-right: 12px;
}
.review__avatar--placeholder {
  background: #333;
}
.review__author {
  flex: 1;
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  font-weight: bold;
  color: #fff;
  margin: 0 12px 0 0;
}
.review__rating {
  font-size: 16px;
  color: #fffa9c;
  white-space: nowrap;
  font-weight: bold;
}
.review__text {
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  line-height: 1.4;
  color: #b8b8b8;
  margin: 0;
  margin: 0 10px;
}

.review__star-icon {
  width: 16px;
  height: 16px;
  stroke: #fffa9c;
  fill: none;
  stroke-width: 2;
  vertical-align: middle;
  margin-right: 4px;
  margin-bottom: 4px;
}

/* Highlight centrala */
.review__swiper .swiper-slide-active .review__card {
  opacity: 1;
  transform: scale(1);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.7);
  border: 1px solid #fffa9c6e;
}

/* Navigation buttons */
.review__btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.6);
  border: none;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  color: #fff;
  font-size: 24px;
  cursor: pointer;
  z-index: 10;
}
.review__btn--prev {
  left: 0;
}
.review__btn--next {
  right: 0;
}
.review__btn:focus {
  outline: none;
}

/* ===== backdrop transparent ===== */
.galery {
  background-image: url(/smart/files/img/main_page/gallery/background_gallery.webp);
  background-size: cover;
  background-position: center;
  min-height: 600px;
}
.galery__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 0;
  position: relative;
  overflow: hidden;
}

/* ===== swiper ===== */
.galery__swiper {
  overflow: visible; /* butoane ies în afară */
}
.galery__swiper .swiper-slide {
  width: 200px;
  height: 300px;
}
.swiper-wrapper {
  display: flex;
  align-items: center;
}

/* ===== slide-uri ===== */
.galery__slide {
  width: 240px;
  height: 320px;
  border-radius: 16px;
  overflow: hidden;
  background: transparent;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}
.galery__slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.galery__btn {
  position: absolute;
  bottom: 20px;
  width: 40px;
  height: 40px;
  background: rgba(0, 0, 0, 0.6);
  border: none;
  border-radius: 50%;
  color: #fff;
  font-size: 24px;
  cursor: pointer;
  z-index: 10;
}
.galery__btn--prev {
  left: 50%;
  transform: translateX(-60px);
}
.galery__btn--next {
  left: 50%;
  transform: translateX(20px);
}
.galery__btn:focus {
  outline: none;
}

/* Contact section */
.contact-section {
  background-color: transparent;
  padding-bottom: 100px;
  display: flex;
  justify-content: center;
  min-height: 500px;
}

.contact-container {
  display: flex;
  max-width: 1200px;
  width: 100%;
  gap: 30px;
  background-color: #050f01;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 0 20px rgba(255, 250, 156, 0.1);
}

.contact-form {
  flex: 0 0 65%;
  padding: 40px;
  color: #b8b8b8;
}

.contact-title {
  color: #fffa9c;
  font-size: 32px;
  margin-bottom: 30px;
}

.contact-field {
  margin-bottom: 20px;
}

.contact-field label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
  color: #fffa9c;
}

.contact-field input,
.contact-field textarea {
  width: 100%;
  padding: 12px 15px;
  background-color: #121c10;
  color: #ffffff;
  border: 1px solid #333;
  border-radius: 8px;
  transition: border-color 0.3s ease;
  resize: vertical;
  max-height: 500px;
}

.contact-field input:focus,
.contact-field textarea:focus {
  border-color: #fffa9c;
  outline: none;
}

.contact-button {
  background-color: transparent;
  border: 1px solid #fffa9c;
  color: #fffa9c;
  padding: 12px 24px;
  border-radius: 8px;
  cursor: pointer;
  font-weight: bold;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.contact-button:hover {
  background-color: #fffa9c;
  color: #050f01;
}

.contact-map {
  flex: 0 0 35%;
  min-height: 100%;
}

.custom-shape-divider-top-1747938597 {
  top: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
}

.custom-shape-divider-top-1747938597 svg {
  position: relative;
  display: block;
  width: calc(100% + 1.3px);
  height: 150px;
}

.custom-shape-divider-top-1747938597 .shape-fill {
  fill: #081609;
}

.custom-shape-divider-bottom-1747939017 {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
  transform: rotate(180deg);
}

.custom-shape-divider-bottom-1747939017 svg {
  position: relative;
  display: block;
  width: calc(100% + 1.3px);
  height: 150px;
}

.custom-shape-divider-bottom-1747939017 .shape-fill {
  fill: #081609;
}

.custom-shape-divider-bottom-1747987106 {
  bottom: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
  transform: rotate(180deg);
}

.custom-shape-divider-bottom-1747987106 svg {
  position: relative;
  display: block;
  width: calc(100% + 1.3px);
  height: 150px;
  transform: rotateY(180deg);
}

.custom-shape-divider-bottom-1747987106 .shape-fill {
  fill: #081609;
}

.custom-shape-divider-top-1747986458 {
  top: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
}

.custom-shape-divider-top-1747986458 svg {
  position: relative;
  display: block;
  width: calc(100% + 1.3px);
  height: 150px;
}

.custom-shape-divider-top-1747986458 .shape-fill {
  fill: #081609;
}

.grecaptcha-badge {
  bottom: 124px !important;
}

/* ---------------------------- MOBILE CSS ---------------------------- */

.top-nav-m {
  display: none;
}

@media (max-width: 1150px) {
  .lang-switcher {
    top: 100px;
  }
  .category-nav {
    display: none;
  }
  .sf-hero__title_contact {
    font-size: 2.5rem;
  }
  .about__inner {
    margin: 0px 20px;
  }
  .about__feature-icon {
    width: 40px;
  }
  .about__feature-title {
    font-size: 14px;
  }
}

@media (max-width: 767px) {
  .top-nav {
    display: none;
  }
  .top-nav-m {
    display: block;
    position: relative;
    z-index: 999;
    margin-top: 14px;
    min-height: 40px;
  }

  .mobile-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 10px;
    padding: 12px 16px;
    background-color: #081609e3;
    box-shadow: 0 6px 6px rgba(0, 0, 0, 0.5);
  }

  .mobile-logo {
    height: 100px;
    position: absolute;
    top: -14px;
  }

  .menu-toggle,
  .close-menu {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #fffa9c;
    margin-right: 10px;
  }

  .mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100%;
    background: #081609;
    z-index: 1000;
    padding: 20px;
    transition: right 0.3s ease-in-out;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }

  .mobile-menu.active {
    right: 0;
    background: #081609;
  }

  .mobile-menu-list {
    list-style: none;
    padding: 0;
  }

  .mobile-menu-list li {
    margin: 40px 0;
    font-size: 18px;
    text-align: center;
  }

  .mobile-menu-list li a {
    color: #fffa9c;
    text-decoration: none;
    font-family: "Amatic SC", cursive;
    font-size: 1.8rem;
    font-weight: 600;
  }

  .mobile-menu-list li a i {
    margin-right: 5px;
  }

  .mobile-lang-switcher {
    text-align: center;
    padding-bottom: 20px;
  }

  .mobile-lang-switcher .flag_switch {
    text-decoration: none;
  }

  .mobile-lang-switcher img {
    height: 24px;
    margin: 0 10px;
    cursor: pointer;
  }

  /*Special dishes*/
  .special-dishes__container {
    width: 100%;
    padding: 40px 16px;
  }

  .special-dishes__header {
    margin-bottom: 20px;
    padding: 0 10px;
  }

  .special-dishes__leaf {
    position: static;
  }

  .special-dishes__title {
    font-size: 26px;
    right: 10px;
  }

  .special-dishes__description {
    font-size: 14px;
  }

  .special-dishes__carousel {
    --visible: 1;
    padding-bottom: 40px;
  }

  .special-dishes__slide {
    padding: 0 10px;
  }

  .special-dishes__slide h3 {
    font-size: 24px;
  }

  .special-dishes__slide p {
    font-size: 12px;
  }

  .special-dishes__price {
    font-size: 16px;
  }

  .special-dishes__btn {
    width: 36px;
    height: 36px;
    font-size: 20px;
    bottom: -10px;
  }

  .special-dishes__btn--prev {
    left: 20%;
  }

  .special-dishes__btn--next {
    right: 20%;
  }

  /*About container*/
  .about__container {
    width: 100%;
    padding: 40px 16px;
  }

  .about__inner {
    flex-direction: column;
    gap: 20px;
  }

  .about__media {
    width: 100%;
  }

  .about__media img {
    border-radius: 6px;
  }

  .about__content {
    width: 100%;
  }

  .about__title {
    font-size: 24px;
    text-align: center;
  }

  .about__description {
    font-size: 14px;
    line-height: 1.5;
    margin: 10px 0;
    text-align: justify;
  }

  .about__features {
    flex-direction: column;
    gap: 20px;
    margin: 40px 0 20px;
    padding: 0;
    align-items: center;
  }

  .about__feature {
    display: flex;
    align-items: center;
    gap: 16px;
  }

  .about__feature-icon {
    width: 40px;
    height: auto;
  }

  .about__feature-title {
    font-size: 16px;
  }

  .custom-shape-divider-top-1747938597,
  .custom-shape-divider-bottom-1747987106 {
    svg {
      height: 60px;
    }
  }

  /*Review container*/
  .review__container {
    width: 100%;
    padding: 40px 16px;
  }

  .review__header {
    flex-direction: column;
    align-items: center;
    margin-bottom: 30px;
    text-align: center;
  }

  .review__star {
    width: 30px;
    transform: scale(1.4);
    top: 0;
    left: 0;
    margin: 0 0 10px;
  }

  .review__title {
    font-size: 22px;
    left: 0;
  }

  .review__card {
    width: 100%;
    padding: 16px;
    transform: scale(1); /* fără scalare default pe mobil */
    opacity: 1;
    box-shadow: none;
    border: 1px solid #222;
    margin: 0;
  }

  .review__card-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
  }

  .review__avatar {
    width: 40px;
    height: 40px;
    align-self: center;
    margin: 0;
  }

  .review__author {
    font-size: 14px;
    align-self: center;
    margin: 0;
  }

  .review__rating {
    font-size: 14px;
    align-self: center;
  }

  .review__text {
    font-size: 13px;
    margin: 10px 0 0;
  }

  .review__btn {
    width: 30px;
    height: 30px;
    font-size: 18px;
    top: 45%;
  }

  /*Gallery container*/
  .galery {
    min-height: 300px;
  }

  .galery__container {
    width: 100%;
    padding: 40px 16px;
  }

  .galery__swiper .swiper-slide {
    width: 160px !important;
    height: 220px !important;
  }

  .galery__slide {
    width: 160px;
    height: 220px;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
  }

  .galery__slide img {
    border-radius: 12px;
  }

  .galery__btn {
    width: 32px;
    height: 32px;
    font-size: 18px;
    bottom: 10px;
  }

  .galery__btn--prev {
    transform: translateX(-50px);
  }

  .galery__btn--next {
    transform: translateX(10px);
  }

  .sf-hero {
    min-height: 85vh;
  }

  .sf-hero__welcome {
    font-size: 7.5rem;
    margin: 0px 0 -30px;
  }

  .sf-hero__title {
    font-size: 2.5rem;
  }

  /*MENU*/

  .hero {
    margin: 80px 0;
    padding: 0 16px;
  }

  .hero h1 {
    font-size: 2.6rem;
    line-height: 1.2;
  }

  .hero h1 span {
    display: block;
  }

  .hero p {
    font-size: 1rem;
    margin-top: 12px;
  }

  .menu-section {
    grid-template-columns: 1fr;
    padding: 0 16px;
    gap: 20px;
  }

  .menu-categories {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
  }

  .menu-categories button {
    font-size: 20px;
    padding: 6px 12px;
    border-radius: 10px;
  }

  .menu-categories button a {
    font-size: 20px;
  }

  .menu-items {
    gap: 20px;
    align-items: anchor-center;
  }

  .menu-card {
    flex-direction: column;
    align-items: center;
    max-width: 90%;
  }

  .menu-card img {
    width: 100%;
    height: auto;
    max-height: 200px;
    border-radius: 0;
  }

  .menu-card-content {
    padding: 16px;
    max-height: none;
    width: 100%;
  }

  .menu-card-content .menu-card-header {
    /* flex-direction: column; */
    align-items: flex-start;
    gap: 6px;
  }

  .menu-card-content .menu-card-header h2 {
    font-size: 26px;
  }

  .menu-card-content .description {
    font-size: 14px;
    -webkit-line-clamp: 3;
    margin-top: 5px;
  }

  .menu-card-content .calo {
    font-size: 12px;
  }

  .menu-card-content .footer-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
  }

  .menu-card-content .footer-row .calo {
    margin-bottom: 5px;
  }

  .menu-card-content .footer-row .price {
    font-size: 18px;
    text-align: left;
    align-self: center;
    margin-bottom: 5px;
  }

  /*ABOUT*/
  .about2 {
    padding-top: 80px;
  }

  .sf-hero__title2 {
    font-size: 2rem;
    padding: 0 16px;
    text-align: center;
  }

  .about__container {
    width: 100%;
    padding: 40px 16px;
  }

  .about__inner2 {
    flex-direction: column;
    gap: 20px;
    align-items: center;
    text-align: center;
  }

  .about__media2 {
    flex: 0 0 auto;
    width: 100%;
  }

  .about__media2 img {
    border-radius: 6px;
  }

  .about__content {
    width: 100%;
  }

  .about__title {
    font-size: 22px;
  }

  .about__description {
    font-size: 14px;
    line-height: 1.6;
    margin: 10px 0;
  }

  .about__features2 {
    flex-direction: column;
    align-items: center;
    gap: 30px;
    margin: 60px 0;
  }

  .about__feature {
    display: flex;
    align-items: center;
    gap: 16px;
    text-align: left;
  }

  .about__feature-icon {
    width: 40px;
    height: auto;
  }

  .about__feature-title {
    font-size: 16px;
  }

  .about__leaf {
    width: 30px;
  }

  .custom-shape-divider-bottom-1747987106 svg {
    height: 60px;
  }
  /*CONTACT*/
  .sf-hero__title_contact {
    font-size: 2rem;
    padding-top: 80px;
    top: 0;
    left: 0;
    text-align: center;
  }

  .contact-section {
    padding: 0 16px 60px;
  }

  .contact-container {
    flex-direction: column;
    gap: 20px;
    border-radius: 10px;
  }

  .contact-form {
    flex: 1 1 100%;
    padding: 20px;
  }

  .contact-field input,
  .contact-field textarea {
    font-size: 14px;
    padding: 10px 12px;
  }

  .contact-button {
    width: 100%;
    text-align: center;
    font-size: 16px;
    padding: 12px;
  }

  .contact-map {
    flex: 1 1 100%;
    min-height: 250px;
    height: 250px;
  }

  .contact-map iframe {
    height: 100%;
  }
  /*FOOTER*/
  .astelios-footer-columns {
    display: grid;
    text-align: -webkit-center;
    gap: 0px;
  }
}
