@charset "UTF-8";
@font-face {
  font-family: Robelia;
  src: url(../../Fonts/Robelia/Robelia.woff) format("woff"), url(../../Fonts/Robelia/Robelia.ttf) format("truetype"), url(../../Fonts/Robelia/Robelia.otf) format("opentype");
}
@font-face {
  font-family: Poppins;
  src: url(../../Fonts/poppins/Poppins-Black.ttf);
}
@font-face {
  font-family: Poppinsregular;
  src: url(../../Fonts/poppins/Poppins-Regular.ttf);
}
.main-color {
  color: #f3c650;
}

body {
  font-family: Robelia;
  color: #fff8e8;
  background-color: #0C0B09;
  overflow-x: hidden;
}

html {
  scroll-behavior: smooth;
}

.valentine-gif {
  max-width: 100px;
}
@media (max-width: 480px) {
  .valentine-gif {
    max-width: 60px;
  }
}

#myModal {
  color: #000;
}

.snowflake {
  position: absolute;
  width: 27px;
  height: 27px;
  background: transparent;
  z-index: 999;
  background-image: url(../../imgs/snow.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.fade-left-hero {
  animation: fade-left-hero 2s ease-in-out;
  -webkit-animation: fade-left-hero 2s ease-in-out;
}

.fade-left-hero2 {
  animation: fade-left-hero 2.5s ease-in-out;
  -webkit-animation: fade-left-hero 2.5s ease-in-out;
}

.fade-left-hero3 {
  animation: fade-left-hero 3s ease-in-out;
  -webkit-animation: fade-left-hero 3s ease-in-out;
}

@keyframes fade-left-hero {
  0% {
    transform: translateX(-150px);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}
.reveal {
  position: relative;
  opacity: 0;
}

.reveal.active {
  opacity: 1;
}

.reveal.active .fade-left {
  animation: fade-left 1.4s ease-in-out;
  -webkit-animation: fade-left 1.4s ease-in-out;
}
@keyframes fade-left {
  0% {
    transform: translateX(-150px);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}
.reveal.active .fade-right {
  animation: fade-right 1s ease-in-out;
}
@keyframes fade-right {
  0% {
    transform: translateX(150px);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}
.reveal.active .fade-top {
  animation: fade-top 1.4s ease-in-out;
  -webkit-animation: fade-top 1.4s ease-in-out;
}
@keyframes fade-top {
  0% {
    transform: translateY(-100px);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}
.reveal.active .fade-bottom {
  animation: fade-bottom 1.4s ease-in-out;
  -webkit-animation: fade-bottom 1.4s ease-in-out;
}
.reveal.active .fade-bottom1 {
  animation: fade-bottom 2s ease-in-out;
  -webkit-animation: fade-bottom 2s ease-in-out;
}
@keyframes fade-bottom {
  0% {
    transform: translateY(100px);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}
.reveal.active .top {
  animation: top 0.5s ease-in;
}
@keyframes top {
  0% {
    transform: translateY(-150px);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

/* Customize  Color Of Selection  */
::selection {
  background-color: #f3c650;
  color: white;
}

::-moz-selection {
  background-color: #f3c650;
  color: white;
}

/* Customize  Scrollbar  */
::-webkit-scrollbar {
  width: 12px;
}

::-webkit-scrollbar-thumb {
  background: #f3c650;
  border-radius: 10px;
}

.openmenuu {
  width: 100% !important;
}

.displayy {
  display: block !important;
}
@media (min-width: 768px) {
  .displayy {
    display: flex !important;
  }
}

header {
  position: relative;
  z-index: 100;
  padding: 0;
  background: #0c0b09;
  color: #f4efe4;
  border-bottom: 1px solid rgba(232, 193, 90, 0.1);
}
header .navbar-brand {
  font-size: 1.1rem !important;
  color: #f4efe4;
}
header .navbar-nav {
  align-items: center;
}
@media (min-width: 1200px) {
  header .navbar-nav {
    flex-direction: row;
  }
}
header .dropdown-toggle::after {
  display: none;
}
header .shop-name {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #0c0b09;
  padding: 14px 18px;
}
@media (max-width: 756px) {
  header .shop-name {
    background: transparent;
    padding: 0;
    justify-content: flex-start;
  }
  header .shop-name::after {
    display: none;
  }
}
header .shop-name .shop-logo {
  display: block;
  width: 110px;
  height: auto;
  margin-left: 30px;
  border-radius: 12px;
  object-fit: contain;
  transition: transform 0.35s ease, opacity 0.35s ease;
}
header .shop-name .shop-logo:hover {
  transform: translateY(-1px);
  opacity: 0.92;
}
@media (max-width: 756px) {
  header .shop-name .shop-logo {
    width: 90px;
    max-width: 100px;
    border-radius: 10px;
  }
}
header section.menu-section {
  position: relative;
  background: #0c0b09;
}
header section.menu-section .navbar-expand-lg .navbar-nav {
  align-items: center;
}
header section.menu-section nav {
  min-height: 74px;
  display: flex;
  align-items: center;
  padding: 10px 24px;
}
@media (min-width: 1200px) {
  header section.menu-section nav {
    min-height: 78px;
    padding: 8px 32px 8px 0;
  }
}
@media (max-width: 991.98px) {
  header section.menu-section nav {
    padding: 10px 16px;
  }
}
header section.menu-section nav li {
  margin-left: 28px;
}
@media (max-width: 1200px) {
  header section.menu-section nav li {
    margin-left: 8px;
  }
}
header section.menu-section nav li a.nav-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 10px 8px !important;
  color: #e8c15a !important;
  font-size: 17px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
  transition: color 0.3s ease, opacity 0.3s ease;
}
header section.menu-section nav li a.nav-link::after {
  content: "";
  position: absolute;
  left: 8px;
  right: 8px;
  bottom: 2px;
  height: 1px;
  background: #e8c15a;
  transform: scaleX(0);
  transform-origin: right center;
  transition: transform 0.4s cubic-bezier(0.19, 1, 0.22, 1);
}
header section.menu-section nav li a.nav-link:hover, header section.menu-section nav li a.nav-link:focus {
  color: #f4d77a !important;
}
header section.menu-section nav li a.nav-link:hover::after, header section.menu-section nav li a.nav-link:focus::after {
  transform: scaleX(1);
  transform-origin: left center;
}
@media (max-width: 1200px) {
  header section.menu-section nav li a.nav-link {
    font-size: 12px;
    letter-spacing: 1.2px;
  }
}
header section.menu-section nav li a.nav-link svg {
  width: 12px;
  height: 12px;
  margin-left: 2px;
}
header section.menu-section nav li a.nav-link svg g {
  fill: #e8c15a;
}
header section.menu-section nav .dropdown-menu {
  min-width: 210px;
  margin-top: 10px;
  padding: 8px;
  background: #17130f;
  border: 1px solid rgba(232, 193, 90, 0.18);
  border-radius: 0;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.42), inset 0 1px 0 rgba(255, 255, 255, 0.025);
}
header section.menu-section nav .dropdown-menu .dropdown-item {
  padding: 11px 13px;
  color: #e8c15a;
  background: transparent;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 1px;
  transition: color 0.25s ease, background-color 0.25s ease, padding-left 0.25s ease;
}
header section.menu-section nav .dropdown-menu .dropdown-item:hover, header section.menu-section nav .dropdown-menu .dropdown-item:focus {
  padding-left: 17px;
  color: #17130f;
  background: #e8c15a;
}
header section.menu-section nav .navbar-toggler {
  position: relative;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid rgba(232, 193, 90, 0.25);
  border-radius: 0;
  background: rgba(255, 255, 255, 0.015);
  color: #e8c15a;
  line-height: 1;
  transition: border-color 0.3s ease, background-color 0.3s ease;
}
header section.menu-section nav .navbar-toggler:hover, header section.menu-section nav .navbar-toggler:focus {
  border-color: rgba(232, 193, 90, 0.65);
  background: rgba(232, 193, 90, 0.06);
  outline: none;
  box-shadow: none;
}
header section.menu-section nav .navbar-toggler-icon {
  width: 20px;
  height: 14px;
  background-image: none !important;
  position: relative;
}
header section.menu-section nav .navbar-toggler-icon span {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 1px;
  background: #e8c15a;
}
header section.menu-section nav .header-links {
  justify-content: flex-end;
  align-items: center;
  gap: 4px;
}
header section.menu-section .login-btn {
  color: #f4efe4 !important;
}
header section.menu-section .login-btn:hover {
  color: #e8c15a !important;
}
@media (min-width: 768px) {
  header .dropdown:hover .dropdown-menu {
    display: block;
    margin-top: 0;
  }
}
header .buttons {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 0;
}
header .buttons a.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  min-width: 118px;
  margin-bottom: 0;
  padding: 0 16px;
  border: 1px solid #e8c15a;
  border-radius: 0;
  background: #e8c15a;
  color: #0c0b09;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  overflow: hidden;
  transition: color 0.3s ease, background-color 0.3s ease, border-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}
header .buttons a.btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.12);
  transform: translateX(-105%);
  transition: transform 0.45s cubic-bezier(0.19, 1, 0.22, 1);
}
header .buttons a.btn span,
header .buttons a.btn i {
  position: relative;
  z-index: 1;
}
header .buttons a.btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.24);
}
header .buttons a.btn:hover::before {
  transform: translateX(0);
}
header .buttons a.btn:nth-child(2) {
  background: transparent;
  color: #e8c15a;
}
header .buttons a.btn:nth-child(2):hover {
  background: #e8c15a;
  color: #0c0b09;
}
@media (max-width: 991.98px) {
  header .buttons {
    margin-top: 8px;
    padding-bottom: 8px;
  }
}
@media (max-width: 575.98px) {
  header .buttons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    width: 100%;
    padding-top: 6px;
  }
  header .buttons a.btn {
    width: 100%;
    min-width: 0;
    min-height: 44px;
  }
}
@media (max-width: 991.98px) {
  header section.menu-section nav {
    flex-wrap: wrap;
  }
  header section.menu-section .navbar-collapse {
    margin-top: 12px;
    padding-top: 10px;
    border-top: 1px solid rgba(232, 193, 90, 0.1);
  }
  header section.menu-section .navbar-nav {
    align-items: flex-start !important;
  }
  header section.menu-section .navbar-nav li {
    width: 100%;
    margin-left: 0;
  }
  header section.menu-section .navbar-nav li a.nav-link {
    display: flex;
    justify-content: space-between;
    width: 100%;
    padding: 13px 4px !important;
  }
  header section.menu-section .navbar-nav li a.nav-link::after {
    left: 4px;
    right: 4px;
    bottom: 4px;
  }
  header section.menu-section .dropdown-menu {
    margin: 0 0 5px;
    padding: 4px;
    box-shadow: none;
  }
  header .shop-name .shop-logo {
    width: 88px;
  }
}

section.hero-section {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  z-index: 3;
  padding: 100px 0 100px 0;
  color: #fff;
  background-color: rgba(0, 0, 0, 0.532);
}
@media (max-width: 1500px) {
  section.hero-section {
    padding: 80px 0 80px 0;
  }
}
@media (max-width: 991px) {
  section.hero-section {
    background-color: rgba(0, 0, 0, 0.675);
  }
}
@media (max-width: 756px) {
  section.hero-section {
    padding: 40px 0;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  section.hero-section {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
  }
}
section.hero-section .logo img {
  max-width: 120px;
  border-radius: 20px;
}
@media (max-width: 756px) {
  section.hero-section .logo img {
    max-width: 80px;
  }
}
section.hero-section div.inner-content h1 {
  text-transform: capitalize;
  margin-bottom: 15px;
  font-size: 5.5rem;
  text-align: center;
  font-family: Robelia;
  line-height: 99px;
}
@media (max-width: 991px) {
  section.hero-section div.inner-content h1 {
    font-size: 4rem;
    line-height: 60px;
  }
}
@media (max-width: 480px) {
  section.hero-section div.inner-content h1 {
    font-size: 2.2rem;
    line-height: 45px;
  }
}
section.hero-section div.inner-content h1 .shop-off {
  text-decoration: underline;
  text-decoration-color: #f3c650;
}
section.hero-section div.inner-content p {
  font-size: 1.2rem;
}
@media (max-width: 480px) {
  section.hero-section div.inner-content p {
    font-size: 1rem;
  }
}
section.hero-section div.inner-content a.btn {
  background-color: #171410;
  border: 1px solid rgba(243, 198, 80, 0.5803921569);
  color: #fff;
  border-radius: 5px !important;
  padding: 12px 40px;
  margin: 10px 0;
  font-weight: bold;
  font-size: 1.2rem;
  max-width: max-content;
}
@media (max-width: 991px) {
  section.hero-section div.inner-content a.btn {
    margin: 10px;
    align-items: center;
  }
}
section.hero-section div.inner-content a.btn + .btn {
  margin-left: 12px;
}
@media (max-width: 576px) {
  section.hero-section div.inner-content a.btn + .btn {
    margin-left: 8px;
  }
}
section.hero-section div.inner-content a.btn:hover {
  color: #f3c650;
  border-color: #f3c650;
  background-color: #fff;
  box-shadow: rgba(243, 198, 80, 0.3) 0px 7px 29px 0px;
}
section.hero-section div.inner-content a.btn.main-btn--outline {
  background-color: #fff;
  color: #0C0B09;
  border: 1px solid #f3c650;
}
section.hero-section div.inner-content a.btn.main-btn--outline:hover {
  color: #f3c650;
  border-color: rgba(243, 198, 80, 0.5803921569);
  background-color: rgba(12, 11, 9, 0.631372549);
}
@media (min-width: 992px) {
  section.hero-section div.inner-content a.btn {
    margin-top: 18px;
  }
}
@media (max-width: 768px) {
  section.hero-section div.inner-content a.btn {
    padding: 10px 15px;
  }
}
section.hero-section div.inner-content a {
  color: #fff;
  font-size: 1.2rem;
  font-weight: 600;
  text-decoration: dotted;
  padding-bottom: 30px;
  transition: all 0.2s ease-in;
}
section.hero-section div.inner-content a:hover {
  color: #f3c650;
  font-size: 1.3rem;
}

/* special to try */
section.special {
  color: #fff;
  text-align: center;
  padding: 80px;
  margin: 0 80px 0 0;
  position: relative;
}
@media (max-width: 991px) {
  section.special {
    padding: 40px;
    margin: 0 40px 0 0;
  }
}
@media (max-width: 576px) {
  section.special {
    padding: 40px 24px;
    margin: 0 20px 0 0;
  }
}
section.special:after {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  right: 0;
  background-image: url(../../imgs/hero/turkish-pattern-horizontal.jpg);
  background-repeat: repeat-x;
  background-position: center;
  background-size: contain;
  width: 100%;
  height: 45px;
}
@media (max-width: 1200px) {
  section.special:after {
    height: 24px;
  }
}
section.special::before {
  position: absolute;
  content: "";
  top: 0;
  bottom: 0;
  right: 0;
  background: linear-gradient(rgba(16, 14, 11, 0.7), rgba(16, 14, 11, 0.7)), url(../../imgs/hero/wallpaper.jpg);
  background-repeat: repeat-y;
  background-position: center;
  background-size: contain;
  height: 100%;
  width: 45px;
}
@media (max-width: 1200px) {
  section.special::before {
    width: 24px;
  }
}
section.special ul {
  padding: 0;
}
section.special ul li {
  min-height: 600px;
  align-self: center;
  display: flex;
  margin: auto;
  justify-content: center;
  flex-direction: column;
  text-align: left;
}
@media (max-width: 991px) {
  section.special ul li {
    min-height: unset;
  }
}
section.special ul li h2 {
  text-align: left;
  margin-bottom: 24px;
  font-family: Robelia;
  font-size: 3rem;
}
@media (max-width: 1200px) {
  section.special ul li h2 {
    font-size: 2rem;
  }
}
@media (max-width: 576px) {
  section.special ul li h2 {
    font-size: 1.6rem;
    margin-right: 5px;
  }
}
section.special ul li p {
  max-width: 95%;
  font-size: 19px;
}
@media (max-width: 576px) {
  section.special ul li p {
    font-size: 1rem;
  }
}
section.special ul li img {
  max-width: 100%;
  display: flex;
  margin: auto;
  justify-content: center;
  border-radius: 16px;
  -webkit-border-radius: 16px;
  -moz-border-radius: 16px;
  -ms-border-radius: 16px;
  -o-border-radius: 16px;
  margin-top: -100px;
  margin-right: 5px;
}
@media (max-width: 991px) {
  section.special ul li img {
    margin-top: 20px;
  }
}
section.special ul li a.btn {
  margin: 0;
  justify-content: flex-start;
  max-width: max-content;
  text-decoration: underline;
  font-size: 25px;
  color: #f3c650;
}
@media (max-width: 576px) {
  section.special ul li a.btn {
    font-size: 18px;
  }
}

.border-right {
  border-color: #f3c650 !important;
  border-width: 4px !important;
  padding-right: 15px;
}
@media (max-width: 991px) {
  .border-right {
    border-color: transparent !important;
    border-width: 0 !important;
    padding-right: 0;
  }
}

#highlights {
  background: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.4)), url(../../imgs/special/special-bg.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  padding: 7rem 0;
  min-height: 100vh;
}
#highlights .section-header {
  text-align: center;
  margin-bottom: 4rem;
}
#highlights .cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
@media (max-width: 991px) {
  #highlights .cards-grid {
    display: flex;
    flex-direction: column;
  }
}
#highlights .card {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3/5;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  cursor: pointer;
  text-align: center;
  border-radius: 10px;
}
@media (max-width: 991px) {
  #highlights .card {
    aspect-ratio: 5/3;
  }
}
@media (max-width: 480px) {
  #highlights .card {
    aspect-ratio: 1/1;
  }
}
#highlights .card:hover .card-bg {
  transform: scale(1.06);
}
#highlights .card-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1);
  transition: transform 0.6s;
  background-position: 70%;
}
#highlights .card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26, 20, 16, 0.9) 0%, rgba(26, 20, 16, 0.262) 55%, transparent 100%);
}
#highlights .card-content {
  position: relative;
  z-index: 1;
  padding: 2rem 1.75rem;
}
#highlights .card-label {
  text-transform: capitalize;
  color: #fff;
  margin-bottom: 0.4rem;
}
#highlights .card-title {
  font-size: 30px;
  font-weight: 900;
  color: #fff;
  line-height: 1;
  margin-bottom: 1.25rem;
}
@media (max-width: 991px) {
  #highlights .card-title {
    font-size: 50px;
  }
}
@media (max-width: 576px) {
  #highlights .card-title {
    font-size: 35px;
    text-shadow: 1px 1px 10px #000;
  }
}
#highlights .card-link {
  font-size: 16px;
  text-transform: uppercase;
  color: #000;
  border-radius: 10px;
  background-color: #f3c650;
  border: 1px solid rgba(255, 255, 255, 0.4);
  padding: 12px 40px;
  display: inline-block;
  transition: all 0.9s;
}
#highlights .card-link:hover {
  background: #fff;
  border-color: #fff;
}
#highlights .deals_wrapper {
  background-color: #f3c650;
  align-items: center;
  margin: 20px auto;
  padding: 24px;
  color: #000;
  border-radius: 20px;
  display: flex;
  justify-content: space-between;
}
@media (max-width: 991px) {
  #highlights .deals_wrapper {
    flex-direction: column;
    text-align: center;
    justify-content: center;
  }
}
@media (max-width: 991px) {
  #highlights .deals_wrapper h2 {
    font-size: 1.5rem;
  }
}
#highlights .deals_wrapper a.btn {
  background-color: #000;
  padding: 17px 50px;
  color: #f3c650;
  border-radius: 10px;
}

section.about-us {
  position: relative;
  width: 100%;
  min-height: 100vh;
  min-height: 100svh;
  overflow: hidden;
  isolation: isolate;
  background: #080706;
  color: #f4efe4;
}
section.about-us video {
  position: absolute;
  z-index: -3;
  inset: -4%;
  width: 108%;
  height: 108%;
  object-fit: cover;
  filter: brightness(0.72) saturate(0.98) contrast(1.08);
  transform: scale(1.03);
  pointer-events: none;
  user-select: none;
}
section.about-us::before {
  content: "";
  position: absolute;
  z-index: -2;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(8, 7, 6, 0.02) 0%, rgba(8, 7, 6, 0.15) 45%, rgba(8, 7, 6, 0.45) 100%), linear-gradient(90deg, rgba(8, 7, 6, 0.18) 0%, rgba(8, 7, 6, 0.05) 50%, rgba(8, 7, 6, 0.18) 100%);
}
section.about-us::after {
  content: "";
  position: absolute;
  z-index: -1;
  right: 0;
  bottom: 0;
  left: 0;
  height: 130px;
  background: linear-gradient(180deg, transparent 0%, #090807 100%);
  pointer-events: none;
}
section.about-us .container-fluid {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 100vh;
  min-height: 100svh;
  padding: 90px 30px;
}
section.about-us .container-fluid .row {
  width: 100%;
  margin: 0;
}
section.about-us .container-fluid .col-12 {
  position: relative;
  padding: 50px;
  width: min(900px, 92%);
  background: transparent;
  border-radius: 0;
  backdrop-filter: none;
}
section.about-us .container-fluid .col-12::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: rgba(255, 244, 233, 0.07);
  backdrop-filter: blur(4px);
}
section.about-us .container-fluid .col-12::after {
  content: "";
  position: absolute;
  inset: -8px;
  z-index: -1;
  background: radial-gradient(circle, rgba(209, 173, 58, 0.12) 0%, rgba(209, 173, 58, 0.04) 45%, transparent 75%);
  pointer-events: none;
}
section.about-us img {
  display: block;
  width: 105px;
  height: auto;
  margin: 0 auto 25px;
  border-radius: 0;
  opacity: 0.96;
}
section.about-us h2 {
  max-width: 820px;
  margin: 0 auto;
  color: #f4efe4;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(46px, 6vw, 86px);
  font-weight: 400;
  line-height: 0.99;
  letter-spacing: -0.05em;
  text-shadow: 0 5px 28px rgba(0, 0, 0, 0.45);
}
section.about-us h2 em {
  color: #d1ad3a;
  font-style: italic;
}
@media (max-width: 575px) {
  section.about-us h2 br {
    display: none;
  }
}
section.about-us .shop-about-text {
  position: relative;
  max-width: 650px;
  margin: 30px auto 28px;
  padding: 22px 0;
  color: rgba(244, 239, 228, 0.8);
  border-top: 1px solid rgba(209, 173, 58, 0.3);
  border-bottom: 1px solid rgba(209, 173, 58, 0.18);
  font-size: 22px;
  font-weight: 400;
  line-height: 1.8;
  text-align: center;
}
section.about-us .shop-about-text::before, section.about-us .shop-about-text::after {
  content: "";
  position: absolute;
  width: 5px;
  height: 5px;
  background: #d1ad3a;
}
section.about-us .shop-about-text::before {
  top: -3px;
  left: 0;
}
section.about-us .shop-about-text::after {
  right: 0;
  bottom: -3px;
}
section.about-us a.main-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  margin: 8px auto 0;
  padding: 0 27px;
  overflow: hidden;
  border: 1px solid #d1ad3a;
  border-radius: 0 !important;
  background: #d1ad3a;
  color: #110e0a;
  font-size: 15px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  text-decoration: none;
  transition: color 0.3s ease, background-color 0.3s ease, border-color 0.3s ease, transform 0.35s ease;
}
section.about-us a.main-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.1);
  transform: translateX(-102%);
  transition: transform 0.5s cubic-bezier(0.19, 1, 0.22, 1);
}
section.about-us a.main-btn::after {
  content: "→";
  position: relative;
  z-index: 1;
  margin-left: 11px;
  font-size: 13px;
  transition: transform 0.3s ease;
}
section.about-us a.main-btn:hover {
  transform: translateY(-2px);
  background: transparent;
  border-color: #f4efe4;
  color: #f4efe4;
}
section.about-us a.main-btn:hover::before {
  transform: translateX(0);
}
section.about-us a.main-btn:hover::after {
  transform: translateX(4px);
}
@media (max-width: 991.98px) {
  section.about-us .container-fluid {
    padding: 75px 25px;
  }
  section.about-us .container-fluid .col-12 {
    width: min(760px, 92%);
  }
  section.about-us img {
    width: 92px;
    margin-bottom: 21px;
  }
  section.about-us h2 {
    font-size: clamp(44px, 7vw, 62px);
  }
  section.about-us .shop-about-text {
    max-width: 600px;
    margin-top: 25px;
    font-size: 14px;
    line-height: 1.75;
  }
}
@media (max-width: 767px) {
  section.about-us video {
    inset: 0;
    width: 100%;
    height: 100%;
    transform: scale(1.04);
    filter: brightness(0.4) saturate(0.76) contrast(1.04);
  }
  section.about-us::before {
    background: radial-gradient(ellipse at center, rgba(8, 7, 6, 0.1), rgba(8, 7, 6, 0.72));
  }
  section.about-us .container-fluid {
    min-height: 100vh;
    min-height: 100svh;
    padding: 70px 20px;
  }
  section.about-us .container-fluid .col-12 {
    width: 100%;
    padding: 0 18px;
  }
  section.about-us img {
    width: 82px;
    margin-bottom: 19px;
  }
  section.about-us h2 {
    font-size: clamp(40px, 11vw, 54px);
    line-height: 0.96;
    letter-spacing: -0.045em;
  }
  section.about-us .shop-about-text {
    max-width: 100%;
    margin: 23px auto;
    padding: 18px 0;
    font-size: 13px;
    line-height: 1.7;
  }
  section.about-us a.main-btn {
    min-height: 46px;
    padding: 0 21px;
    font-size: 12px;
    letter-spacing: 1.5px;
  }
}
@media (max-width: 400px) {
  section.about-us .container-fluid {
    padding: 60px 16px;
  }
  section.about-us .container-fluid .col-12 {
    padding: 0 12px;
  }
  section.about-us img {
    width: 74px;
    margin-bottom: 17px;
  }
  section.about-us h2 {
    font-size: 37px;
  }
  section.about-us .shop-about-text {
    font-size: 12px;
    line-height: 1.65;
  }
}

.reviews {
  position: relative;
  overflow: hidden;
  min-height: 90vh;
  padding: 105px 0 95px;
  color: #f5eee1;
  background: url("../../imgs/review/review-bg2.webp") center center/cover no-repeat;
}
.reviews::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(90deg, rgba(7, 6, 5, 0.14) 0%, rgba(7, 6, 5, 0.32) 48%, rgba(7, 6, 5, 0.18) 100%), linear-gradient(180deg, rgba(7, 6, 5, 0.32) 0%, rgba(7, 6, 5, 0.12) 40%, rgba(7, 6, 5, 0.58) 100%);
  pointer-events: none;
}
.reviews::after {
  content: "";
  position: absolute;
  z-index: 0;
  right: -180px;
  bottom: -180px;
  width: 450px;
  height: 450px;
  border: 1px solid rgba(209, 173, 58, 0.08);
  border-radius: 50%;
  box-shadow: 0 0 0 35px rgba(209, 173, 58, 0.025), 0 0 0 70px rgba(209, 173, 58, 0.015);
  pointer-events: none;
}
.reviews .container {
  position: relative;
  z-index: 2;
}
.reviews__inner {
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(0, 1.2fr);
  gap: 65px;
  align-items: center;
}
@media (max-width: 991px) {
  .reviews__inner {
    grid-template-columns: 1fr;
    gap: 45px;
  }
}
@media (max-width: 991px) {
  .reviews__left {
    max-width: 680px;
    margin: 0 auto;
    text-align: center;
  }
}
.reviews__left > span {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 19px;
  color: #d1ad3a;
  font-family: Poppinsregular, Poppins, sans-serif;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.25;
  letter-spacing: 2.2px;
  text-transform: uppercase;
}
.reviews__left > span::before, .reviews__left > span::after {
  content: "";
  width: 28px;
  height: 1px;
  background: rgba(209, 173, 58, 0.78);
}
.reviews__left p {
  max-width: 450px;
  margin: 0 0 25px;
  color: rgba(245, 238, 225, 0.82);
  font-size: 18px;
  font-weight: 400;
  line-height: 1.8;
}
@media (max-width: 991px) {
  .reviews__left p {
    margin-right: auto;
    margin-left: auto;
  }
}
.reviews__link {
  display: inline-flex;
  align-items: center;
  position: relative;
  padding-bottom: 7px;
  color: #d1ad3a;
  font-size: 12px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
  transition: color 0.3s ease, transform 0.3s ease;
}
.reviews__link::after {
  content: "→";
  margin-left: 10px;
  font-size: 13px;
  transition: transform 0.3s ease;
}
.reviews__link::before {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 1px;
  background: #d1ad3a;
  transform: scaleX(0);
  transform-origin: right center;
  transition: transform 0.4s cubic-bezier(0.19, 1, 0.22, 1);
}
.reviews__link:hover {
  color: #ead27c;
}
.reviews__link:hover::before {
  transform: scaleX(1);
  transform-origin: left center;
}
.reviews__link:hover::after {
  transform: translateX(4px);
}
.reviews .swiper {
  width: 100%;
  overflow: visible;
}
.reviews .swiper-wrapper {
  align-items: stretch;
}
.reviews .swiper-slide {
  height: auto;
}
.reviews .review {
  position: relative;
  height: 100%;
  min-height: 175px;
  margin: 0 0 18px;
  padding: 20px 30px 15px;
  background: linear-gradient(145deg, rgba(21, 18, 14, 0.8), rgba(12, 10, 8, 0.68));
  border: 1px solid rgba(244, 239, 228, 0.18);
  border-radius: 2px;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.26), inset 0 1px 0 rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(4px);
  transition: border-color 0.35s ease, background 0.35s ease, transform 0.35s ease, box-shadow 0.35s ease;
}
.reviews .review::before {
  content: "";
  position: absolute;
  inset: 10px;
  border: 1px solid rgba(244, 239, 228, 0.08);
  pointer-events: none;
}
.reviews .review::after {
  content: "";
  position: absolute;
  top: 10px;
  left: 10px;
  width: 28px;
  height: 28px;
  border-top: 1px solid rgba(209, 173, 58, 0.9);
  border-left: 1px solid rgba(209, 173, 58, 0.9);
  pointer-events: none;
}
.reviews .review:hover {
  border-color: rgba(209, 173, 58, 0.42);
  background: linear-gradient(145deg, rgba(29, 24, 18, 0.82), rgba(13, 11, 9, 0.7));
  transform: translateY(-3px);
  box-shadow: 0 23px 48px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.05);
}
.reviews .review__header {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  margin-bottom: 15px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(244, 239, 228, 0.11);
}
@media (max-width: 400px) {
  .reviews .review__header {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
}
.reviews .review .stars {
  color: #d1ad3a;
  white-space: nowrap;
  font-size: 13px;
  line-height: 1;
  letter-spacing: 3px;
}
.reviews .review p {
  position: relative;
  z-index: 2;
  margin: 0;
  color: rgba(245, 238, 225, 0.86);
  font-family: Poppinsregular, Poppins, sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.8;
}
.reviews .swiper-pagination {
  position: relative;
  right: auto;
  bottom: auto;
  left: auto;
  display: flex;
  justify-content: flex-start;
  gap: 7px;
  margin-top: 12px;
}
@media (max-width: 991px) {
  .reviews .swiper-pagination {
    justify-content: center;
  }
}
.reviews .swiper-pagination .swiper-pagination-bullet {
  width: 20px;
  height: 1px;
  margin: 0 !important;
  border-radius: 0;
  background: rgba(245, 238, 225, 0.28);
  opacity: 1;
  transition: width 0.35s ease, background-color 0.35s ease;
}
.reviews .swiper-pagination .swiper-pagination-bullet-active {
  width: 38px;
  background: #d1ad3a;
}
@media (max-width: 991px) {
  .reviews {
    min-height: auto;
    padding: 85px 0 80px;
  }
  .reviews__inner {
    gap: 40px;
  }
  .reviews__left > span {
    margin-bottom: 16px;
  }
  .reviews .review {
    min-height: 235px;
  }
}
@media (max-width: 576px) {
  .reviews {
    padding: 70px 0 65px;
  }
  .reviews__inner {
    gap: 32px;
  }
  .reviews__left > span {
    gap: 9px;
    font-size: 12px;
    letter-spacing: 2.6px;
  }
  .reviews__left > span::before, .reviews__left > span::after {
    width: 20px;
  }
  .reviews__left p {
    font-size: 13px;
    line-height: 1.7;
  }
  .reviews .review {
    min-height: 225px;
    padding: 24px 23px;
  }
  .reviews .review::before {
    inset: 9px;
  }
  .reviews .review::after {
    top: 9px;
    left: 9px;
    width: 22px;
    height: 22px;
  }
  .reviews .review__header {
    margin-bottom: 17px;
    padding-bottom: 13px;
  }
  .reviews .review .stars {
    font-size: 12px;
    letter-spacing: 2px;
  }
  .reviews .review p {
    font-size: 13px;
    line-height: 1.75;
  }
}

.categories {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: 150px 0 110px;
  color: #f5efe5;
  background: radial-gradient(circle at 8% 15%, rgba(129, 76, 38, 0.2), transparent 30%), radial-gradient(circle at 92% 78%, rgba(103, 35, 25, 0.16), transparent 32%), radial-gradient(circle at 52% 48%, rgba(201, 162, 39, 0.045), transparent 42%), linear-gradient(135deg, #0d0c0b 0%, #151311 48%, #0b0a09 100%);
}
.categories__backdrop {
  position: absolute;
  inset: 0;
  z-index: -1;
  overflow: hidden;
  pointer-events: none;
}
.categories__backdrop-word {
  position: absolute;
  top: 7%;
  left: -3%;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(150px, 19vw, 330px);
  font-weight: 700;
  line-height: 0.8;
  letter-spacing: -0.075em;
  color: rgba(255, 255, 255, 0.055);
  white-space: nowrap;
  user-select: none;
}
.categories__backdrop-line {
  position: absolute;
  display: block;
  width: 1px;
  background: linear-gradient(to bottom, transparent, rgba(209, 173, 58, 0.2), transparent);
}
.categories__backdrop-line--one {
  top: 0;
  left: 18%;
  height: 100%;
}
.categories__backdrop-line--two {
  top: 0;
  right: 18%;
  height: 100%;
}
.categories__backdrop-circle {
  position: absolute;
  top: 13%;
  right: -140px;
  width: 430px;
  height: 430px;
  border: 1px solid rgba(209, 173, 58, 0.09);
  border-radius: 50%;
}
.categories__backdrop-glow {
  position: absolute;
  top: 38%;
  left: 40%;
  width: 450px;
  height: 450px;
  border-radius: 50%;
  background: rgba(120, 57, 34, 0.065);
  filter: blur(90px);
}
.categories__header {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 60px;
  margin-bottom: 65px;
  padding-left: 24px;
}
.categories__header-left {
  max-width: 700px;
}
.categories__kicker {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 17px;
  color: rgba(245, 239, 229, 0.72);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}
.categories__kicker span {
  display: block;
  width: 32px;
  height: 1px;
  background: #d1ad3a;
}
.categories__heading {
  margin: 0;
  color: #f5efe5;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(52px, 6vw, 72px);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.045em;
}
.categories__heading em {
  color: #d1ad3a;
  font-style: italic;
}
.categories__header-right {
  width: 330px;
  padding-bottom: 5px;
}
.categories__header-right p {
  margin: 0 0 24px;
  color: rgba(245, 239, 229, 0.76);
  font-size: 16px;
  line-height: 1.75;
}
.categories__link {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: #d1ad3a;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-decoration: none;
  text-transform: uppercase;
}
.categories__link:hover {
  color: #fff5d6;
  text-decoration: none;
}
.categories__link i {
  transition: transform 0.3s ease;
}
.categories__link:hover i {
  transform: translateX(5px);
}
.categories__gallery {
  display: grid;
  grid-template-columns: minmax(0, 1.28fr) minmax(0, 0.95fr);
  grid-template-rows: 340px 340px 330px;
  grid-template-areas: "grill pide" "grill hot" "calzones wraps";
  gap: 18px;
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
}

.menu-card {
  --card-accent: #d1ad3a;
  position: relative;
  min-width: 0;
  min-height: 0;
  overflow: hidden;
  isolation: isolate;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.055) 0%, rgba(255, 255, 255, 0.012) 55%, transparent 100%), #211c18;
  border: 1px solid rgba(245, 239, 229, 0.14);
  box-shadow: 0 20px 55px rgba(0, 0, 0, 0.32), 0 2px 8px rgba(0, 0, 0, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.045);
  transition: border-color 0.35s ease, box-shadow 0.4s ease;
}
.menu-card::before {
  content: "";
  position: absolute;
  inset: 13px;
  z-index: 8;
  border: 1px solid rgba(209, 173, 58, 0.13);
  pointer-events: none;
}
.menu-card::after {
  content: "";
  position: absolute;
  top: 13px;
  left: 13px;
  width: 98px;
  height: 1px;
  z-index: 9;
  background: linear-gradient(90deg, var(--card-accent), rgba(209, 173, 58, 0));
  pointer-events: none;
}
.menu-card:hover {
  border-color: rgba(209, 173, 58, 0.38);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.4), 0 4px 14px rgba(0, 0, 0, 0.22), inset 0 1px 0 rgba(255, 255, 255, 0.06);
}
.menu-card:hover .menu-card__image img {
  transform: scale(1.045);
}
.menu-card:hover .menu-card__arrow {
  background: var(--card-accent);
  color: #0c0b0a;
  border-color: var(--card-accent);
}
.menu-card__image {
  position: absolute;
  overflow: hidden;
}
.menu-card__image::before {
  content: "";
  position: absolute;
  inset: 10px;
  z-index: 2;
  border: 1px solid rgba(245, 239, 229, 0.24);
  pointer-events: none;
}
.menu-card__image::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 3;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.01), rgba(0, 0, 0, 0.06));
  pointer-events: none;
}
.menu-card__image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}
.menu-card__content {
  position: relative;
  z-index: 6;
}
.menu-card__eyebrow {
  display: block;
  margin-bottom: 12px;
  color: rgba(245, 239, 229, 0.68);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.menu-card h3 {
  margin: 0;
  color: #f5efe5;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 40px;
  font-weight: 400;
  line-height: 0.94;
  letter-spacing: -0.035em;
}
.menu-card h3 strong {
  color: var(--card-accent);
  font-weight: 400;
}
.menu-card p {
  margin: 17px 0 0;
  max-width: 270px;
  color: rgba(250, 246, 239, 0.88);
  font-size: 17px;
  line-height: 1.75;
}
.menu-card__arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  margin-top: 23px;
  border: 1px solid rgba(209, 173, 58, 0.43);
  border-radius: 50%;
  color: var(--card-accent);
  font-size: 11px;
  text-decoration: none;
  transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}
.menu-card--grill {
  --card-accent: #d7b23d;
  grid-area: grill;
  background: radial-gradient(circle at 78% 20%, rgba(177, 76, 34, 0.22), transparent 42%), linear-gradient(145deg, #2a1d16 0%, #1d1713 100%);
}
.menu-card--grill .menu-card__content {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 44%;
  padding: 55px 20px 45px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.menu-card--grill .menu-card__image {
  top: 24px;
  right: 24px;
  bottom: 24px;
  width: 54%;
}
.menu-card--grill h3 {
  font-size: clamp(50px, 6.5vw, 77px);
  line-height: 0.9;
}
.menu-card--grill p {
  max-width: 285px;
}
.menu-card--grill .menu-card__arrow {
  margin-top: 26px;
}
.menu-card--pide {
  --card-accent: #d5aa42;
  grid-area: pide;
  background: radial-gradient(circle at 15% 85%, rgba(153, 91, 42, 0.2), transparent 45%), linear-gradient(145deg, #29211b 0%, #1d1814 100%);
}
.menu-card--pide .menu-card__image {
  top: 20px;
  right: 20px;
  bottom: 20px;
  width: 54%;
}
.menu-card--pide .menu-card__content {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 24px;
  width: 45%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding-bottom: 27px;
}
.menu-card--pide h3 {
  font-size: 44px;
}
.menu-card--pide p {
  max-width: 230px;
}
.menu-card--hot {
  --card-accent: #d4a33a;
  grid-area: hot;
  background: radial-gradient(circle at 90% 15%, rgba(151, 54, 31, 0.24), transparent 42%), linear-gradient(145deg, #281b17 0%, #1b1512 100%);
}
.menu-card--hot .menu-card__image {
  top: 20px;
  right: 20px;
  bottom: 20px;
  width: 52%;
}
.menu-card--hot .menu-card__content {
  position: absolute;
  top: 50%;
  left: 24px;
  width: 40%;
  transform: translateY(-50%);
}
.menu-card--hot h3 {
  font-size: 38px;
}
.menu-card--hot p {
  max-width: 205px;
}
.menu-card--calzones {
  --card-accent: #d5aa42;
  grid-area: calzones;
  background: radial-gradient(circle at 20% 80%, rgba(161, 76, 36, 0.2), transparent 45%), linear-gradient(145deg, #292019 0%, #1d1713 100%);
}
.menu-card--calzones .menu-card__image {
  top: 22px;
  right: 22px;
  bottom: 22px;
  width: 55%;
}
.menu-card--calzones .menu-card__content {
  position: absolute;
  top: 50%;
  left: 38px;
  width: 39%;
  transform: translateY(-50%);
}
.menu-card--calzones h3 {
  font-size: 47px;
}
.menu-card--calzones .menu-card__arrow {
  margin-top: 25px;
}
.menu-card--wraps {
  --card-accent: #d5aa42;
  grid-area: wraps;
  background: radial-gradient(circle at 10% 88%, rgba(169, 65, 40, 0.23), transparent 48%), linear-gradient(145deg, #2d211b 0%, #211813 100%);
}
.menu-card--wraps .menu-card__image {
  right: 20px;
  bottom: 20px;
  left: 20px;
  height: 71%;
}
.menu-card--wraps .menu-card__image::after {
  background: linear-gradient(180deg, rgba(45, 33, 27, 0.02) 0%, rgba(35, 24, 20, 0.05) 45%, rgba(20, 13, 11, 0.12) 100%);
}
.menu-card--wraps .menu-card__content {
  position: absolute;
  top: 28px;
  right: 25px;
  left: 25px;
  z-index: 6;
}
.menu-card--wraps .menu-card__content::after {
  content: "";
  position: absolute;
  top: -28px;
  right: -25px;
  bottom: -18px;
  left: -25px;
  z-index: -1;
  background: linear-gradient(180deg, rgba(45, 33, 27, 0.97) 0%, rgba(45, 33, 27, 0.9) 42%, rgba(45, 33, 27, 0.55) 72%, rgba(45, 33, 27, 0) 100%);
  pointer-events: none;
}
.menu-card--wraps h3 {
  font-size: 40px;
}
.menu-card--wraps p {
  max-width: 260px;
  color: rgba(250, 246, 239, 0.88);
}
.menu-card--wraps .menu-card__content::before {
  content: "";
  position: absolute;
  top: -5px;
  right: 0;
  width: 20px;
  height: 20px;
  border-top: 1px solid var(--card-accent);
  border-right: 1px solid var(--card-accent);
  opacity: 0.6;
}

@media (max-width: 1100px) {
  .categories {
    padding: 120px 0 100px;
  }
  .categories__header {
    gap: 40px;
  }
  .categories__gallery {
    grid-template-columns: minmax(0, 1.12fr) minmax(0, 0.88fr);
    grid-template-rows: 350px 395px 380px;
    grid-template-areas: "grill grill" "pide hot" "calzones wraps";
  }
  .menu-card--grill .menu-card__content {
    width: 42%;
  }
  .menu-card--grill .menu-card__image {
    width: 55%;
  }
  .menu-card--calzones .menu-card__content {
    left: 34px;
    width: 40%;
  }
  .menu-card--calzones .menu-card__image {
    width: 55%;
  }
}
@media (max-width: 767px) {
  .categories {
    padding: 90px 0 105px;
  }
  .categories__backdrop-word {
    top: 8%;
    left: -12%;
    font-size: 110px;
  }
  .categories__backdrop-circle {
    top: 10%;
    right: -220px;
    width: 360px;
    height: 360px;
  }
  .categories__header {
    display: block;
    margin-bottom: 45px;
    padding-left: 19px;
  }
  .categories__header::before {
    height: 60px;
  }
  .categories__heading {
    font-size: clamp(48px, 14vw, 68px);
  }
  .categories__header-right {
    width: auto;
    max-width: 360px;
    margin-top: 34px;
    padding-bottom: 0;
  }
  .categories__gallery {
    display: flex;
    flex-direction: column;
    gap: 14px;
  }
  .menu-card {
    min-height: 390px;
  }
  .menu-card::before {
    inset: 10px;
  }
  .menu-card--grill {
    min-height: 470px;
  }
  .menu-card--grill .menu-card__content {
    top: auto;
    bottom: 28px;
    left: 22px;
    width: 45%;
    height: auto;
    padding: 0;
  }
  .menu-card--grill .menu-card__image {
    top: 18px;
    right: 18px;
    bottom: auto;
    width: 52%;
    height: 66%;
  }
  .menu-card--grill h3 {
    font-size: 42px;
  }
  .menu-card--pide {
    min-height: 410px;
  }
  .menu-card--pide .menu-card__image {
    top: 18px;
    right: 18px;
    bottom: auto;
    width: 58%;
    height: 58%;
  }
  .menu-card--pide .menu-card__content {
    top: auto;
    bottom: 23px;
    left: 20px;
    width: 45%;
    height: auto;
  }
  .menu-card--hot {
    min-height: 360px;
  }
  .menu-card--hot .menu-card__image {
    top: 18px;
    right: 18px;
    bottom: 18px;
    width: 52%;
  }
  .menu-card--hot .menu-card__content {
    left: 22px;
    width: 41%;
  }
  .menu-card--hot h3 {
    font-size: 32px;
  }
  .menu-card--calzones {
    min-height: 420px;
  }
  .menu-card--calzones .menu-card__image {
    top: 18px;
    right: 18px;
    bottom: auto;
    width: 56%;
    height: 67%;
  }
  .menu-card--calzones .menu-card__content {
    top: auto;
    bottom: 26px;
    left: 20px;
    width: 45%;
    transform: none;
  }
  .menu-card--calzones h3 {
    font-size: 37px;
  }
  .menu-card--wraps {
    min-height: 390px;
  }
  .menu-card--wraps .menu-card__image {
    right: 18px;
    bottom: 18px;
    left: 18px;
    height: 52%;
  }
  .menu-card--wraps .menu-card__image::after {
    background: linear-gradient(180deg, rgba(35, 24, 20, 0.08) 0%, rgba(35, 24, 20, 0.16) 45%, rgba(20, 13, 11, 0.38) 100%);
  }
  .menu-card--wraps .menu-card__content {
    top: 26px;
    right: 20px;
    left: 20px;
  }
  .menu-card--wraps .menu-card__content::after {
    top: -26px;
    right: -20px;
    bottom: -18px;
    left: -20px;
    background: linear-gradient(180deg, rgba(45, 33, 27, 0.97) 0%, rgba(45, 33, 27, 0.9) 45%, rgba(45, 33, 27, 0.55) 72%, rgba(45, 33, 27, 0) 100%);
  }
  .menu-card--wraps h3 {
    font-size: 36px;
  }
}
@media (max-width: 440px) {
  .categories__heading {
    font-size: 48px;
  }
  .menu-card--grill .menu-card__content {
    width: 47%;
  }
  .menu-card--grill .menu-card__image {
    width: 49%;
  }
  .menu-card--grill h3 {
    font-size: 38px;
  }
  .menu-card--pide .menu-card__content {
    width: 46%;
  }
  .menu-card--pide .menu-card__image {
    width: 55%;
  }
  .menu-card--hot .menu-card__content {
    width: 44%;
  }
  .menu-card--hot .menu-card__image {
    width: 47%;
  }
  .menu-card--calzones .menu-card__content {
    width: 46%;
  }
  .menu-card--calzones .menu-card__image {
    width: 53%;
  }
  .menu-card--wraps .menu-card__content {
    right: 18px;
    left: 18px;
  }
}
section.gallery-wrapper {
  position: relative;
  width: 100%;
  height: 760px;
  overflow: hidden;
  background: #080706;
  isolation: isolate;
}
section.gallery-wrapper .hero_bg {
  display: none;
}
section.gallery-wrapper .gallery {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  width: 100%;
  height: 100%;
  padding: 0 14px;
  overflow: hidden;
  background: #080706;
}
section.gallery-wrapper .gallery::before {
  content: "";
  position: absolute;
  z-index: 4;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(90deg, rgba(8, 6, 4, 0.24) 0%, rgba(8, 6, 4, 0.04) 20%, transparent 50%, rgba(8, 6, 4, 0.04) 80%, rgba(8, 6, 4, 0.24) 100%), linear-gradient(180deg, rgba(8, 6, 4, 0.1) 0%, transparent 25%, transparent 73%, rgba(8, 6, 4, 0.24) 100%);
}
section.gallery-wrapper .gallery::after {
  content: "";
  position: absolute;
  z-index: 5;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(ellipse 64% 74% at center, transparent 38%, rgba(8, 6, 4, 0.06) 68%, rgba(8, 6, 4, 0.25) 100%);
}
section.gallery-wrapper .gallery__strip__wrapper {
  position: relative;
  min-width: 0;
  height: 100%;
  overflow: hidden;
}
section.gallery-wrapper .gallery__strip__wrapper:nth-child(2) {
  z-index: 2;
}
section.gallery-wrapper .gallery__strip {
  position: absolute;
  left: 0;
  width: 100%;
  padding: 0;
  will-change: transform;
  backface-visibility: hidden;
}
section.gallery-wrapper .gallery__strip.one {
  top: -12%;
  animation: gallery-left 32s linear infinite;
}
section.gallery-wrapper .gallery__strip.two {
  top: -30%;
  animation: gallery-centre 38s linear infinite;
}
section.gallery-wrapper .gallery__strip.three {
  top: -8%;
  animation: gallery-right 35s linear infinite;
}
section.gallery-wrapper .gallery .photo {
  position: relative;
  width: 100%;
  margin-bottom: 18px;
  overflow: hidden;
}
section.gallery-wrapper .gallery .photo__image {
  position: relative;
  width: 100%;
  height: 265px;
  overflow: hidden;
  background: #15110e;
}
section.gallery-wrapper .gallery .photo__image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.025);
  filter: brightness(1.08) saturate(0.98) contrast(1.06);
  transition: transform 1.2s cubic-bezier(0.19, 1, 0.22, 1), filter 1.2s ease;
}
section.gallery-wrapper .gallery .photo__image::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(255, 245, 220, 0.035) 0%, transparent 38%, rgba(0, 0, 0, 0.06) 100%);
}
section.gallery-wrapper .gallery .photo:hover .photo__image img {
  transform: scale(1.06);
  filter: brightness(1.11) saturate(1.02) contrast(1.06);
}
section.gallery-wrapper .gallery__strip__wrapper:nth-child(2) .photo {
  margin-bottom: 20px;
}
section.gallery-wrapper .gallery__strip__wrapper:nth-child(2) .photo__image {
  height: 305px;
}
section.gallery-wrapper .gallery__veil {
  position: absolute;
  z-index: 6;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(90deg, rgba(5, 4, 3, 0.18) 0%, rgba(5, 4, 3, 0.02) 22%, transparent 50%, rgba(5, 4, 3, 0.02) 78%, rgba(5, 4, 3, 0.18) 100%), linear-gradient(180deg, rgba(5, 4, 3, 0.07) 0%, transparent 25%, transparent 74%, rgba(5, 4, 3, 0.2) 100%);
}
section.gallery-wrapper .hero-section {
  position: absolute;
  z-index: 10;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}
section.gallery-wrapper .hero-section .container-fluid,
section.gallery-wrapper .hero-section .row,
section.gallery-wrapper .hero-section .col-12,
section.gallery-wrapper .hero-section .inner-content {
  position: relative;
  z-index: 2;
}
section.gallery-wrapper .hero-section .container-fluid {
  width: 100%;
}
section.gallery-wrapper .hero-section .inner-content {
  width: min(880px, 90%);
  margin: 0 auto;
  text-align: center;
}
section.gallery-wrapper .hero-section__glow {
  position: absolute;
  z-index: 0;
  top: 50%;
  left: 50%;
  width: min(900px, 92vw);
  height: 570px;
  transform: translate(-50%, -50%);
  pointer-events: none;
  background: radial-gradient(ellipse 52% 48% at center, rgba(6, 5, 3, 0.68) 0%, rgba(6, 5, 3, 0.42) 28%, rgba(6, 5, 3, 0.17) 52%, rgba(6, 5, 3, 0.04) 70%, transparent 82%);
  filter: blur(14px);
}
section.gallery-wrapper .hero-section__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  margin-bottom: 24px;
  color: #d4b34b;
  font-size: 16px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 4px;
  text-transform: uppercase;
}
section.gallery-wrapper .hero-section__eyebrow::before, section.gallery-wrapper .hero-section__eyebrow::after {
  content: "";
  display: block;
  width: 38px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(212, 179, 75, 0.9));
}
section.gallery-wrapper .hero-section__eyebrow::after {
  transform: scaleX(-1);
}
section.gallery-wrapper .hero-section h1 {
  max-width: 900px;
  margin: 0 auto;
  color: #f8f3e9;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(58px, 7.2vw, 104px);
  font-weight: 400;
  line-height: 0.9;
  letter-spacing: -0.055em;
  text-wrap: balance;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.42), 0 8px 28px rgba(0, 0, 0, 0.18);
}
section.gallery-wrapper .hero-section h1 span {
  color: #d4b34b;
}
section.gallery-wrapper .hero-section p {
  max-width: 560px;
  margin: 27px auto 0;
  color: rgba(248, 243, 233, 0.9);
  font-size: 15px;
  font-weight: 400;
  line-height: 1.75;
  letter-spacing: 0.018em;
  text-shadow: 0 2px 9px rgba(0, 0, 0, 0.45);
}
section.gallery-wrapper .hero-section .fade-left-hero3 {
  position: relative;
  z-index: 3;
  pointer-events: auto;
}
section.gallery-wrapper .hero-section__menu-link {
  position: relative;
  display: inline-block;
  margin-top: 24px;
  padding: 9px 2px;
  color: #d4b34b;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-decoration: none;
  text-transform: uppercase;
  transition: color 0.3s ease;
}
section.gallery-wrapper .hero-section__menu-link::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 3px;
  left: 0;
  height: 1px;
  background: #d4b34b;
  transform: scaleX(0);
  transform-origin: right center;
  transition: transform 0.4s cubic-bezier(0.19, 1, 0.22, 1);
}
section.gallery-wrapper .hero-section__menu-link:hover {
  color: #ead27c;
}
section.gallery-wrapper .hero-section__menu-link:hover::after {
  transform: scaleX(1);
  transform-origin: left center;
}
@media (max-width: 991.98px) {
  section.gallery-wrapper {
    height: 680px;
  }
  section.gallery-wrapper .container-fluid.d-none.d-lg-block {
    display: none !important;
  }
  section.gallery-wrapper .hero_bg {
    display: block;
    position: absolute;
    z-index: 1;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.74) saturate(1.02) contrast(1.05);
  }
  section.gallery-wrapper .hero-section__glow {
    width: 120%;
    height: 580px;
    background: radial-gradient(ellipse 55% 48% at center, rgba(6, 5, 3, 0.7) 0%, rgba(6, 5, 3, 0.44) 32%, rgba(6, 5, 3, 0.14) 60%, transparent 80%);
  }
  section.gallery-wrapper .hero-section .inner-content {
    width: min(650px, 88%);
  }
  section.gallery-wrapper .hero-section h1 {
    font-size: clamp(52px, 10vw, 78px);
  }
  section.gallery-wrapper .hero-section p {
    max-width: 470px;
    font-size: 14px;
  }
}
@media (max-width: 575.98px) {
  section.gallery-wrapper {
    height: 640px;
  }
  section.gallery-wrapper .hero_bg {
    filter: brightness(0.68) saturate(1.02) contrast(1.04);
  }
  section.gallery-wrapper .hero-section__glow {
    width: 145%;
    height: 560px;
    background: radial-gradient(ellipse 55% 45% at center, rgba(6, 5, 3, 0.74) 0%, rgba(6, 5, 3, 0.46) 34%, rgba(6, 5, 3, 0.14) 62%, transparent 82%);
    filter: blur(13px);
  }
  section.gallery-wrapper .hero-section__eyebrow {
    gap: 9px;
    margin-bottom: 18px;
    font-size: 16px;
    letter-spacing: 2.7px;
  }
  section.gallery-wrapper .hero-section__eyebrow::before, section.gallery-wrapper .hero-section__eyebrow::after {
    width: 21px;
  }
  section.gallery-wrapper .hero-section .inner-content {
    width: 91%;
  }
  section.gallery-wrapper .hero-section h1 {
    font-size: clamp(44px, 14vw, 62px);
    line-height: 0.94;
  }
  section.gallery-wrapper .hero-section p {
    max-width: 340px;
    margin-top: 18px;
    font-size: 14px;
    line-height: 1.65;
  }
  section.gallery-wrapper .hero-section__menu-link {
    margin-top: 19px;
    font-size: 11px;
  }
}
@keyframes gallery-left {
  0% {
    transform: translate3d(0, 0, 0);
  }
  100% {
    transform: translate3d(0, -30%, 0);
  }
}
@keyframes gallery-centre {
  0% {
    transform: translate3d(0, 0, 0);
  }
  100% {
    transform: translate3d(0, -30%, 0);
  }
}
@keyframes gallery-right {
  0% {
    transform: translate3d(0, -2%, 0);
  }
  100% {
    transform: translate3d(0, -27%, 0);
  }
}

/* footer */
footer {
  position: relative;
  padding: 80px 0;
  color: rgba(255, 255, 255, 0.8588235294);
  background: radial-gradient(1000px 480px at 50% 118%, rgba(243, 198, 80, 0.05), transparent 58%), linear-gradient(180deg, #0a0806 0%, #040302 100%);
  box-shadow: inset 0 -120px 120px -80px rgba(243, 198, 80, 0.04);
  overflow: hidden;
}
@media (max-width: 991px) {
  footer {
    padding: 90px 0 130px 0;
    text-align: center;
  }
}
footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border: 1px solid rgba(243, 198, 80, 0.14);
  border-top: none;
  pointer-events: none;
}
footer::after {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 180px;
  height: 3px;
  border-radius: 3px;
  background: linear-gradient(90deg, transparent, #f3c650, transparent);
  pointer-events: none;
}
footer .container {
  position: relative;
  z-index: 1;
}
footer li.footer-apps {
  display: flex;
  gap: 12px;
  padding: 12px 0 0 0;
}
footer li.footer-apps a {
  color: inherit;
}
footer li.footer-apps a:hover {
  color: inherit;
}
footer li.footer-apps a img {
  width: 150px;
  border-radius: 8px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
footer li.footer-apps a img:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 20px rgba(243, 198, 80, 0.25);
}
@media (max-width: 480px) {
  footer li.footer-apps a img {
    width: 130px;
  }
}
@media (max-width: 991px) {
  footer li.footer-apps {
    justify-content: center;
  }
}
footer ul {
  padding: 0;
}
footer ul li {
  list-style: none;
  padding: 8px 0;
}
footer a:not(.tripadvisor_wrapper):not(.footer-apps a) {
  color: rgba(255, 255, 255, 0.8588235294);
  position: relative;
  transition: color 0.3s ease, padding-left 0.3s ease;
}
footer a:not(.tripadvisor_wrapper):not(.footer-apps a):hover {
  color: #f3c650;
  padding-left: 6px;
}
footer ul.footer-card {
  list-style: none;
  background-color: #0f0d0a;
  padding: 15px;
  border-radius: 40px;
}
footer ul.footer-card li {
  margin-top: 8px;
}
footer ul.footer-card li span {
  font-size: 14px;
  font-weight: bold;
  line-height: 21px;
  text-align: center;
}
footer ul.footer-card li a {
  color: #fff;
}
footer ul.footer-card li a:hover {
  text-decoration-line: underline;
  color: #f3c650;
}
footer .footer-title {
  margin-bottom: 30px;
}
footer .footer-title span {
  font-weight: bolder;
  font-size: 25px !important;
  line-height: 27px;
  color: #fff;
}
footer #openinghour {
  max-width: 70%;
}
@media (max-width: 991px) {
  footer #openinghour {
    margin: 10px auto;
  }
}
footer #openinghour .d-flex {
  padding: 8px 0;
}
footer h4 {
  color: #f5e7c1;
  position: relative;
  display: inline-block;
  font-family: Robelia;
  font-size: 24px;
  padding-bottom: 14px;
  margin-bottom: 26px;
}
footer h4::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 48px;
  height: 2px;
  border-radius: 2px;
  background: linear-gradient(90deg, #f3c650, rgba(243, 198, 80, 0.15));
}
@media (max-width: 991px) {
  footer h4::after {
    left: 50%;
    transform: translateX(-50%);
  }
}

.contact-us {
  padding: 100px 80px;
  margin: 0 80px;
  position: relative;
}
@media (max-width: 991px) {
  .contact-us {
    padding: 80px 40px;
    margin: 0 80px 0 0;
  }
}
@media (max-width: 800px) {
  .contact-us {
    margin: 0 40px 0 0;
  }
}
@media (max-width: 576px) {
  .contact-us {
    margin: 0 20px 0 0;
    padding: 20px;
  }
}
.contact-us:after {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  right: 0;
  background: linear-gradient(rgba(16, 14, 11, 0.7), rgba(16, 14, 11, 0.7)), url(../../imgs/hero/wallpaper-horizontal.jpg);
  background-repeat: repeat-x;
  background-position: center;
  background-size: contain;
  width: 100%;
  height: 45px;
}
@media (max-width: 1200px) {
  .contact-us:after {
    height: 24px;
  }
}
@media (max-width: 800px) {
  .contact-us:after {
    display: none;
  }
}
.contact-us::before {
  position: absolute;
  content: "";
  top: 0;
  bottom: 0;
  right: 0;
  background: linear-gradient(rgba(16, 14, 11, 0.7), rgba(16, 14, 11, 0.7)), url(../../imgs/hero/wallpaper.jpg);
  background-repeat: repeat-y;
  background-position: center;
  background-size: contain;
  height: 100%;
  width: 45px;
}
@media (max-width: 1200px) {
  .contact-us::before {
    width: 24px;
  }
}
.contact-us ul {
  padding: 0;
  list-style: none;
  margin-bottom: 0;
}
.contact-us ul li {
  display: inherit;
  align-items: center;
  padding: 4px;
}
.contact-us ul li .branch_name {
  font-size: 2.5rem;
  font-family: Robelia;
}
@media (max-width: 480px) {
  .contact-us ul li .branch_name {
    font-size: 1.6rem;
  }
}
.contact-us ul li i {
  margin: 0 6px;
}
.contact-us ul li span {
  font-family: Robelia;
}
.contact-us .footer-card-right {
  text-align: right !important;
}
@media (max-width: 991px) {
  .contact-us .footer-card-right {
    text-align: left;
  }
}
.contact-us .footer-card-right li {
  flex-direction: row-reverse;
}
.contact-us .footer-card-right li,
.contact-us .footer-card-right span {
  text-align: right;
}
@media (max-width: 991px) {
  .contact-us .footer-card-right li,
  .contact-us .footer-card-right span {
    text-align: left;
  }
}
.contact-us .footer-card-right li a,
.contact-us .footer-card-right span a {
  color: #F8DE8A;
}
.contact-us .footer-card-right li a:hover,
.contact-us .footer-card-right span a:hover {
  color: #C49E28;
}
.contact-us .footer-card-right li svg:hover,
.contact-us .footer-card-right span svg:hover {
  fill: #C49E28;
}
.contact-us .footer-card-right #openinghour {
  margin-left: auto;
}
@media (max-width: 991px) {
  .contact-us .footer-card-right #openinghour {
    margin-right: auto;
    margin-left: 0;
  }
}
.contact-us iframe {
  min-height: 150px;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
}
.contact-us #openinghour,
.contact-us #openinghour {
  width: 90%;
}

section.social-media {
  background-color: #171410;
}
section.social-media div.facebook i {
  color: #f3c650;
}
section.social-media div.facebook i:hover {
  transition: all 0.5s ease;
  filter: blur(1px);
  transform: scale(1.1);
}

section.copyright {
  background-color: #0C0B09;
  border-top: 1px solid rgba(243, 198, 80, 0.28);
  font-family: Robelia;
  padding-top: 22px;
  padding-bottom: 22px;
}
@media (max-width: 991px) {
  section.copyright {
    text-align: center;
  }
}
section.copyright a.weetech-link {
  color: #f3c650;
}

#myBtn {
  font-size: 18px;
  border: none;
  outline: none;
  background-color: #f3c650;
  color: white;
  cursor: pointer;
  padding: 8px 11px;
  border-radius: 12px;
  transition: all 0.5s ease;
  border: 1px solid #f3c650;
}
#myBtn:hover {
  color: #f3c650;
  border: 1px dashed #f3c650;
  background-color: white;
  box-shadow: rgba(243, 198, 80, 0.3) 0px 7px 29px 0px;
}

.fixed-buttons {
  display: none;
  padding: 20px 0;
  position: fixed;
  width: 100%;
  bottom: 70px;
  justify-content: space-between;
  z-index: 9;
}
@media (max-width: 991px) {
  .fixed-buttons {
    display: flex;
  }
}
.fixed-buttons span {
  color: #000;
  font-size: 15px;
}
.fixed-buttons .booking-button {
  display: flex;
  flex-direction: column;
  background-color: #f3c650;
  padding: 15px 30px;
  border-radius: 0 30px 30px 0;
}
.fixed-buttons .header-button {
  display: flex;
  flex-direction: column;
  background-color: #f3c650;
  padding: 15px 30px;
  border-radius: 30px 0 0 30px;
}
.fixed-buttons img {
  max-width: 30px;
}

.explore {
  position: relative;
  overflow: hidden;
  padding: 105px 0 45px;
  background: radial-gradient(ellipse 65% 48% at 50% 8%, rgba(209, 173, 58, 0.055) 0%, rgba(145, 76, 32, 0.028) 34%, transparent 72%), radial-gradient(ellipse 45% 70% at -8% 52%, rgba(133, 65, 30, 0.15) 0%, rgba(96, 39, 24, 0.055) 42%, transparent 75%), radial-gradient(ellipse 45% 70% at 108% 70%, rgba(112, 39, 27, 0.14) 0%, rgba(76, 29, 22, 0.05) 42%, transparent 75%), radial-gradient(ellipse 55% 40% at 50% 92%, rgba(209, 173, 58, 0.025) 0%, transparent 72%), linear-gradient(118deg, #080706 0%, #100c09 28%, #0c0907 52%, #120c09 76%, #080706 100%);
  color: #f4efe4;
}
.explore::before {
  content: "STAVS";
  position: absolute;
  z-index: 0;
  top: 18px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(244, 239, 228, 0.032);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(100px, 17vw, 245px);
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.085em;
  white-space: nowrap;
  pointer-events: none;
}
.explore::after {
  content: "";
  position: absolute;
  z-index: 0;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.012) 0%, transparent 20%, transparent 80%, rgba(255, 255, 255, 0.012) 100%), linear-gradient(180deg, rgba(0, 0, 0, 0.02) 0%, transparent 25%, transparent 75%, rgba(0, 0, 0, 0.18) 100%);
}
.explore .container {
  position: relative;
  z-index: 2;
}
.explore .section-header {
  position: relative;
  margin-bottom: 54px;
  text-align: center;
}
.explore .section-header::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 460px;
  height: 180px;
  transform: translate(-50%, -50%);
  background: radial-gradient(ellipse, rgba(209, 173, 58, 0.05) 0%, rgba(151, 79, 31, 0.025) 42%, transparent 72%);
  filter: blur(15px);
  pointer-events: none;
}
.explore .section-header span {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 13px;
  margin-bottom: 17px;
  color: #d1ad3a;
  font-size: 12px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 3.4px;
  text-transform: uppercase;
}
.explore .section-header span::before, .explore .section-header span::after {
  content: "";
  width: 32px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(209, 173, 58, 0.78));
}
.explore .section-header span::after {
  transform: scaleX(-1);
}
.explore .section-header h2 {
  position: relative;
  z-index: 1;
  margin: 0;
  color: #f4efe4;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(42px, 5vw, 66px);
  font-weight: 400;
  line-height: 0.96;
  letter-spacing: -0.045em;
  text-shadow: 0 8px 35px rgba(0, 0, 0, 0.22);
}
.explore .section-header::after {
  content: "";
  position: relative;
  z-index: 1;
  display: block;
  width: 42px;
  height: 1px;
  margin: 23px auto 0;
  background: #d1ad3a;
  box-shadow: 0 0 18px rgba(209, 173, 58, 0.18);
}
.explore__grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-bottom: 44px;
}
.explore__grid::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 15%;
  left: 50%;
  width: 75%;
  height: 70%;
  transform: translateX(-50%);
  background: radial-gradient(ellipse, rgba(209, 173, 58, 0.035) 0%, rgba(128, 61, 28, 0.025) 35%, transparent 72%);
  filter: blur(30px);
  pointer-events: none;
}
.explore .card {
  position: relative;
  height: 510px;
  overflow: hidden;
  border: 1px solid rgba(221, 184, 83, 0.25);
  background: #15100c;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.38), 0 0 0 1px rgba(255, 255, 255, 0.015);
  isolation: isolate;
  transition: transform 0.6s cubic-bezier(0.19, 1, 0.22, 1), border-color 0.5s ease, box-shadow 0.6s ease;
}
.explore .card::before {
  content: "";
  position: absolute;
  z-index: 3;
  inset: 12px;
  border: 1px solid rgba(245, 238, 224, 0.2);
  pointer-events: none;
  transition: inset 0.6s cubic-bezier(0.19, 1, 0.22, 1);
}
.explore .card::after {
  content: "";
  position: absolute;
  z-index: 2;
  inset: 0;
  background: linear-gradient(180deg, rgba(6, 5, 4, 0.05) 0%, rgba(6, 5, 4, 0.04) 35%, rgba(6, 5, 4, 0.48) 67%, rgba(6, 5, 4, 0.94) 100%), linear-gradient(90deg, rgba(92, 43, 21, 0.16), transparent 45%, rgba(198, 153, 49, 0.04));
  pointer-events: none;
}
.explore .card img {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.025);
  filter: brightness(0.82) saturate(0.9) contrast(1.06);
  transition: transform 1.2s cubic-bezier(0.19, 1, 0.22, 1), filter 0.7s ease;
}
.explore .card .card__content {
  position: absolute;
  z-index: 4;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 90px 34px 32px;
  background: linear-gradient(180deg, transparent 0%, rgba(9, 7, 5, 0.18) 18%, rgba(9, 7, 5, 0.72) 65%, rgba(9, 7, 5, 0.94) 100%);
}
.explore .card .card__content h3 {
  position: relative;
  max-width: 360px;
  margin: 0 0 22px;
  color: #f6f0e4;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(29px, 2.5vw, 37px);
  font-weight: 400;
  line-height: 1.02;
  letter-spacing: -0.035em;
  text-shadow: 0 5px 20px rgba(0, 0, 0, 0.55);
}
.explore .card .card__content .btn {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0 17px;
  border-radius: 0;
  background: #d4ad42;
  color: #17110b;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.3px;
  text-transform: uppercase;
  transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
}
.explore .card .card__content .btn::after {
  content: "→";
  margin-left: 11px;
  font-size: 13px;
  transition: transform 0.3s ease;
}
.explore .card .card__content .btn:hover {
  border-color: #f4eee1;
  background: #f4eee1;
  color: #17110b;
  transform: translateY(-2px);
}
.explore .card .card__content .btn:hover::after {
  transform: translateX(4px);
}
.explore .card:nth-child(1)::before {
  border-color: rgba(214, 174, 69, 0.28);
}
.explore .card:nth-child(2)::before {
  border-color: rgba(244, 239, 228, 0.22);
}
.explore .card:nth-child(3)::before {
  border-color: rgba(214, 174, 69, 0.28);
}
.explore .card:hover {
  transform: translateY(-7px);
  border-color: rgba(218, 178, 65, 0.55);
  box-shadow: 0 35px 75px rgba(0, 0, 0, 0.48), 0 0 45px rgba(119, 55, 24, 0.12);
}
.explore .card:hover::before {
  inset: 17px;
}
.explore .card:hover img {
  transform: scale(1.08);
  filter: brightness(0.88) saturate(1.02) contrast(1.06);
}
.explore .card:nth-child(1)::after {
  border-top-color: #d7b23d;
  border-left-color: #d7b23d;
}
.explore .card:nth-child(1) .card__content h3::before {
  background: #d7b23d;
}
.explore .card:nth-child(2)::after {
  left: auto;
  right: 11px;
}
.explore .card:nth-child(2) .card__content h3::before {
  width: 46px;
  background: #d0a83a;
}
.explore .card:nth-child(3)::after {
  top: auto;
  bottom: 11px;
  border-top: 0;
  border-bottom: 1px solid #d39c38;
}
.explore .card:nth-child(3) .card__content h3::before {
  width: 28px;
  background: #d39c38;
}
.explore + .promo-banner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  padding: 25px 30px;
  border: 1px solid rgba(209, 173, 58, 0.23);
  border-radius: 0;
  background: linear-gradient(135deg, rgba(209, 173, 58, 0.96), rgba(185, 145, 47, 0.96));
  color: #110e0a;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.18), inset 0 1px 0 rgba(255, 255, 255, 0.2);
}
.explore + .promo-banner h3 {
  margin: 0 0 4px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 24px;
  font-weight: 400;
  line-height: 1.05;
}
.explore + .promo-banner p {
  margin: 0;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.5;
}
@media (max-width: 991.98px) {
  .explore {
    padding: 85px 0 80px;
  }
  .explore .section-header {
    margin-bottom: 44px;
  }
  .explore__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .explore .card {
    height: 470px;
  }
  .explore .card:last-child {
    grid-column: 1/-1;
  }
  .explore .card .card__content {
    padding: 80px 30px 30px;
  }
}
@media (max-width: 575.98px) {
  .explore {
    padding: 72px 0 65px;
  }
  .explore::before {
    top: 80px;
    font-size: 90px;
  }
  .explore .section-header {
    margin-bottom: 36px;
  }
  .explore .section-header::before {
    width: 320px;
    height: 150px;
  }
  .explore .section-header span {
    gap: 9px;
    margin-bottom: 15px;
    font-size: 12px;
    letter-spacing: 2.7px;
  }
  .explore .section-header span::before, .explore .section-header span::after {
    width: 22px;
  }
  .explore .section-header h2 {
    font-size: 42px;
  }
  .explore .section-header::after {
    margin-top: 20px;
  }
  .explore__grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .explore .card,
  .explore .card:last-child {
    grid-column: auto;
    height: 400px;
  }
  .explore .card::before,
  .explore .card:last-child::before {
    inset: 10px;
  }
  .explore .card .card__content,
  .explore .card:last-child .card__content {
    padding: 90px 23px 24px;
  }
  .explore .card .card__content h3,
  .explore .card:last-child .card__content h3 {
    margin-bottom: 19px;
    font-size: 29px;
  }
  .explore .card:hover,
  .explore .card:last-child:hover {
    transform: translateY(-4px);
  }
  .explore .card:hover::before,
  .explore .card:last-child:hover::before {
    inset: 13px;
  }
  .explore + .promo-banner {
    display: block;
    padding: 22px;
  }
  .explore + .promo-banner h3 {
    font-size: 21px;
  }
  .explore + .promo-banner p {
    margin-top: 7px;
    font-size: 13px;
  }
}

.parallax-story {
  position: relative;
  width: 100%;
  height: 540px;
  overflow: hidden;
  margin-bottom: 50px;
  isolation: isolate;
  background: #080706;
}
.parallax-story__media {
  position: absolute;
  z-index: -3;
  inset: -10% 0;
  width: 100%;
  height: 105%;
  overflow: hidden;
  will-change: transform;
}
.parallax-story__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.055);
  filter: saturate(0.9) contrast(1.03) brightness(1);
  user-select: none;
  pointer-events: none;
}
.parallax-story__overlay {
  position: absolute;
  z-index: -2;
  inset: 0;
  background: linear-gradient(90deg, rgba(5, 4, 3, 0.72) 0%, rgba(5, 4, 3, 0.58) 22%, rgba(5, 4, 3, 0.24) 46%, rgba(5, 4, 3, 0.05) 72%, rgba(5, 4, 3, 0.16) 100%), linear-gradient(180deg, rgba(5, 4, 3, 0.12) 0%, transparent 30%, rgba(5, 4, 3, 0.28) 100%);
}
.parallax-story__content {
  position: absolute;
  z-index: 3;
  top: 0;
  left: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: min(760px, 62%);
  height: 100%;
  padding: 70px 80px 70px 9vw;
  background: linear-gradient(90deg, rgba(8, 7, 6, 0.88) 0%, rgba(8, 7, 6, 0.76) 42%, rgba(8, 7, 6, 0.38) 72%, rgba(8, 7, 6, 0) 100%);
  color: #f4efe4;
}
.parallax-story__content::after {
  content: "";
  position: absolute;
  top: 14%;
  right: 0;
  width: 1px;
  height: 72%;
  background: linear-gradient(180deg, transparent, rgba(209, 173, 58, 0.35) 22%, rgba(209, 173, 58, 0.35) 78%, transparent);
}
.parallax-story__eyebrow {
  position: relative;
  display: inline-flex;
  align-items: center;
  width: fit-content;
  margin-bottom: 20px;
  padding-left: 18px;
  color: #d1ad3a;
  font-size: 12px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 3px;
  text-transform: uppercase;
}
.parallax-story__eyebrow::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 7px;
  height: 7px;
  transform: translateY(-50%);
  background: #d1ad3a;
}
.parallax-story h4 {
  max-width: 680px;
  margin: 0;
  color: #f4efe4;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(48px, 4.8vw, 72px);
  font-weight: 400;
  line-height: 0.96;
  letter-spacing: -0.045em;
  text-shadow: 0 5px 26px rgba(0, 0, 0, 0.38);
}
.parallax-story h4 em {
  color: #d1ad3a;
  font-style: italic;
  font-weight: 400;
}
.parallax-story__line {
  position: relative;
  width: 72px;
  height: 1px;
  margin: 27px 0 25px;
  background: #d1ad3a;
}
.parallax-story__line::after {
  content: "";
  position: absolute;
  right: -11px;
  top: 0;
  width: 5px;
  height: 1px;
  background: #d1ad3a;
}
.parallax-story .btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-height: 48px;
  padding: 0 24px;
  overflow: hidden;
  border: 1px solid #d1ad3a;
  border-radius: 0;
  background: #d1ad3a;
  color: #110e0a;
  font-size: 12px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  text-decoration: none;
  transition: color 0.3s ease, background-color 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
}
.parallax-story .btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.11);
  transform: translateX(-102%);
  transition: transform 0.5s cubic-bezier(0.19, 1, 0.22, 1);
}
.parallax-story .btn::after {
  content: "→";
  position: relative;
  z-index: 1;
  margin-left: 11px;
  font-size: 13px;
  transition: transform 0.3s ease;
}
.parallax-story .btn span {
  position: relative;
  z-index: 1;
}
.parallax-story .btn:hover {
  transform: translateY(-2px);
  background: transparent;
  border-color: #f4efe4;
  color: #f4efe4;
}
.parallax-story .btn:hover::before {
  transform: translateX(0);
}
.parallax-story .btn:hover::after {
  transform: translateX(4px);
}
.parallax-story__edge {
  position: absolute;
  z-index: 4;
  top: 0;
  right: 9%;
  width: 1px;
  height: 100%;
  background: linear-gradient(180deg, transparent, rgba(209, 173, 58, 0.28) 20%, rgba(209, 173, 58, 0.28) 80%, transparent);
}
@media (min-width: 1200px) {
  .parallax-story__content {
    width: min(920px, 75%);
    padding-left: 9vw;
    padding-right: 90px;
    background: linear-gradient(90deg, rgba(8, 7, 6, 0.9) 0%, rgba(8, 7, 6, 0.77) 40%, rgba(8, 7, 6, 0.36) 70%, rgba(8, 7, 6, 0) 100%);
  }
  .parallax-story h4 {
    max-width: 830px;
    font-size: clamp(52px, 4.7vw, 72px);
  }
}
@media (max-width: 991.98px) {
  .parallax-story {
    height: 560px;
  }
  .parallax-story__media {
    inset: -8% 0;
    height: 116%;
  }
  .parallax-story__content {
    width: 72%;
    padding: 55px 55px 55px 6vw;
    background: linear-gradient(90deg, rgba(8, 7, 6, 0.82) 0%, rgba(8, 7, 6, 0.68) 50%, rgba(8, 7, 6, 0.3) 82%, transparent 100%);
  }
  .parallax-story__edge {
    right: 5%;
  }
  .parallax-story h4 {
    max-width: 620px;
    font-size: clamp(42px, 6.5vw, 60px);
  }
  .parallax-story__eyebrow {
    margin-bottom: 17px;
    font-size: 12px;
    letter-spacing: 2.5px;
  }
  .parallax-story__line {
    margin: 22px 0;
  }
}
@media (max-width: 767.98px) {
  .parallax-story {
    height: 540px;
  }
  .parallax-story__media {
    inset: 0;
    height: 100%;
  }
  .parallax-story__media img {
    transform: scale(1.06);
    filter: saturate(0.9) contrast(1.02) brightness(0.98);
  }
  .parallax-story__overlay {
    background: linear-gradient(90deg, rgba(5, 4, 3, 0.68), rgba(5, 4, 3, 0.34)), linear-gradient(180deg, rgba(5, 4, 3, 0.08), rgba(5, 4, 3, 0.32));
  }
  .parallax-story__content {
    width: 100%;
    height: 100%;
    padding: 45px 30px;
    background: linear-gradient(90deg, rgba(8, 7, 6, 0.78), rgba(8, 7, 6, 0.32), transparent);
  }
  .parallax-story__content::after {
    display: none;
  }
  .parallax-story__eyebrow {
    margin-bottom: 17px;
    padding-left: 15px;
    font-size: 12px;
    letter-spacing: 2.2px;
  }
  .parallax-story__eyebrow::before {
    width: 6px;
    height: 6px;
  }
  .parallax-story h4 {
    max-width: 460px;
    font-size: clamp(39px, 10.5vw, 54px);
    line-height: 0.98;
  }
  .parallax-story__line {
    width: 55px;
    margin: 21px 0;
  }
  .parallax-story__edge {
    display: none;
  }
  .parallax-story .btn {
    min-height: 46px;
    padding: 0 20px;
    font-size: 12px;
    letter-spacing: 1.5px;
  }
}
@media (max-width: 400px) {
  .parallax-story {
    height: 500px;
  }
  .parallax-story__content {
    padding: 35px 22px;
  }
  .parallax-story__eyebrow {
    font-size: 12px;
    letter-spacing: 1.7px;
  }
  .parallax-story h4 {
    max-width: 360px;
    font-size: 36px;
  }
}

.btn {
  display: inline-block;
  padding: 6px 24px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.25s ease;
  cursor: pointer;
  border: 2px solid transparent;
}
.btn--primary {
  background: #f3c650;
  color: #0C0B09;
}
.btn--primary:hover {
  background: rgb(94.2673796791%, 72.7700534759%, 16.3992869875%);
}
.btn--outline {
  background: transparent;
  border-color: #f3c650;
  color: #f3c650;
}
.btn--outline:hover {
  background: #f3c650;
  color: #0C0B09;
}
.btn--outline-light {
  background: transparent;
  border-color: #fff8e8;
  color: #fff8e8;
}
.btn--outline-light:hover {
  background: #fff8e8;
  color: #0C0B09;
}
.btn--dark {
  background: #0C0B09;
  color: #fff8e8;
}
.btn--dark:hover {
  background: rgb(16.1344537815%, 14.7899159664%, 12.1008403361%);
  color: #f3c650;
}
.btn--gold {
  background: linear-gradient(135deg, #f3c650, #C49E28);
  color: #0C0B09;
  border-radius: 50px;
  border: 2px solid #f3c650;
  transition: all 0.3s ease;
}
.btn--gold:hover {
  background: linear-gradient(135deg, rgb(94.2673796791%, 72.7700534759%, 16.3992869875%), rgb(63.5746095048%, 51.2489199069%, 12.974410103%));
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(243, 198, 80, 0.35);
}
.btn--lg {
  padding: 1rem 2.2rem;
  font-size: 1.05rem;
}
.btn--small {
  padding: 0.35rem 0.8rem;
  font-size: 0.8rem;
  background: #3897f0;
  color: white;
  border-radius: 4px;
}

/*# sourceMappingURL=style2.css.map */
