@keyframes bounce {
  0%, 100% {
    transform: translateX(-50%) translateY(0);
  }
  50% {
    transform: translateX(-50%) translateY(10px);
  }
}
@keyframes scroll {
  0% {
    transform: translateX(-50%) translateY(0);
    opacity: 0;
  }
  40% {
    opacity: 1;
  }
  100% {
    transform: translateX(-50%) translateY(12px);
    opacity: 0;
  }
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeInDown {
  0% {
    opacity: 0;
    transform: translateY(-30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeInLeft {
  0% {
    opacity: 0;
    transform: translate(-30px, 0);
  }
  100% {
    opacity: 1;
    transform: translate(0, 0);
  }
}
@keyframes fadeInRight {
  0% {
    opacity: 0;
    transform: translate(30px, 0);
  }
  100% {
    opacity: 1;
    transform: translate(0, 0);
  }
}
@keyframes moveScissors {
  0%, 100% {
    top: 100%;
    left: -20px;
    transform: translateY(-50%) rotate(0deg);
  }
  24.99% {
    top: 100%;
    left: calc(100% - 20px);
    transform: translateY(-50%) rotate(0deg);
  }
  25% {
    top: calc(100% - 20px);
    left: calc(100% + 20px);
    transform: translate(-100%, 0) rotate(-90deg);
  }
  49.99% {
    top: calc(0% - 20px);
    left: calc(100% + 20px);
    transform: translate(-100%, 0) rotate(-90deg);
  }
  50% {
    top: 0;
    left: calc(100% - 20px);
    transform: translateY(-50%) rotate(180deg);
  }
  74.99% {
    top: 0;
    left: calc(0% - 20px);
    transform: translateY(-50%) rotate(180deg);
  }
  75% {
    top: calc(0% - 20px);
    left: 0;
    transform: translate(-50%, 0) rotate(-270deg);
  }
  99.99% {
    top: calc(100% - 20px);
    left: 0;
    transform: translate(-50%, 0) rotate(-270deg);
  }
}
@keyframes ring {
  0% {
    transform: rotate(-15deg);
  }
  2% {
    transform: rotate(15deg);
  }
  4% {
    transform: rotate(-18deg);
  }
  6% {
    transform: rotate(18deg);
  }
  8% {
    transform: rotate(-22deg);
  }
  10% {
    transform: rotate(22deg);
  }
  12% {
    transform: rotate(-18deg);
  }
  14% {
    transform: rotate(18deg);
  }
  16% {
    transform: rotate(-12deg);
  }
  18% {
    transform: rotate(12deg);
  }
  20% {
    transform: rotate(0deg);
  }
}
@keyframes pulse {
  0% {
    transform: scale(0.6);
    opacity: 0.55;
  }
  100% {
    transform: scale(2.2);
    opacity: 0;
  }
}
[data-animation=fadeIn] {
  opacity: 0;
}

[data-animation=fadeInUp] {
  opacity: 0;
  transform: translateY(30px);
}

[data-animation=fadeInDown] {
  opacity: 0;
  transform: translateY(-30px);
}

[data-animation=fadeInLeft] {
  opacity: 0;
  transform: translate(-100px, 0);
}

[data-animation=fadeInRight] {
  opacity: 0;
  transform: translate(100px, 0);
}

.animate {
  animation-duration: 0.9s;
  animation-fill-mode: both;
}

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  font-size: 1rem;
  font-weight: 400;
  font-family: "Raleway", sans-serif;
  color: #1a1a1a;
  overscroll-behavior: none;
}

.grecaptcha-badge {
  visibility: hidden !important;
  display: none !important;
  opacity: 0 !important;
}

input,
textarea,
button,
select {
  margin: 0;
  padding: 0;
  border: 0;
  background: none;
  outline: none;
  box-sizing: border-box;
  font: inherit;
  color: inherit;
  resize: none;
}

input,
textarea {
  cursor: text;
}

button {
  cursor: pointer;
}

::placeholder {
  font-family: "Raleway", sans-serif;
  font-size: 1rem;
  color: #1a1a1a;
  opacity: 0.3;
}

input:-webkit-autofill,
textarea:-webkit-autofill {
  font-family: "Raleway", sans-serif !important;
  font-size: inherit !important;
  -webkit-box-shadow: 0 0 0 1000px #f5f5f5 inset !important;
  box-shadow: 0 0 0 1000px #f5f5f5 inset !important;
  -webkit-text-fill-color: inherit !important;
  transition: background-color 5000s ease-in-out 0s !important;
}

input:-webkit-autofill::placeholder,
textarea:-webkit-autofill::placeholder {
  font-family: "Raleway", sans-serif !important;
  font-size: 1rem !important;
  color: #1a1a1a !important;
  opacity: 0.3 !important;
}

p,
h1,
h2,
h3,
h4 {
  margin: 0 0 1rem 0;
  color: inherit;
  font-weight: 400;
}

h1,
h2,
h3,
h4 {
  font-family: "Playfair Display", serif;
}

p {
  line-height: 1.6;
}

strong {
  font-weight: 600;
}

.container {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 max(1rem, 15px);
  position: inherit;
}

section {
  padding: 6rem 0;
  overflow: hidden;
  background-color: #f5f5f5;
}
section header.section-header {
  text-align: center;
}
section header.section-header .section-label {
  color: #e9d07f;
  text-transform: uppercase;
  font-size: 0.875rem;
  letter-spacing: 0.15em;
  font-weight: 600;
  margin-bottom: 1rem;
}
section header.section-header .section-title {
  margin-bottom: 3rem;
  display: block;
  font-family: "Playfair Display", serif;
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.columns {
  display: grid;
  gap: 4rem;
}
ul,
li {
  list-style: none;
}

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease-in-out;
}
a:hover {
  color: #e9d07f;
}

button {
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 1;
}

.btn {
  display: inline-block;
  padding: 1.2rem 3rem;
  border: 1px solid;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
  text-align: center;
  border-radius: 5px;
}
.btn.primary {
  border-color: #e9d07f;
  color: #e9d07f;
}
.btn.primary:hover {
  background-color: #e9d07f;
  color: #1a1a1a;
}
.btn.secondary {
  border-color: #ffffff;
  color: #ffffff;
}
.btn.secondary:hover {
  background-color: #ffffff;
  color: #1a1a1a;
}
.btn.tertiary {
  border-color: #1a1a1a;
  color: #1a1a1a;
}
.btn.tertiary:hover {
  background-color: #1a1a1a;
  color: #ffffff;
}

.icon {
  line-height: 1;
}
.icon.facebook::before {
  font-family: dashicons;
  content: "\f305";
}
.icon.instagram::before {
  font-family: dashicons;
  content: "\f12d";
}

.rating-stars {
  display: flex;
  justify-content: center;
  gap: 2px;
  color: #e9d07f;
}
.rating-stars .dashicons {
  font-size: 1.75rem;
  width: 28px;
  height: 28px;
}

.scroll-indicator {
  position: absolute;
  bottom: 3rem;
  left: 50%;
  transform: translateX(-50%);
  animation: fadeIn 1s cubic-bezier(0.4, 0, 0.2, 1) 1.4s both, bounce 2s ease-in-out 2.2s infinite;
}
.scroll-indicator span {
  display: block;
  width: 24px;
  height: 40px;
  border: 1px solid #ffffff;
  border-radius: 20px;
  position: relative;
}
.scroll-indicator span::before {
  content: "";
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 8px;
  background: #e9d07f;
  border-radius: 2px;
  animation: scroll 2s ease-in-out infinite;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: #e9d07f;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  transform: translateY(100%);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out;
}
.cookie-banner--visible {
  pointer-events: auto;
  transform: translateY(0);
  opacity: 1;
}
.cookie-banner--hidden {
  pointer-events: none;
  transform: translateY(100%);
  opacity: 0;
}
.cookie-banner .cookie-banner-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  padding: 2rem 1.5rem;
}
.cookie-banner .cookie-banner-inner .cookie-banner-text p {
  margin: 0;
  font-size: 0.875rem;
  line-height: 1.75;
}
.cookie-banner .cookie-banner-inner .cookie-banner-text a {
  color: #1a1a1a;
  text-decoration: underline;
}
.cookie-banner .cookie-banner-inner .cookie-banner-actions {
  display: flex;
  gap: 0.75rem;
  flex-shrink: 0;
}
.cookie-banner .cookie-banner-inner .cookie-banner-actions .cookie-banner-btn {
  display: inline-block;
  border: 1px solid;
  border-radius: 5px;
  padding: 0.875rem 1.25rem;
  transition: all 0.3s ease-in-out;
  font-size: 0.875rem;
  cursor: pointer;
  text-align: center;
}
.cookie-banner .cookie-banner-inner .cookie-banner-actions .cookie-banner-btn.btn-accept {
  background: #1a1a1a;
  color: #e9d07f;
}
.cookie-banner .cookie-banner-inner .cookie-banner-actions .cookie-banner-btn.btn-accept:hover {
  background-color: rgb(31.1, 31.1, 31.1);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}
.cookie-banner .cookie-banner-inner .cookie-banner-actions .cookie-banner-btn.btn-reject {
  color: #ffffff;
  border-color: #ffffff;
}
.cookie-banner .cookie-banner-inner .cookie-banner-actions .cookie-banner-btn.btn-reject:hover {
  background: #ffffff;
  color: #1a1a1a;
}

.bg-parallax {
  background-position: 50% 50%;
  background-size: 100%;
  background-repeat: no-repeat;
  position: relative;
  opacity: 0;
  will-change: background-size, background-position;
}
.bg-parallax::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: #1a1a1a;
  opacity: 0.95;
}
.bg-parallax .bg-parallax-inner {
  transition: transform 0.1s ease-out;
}

.accordion .accordion-header {
  position: relative;
  padding: 1.5rem 2rem;
  border: 3px double #e9d07f;
  margin-bottom: 3rem;
}
.accordion .accordion-header h2 {
  display: block;
  font-family: "Playfair Display", serif;
  font-size: 2rem;
  width: 100%;
  letter-spacing: -0.02em;
  margin-bottom: 0;
}
.accordion .accordion-header h2::first-letter {
  text-transform: uppercase;
}
.accordion .accordion-header .accordion-toggle {
  display: block;
  width: 1rem;
  height: 1rem;
  position: absolute;
  top: 50%;
  right: 2rem;
  transform: translateY(-50%);
}
.accordion .accordion-header .accordion-toggle .line {
  position: absolute;
  top: 50%;
  left: 0;
  translate: 0 -50%;
  width: 100%;
  height: 2px;
  background-color: #1a1a1a;
  transition: all 0.3s ease-in-out;
  transform-origin: center center;
}
.accordion .accordion-header .accordion-toggle .line:first-child {
  transform: rotate(90deg);
}
.accordion .accordion-header .accordion-toggle:hover .line {
  background-color: #e9d07f;
}
.accordion .accordion-header .accordion-toggle[aria-expanded=true] .line {
  transform: rotate(180deg);
}
.accordion .accordion-inner {
  overflow: hidden;
  height: auto;
  transition: height 0.3s ease-in-out;
}

.counters {
  line-height: 1.75;
  text-align: center;
}
.counters .counter .counter-number {
  font-family: "Playfair Display", serif;
  font-size: clamp(2.5rem, 5vw, 3rem);
  font-weight: 600;
  color: #e9d07f;
  line-height: 1;
  margin-bottom: 0.5rem;
}
.counters .counter .counter-label {
  text-wrap: nowrap;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.post-gallery {
  max-width: 100%;
  position: relative;
  border-radius: 5px;
  overflow: hidden;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  background-color: #ffffff;
}
.post-gallery .gallery-main {
  anchor-name: --gallery-main;
}
.post-gallery .gallery-main .gallery-item-wrapper {
  aspect-ratio: 3/2;
}
.post-gallery .gallery-main .gallery-item-wrapper .gallery-item {
  display: block;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: 50% 50%;
}
.post-gallery .gallery-main .slick-arrow {
  width: 50px;
  height: 50px;
  position: absolute;
  top: 50%;
  background-color: transparent;
  border: none;
  color: #1a1a1a;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  z-index: 2;
  translate: 0 -50%;
  background-color: #ffffff;
  border-radius: 50px;
}
.post-gallery .gallery-main .slick-arrow::before {
  font-family: dashicons;
  font-size: 1.5rem;
  position: absolute;
  top: calc(50% - 12px);
}
.post-gallery .gallery-main .slick-arrow.prev {
  left: 20px;
}
.post-gallery .gallery-main .slick-arrow.prev::before {
  content: "\f341";
  left: calc(50% - 13px);
}
.post-gallery .gallery-main .slick-arrow.next {
  right: 20px;
}
.post-gallery .gallery-main .slick-arrow.next::before {
  content: "\f345";
  right: calc(50% - 13px);
}
.post-gallery .gallery-main .slick-arrow:hover {
  width: 60px;
  height: 60px;
  background-color: #e9d07f;
  color: #ffffff;
}
.post-gallery .gallery-main .slick-arrow:hover.prev {
  translate: -5px -50%;
}
.post-gallery .gallery-main .slick-arrow:hover.next {
  translate: 5px -50%;
}
.post-gallery .gallery-counter {
  position-anchor: --gallery-main;
  position: absolute;
  bottom: calc(anchor(bottom) + 2rem);
  right: calc(anchor(right) + 2rem);
  background: rgba(0, 0, 0, 0.7);
  color: #ffffff;
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 600;
  z-index: 10;
}
.post-gallery .gallery-thumbnails {
  padding: 1.5rem 1rem;
}
.post-gallery .gallery-thumbnails .slick-track {
  margin-left: 0;
}
.post-gallery .gallery-thumbnails .thumbnail-item-wrapper {
  aspect-ratio: 16/9;
  border-radius: 5px;
  overflow: hidden;
  cursor: pointer;
  border: 3px solid transparent;
  transition: all 0.3s ease-in-out;
  margin: 0 0.5rem;
}
.post-gallery .gallery-thumbnails .thumbnail-item-wrapper .thumbnail-item {
  display: block;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: 50% 50%;
}
.post-gallery .gallery-thumbnails .thumbnail-item-wrapper.slick-current {
  border-color: #e9d07f;
}

.price-cards {
  grid-template-columns: repeat(3, 1fr);
  text-align: left;
  gap: clamp(30px, 3rem, 3vw);
  margin-top: 3rem;
}
.price-cards .price-card {
  padding: 3rem 2.5rem;
  height: 100%;
  background-color: #ffffff;
  border: 2px solid #e5e5e5;
  border-radius: 5px;
  transition: all 0.3s ease-in-out;
  position: relative;
  text-align: center;
  overflow: hidden;
}
.price-cards .price-card .regular-price {
  font-family: "Playfair Display", serif;
  font-size: 3rem;
  color: #e9d07f;
  display: block;
  margin-bottom: 0.5rem;
}
.price-cards .price-card h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: #1a1a1a;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.5rem;
}
.price-cards .price-card em {
  display: block;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 2px solid #f5f5f5;
  font-size: 0.875rem;
}
.price-cards .price-card ul {
  margin-bottom: 2rem;
  text-align: left;
  text-wrap: pretty;
}
.price-cards .price-card ul li {
  display: flex;
  padding: 0.75rem 0;
  position: relative;
  font-size: 0.875rem;
  align-items: self-start;
  gap: 0.75rem;
}
.price-cards .price-card ul li::before {
  font-family: dashicons;
  content: "\f15e";
  color: #e9d07f;
}
.price-cards .price-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: #e9d07f;
  transform: scaleX(0);
  transition: all 0.3s ease-in-out;
}
@media (min-width: 992px) {
  .price-cards .price-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    border-color: #e9d07f;
  }
  .price-cards .price-card:hover::before {
    transform: scale(1);
  }
}

.pagination {
  margin-top: 4rem;
  border-top: 1px solid #e5e5e5;
  padding-top: 3rem;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
}
.pagination .page-numbers {
  padding: 0.75rem 1rem;
  background: #ffffff;
  border: 1px solid #e5e5e5;
  font-weight: 500;
  transition: all 0.3s ease-in-out;
  min-width: 45px;
  text-align: center;
}
.pagination .page-numbers.prev, .pagination .page-numbers.next {
  position: relative;
}
.pagination .page-numbers.prev::before, .pagination .page-numbers.next::before {
  content: "";
  width: 12px;
  height: 1px;
  background-color: #1a1a1a;
  position: absolute;
  right: 14px;
  top: 50%;
  transition: all 0.3s ease-in-out;
}
.pagination .page-numbers.prev::after, .pagination .page-numbers.next::after {
  content: "";
  width: 5px;
  height: 5px;
  border: 1px solid #1a1a1a;
  position: absolute;
  top: 50%;
  transform: translateY(-2px) rotate(45deg);
  transition: all 0.3s ease-in-out;
}
.pagination .page-numbers.prev.disabled, .pagination .page-numbers.next.disabled {
  opacity: 0.4;
  cursor: not-allowed;
  pointer-events: none;
}
.pagination .page-numbers.prev {
  padding-left: calc(1rem + 18px);
}
.pagination .page-numbers.prev::before, .pagination .page-numbers.prev::after {
  left: 14px;
}
.pagination .page-numbers.prev::after {
  border-top: 0;
  border-right: 0;
}
.pagination .page-numbers.next {
  padding-right: calc(1rem + 18px);
}
.pagination .page-numbers.next::before, .pagination .page-numbers.next::after {
  right: 14px;
}
.pagination .page-numbers.next::after {
  border-left: 0;
  border-bottom: 0;
}
.pagination .page-numbers:hover {
  color: #e9d07f;
  border-color: #e9d07f;
}
.pagination .page-numbers:hover.prev::before, .pagination .page-numbers:hover.next::before {
  background-color: #e9d07f;
}
.pagination .page-numbers:hover.prev::after, .pagination .page-numbers:hover.next::after {
  border-color: #e9d07f;
}
.pagination .page-numbers.current {
  background: #e9d07f;
  color: #ffffff;
}

.hero-content {
  max-width: 1024px;
  text-align: center;
  margin: 0 auto;
}
.hero-content span {
  font-size: 0.875rem;
  letter-spacing: 0.2em;
  font-weight: 600;
  display: block;
  color: #e9d07f;
  margin-bottom: 1rem;
  animation: fadeIn 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.4s both;
  text-transform: uppercase;
}
.hero-content h1 {
  font-family: "Playfair Display", serif;
  font-size: clamp(3rem, 6vw, 5rem);
  letter-spacing: -0.02em;
  animation: fadeInUp 1s cubic-bezier(0.4, 0, 0.2, 1) 0.6s both;
  margin-bottom: 1.5rem;
}
.hero-content p {
  font-size: clamp(1.125rem, 3svw, 1.25rem);
  line-height: 1.75;
  animation: fadeInUp 1s cubic-bezier(0.4, 0, 0.2, 1) 0.8s both;
  margin: 0;
  text-wrap: balance;
}

.cta-section {
  padding: 8rem 0 6rem;
  background-image: url("../img/resto-dinner.webp");
}
.cta-section .container {
  text-align: center;
  color: #ffffff;
  position: relative;
  max-width: 1024px;
  margin: 0 auto;
}
.cta-section .container h2 {
  font-family: "Playfair Display", serif;
  font-size: clamp(2.5rem, 5vw, 3rem);
  font-weight: 600;
  margin-bottom: 2rem;
  line-height: 1.2;
}
.cta-section .container p {
  font-size: clamp(1.125rem, 3svw, 1.25rem);
  margin-bottom: 3rem;
  line-height: 1.75;
  text-wrap: pretty;
}
.cta-section .container .btn {
  margin: 0 0.75rem;
}

.news-grid {
  display: grid;
  row-gap: 4rem;
  grid-template-columns: 1fr;
}
.news-grid article.news-item {
  display: grid;
  grid-template-columns: 350px 1fr;
  gap: 3rem;
  background: #ffffff;
  border: 1px solid #ffffff;
  overflow: hidden;
  transition: all 0.3s ease-in-out;
}
.news-grid article.news-item .news-image-wrapper {
  position: relative;
  min-height: 350px;
  aspect-ratio: 1/1;
}
.news-grid article.news-item .news-image-wrapper img {
  height: 100%;
  min-width: 100%;
  max-width: 100%;
  display: block;
  object-fit: cover;
}
.news-grid article.news-item .news-content {
  display: flex;
  justify-content: center;
  flex-direction: column;
  padding: 3rem 3rem 3rem 0;
}
.news-grid article.news-item .news-content time {
  font-size: 0.75rem;
  color: #7e7e7e;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
}
.news-grid article.news-item .news-content h3 {
  font-family: "Playfair Display", serif;
  font-size: 2rem;
  margin-bottom: 1rem;
  line-height: 1.3;
  font-weight: 600;
}
.news-grid article.news-item .news-content p {
  line-height: 1.75;
  margin-bottom: 2rem;
}
.news-grid article.news-item .news-content .news-link {
  align-self: flex-start;
  display: inline-block;
  color: #e9d07f;
  position: relative;
  padding-right: 18px;
}
.news-grid article.news-item .news-content .news-link::before {
  content: "";
  width: 12px;
  height: 1px;
  background-color: #e9d07f;
  position: absolute;
  right: 0;
  top: 50%;
}
.news-grid article.news-item .news-content .news-link::after {
  content: "";
  width: 5px;
  height: 5px;
  border: 1px solid #e9d07f;
  border-left: 0;
  border-bottom: 0;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-2px) rotate(45deg);
}
.news-grid article.news-item .news-content .news-link:hover {
  padding-right: 22px;
}
@media (min-width: 992px) {
  .news-grid article.news-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    border-color: #e9d07f;
  }
}

.header {
  background-color: transparent;
  padding: 24px 0;
  width: 100%;
  z-index: 10;
  transition: all 0.3s ease-in-out;
  position: fixed;
}
.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}
.header .hamburger-btn {
  display: none;
  position: relative;
  width: 25px;
  height: 20px;
}
.header .hamburger-btn .line {
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  border-radius: 2px;
  background-color: #e9d07f;
  transition: all 0.3s ease-in-out;
  transform-origin: center center;
}
.header .hamburger-btn .line:nth-child(1) {
  top: 0;
}
.header .hamburger-btn .line:nth-child(2) {
  top: 50%;
  transform: translateY(-50%);
}
.header .hamburger-btn .line:nth-child(3) {
  bottom: 0;
}
.header .hamburger-btn[aria-expanded=true] .line:nth-child(1) {
  top: 50%;
  transform: translateY(-1px) rotate(45deg);
}
.header .hamburger-btn[aria-expanded=true] .line:nth-child(2) {
  opacity: 0;
}
.header .hamburger-btn[aria-expanded=true] .line:nth-child(3) {
  bottom: 50%;
  transform: translateY(1px) rotate(-45deg);
}
.header .nav-left ul {
  display: flex;
  gap: 3.2rem;
}
.header .nav-left ul li a {
  color: #ffffff;
  font-size: 0.875rem;
  letter-spacing: 0.01em;
  position: relative;
  font-weight: 500;
  padding: 3px 0;
}
.header .nav-left ul li a::after {
  content: "";
  width: 0;
  height: 1px;
  background-color: #e9d07f;
  position: absolute;
  left: 0;
  bottom: -3px;
  transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.header .nav-left ul li:first-child {
  display: none;
}
.header .nav-left ul li.current-menu-item a {
  color: #e9d07f;
}
.header .nav-left ul li.current-menu-item a::after {
  width: 100%;
}
.header .nav-left ul li:not(.current-menu-item) a:hover {
  color: #e9d07f;
}
.header .nav-left ul li:not(.current-menu-item) a:hover::after {
  width: 100%;
}
.header .logo-wrapper {
  width: 60px;
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  margin: 0 auto;
  transform: translateY(-50%);
  z-index: 10;
  transition: all 0.3s ease-in-out;
  display: block;
}
.header .logo-wrapper img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
}
.header .header-right {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.header .header-right .call-btn {
  padding: 0.875rem 1.5rem 0.875rem 2.5rem;
  font-size: 0.875rem;
  letter-spacing: 0.01em;
  border: 1px solid #e9d07f;
  border-radius: 30px;
  color: #ffffff;
  transition: all 0.3s ease-in-out;
  position: relative;
}
.header .header-right .call-btn::before {
  font-family: dashicons;
  content: "\f525";
  position: absolute;
  left: 1.25rem;
  rotate: 120deg;
  color: #e9d07f;
  transition: all 0.3s ease-in-out;
}
.header .header-right .call-btn:hover {
  color: #1a1a1a;
  background-color: #e9d07f;
}
.header .header-right .call-btn:hover::before {
  animation: none;
  color: #1a1a1a;
}
.header .header-right .header-icons {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.header .header-right .header-icons .icon {
  color: #e9d07f;
  font-size: 1.125rem;
  translate: 0 2px;
  opacity: 0.3;
}
.header .header-right .header-icons .icon:hover {
  opacity: 1;
}
.header .header-right .lang-toggle {
  line-height: 1;
}
.header .header-right .lang-toggle a {
  color: #e9d07f;
  font-size: 0.75rem;
}
.header.fixed {
  background-color: #1a1a1a;
  padding: 20px 0;
}

.footer {
  background-color: #1a1a1a;
  color: #7e7e7e;
  font-size: 0.875rem;
  line-height: 1.75;
}
.footer .container a:hover {
  color: #ffffff;
}
.footer .container .columns {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  padding: 6rem 0 4rem;
  flex-wrap: nowrap;
}
.footer .container .columns .column {
  text-align: left;
  flex: auto;
}
.footer .container .columns .column h3 {
  font-family: "Playfair Display", serif;
  color: #e9d07f;
  margin-bottom: 1.5rem;
  font-size: 1rem;
}
.footer .container .columns .column p {
  font-size: 0.875rem;
  line-height: 1.75;
  margin-bottom: 0;
}
.footer .container .columns .column.company-logo {
  flex: 1 1 auto;
  align-self: center;
}
.footer .container .columns .column.company-logo .logo-wrapper {
  width: 115px;
  display: block;
}
.footer .container .columns .column.company-logo .logo-wrapper img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
}
.footer .container .columns .column.company-address {
  text-wrap: balance;
  flex: 0 0 15%;
  padding-right: 1.125rem;
}
.footer .container .columns .column.company-address p:first-of-type {
  margin-bottom: 1rem;
}
.footer .container .columns .column.contact {
  flex: 0 0 24%;
}
.footer .container .columns .column.contact .footer-icons {
  gap: 1rem;
  margin-top: 1.5rem;
}
.footer .container .columns .column.contact .footer-icons .icon {
  font-size: 1.5rem;
  display: inline-block;
  margin: 0 4px;
}
.footer .container .columns .column.footer-nav {
  flex: 0 0 15%;
}
.footer .container .columns .column.footer-nav ul li {
  display: block;
}
.footer .container .columns .column.open-hours {
  flex: 0 0 20%;
}
.footer .container .columns .column.open-hours ul {
  max-width: clamp(280px, 35svw, 320px);
}
.footer .container .columns .column.open-hours ul li {
  display: flex;
  justify-content: space-between;
  text-transform: lowercase;
  line-height: 1.75;
  padding-bottom: 0.5rem;
  text-transform: capitalize;
  padding: 0.5rem 0;
}
.footer .container .columns .column.open-hours ul li:not(:last-child) {
  border-bottom: 1px solid #222222;
}
.footer .copyrights {
  border-top: 1px solid #222222;
  padding: 2rem 0;
}
.footer .copyrights .container {
  display: flex;
  justify-content: space-between;
}
.footer .copyrights .container p {
  margin-bottom: 0;
}
.footer .copyrights .container p:last-child {
  text-align: right;
}
.footer .copyrights .container p span {
  color: #e9d07f;
}

.page .page-header {
  color: #ffffff;
  padding: 10rem 0 5rem;
}
.page.o-nas section#stats {
  background-color: #1a1a1a;
  color: #ffffff;
  text-align: center;
  padding: 4rem 0;
}
.page.o-nas section#stats .counters {
  display: flex;
  flex-wrap: wrap;
}
.page.o-nas section#stats .counters .counter {
  flex: 1;
  padding: 2rem 1rem;
}
.page.o-nas section#stats .counters .counter .counter-label {
  color: #ffffff;
}
.page.o-nas section#about .container {
  max-width: 768px;
}
.page.o-nas section#about .container p {
  line-height: 1.75;
  margin-bottom: 1.5rem;
}
.page.o-nas section#amenities {
  background-color: #ffffff;
  padding: 4rem 0;
}
.page.o-nas section#amenities .container {
  max-width: 1280px;
}
.page.o-nas section#amenities .columns {
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: clamp(20px, 5svw, 2.5rem);
  text-align: center;
}
.page.o-nas section#amenities .columns .column {
  transition: all 0.3s ease-in-out;
  padding: 1.5rem 1rem;
}
.page.o-nas section#amenities .columns .column img {
  width: 50px;
}
.page.o-nas section#amenities .columns .column h3 {
  font-weight: 600;
  font-size: 1.5rem;
  margin-block: 2rem 1rem;
}
.page.o-nas section#amenities .columns .column p {
  line-height: 1.75;
  text-wrap: nowrap;
}
@media (min-width: 992px) {
  .page.o-nas section#amenities .columns:hover .column:not(:hover) {
    filter: grayscale(100%);
    opacity: 0.3;
  }
}
.page.o-nas section#testimonials {
  background-color: #e9d07f;
}
.page.o-nas section#testimonials .container {
  max-width: 1024px;
  margin: 0 auto;
  text-align: center;
}
.page.o-nas section#testimonials .container em {
  font-family: "Playfair Display", serif;
  font-size: 1.5rem;
  line-height: 1.75;
  display: block;
  margin-bottom: 2rem;
}
.page.o-nas section#testimonials .container ul {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 3rem;
}
.page.o-nas section#testimonials .container ul li {
  font-size: 0.75rem;
}
.page.o-nas section#testimonials .container ul li span {
  display: block;
  margin-top: 0.75rem;
  font-size: 1.5rem;
  font-weight: 600;
}
.page.o-nas section#testimonials .container h4 {
  font-family: "Raleway", sans-serif;
  font-size: 1.125rem;
  margin-bottom: 0;
}
.page.o-nas section#testimonials .container h4 img {
  vertical-align: middle;
  display: inline-block;
  margin-right: 1rem;
  position: relative;
}
.page.menu .page-main .accordion .accordion-inner .menu-card-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(380px, 1fr));
  grid-column-gap: 4rem;
  grid-row-gap: calc(3rem + 30px);
  will-change: height;
  padding: 0 1.5rem;
}
.page.menu .page-main .accordion .accordion-inner .menu-card-list .menu-card-list-item--header {
  display: flex;
  gap: clamp(5px, 3svw, 1rem);
  align-items: center;
  margin-bottom: 1.5rem;
  font-family: "Playfair Display", serif;
}
.page.menu .page-main .accordion .accordion-inner .menu-card-list .menu-card-list-item--header .title {
  font-size: clamp(1.125rem, 4svw, 1.5rem);
  margin-bottom: 0;
  line-height: 1;
  flex-shrink: 0;
}
.page.menu .page-main .accordion .accordion-inner .menu-card-list .menu-card-list-item--header .line {
  line-height: 1;
  flex: 1;
  border-bottom-style: double;
  border-bottom-width: 2px;
  flex-basis: 1rem;
}
.page.menu .page-main .accordion .accordion-inner .menu-card-list .menu-card-list-item--header .price {
  font-size: clamp(1.125rem, 4svw, 1.5rem);
  text-align: right;
  line-height: 1;
  flex-shrink: 0;
}
.page.menu .page-main .accordion .accordion-inner .menu-card-list .menu-card-list-item--header .price span {
  display: inline-block;
}
.page.menu .page-main .accordion .accordion-inner .menu-card-list .menu-card-list-item--header .price span.small, .page.menu .page-main .accordion .accordion-inner .menu-card-list .menu-card-list-item--header .price span.large {
  position: relative;
}
.page.menu .page-main .accordion .accordion-inner .menu-card-list .menu-card-list-item--header .price span.small::before, .page.menu .page-main .accordion .accordion-inner .menu-card-list .menu-card-list-item--header .price span.large::before {
  content: "";
  background-image: url("../img/pizza-icon.webp");
  position: absolute;
  left: 0;
  right: 0;
  margin: 0 auto;
  background-size: contain;
}
.page.menu .page-main .accordion .accordion-inner .menu-card-list .menu-card-list-item--header .price span.small:first-child, .page.menu .page-main .accordion .accordion-inner .menu-card-list .menu-card-list-item--header .price span.large:first-child {
  margin-right: 1rem;
}
.page.menu .page-main .accordion .accordion-inner .menu-card-list .menu-card-list-item--header .price span.small:first-child::before, .page.menu .page-main .accordion .accordion-inner .menu-card-list .menu-card-list-item--header .price span.large:first-child::before {
  top: -28px;
  width: 20px;
  height: 20px;
}
.page.menu .page-main .accordion .accordion-inner .menu-card-list .menu-card-list-item--header .price span.small:last-child::before, .page.menu .page-main .accordion .accordion-inner .menu-card-list .menu-card-list-item--header .price span.large:last-child::before {
  top: -30px;
  width: 22px;
  height: 22px;
}
.page.menu .page-main .accordion .accordion-inner .menu-card-list .menu-card-list-item--description {
  margin: 0;
  font-size: 0.875rem;
  line-height: 1.75;
  padding-right: clamp(2rem, 11svw, 3.5rem);
  text-wrap: pretty;
}
.page.menu .page-main .accordion .accordion-inner .menu-card-list .menu-card-list-item:last-child {
  margin-bottom: 4rem;
}
.page.menu .page-main .accordion .accordion-inner .menu-card-list .menu-card-sublist {
  margin-left: -1.5rem;
  margin-right: -1.5rem;
  grid-column: 1/-1;
}
.page.menu .page-main .accordion .accordion-inner .menu-card-list .menu-card-sublist .sublist {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(380px, 1fr));
  grid-column-gap: 4rem;
  grid-row-gap: calc(3rem + 30px);
  border-top: none;
  padding: 0 1.5rem;
}
.page.menu .page-main .accordion .accordion-inner .menu-card-list .menu-card-sublist .sublist--header {
  border: 3px double #1a1a1a;
  padding: 1.5rem 2rem;
  margin-bottom: 3rem;
}
.page.menu .page-main .accordion .accordion-inner .menu-card-list .menu-card-sublist .sublist--header h3 {
  font-size: 1.75rem;
  margin: 0;
  letter-spacing: -0.02em;
}
.page.menu .page-main .accordion .accordion-inner .menu-card-list .menu-card-sublist .sublist--header h3:first-letter {
  text-transform: uppercase;
}
.page.menu .page-main .accordion .accordion-inner .menu-card-list .menu-card-sublist .sublist .sublist-item--header {
  display: flex;
  gap: clamp(5px, 3svw, 1rem);
  align-items: center;
  margin-bottom: 1.5rem;
  font-family: "Playfair Display", serif;
}
.page.menu .page-main .accordion .accordion-inner .menu-card-list .menu-card-sublist .sublist .sublist-item--header .title {
  line-height: 1;
  margin: 0;
  font-size: clamp(1.125rem, 4svw, 1.5rem);
}
.page.menu .page-main .accordion .accordion-inner .menu-card-list .menu-card-sublist .sublist .sublist-item--header .line {
  line-height: 1;
  flex: 1;
  border-bottom-style: double;
  border-bottom-width: 2px;
}
.page.menu .page-main .accordion .accordion-inner .menu-card-list .menu-card-sublist .sublist .sublist-item--header .price {
  font-size: clamp(1.125rem, 4svw, 1.5rem);
  line-height: 1;
  text-align: right;
  line-height: 1;
  flex-shrink: 0;
}
.page.menu .page-main .accordion .accordion-inner .menu-card-list .menu-card-sublist .sublist .sublist-item--description {
  margin: 0;
  font-size: 0.875rem;
  line-height: 1.75;
  padding-right: clamp(2rem, 11svw, 3.5rem);
  text-wrap: pretty;
}
.page.menu .page-main .accordion .accordion-inner .menu-card-list .menu-card-sublist > *:last-child {
  margin-bottom: 4rem;
}
.page.menu .page-main section .container {
  max-width: 1280px;
}
.page.menu .page-main section.pizza {
  padding-bottom: 3rem;
}
.page.menu .page-main section.pizza .pizza-content {
  text-align: center;
  max-width: 1024px;
  margin: 0 auto 4rem;
  text-wrap: balance;
}
.page.menu .page-main section.pizza .pizza-content p {
  line-height: 1.75;
}
.page.menu .page-main section.pizza .accordion .accordion-inner .menu-card-header {
  margin-bottom: 2rem;
}
.page.menu .page-main section.pizza .accordion .accordion-inner .menu-card-list {
  grid-row-gap: 3rem;
}
.page.menu .page-main section.pizza .accordion .accordion-inner .menu-card-list .menu-card-list-item {
  padding-top: 30px;
}
.page.menu .page-main section.pizza .accordion .accordion-inner .menu-card-list .menu-card-list-item--description {
  padding-right: 118px;
}
.page.menu .page-main section.pizza .accordion .accordion-inner .menu-card-list > *:last-child {
  margin-bottom: 2rem;
}
.page.menu .page-main section.pizza .accordion .accordion-inner .addons {
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 2rem;
  padding: 2rem 1.5rem;
}
.page.menu .page-main section.pizza .accordion .accordion-inner .addons .addons-item {
  padding: 2rem 1.5rem;
  background: #f5f5f5;
  border: 1px solid #e5e5e5;
  text-align: center;
  transition: all 0.3s ease-in-out;
  background: #ffffff;
}
.page.menu .page-main section.pizza .accordion .accordion-inner .addons .addons-item h4 {
  font-weight: 600;
  margin-bottom: 0.5rem;
  font-family: "Raleway", sans-serif;
}
.page.menu .page-main section.pizza .accordion .accordion-inner .addons .addons-item span {
  font-family: "Playfair Display", serif;
}
.page.menu .page-main section.pizza .accordion .accordion-inner .addons .addons-item:hover {
  transform: translateY(-5px);
  border-color: #e9d07f;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}
.page.menu .page-main section.burger {
  color: #ffffff;
  background-color: #1a1a1a;
  text-align: center;
}
.page.menu .page-main section.burger .container {
  max-width: 100%;
  padding: 0;
}
.page.menu .page-main section.burger .container .burger-content {
  text-align: center;
  max-width: 1024px;
  margin: 0 auto 4rem;
  padding: 0 20px;
  text-wrap: balance;
}
.page.menu .page-main section.burger .container .burger-content p {
  line-height: 1.75;
}
.page.menu .page-main section.burger .container #burger-slider {
  padding: 2rem 0;
}
.page.menu .page-main section.burger .container #burger-slider .slider-item {
  padding: 0 2rem;
  opacity: 0.1;
  filter: grayscale(100%);
  transition: opacity 0.3s ease-in-out, transform 0.3s ease-in-out, filter 0.3s ease-in-out;
}
.page.menu .page-main section.burger .container #burger-slider .slider-item--img {
  display: none !important;
  margin: 0 auto 2rem;
  padding: 40% 50%;
  background-size: contain;
  background-repeat: no-repeat;
}
.page.menu .page-main section.burger .container #burger-slider .slider-item--title {
  color: #e9d07f;
  font-size: 2.5rem;
}
.page.menu .page-main section.burger .container #burger-slider .slider-item--description {
  line-height: 1.75;
  margin-bottom: 2rem;
  font-size: 0.875rem;
}
.page.menu .page-main section.burger .container #burger-slider .slider-item .price {
  display: inline-block;
  margin: 0 auto;
  font-family: "Playfair Display", serif;
  font-size: 3rem;
  color: #e9d07f;
}
.page.menu .page-main section.burger .container #burger-slider .slider-item.slick-current {
  opacity: 1;
  filter: grayscale(0%);
}
.page.menu .page-main section.burger .container #burger-slider ul.slick-dots {
  margin-top: 5rem;
}
.page.menu .page-main section.burger .container #burger-slider ul.slick-dots li {
  display: inline-block;
  margin: 0 5px;
  opacity: 0.1;
  transition: all 0.3s ease-in-out;
  transition-duration: 0.3s;
}
.page.menu .page-main section.burger .container #burger-slider ul.slick-dots li button {
  width: 0.75rem;
  height: 0.75rem;
  overflow: hidden;
  text-indent: -9999px;
  background-color: transparent;
  border: 1px solid #e9d07f;
  border-radius: 50px;
}
.page.menu .page-main section.burger .container #burger-slider ul.slick-dots li:hover, .page.menu .page-main section.burger .container #burger-slider ul.slick-dots li.slick-active {
  opacity: 1;
}
.page.menu .page-main section.burger .container #burger-slider-arrows {
  margin-top: 2rem;
  display: flex;
  justify-content: center;
  gap: 2rem;
}
.page.menu .page-main section.burger .container #burger-slider-arrows .slick-arrow {
  border: 1px solid #222222;
  position: relative;
  width: 65px;
  height: 80px;
  display: block;
}
.page.menu .page-main section.burger .container #burger-slider-arrows .slick-arrow .dashicons {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  margin: 0 auto;
  width: 30px;
  height: 30px;
  font-size: 30px;
  transform: translateY(-50%);
}
.page.menu .page-main section.burger .container #burger-slider-arrows .slick-arrow:hover {
  border-color: #e9d07f;
}
.page.menu .page-main section.main-dishes {
  padding-bottom: 3rem;
}
.page.menu .page-main section.main-dishes .main-dishes-content {
  text-align: center;
  text-wrap: balance;
  max-width: 1024px;
  margin: 0 auto 4rem;
}
.page.menu .page-main section.main-dishes .main-dishes-content p {
  line-height: 1.75;
}
.page.aktualnosci section#news .container {
  max-width: 1024px;
}
.page.oferta section .container {
  max-width: 1280px;
}
.page.oferta section .offer-group .offer-item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.page.oferta section .offer-group .offer-item:nth-child(odd) .column--nth-1 {
  order: 2;
}
.page.oferta section .offer-group .offer-item:nth-child(odd) .column--nth-2 {
  order: 1;
}
.page.oferta section .offer-group .offer-item:not(:last-child) {
  margin-bottom: 8rem;
}
.page.oferta section .offer-group .offer-item h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}
.page.oferta section .offer-group .offer-item p {
  text-wrap: pretty;
  line-height: 1.75;
  margin-bottom: 2rem;
}
.page.oferta section .offer-group .offer-item .offer-image {
  position: relative;
  height: 500px;
  width: 100%;
  background: #e9d07f;
  border-radius: 5px;
  overflow: hidden;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}
.page.oferta section .offer-group .offer-item .offer-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  mix-blend-mode: multiply;
  opacity: 0.9;
}
.page.oferta section .offer-group .offer-item#imprezy-okolicznosciowe .post-gallery {
  width: 730px;
}
.page.oferta section .offer-group .offer-item#danie-dnia em {
  font-family: "Playfair Display", serif;
  display: inline-block;
  padding: 1rem 2rem;
  background: #e9d07f;
  color: #ffffff;
  font-size: 2rem;
  margin-bottom: 2rem;
  font-style: unset;
  font-weight: 600;
}
.page.oferta section .columns:not(.price-cards) .column {
  align-self: center;
}
.page.oferta section .columns:not(.price-cards) .column > a {
  display: inline-block;
  padding: 1rem 1.8rem;
  border: 1px solid #1a1a1a;
  background-color: #1a1a1a;
  color: #ffffff;
  text-align: center;
  border-radius: 5px;
  cursor: pointer;
}
.page.oferta section .columns:not(.price-cards) .column > a:hover {
  border-color: #e9d07f;
  background-color: #e9d07f;
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}
.page.oferta #miesne-koryto {
  text-align: center;
  background: #ffffff;
}
.page.oferta #miesne-koryto .plate-highlight {
  background: #e9d07f;
  color: #ffffff;
  padding: 1.5rem;
  margin-top: 2rem;
}
.page.oferta #miesne-koryto .plate-highlight strong {
  font-size: 1.125rem;
  margin-bottom: 0.5rem;
  display: block;
}
.page.oferta #miesne-koryto .plate-highlight p {
  margin-bottom: 0;
}
.page.oferta #miesne-koryto h2 {
  font-size: clamp(2.5rem, 5vw, 3rem);
}
.page.oferta #miesne-koryto .container > p {
  max-width: 728px;
  font-size: 1.125rem;
  margin: 0 auto;
  line-height: 1.75;
}
.page.oferta #miesne-koryto .container > p:last-child {
  margin-bottom: 1rem;
}
.page.oferta #offer-cta {
  background: #1a1a1a;
}
.page.kontakt section#contact .container {
  max-width: 1280px;
}
.page.kontakt section#contact .columns {
  display: grid;
  grid-template-columns: minmax(420px, 2fr) 3fr;
  gap: 3rem;
  margin-bottom: 3rem;
  align-items: stretch;
}
.page.kontakt section#contact .columns .info-card {
  transition: all 0.3s ease-in-out;
  border: 1px solid #e5e5e5;
}
@media (min-width: 992px) {
  .page.kontakt section#contact .columns .info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    border-color: #e9d07f;
  }
}
.page.kontakt section#contact .columns .info-card h2 {
  display: block;
  border-bottom: 2px solid #f5f5f5;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
}
.page.kontakt section#contact .columns .info-card.company-contact {
  margin-bottom: 1.5rem;
  flex-shrink: 0;
  background-color: #ffffff;
  padding: 2.5rem;
}
.page.kontakt section#contact .columns .info-card.company-contact > div span {
  display: block;
}
.page.kontakt section#contact .columns .info-card.company-contact > div span:first-child {
  line-height: 1.75;
  margin-bottom: 0.5rem;
}
.page.kontakt section#contact .columns .info-card.company-contact > div:not(:last-child) {
  margin-bottom: 1rem;
}
.page.kontakt section#contact .columns .info-card.company-contact > div.phone span a, .page.kontakt section#contact .columns .info-card.company-contact > div.e-mail span a {
  color: #e9d07f;
}
.page.kontakt section#contact .columns .info-card.company-contact > div.address span:last-child {
  width: 120px;
}
.page.kontakt section#contact .columns .info-card.open-hours {
  background-color: #ffffff;
  padding: 2.5rem;
}
.page.kontakt section#contact .columns .info-card.open-hours ul li {
  padding: 0.75rem 0;
  display: flex;
  justify-content: space-between;
}
.page.kontakt section#contact .columns .info-card.open-hours ul li:not(:last-child) {
  border-bottom: 1px solid #f5f5f5;
}
.page.kontakt section#contact .wpcf7 {
  padding: 2.5rem;
  background: #ffffff;
  border: 1px solid #e5e5e5;
}
.page.kontakt section#contact .wpcf7 form > p {
  margin-bottom: 2rem;
}
.page.kontakt section#contact .wpcf7 form > p:last-of-type {
  margin-bottom: 0;
}
.page.kontakt section#contact .wpcf7 form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}
.page.kontakt section#contact .wpcf7 form .form-group {
  margin-bottom: 1.5rem;
}
.page.kontakt section#contact .wpcf7 form .form-group p {
  position: relative;
  margin-bottom: 0;
}
.page.kontakt section#contact .wpcf7 form .form-group p .wpcf7-not-valid-tip {
  color: #f10000;
  font-size: 0.75rem;
  margin-top: 2px;
  position: absolute;
  right: 0;
}
.page.kontakt section#contact .wpcf7 form label {
  display: block;
  font-weight: 600;
  margin-bottom: 0.5rem;
}
.page.kontakt section#contact .wpcf7 form input,
.page.kontakt section#contact .wpcf7 form select,
.page.kontakt section#contact .wpcf7 form textarea {
  width: 100%;
  min-height: 54px;
  padding: 0.875rem 1rem;
  border: 1px solid #e5e5e5;
  background-color: #f5f5f5;
  font-size: 1rem;
  transition: all 0.3s ease-in-out;
  border-radius: 0;
  outline: 0;
  box-shadow: none;
}
.page.kontakt section#contact .wpcf7 form input:focus,
.page.kontakt section#contact .wpcf7 form select:focus,
.page.kontakt section#contact .wpcf7 form textarea:focus {
  border-color: #e9d07f;
}
.page.kontakt section#contact .wpcf7 form input.wpcf7-not-valid,
.page.kontakt section#contact .wpcf7 form select.wpcf7-not-valid,
.page.kontakt section#contact .wpcf7 form textarea.wpcf7-not-valid {
  border-color: #f10000;
}
.page.kontakt section#contact .wpcf7 form textarea {
  resize: vertical;
  min-height: 150px;
  max-height: 15rem;
  width: 100%;
}
.page.kontakt section#contact .wpcf7 form input[type=submit] {
  border: 1px solid #1a1a1a;
  transition: all 0.3s ease-in-out;
  background: #1a1a1a;
  width: 100%;
  padding: 1.2rem 3rem;
  color: #ffffff;
  font-weight: 600;
  font-size: 1.125rem;
  cursor: pointer;
  border-radius: 5px;
}
.page.kontakt section#contact .wpcf7 form input[type=submit]:hover {
  transform: translateY(-5px);
  border-color: #e9d07f;
  background-color: #e9d07f;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}
.page.kontakt section#contact .wpcf7 .wpcf7-spinner,
.page.kontakt section#contact .wpcf7 .wpcf7-response-output {
  display: none !important;
  visibility: hidden !important;
}
.page.polityka-prywatnosci section#privacy-policy {
  padding-block: 0;
}
.page.polityka-prywatnosci section#privacy-policy .container {
  max-width: 900px;
  padding: 5rem 3rem;
  background: #ffffff;
}
.page.polityka-prywatnosci section#privacy-policy .container > p {
  text-wrap: pretty;
  display: block;
  line-height: 1.75;
}
.page.polityka-prywatnosci section#privacy-policy .container > h3 {
  font-size: 1.75rem;
  display: block;
  font-weight: 600;
  margin-top: 3rem;
}
.page.polityka-prywatnosci section#privacy-policy .container > h3:first-child {
  margin-top: 0;
}
.page.polityka-prywatnosci section#privacy-policy .container > ul {
  margin: 1.5rem 0;
  padding-left: 2rem;
  display: block;
}
.page.polityka-prywatnosci section#privacy-policy .container > ul > li {
  list-style: disc;
  padding-left: 0.5rem;
  margin-bottom: 0.75rem;
  line-height: 1.75;
}
.page.polityka-prywatnosci section#privacy-policy .container .company-info {
  background: #f5f5f5;
  padding: 1.5rem;
  border-left: 4px solid #e9d07f;
  margin: 2rem 0;
}

.single-post .header {
  background-color: #1a1a1a;
}
.single-post .page-header {
  color: #1a1a1a;
}
.single-post .page-header .container {
  max-width: 1024px;
}
.single-post .page-header .breadcrumbs {
  display: flex;
  gap: 0.5rem;
  list-style: none;
  margin-bottom: 2rem;
  font-size: 0.875rem;
  color: #7e7e7e;
}
.single-post .page-header .page-title time {
  margin-bottom: 1.5rem;
  display: inline-block;
  font-size: 0.75rem;
  color: #7e7e7e;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.single-post .page-header .page-title h1 {
  font-size: clamp(2.5rem, 5vw, 3rem);
  line-height: 1.2;
  margin-bottom: 2rem;
  letter-spacing: -0.02em;
  font-weight: 600;
}
.single-post .page-header .post-thumbnail {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}
.single-post .page-header .post-thumbnail img {
  width: 100%;
  height: 500px;
  display: block;
  object-fit: cover;
}
.single-post section.post-content {
  padding-top: 1rem;
}
.single-post section.post-content > .container {
  max-width: 1024px;
}
.single-post section.post-content article > h3 {
  display: block;
  font-size: 1.75rem;
  font-weight: 600;
  margin: 3rem 0 1.5rem;
  line-height: 1.3;
}
.single-post section.post-content article > p {
  font-size: 1.125rem;
  line-height: 1.75;
  margin-bottom: 1.5rem;
}
.single-post section.post-content article > p > a {
  font-weight: 600;
  transition-duration: 0.3s;
}
.single-post section.post-content .post-navigation {
  margin: 4rem auto 0;
}
.single-post section.post-content .post-navigation .container {
  max-width: 1280px;
  padding: 3rem;
  background: #ffffff;
  border: 1px solid #e5e5e5;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}
.single-post section.post-content .post-navigation .post-nav-item .nav-label {
  font-size: 0.75rem;
  color: #7e7e7e;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.5rem;
  display: inline-block;
  position: relative;
}
.single-post section.post-content .post-navigation .post-nav-item .nav-label::before {
  content: "";
  width: 12px;
  height: 1px;
  background-color: #7e7e7e;
  position: absolute;
  right: 0;
  top: 50%;
}
.single-post section.post-content .post-navigation .post-nav-item .nav-label::after {
  content: "";
  width: 5px;
  height: 5px;
  border: 1px solid #7e7e7e;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-2px) rotate(45deg);
}
.single-post section.post-content .post-navigation .post-nav-item .nav-title {
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 0;
}
.single-post section.post-content .post-navigation .post-nav-item.post-nav-prev {
  grid-column: 1;
}
.single-post section.post-content .post-navigation .post-nav-item.post-nav-prev .nav-label {
  padding-left: 18px;
}
.single-post section.post-content .post-navigation .post-nav-item.post-nav-prev .nav-label::before, .single-post section.post-content .post-navigation .post-nav-item.post-nav-prev .nav-label::after {
  left: 0;
}
.single-post section.post-content .post-navigation .post-nav-item.post-nav-prev .nav-label::after {
  border-top: 0;
  border-right: 0;
}
.single-post section.post-content .post-navigation .post-nav-item.post-nav-next {
  grid-column: 2;
  text-align: right;
}
.single-post section.post-content .post-navigation .post-nav-item.post-nav-next .nav-label {
  padding-right: 18px;
}
.single-post section.post-content .post-navigation .post-nav-item.post-nav-next .nav-label::before, .single-post section.post-content .post-navigation .post-nav-item.post-nav-next .nav-label::after {
  right: 0;
}
.single-post section.post-content .post-navigation .post-nav-item.post-nav-next .nav-label::after {
  border-left: 0;
  border-bottom: 0;
}
.single-post section.post-content .post-gallery {
  max-width: 1024px;
  margin-bottom: 3rem;
}
.single-post .price-cards {
  gap: 1.5rem;
}
.single-post .price-cards .price-card {
  padding: 3rem 1.5rem;
}
.single-post .plate-highlight {
  text-align: center;
  background: #e9d07f;
  color: #ffffff;
  padding: 1.5rem;
  margin-top: 2rem;
}
.single-post .plate-highlight strong {
  font-size: 1.125rem;
  margin-bottom: 0.5rem;
  display: block;
}
.single-post .plate-highlight p {
  margin-bottom: 0;
}

.home section#hero {
  background-image: url("../img/hero-image.webp");
  background-color: #1a1a1a;
  width: 100vw;
  height: 100svh;
  min-height: 768px;
  justify-content: center;
  align-items: center;
  color: #ffffff;
  position: relative;
  padding: 0;
}
.home section#hero .container {
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.home section#hero .container .hero-content {
  max-width: 1024px;
  text-align: center;
}
.home section#hero .container .hero-content span {
  font-size: 0.875rem;
  letter-spacing: 0.2em;
  font-weight: 600;
  display: block;
  color: #e9d07f;
  margin-bottom: 1rem;
  animation: fadeIn 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.4s both;
}
.home section#hero .container .hero-content h1 {
  font-family: "Playfair Display", serif;
  font-size: clamp(3.5rem, 8vw, 7rem);
  line-height: 1;
  letter-spacing: -0.02em;
  animation: fadeInUp 1s cubic-bezier(0.4, 0, 0.2, 1) 0.6s both;
  margin-bottom: 2.5rem;
}
.home section#hero .container .hero-content p {
  font-size: 1.25rem;
  line-height: 1.75;
  margin: 0 auto 3rem;
  animation: fadeInUp 1s cubic-bezier(0.4, 0, 0.2, 1) 0.8s both;
}
.home section#hero .container .hero-content .btn {
  animation: fadeInUp 1s cubic-bezier(0.4, 0, 0.2, 1) 1.1s both;
  margin: 0 0.75rem;
}
.home section#resto-offer .container {
  max-width: 1280px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: clamp(20px, 5svw, 2.5rem);
}
.home section#resto-offer .container .offer-card {
  padding: 1.5rem 1rem;
  transition: all 0.3s ease-in-out;
}
.home section#resto-offer .container .offer-card img {
  width: 50px;
}
.home section#resto-offer .container .offer-card h3 {
  font-family: "Playfair Display", serif;
  font-weight: 600;
  font-size: 1.5rem;
  margin-block: 2rem 1rem;
}
.home section#resto-offer .container .offer-card p {
  line-height: 1.75;
  margin-block-end: 1.5rem;
  text-wrap: balance;
}
.home section#resto-offer .container .offer-card a {
  display: inline-block;
  color: #e9d07f;
  position: relative;
  padding-right: 18px;
}
.home section#resto-offer .container .offer-card a::before {
  content: "";
  width: 12px;
  height: 1px;
  background-color: #e9d07f;
  position: absolute;
  right: 0;
  top: 50%;
}
.home section#resto-offer .container .offer-card a::after {
  content: "";
  width: 5px;
  height: 5px;
  border: 1px solid #e9d07f;
  border-left: 0;
  border-bottom: 0;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-2px) rotate(45deg);
}
.home section#resto-offer .container .offer-card a:hover {
  padding-right: 22px;
}
@media (min-width: 992px) {
  .home section#resto-offer .container:hover .offer-card:not(:hover) {
    filter: grayscale(100%);
    opacity: 0.3;
  }
}
.home section#resto-about header.section-header {
  margin: 0 auto;
  text-align: left;
}
.home section#resto-about .container {
  max-width: 1024px;
}
.home section#resto-about .container .columns {
  grid-template-columns: repeat(auto-fill, minmax(380px, 1fr));
}
.home section#resto-about .container .columns .column--nth-2 {
  display: flex;
  align-items: self-end;
  justify-content: center;
}
.home section#resto-about p {
  line-height: 1.75;
  margin-bottom: 1.5rem;
}
.home section#resto-about .about-highlight {
  padding: 2.5rem;
  background: #e9d07f;
  color: #ffffff;
  margin-top: 2rem;
}
.home section#resto-about .about-highlight h3 {
  font-family: "Playfair Display", serif;
  font-weight: 600;
  font-size: 1.5rem;
  margin-bottom: 1rem;
}
.home section#resto-about .about-highlight p {
  color: #1a1a1a;
}
.home section#resto-about .about-stats {
  text-align: center;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0.7) 100%);
  backdrop-filter: blur(10px);
  border: 2px solid #e5e5e5;
  border-radius: 5px;
  padding: 3rem 2.5rem;
  transition: all 0.3s ease-in-out;
  position: relative;
  overflow: hidden;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}
.home section#resto-about .about-stats em {
  font-family: "Playfair Display", serif;
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 600;
  color: #e9d07f;
  margin-bottom: 0.5rem;
  font-style: unset;
  display: block;
}
.home section#resto-about .about-stats span {
  text-wrap: nowrap;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.home section#resto-about .about-stats p {
  font-size: 0.875rem;
  margin-bottom: 2rem;
  color: #7e7e7e;
}
.home section#resto-about .about-stats .btn {
  display: block;
}
.home section#resto-about .about-stats .btn:first-of-type {
  margin-bottom: 1rem;
}
.home section#resto-about .about-stats::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: #e9d07f;
  transition: all 0.3s ease-in-out;
}
.home section#resto-menu {
  background: #1a1a1a;
  color: #ffffff;
}
.home section#resto-menu .container {
  max-width: 1280px;
  text-align: center;
}
.home section#resto-menu .container .menu-card-list {
  text-align: left;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(380px, 1fr));
  grid-column-gap: 4rem;
  grid-row-gap: 4rem;
  margin: 4rem 0 5rem;
}
.home section#resto-menu .container .menu-card-list .menu-card-list-item--header {
  display: flex;
  gap: clamp(5px, 3svw, 1rem);
  align-items: center;
  margin-bottom: 1.5rem;
  font-family: "Playfair Display", serif;
}
.home section#resto-menu .container .menu-card-list .menu-card-list-item--header .title {
  font-family: "Playfair Display", serif;
  margin-bottom: 0;
  line-height: 1;
  flex-shrink: 0;
  font-size: clamp(1.125rem, 4svw, 1.5rem);
}
.home section#resto-menu .container .menu-card-list .menu-card-list-item--header .line {
  line-height: 1;
  flex: 1;
  border-bottom-style: double;
  border-bottom-width: 2px;
  flex-basis: 1rem;
}
.home section#resto-menu .container .menu-card-list .menu-card-list-item--header .price {
  font-size: clamp(1.125rem, 4svw, 1.5rem);
  text-align: right;
  line-height: 1;
  flex-shrink: 0;
  color: #e9d07f;
}
.home section#resto-menu .container .menu-card-list .menu-card-list-item--header .price span {
  display: inline-block;
}
.home section#resto-menu .container .menu-card-list .menu-card-list-item--description {
  margin: 0;
  line-height: 1.75;
  font-size: 0.875rem;
  padding-right: clamp(2rem, 11svw, 3.5rem);
  text-wrap: pretty;
}
.home section#resto-delivery header.section-header {
  margin: 0 auto;
  text-align: left;
}
.home section#resto-delivery .container {
  max-width: 1024px;
}
.home section#resto-delivery .container .columns {
  grid-template-columns: repeat(auto-fill, minmax(380px, 1fr));
}
.home section#resto-delivery .resto-map {
  aspect-ratio: 4/5;
}
.home section#resto-delivery .resto-delivery-content p {
  line-height: 1.75;
  margin-bottom: 2.5rem;
}
.home section#resto-delivery .resto-delivery-content ul.delivery-cities {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2.5rem;
}
.home section#resto-delivery .resto-delivery-content ul.delivery-cities li {
  padding: 0.75rem 1.25rem 0.75rem 2.25rem;
  border: 1px solid #1a1a1a;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1;
  transition: all 0.3s ease-in-out;
  position: relative;
}
.home section#resto-delivery .resto-delivery-content ul.delivery-cities li::before {
  font-family: dashicons;
  content: "\f102";
  line-height: 1;
  position: absolute;
  left: 1rem;
}
.home section#resto-delivery .resto-delivery-content ul.delivery-cities li:hover {
  background: #e9d07f;
  color: #ffffff;
  border-color: #e9d07f;
  transform: translateY(-2px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}
.home section#resto-delivery .resto-delivery-content a {
  display: inline-block;
  color: #e9d07f;
  position: relative;
  padding-right: 18px;
}
.home section#resto-delivery .resto-delivery-content a::before {
  content: "";
  width: 12px;
  height: 1px;
  background-color: #e9d07f;
  position: absolute;
  right: 0;
  top: 50%;
}
.home section#resto-delivery .resto-delivery-content a::after {
  content: "";
  width: 5px;
  height: 5px;
  border: 1px solid #e9d07f;
  border-left: 0;
  border-bottom: 0;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-2px) rotate(45deg);
}
.home section#resto-delivery .resto-delivery-content a:hover {
  padding-right: 22px;
}
.home section#news .container {
  max-width: 1280px;
  text-align: center;
}
.home section#news .container .news-grid {
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2.5rem;
  margin-top: 4rem;
}
.home section#news .container .news-grid article.news-item {
  display: flex;
  flex-direction: column;
  text-align: left;
  gap: 0;
}
.home section#news .container .news-grid article.news-item .news-image-wrapper {
  height: 300px;
}
.home section#news .container .news-grid article.news-item .news-image-wrapper time {
  background: #ffffff;
  color: #1a1a1a;
  padding: 0.5rem 1.25rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  position: absolute;
  bottom: 2rem;
  left: 1rem;
  transition: all 0.3s ease-in-out;
}
.home section#news .container .news-grid article.news-item .news-content {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 3rem;
}
.home section#news .container .news-grid article.news-item .news-content h3 {
  font-size: 1.5rem;
}
.home section#news .container .news-grid article.news-item .news-content p {
  margin-bottom: 1.5rem;
  flex: 1;
}
.home section#news .container .news-grid article.news-item .news-content .news-link {
  align-self: flex-start;
  display: inline-block;
  color: #e9d07f;
  position: relative;
  padding-right: 18px;
}
.home section#news .container .news-grid article.news-item .news-content .news-link::before {
  content: "";
  width: 12px;
  height: 1px;
  background-color: #e9d07f;
  position: absolute;
  right: 0;
  top: 50%;
}
.home section#news .container .news-grid article.news-item .news-content .news-link::after {
  content: "";
  width: 5px;
  height: 5px;
  border: 1px solid #e9d07f;
  border-left: 0;
  border-bottom: 0;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-2px) rotate(45deg);
}
.home section#news .container .news-grid article.news-item .news-content .news-link:hover {
  padding-right: 22px;
}
.home section#news .container .news-grid article.news-item.featured {
  grid-column: span 2;
}
.home section#news .container .news-grid article.news-item.featured .news-image-wrapper {
  height: 400px;
}
@media (min-width: 992px) {
  .home section#news .container .news-grid article.news-item:hover .news-image-wrapper time {
    bottom: 2.3rem;
    left: 0.75rem;
  }
}
.home section#news .container a.tertiary {
  margin-top: 4rem;
}

.widget.sticky {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 9999;
}
.widget.sticky .resto-status {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 10px 16px 10px 14px;
  background: #1a1a1a;
  color: #ffffff;
  border-radius: 999px;
  font-size: 0.75rem;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  opacity: 0;
  animation: 0.3s 2s fadeInUp both;
}
.widget.sticky .resto-status .resto-status-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #33f100;
  position: relative;
}
.widget.sticky .resto-status .resto-status-dot::after {
  content: "";
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  background: #33f100;
  opacity: 0.55;
  animation: pulse 1.8s ease-out infinite;
}
.widget.sticky .resto-status .resto-status-text {
  margin: 0;
  line-height: 1;
}
.widget.sticky .resto-status .resto-status-text .muted {
  color: #7e7e7e;
}
.widget.sticky .resto-status.is-closed .resto-status-dot {
  background: #f10000;
}
.widget.sticky .resto-status.is-closed .resto-status-dot::after {
  background: #f10000;
}
.widget.recommended {
  background-color: #e9d07f;
  padding: 5rem 20px;
  text-align: center;
  overflow: hidden;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 2.5rem;
}
.widget.recommended .widget-title {
  font-family: "Playfair Display", serif;
  margin-bottom: 0;
  font-size: clamp(2.5rem, 4vw, 3rem);
  letter-spacing: -0.02em;
  flex-shrink: 0;
}
.widget.recommended .widget-title em {
  font-style: italic;
  font-weight: 600;
}
.widget.recommended .text-slider-wrapper {
  overflow: hidden;
  font-size: clamp(1.25rem, 4svw, 1.5rem);
  letter-spacing: -0.02em;
  flex-shrink: 0;
  padding-bottom: 3px;
  border-bottom: 1px solid;
}
.widget.recommended .text-slider-wrapper .text-slider {
  font-family: "Playfair Display", serif;
  position: relative;
}
.widget.recommended .text-slider-wrapper .text-slider .text-slider-item {
  padding: 0.2rem 1rem;
  display: block;
  position: absolute;
  left: 0;
  right: 0;
  margin: 0 auto;
  transform: translateY(6rem);
  text-wrap: nowrap;
}
.widget.recommended .text-slider-wrapper .text-slider .text-slider-item.current {
  transform: translateY(0);
}
.widget.recommended .recommended-btn {
  display: inline-block;
  font-weight: 600;
  border: 1px solid #1a1a1a;
  background-color: #1a1a1a;
  color: #e9d07f;
  text-transform: uppercase;
  padding: 1.2rem 3rem;
  transition: all 0.3s ease-in-out;
  text-align: center;
  border-radius: 5px;
  letter-spacing: 0.05em;
  font-size: 0.875rem;
}
.widget.recommended .recommended-btn:hover {
  transform: translateY(-5px);
  background-color: rgb(31.1, 31.1, 31.1);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}
.widget.loyalty {
  background-color: #e9d07f;
  padding: 5rem 1.5rem;
  position: relative;
  overflow: hidden;
  justify-content: center;
}
.widget.loyalty .widget-content {
  border: 1px dashed black;
  padding: 5rem 3rem;
  position: relative;
  text-align: center;
  max-width: 768px;
  margin: 0 auto;
  position: relative;
}
.widget.loyalty .widget-content .widget-title {
  font-family: "Playfair Display", serif;
  color: #1a1a1a;
  margin: 0;
  font-size: clamp(2.5rem, 4vw, 3rem);
  letter-spacing: -0.02em;
  margin-bottom: 2rem;
}
.widget.loyalty .widget-content .widget-title em {
  padding: 0.2rem 1rem;
  display: inline-block;
  text-transform: uppercase;
  background-color: #ffffff;
}
.widget.loyalty .widget-content .widget-text {
  font-size: clamp(1rem, 3svw, 1.25rem);
  line-height: 1.75;
  margin-bottom: 3rem;
}
.widget.loyalty .widget-content .loyalty-btn {
  display: inline-block;
  font-weight: 600;
  border: 1px solid #1a1a1a;
  background-color: #1a1a1a;
  color: #e9d07f;
  text-transform: uppercase;
  padding: 1.2rem 3rem;
  transition: all 0.3s ease-in-out;
  text-align: center;
  border-radius: 5px;
  letter-spacing: 0.05em;
  font-size: 0.875rem;
}
.widget.loyalty .widget-content .loyalty-btn:hover {
  transform: translateY(-5px);
  background-color: rgb(31.1, 31.1, 31.1);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}
.widget.loyalty .widget-content .scissors {
  width: 40px;
  height: 40px;
  background-image: url("../img/scissors.webp");
  background-size: contain;
  position: absolute;
  animation: moveScissors 15s steps(20) infinite;
}
.widget.loyalty .loyalty-point {
  position: absolute;
  width: 70px;
  height: 70px;
  background-image: url("../img/loyalty-point.webp");
  background-size: contain;
}
.widget.resto-map {
  background-position: 50% 50%;
  cursor: pointer;
  filter: grayscale(100%);
  background-size: cover;
  height: 100%;
  width: 100%;
  min-width: 200px;
}
.widget.resto-map.bg-parallax {
  opacity: 0;
}
.widget.resto-map a {
  display: block;
  width: 100%;
  height: 100%;
  position: relative;
  color: #ffffff;
  cursor: pointer;
}
.widget.resto-map a::before {
  content: "";
  width: 100%;
  display: block;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-color: #1a1a1a;
  opacity: 0;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}
.widget.resto-map a span {
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% 0;
  opacity: 0;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}
.widget.resto-map a span::before {
  font-family: dashicons;
  content: "\f231";
  position: absolute;
  top: auto;
  left: 50%;
  translate: -50% calc(-2rem - 12px);
  font-size: 2rem;
  font-weight: 100;
  cursor: pointer;
}
.widget.resto-map a:hover::before {
  opacity: 0.6;
}
.widget.resto-map a:hover span {
  opacity: 1;
}
.widget.resto-map::before {
  content: none;
}
.widget.instagram-recent-posts {
  display: flex;
  background-color: #f5f5f5;
}
.widget.instagram-recent-posts .instagram-recent-post {
  flex: 1;
}
.widget.instagram-recent-posts .instagram-recent-post .post-image-wrapper {
  position: relative;
  display: block;
}
.widget.instagram-recent-posts .instagram-recent-post .post-image-wrapper > img {
  aspect-ratio: 1/1;
  object-fit: cover;
  max-width: 100%;
  display: block;
}
.widget.instagram-recent-posts .instagram-recent-post .post-image-wrapper .post-counters {
  color: #ffffff;
  position: absolute;
  top: 50%;
  left: 50%;
  font-size: 1.125rem;
  translate: -50% -50%;
  line-height: 1;
  opacity: 0;
  transition: all 0.3s ease-in-out;
}
.widget.instagram-recent-posts .instagram-recent-post .post-image-wrapper .post-counters span {
  display: inline-block;
}
.widget.instagram-recent-posts .instagram-recent-post .post-image-wrapper .post-counters span::before {
  font-family: dashicons;
  vertical-align: middle;
  margin-right: 3px;
  font-size: 1.125rem;
}
.widget.instagram-recent-posts .instagram-recent-post .post-image-wrapper .post-counters span.like-count {
  margin-right: 6px;
}
.widget.instagram-recent-posts .instagram-recent-post .post-image-wrapper .post-counters span.like-count::before {
  content: "\f487";
}
.widget.instagram-recent-posts .instagram-recent-post .post-image-wrapper .post-counters span.comment-count::before {
  margin-right: 1px;
  content: "\f101";
}
.widget.instagram-recent-posts .instagram-recent-post .post-image-wrapper::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #1a1a1a;
  opacity: 0;
  transition: all 0.3s ease-in-out;
}
.widget.instagram-recent-posts .instagram-recent-post:hover .post-image-wrapper .post-counters {
  opacity: 1;
}
.widget.instagram-recent-posts .instagram-recent-post:hover .post-image-wrapper::before {
  opacity: 0.8;
}

@media (max-width: 992px) {
  .price-cards {
    grid-template-columns: 1fr;
    margin: 3rem 0 2rem;
  }
  .price-cards .price-card {
    max-width: 50vw;
    min-width: 320px;
    margin: 0 auto;
  }
  .header .hamburger-btn {
    display: block;
    width: 25px;
    height: 20px;
    background: transparent;
    cursor: pointer;
  }
  .header .nav-left {
    position: absolute;
    top: 0;
    left: 0;
    text-align: center;
    padding-top: 102px;
    height: 100vh;
    width: 100%;
    backdrop-filter: grayscale(70%) blur(8px);
    background-color: rgba(8, 8, 8, 0.8);
    overflow: hidden;
    visibility: hidden;
    transform: translateY(-35px);
    opacity: 0;
    transition: opacity 0.3s ease-in-out, transform 0.3s ease-in-out, visibility 0s 0.3s;
  }
  .header .nav-left ul {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 2rem;
    padding: 0;
    height: 100%;
    align-items: center;
  }
  .header .nav-left ul li {
    padding: 1.5rem 20px;
  }
  .header .nav-left ul li a {
    text-transform: none;
    font-size: 1.125rem;
  }
  .header .nav-left ul li a::after {
    content: none;
  }
  .header .nav-left ul li:first-child {
    display: initial;
  }
  .header .nav-left ul li.current-menu-item a {
    font-weight: 600;
    letter-spacing: 1px;
  }
  .header .nav-left.open {
    opacity: 1;
    visibility: visible;
    transition: opacity 0.3s ease-in-out, transform 0.3s ease-in-out, visibility 0s;
  }
  .header .header-right .lang-toggle a {
    font-size: 1.5rem;
  }
  .header.fixed .nav-left {
    padding-top: 87px;
    transform: translateY(-22px);
  }
  .footer {
    font-size: 1rem;
  }
  .footer .container {
    max-width: 1440px;
  }
  .footer .container .columns {
    column-gap: 0;
    row-gap: 4rem;
    flex-wrap: wrap;
  }
  .footer .container .columns .column {
    padding: 0 2rem;
  }
  .footer .container .columns .column.company-logo {
    flex: 1 1 100%;
  }
  .footer .container .columns .column.company-logo a {
    margin: 0 auto;
  }
  .footer .container .columns .column.company-address {
    flex: 1 1 50%;
  }
  .footer .container .columns .column.company-address p:first-of-type {
    margin-bottom: 0;
  }
  .footer .container .columns .column.contact {
    flex: 1 1 50%;
  }
  .footer .container .columns .column.contact .footer-icons {
    display: inline-block;
    margin: 1rem auto 0;
  }
  .footer .container .columns .column.footer-nav {
    flex: 1 1 50%;
  }
  .footer .container .columns .column.open-hours {
    flex: 1 1 50%;
  }
  .footer .container .columns .column.open-hours ul li {
    line-height: 1.5;
  }
  .widget.recommended {
    flex-direction: column;
    gap: 2rem;
  }
  .widget.instagram-recent-posts .instagram-recent-post:nth-child(n+5) {
    display: none;
  }
  .page .page-header {
    padding: 180px 0 60px;
  }
  .page.oferta section .offer-group .offer-item {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .page.oferta section .offer-group .offer-item:nth-child(odd) .column--nth-1 {
    order: 1;
  }
  .page.oferta section .offer-group .offer-item:nth-child(odd) .column--nth-2 {
    order: 2;
  }
  .page.oferta section .offer-group .offer-item .offer-image {
    aspect-ratio: 3/2;
    height: auto;
  }
  .page.menu .page-main section.burger .container #burger-slider .slider-item {
    padding: 0 2rem;
    opacity: 1;
    filter: grayscale(0);
    transform: scale(1);
  }
  .page.aktualnosci .news-grid .news-item {
    grid-template-columns: 1fr;
  }
  .page.aktualnosci .news-grid .news-item .news-image-wrapper {
    aspect-ratio: 3/2;
    width: 100%;
  }
  .page.aktualnosci .news-grid .news-item .news-content {
    padding: 0 2.5rem 2.5rem;
  }
  .page.kontakt section#contact .columns {
    grid-template-columns: 1fr;
  }
  .page.kontakt section#contact #resto-directions-map {
    aspect-ratio: 1/1;
  }
  .home section#resto-offer .offer-cards {
    text-align: center;
  }
}
@media (max-width: 768px) {
  .cta-section .container .btn {
    width: 100%;
    margin: 0;
  }
  .cta-section .container .btn:first-of-type {
    margin: 0 0 1rem 0;
  }
  .header .header-right .call-btn {
    display: none;
  }
  .header .header-right .header-icons .icon {
    font-size: 1.75rem;
  }
  .footer .container .columns .column {
    flex: 0 0 100% !important;
    text-align: center;
  }
  .footer .container .columns .column.open-hours ul {
    margin: 0 auto;
  }
  .page.menu .page-main section.burger .container #burger-slider .slider-item {
    opacity: 0.1;
    filter: grayscale(80%);
  }
  .page.aktualnosci .news-grid .news-item .news-image-wrapper {
    aspect-ratio: auto;
    max-height: 350px;
  }
  .page.kontakt section#contact .wpcf7 form .form-row {
    grid-template-columns: 1fr;
    margin-bottom: 1.5rem;
  }
  .home section#hero .container .hero-content .btn {
    width: 100%;
    margin: 0;
  }
  .home section#hero .container .hero-content .btn:first-of-type {
    margin: 0 0 1rem 0;
  }
  .home section#resto-menu .container .btn {
    width: 100%;
  }
  .home section#resto-delivery .resto-map {
    aspect-ratio: 1/1;
  }
  .home section#news .container .news-grid article.news-item.featured {
    grid-column: span 1;
  }
  .home section#news .container > a {
    width: 100%;
  }
  .widget.recommended .recommended-btn {
    width: 100%;
  }
  .widget.loyalty .widget-content {
    text-align: center;
    flex-direction: column;
    padding: 3rem clamp(1rem, 4svw, 2rem);
    gap: 1.2rem;
  }
  .widget.loyalty .widget-content strong {
    display: block;
    font-size: 3rem;
  }
  .widget.loyalty .widget-content .loyalty-btn {
    width: 100%;
  }
  .widget.loyalty .loyalty-point {
    width: 50px;
    height: 50px;
  }
  .widget.instagram-recent-posts .instagram-recent-post:nth-child(n+4) {
    display: none;
  }
}
@media (max-width: 480px) {
  .cookie-banner .cookie-banner-inner {
    text-align: center;
  }
  .header .container {
    justify-content: flex-end;
  }
  .header .logo-wrapper {
    width: 50px;
  }
  .header .nav-left {
    padding-top: 76px;
    transform: translateY(-35px);
  }
  .header .header-right {
    display: none;
  }
  .header.fixed .nav-left {
    transform: translateY(-22px);
  }
  .home section#resto-about .container .columns {
    grid-template-columns: 1fr;
  }
  .home section#resto-menu .container .menu-card-list {
    grid-template-columns: 1fr;
  }
  .home section#resto-menu .container .menu-card-list .menu-card-list-item--header .title,
  .home section#resto-menu .container .menu-card-list .menu-card-list-item--header .price {
    font-weight: 600;
  }
  .home section#resto-delivery .container .columns {
    grid-template-columns: 1fr;
  }
  .home section#news .container .news-grid {
    grid-template-columns: 1fr;
  }
  .page .page-header {
    padding: 150px 0 45px;
  }
  .page .page-header .page-title h1 {
    font-size: 2rem;
  }
  .page.menu .page-main .accordion .accordion-inner .menu-card-list {
    grid-template-columns: auto;
    grid-row-gap: calc(2rem + 30px);
    padding: 0 10px;
  }
  .page.menu .page-main .accordion .accordion-inner .menu-card-list .menu-card-list-item--header .title,
  .page.menu .page-main .accordion .accordion-inner .menu-card-list .menu-card-list-item--header .price {
    font-weight: 600;
  }
  .page.menu .page-main .accordion .accordion-inner .menu-card-list .menu-card-sublist {
    margin-left: -1.25rem;
    margin-right: -1.25rem;
    padding: 0 10px;
  }
  .page.menu .page-main .accordion .accordion-inner .menu-card-list .menu-card-sublist .sublist {
    grid-template-columns: auto;
    grid-row-gap: calc(2rem + 30px);
    padding: 0 10px;
  }
  .page.menu .page-main .accordion .accordion-inner .menu-card-list .menu-card-sublist .sublist .sublist-item--header .title,
  .page.menu .page-main .accordion .accordion-inner .menu-card-list .menu-card-sublist .sublist .sublist-item--header .price {
    font-weight: 600;
  }
  .page.menu .page-main section.pizza .menu-card .menu-card-list {
    grid-row-gap: 2rem;
  }
  .widget.sticky {
    right: max(1rem, 15px);
  }
  .widget.loyalty {
    min-height: 100svh;
    display: flex;
    align-items: center;
  }
  .widget.loyalty .loyalty-point {
    width: 50px;
    height: 50px;
  }
  .widget.instagram-recent-posts .instagram-recent-post:nth-child(n+3) {
    display: none;
  }
  .footer .copyrights {
    text-align: center;
    line-height: 1.5;
  }
  .footer .copyrights .container {
    flex-direction: column;
  }
  .footer .copyrights .container p:last-child {
    text-align: center;
  }
}

/*# sourceMappingURL=theme-styles.css.map */
