﻿[data-theme="dark"] .fd-about__chef-sign img {
  filter: invert(1) brightness(1.2);
}

/* Stile base aggiornato */
.header-logo {
  width: auto;
  height: 50vh;
  filter: drop-shadow(0 5px 5px rgba(229, 221, 210, 0.6));
  overflow: visible;
}

/* Prepariamo i tracciati per l'animazione */
.header-logo path,
.header-logo polygon {
  stroke: var(--primary-color); /* Usiamo il tuo colore per il bordo */
  stroke-width: 1.5px;
  stroke-linecap: round;
  stroke-linejoin: round;

  /* L'animazione di disegno */
  transition: fill 0.8s ease-in-out;
}

@media (max-width: 992px) {
  .header-logo {
    height: 38vh;
  }
}
.fdx-header {
  background-color: rgba(var(--white-rgb), 0.65);
  backdrop-filter: blur(15px);
  color: var(--dark-color);
  padding: 20px 0;
  transition: var(--tr-smooth);
  z-index: 1050;
  border-bottom: 1px solid rgba(var(--gray-cus-100), 0.05);
}

.fdx-header.is-sticky {
  padding: 15px 0;
  background: rgba(var(--white-rgb), 0.75);
  backdrop-filter: blur(15px);
  border-bottom: 1px solid rgba(var(--secondary-color-rgb), 0.2);
}

.fdx-header .logo {
  height: 48px;
}

.fdx-header .fdx-nav__logo-link {
  text-decoration: none;
}

.fdx-header .fdx-nav__logo-text {
  font-family: var(--font-head);
  font-size: 28px;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--dark-color);
}

.fdx-header .fdx-nav__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 20px;
}

.fdx-header .fdx-nav__item {
  position: relative;
}

.fdx-header .fdx-nav__link {
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--dark-color);
  text-decoration: none;
  position: relative;
  opacity: 0.8;
  transition: var(--tr-speed);
}

.fdx-header .fdx-nav__link:hover,
.fdx-header .fdx-nav__link.active {
  opacity: 1;
  color: var(--secondary-color);
}

.fdx-header .fdx-nav .fdx-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--gray-cus-100);
  min-width: 220px;
  padding: 20px 0;
  border-radius: 4px;
  box-shadow: 0 15px 30px rgba(var(--dark-color-rgb), 0.1);
  opacity: 0;
  visibility: hidden;
  transform: translateY(15px);
  transition: var(--tr-speed);
  border: 1px solid var(--border-color);
}

.fdx-header .fdx-nav__item:hover > .fdx-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.fdx-header .fdx-nav .fdx-dropdown__link {
  display: block;
  padding: 12px 25px;
  color: var(--text-main);
  text-decoration: none;
  font-size: 14px;
  transition: 0.3s;
}

.fdx-header .fdx-nav .fdx-dropdown__link:hover {
  padding-left: 35px;
  color: var(--secondary-color);
  background: rgba(var(--secondary-color-rgb), 0.05);
}

.fdx-header .fdx-nav .fdx-dropdown--mega {
  width: 600px;
  left: -150px;
  padding: 30px;
}

.fdx-header .fdx-nav .mega-title {
  font-family: var(--font-head);
  font-size: 18px;
  margin-bottom: 15px;
  color: var(--secondary-color);
}

.fdx-header .fdx-nav__toggle {
  background: none;
  border: none;
  width: 35px;
  height: 24px;
  position: relative;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-end;
  padding: 0;
  margin-left: 25px;
}

.fdx-header .fdx-nav__toggle:hover .fdx-nav__toggle-line {
  width: 100%;
  background: var(--secondary-color);
}

.fdx-header .fdx-nav__toggle-line {
  height: 2px;
  background: var(--dark-color);
  transition: var(--tr-smooth);
}

.fdx-header .fdx-nav__toggle-line:nth-child(1) {
  width: 100%;
}

.fdx-header .fdx-nav__toggle-line:nth-child(2) {
  width: 60%;
}

.fdx-header .fdx-nav__toggle-line:nth-child(3) {
  width: 30%;
}

@media (min-width: 992px) {
  .fdx-header .fdx-nav__list {
    gap: 25px;
  }
}

@media (min-width: 1200px) {
  .fdx-header .fdx-nav__list {
    gap: 30px;
  }
}

@media (min-width: 1400px) {
  .fdx-header .fdx-nav__list {
    gap: 40px;
  }
}

.fdx-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: 1060;
  visibility: hidden;
  display: flex;
  align-items: center;
}

.fdx-overlay__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 0%;
  background: rgba(var(--dark-color-fixed-rgb), 0.95);
  z-index: -1;
}

.fdx-overlay__close {
  position: absolute;
  top: 40px;
  right: 50px;
  background: none;
  border: none;
  color: var(--white-fixed);
  font-size: 40px;
  cursor: pointer;
  opacity: 0;
}

.fdx-overlay__close:hover {
  color: var(--secondary-color);
}

.fdx-overlay__label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--secondary-color);
  margin-bottom: 20px;
  display: block;
}

.fdx-overlay__menu {
  margin-bottom: 2rem;
  opacity: 0;
}

.fdx-overlay__menu a {
  color: var(--white-fixed);
  opacity: 0.75;
  transition:
    color var(--tr-speed),
    transform var(--tr-speed);
}

.fdx-overlay__menu a:hover {
  color: var(--secondary-color-fixed);
  transform: translateX(10px);
}

.fdx-overlay__list {
  list-style: none;
  padding: 0;
}

.fdx-overlay__item {
  overflow: hidden;
  margin-bottom: 20px;
}

.fdx-overlay__link {
  font-family: var(--font-head);
  font-size: clamp(25px, 8vw, 50px);
  color: var(--white-fixed);
  line-height: 1.1;
  display: block;
  transform: translateY(100%);
  transition: color var(--tr-speed);
  cursor: pointer;
}

.fdx-overlay__link:hover {
  color: var(--secondary-color);
  font-style: italic;
  transform: translateX(20px);
}

.fdx-overlay__link .bi {
  margin-left: 2rem;
  font-size: 0.8em;
}

.fdx-overlay__info {
  border-left: 1px solid rgba(var(--white-fixed-rgb), 0.1);
  padding-left: 40px;
  opacity: 0;
  color: var(--white-fixed);
}

.fdx-overlay__info a {
  color: var(--white-fixed);
  transition: color var(--tr-speed);
}

.fdx-overlay__info a:hover {
  color: var(--secondary-color);
}

.fdx-overlay__sub {
  padding-left: 20px;
  display: none;
  margin-top: 20px;
  margin-bottom: 20px;
}

.fdx-overlay__sub-link {
  color: rgba(var(--white-fixed-rgb), 0.75);
  text-decoration: none;
  display: block;
  padding: 8px 0;
  transition: color var(--tr-speed);
}

.fdx-overlay__sub-link:hover {
  color: rgba(var(--white-fixed-rgb), 0.95);
}

.fdx-overlay__scroll {
  max-height: 80vh;
  overflow-y: auto;
  overflow-x: hidden;
}

.search-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(var(--dark-color-fixed-rgb), 0.98);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: 0.4s;
}

.search-overlay.active {
  opacity: 1;
  visibility: visible;
}

.search-overlay .search-form {
  width: 600px;
  position: relative;
}

.search-overlay .search-form input {
  width: 100%;
  background: rgba(0, 0, 0, 0);
  border: none;
  border-bottom: 2px solid var(--white);
  color: var(--white);
  font-size: 30px;
  outline: none;
}

.search-overlay .search-form input:focus {
  box-shadow: none;
}

.ml-utility-menu {
  position: fixed;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1050;
}

.ml-utility-inner {
  background: rgba(var(--white-rgb), 0.9);
  backdrop-filter: blur(15px);
  padding: 10px;
  border-radius: 50px;
  border: 1px solid var(--gray-cus-100);
  box-shadow: var(--box-shadow);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.ml-utility-link {
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--white);
  color: var(--primary-color);
  border: 1px solid var(--gray-cus-100);
  transition: 0.3s;
  cursor: pointer;
  text-decoration: none;
}

.ml-utility-link:hover,
.ml-utility-link.active-cta {
  background: var(--primary-color);
  color: var(--white);
}

.ml-lang-dropdown {
  min-width: 180px;
  border: none;
  box-shadow: var(--box-shadow);
  border-radius: 16px;
  padding: 10px;
  margin-left: 15px !important;
}

.ml-lang-dropdown .dropdown-item:active {
  background-color: var(--primary-color);
}

.ml-lang-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 12px;
  border-radius: 8px;
  font-size: 14px;
  color: var(--dark-color);
  transition: 0.2s;
}

.ml-lang-item:hover {
  background: var(--light-color);
  color: var(--primary-color);
}

@media (max-width: 767px) {
  .ml-utility-menu {
    left: 0;
    bottom: 0;
    top: auto;
    transform: none;
    width: 100%;
    padding: 10px 20px;
    background: var(--white);
    box-shadow: 0 -5px 20px rgba(var(--dark-color-rgb), 0.05);
    border-top: 1px solid var(--gray-cus-100);
  }

  .ml-utility-inner {
    flex-direction: row;
    justify-content: space-between;
    background: rgba(0, 0, 0, 0);
    backdrop-filter: none;
    padding: 0;
    box-shadow: none;
    border: none;
  }

  .ml-lang-dropdown {
    margin-left: 0 !important;
    position: absolute !important;
    bottom: 60px !important;
    top: auto !important;
    transform: none !important;
  }

  .ml-utility-link {
    width: 40px;
    height: 40px;
  }

  .active-cta {
    width: auto;
    padding: 0 20px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 14px;
  }

  .active-cta::after {
    content: " Book Now";
    margin-left: 8px;
  }

  footer {
    padding-bottom: 60px;
  }
}

.fd-hero {
  position: relative;
  overflow: hidden;
  height: 100vh;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(
    circle at center,
    var(--white) 0%,
    var(--light-color) 100%
  );
}

.fd-hero__title-box {
  position: absolute;
  z-index: 2;
  mix-blend-mode: multiply;
  text-align: center;
  pointer-events: none;
}

.fd-hero__title {
  font-family: var(--font-heading);
  font-size: clamp(6rem, 20vw, 18rem);
  font-weight: 600;
  line-height: 0.7;
  color: var(--fd-primary);
  opacity: 0.15;
  letter-spacing: -0.05em;
}

.fd-hero__main-visual {
  position: relative;
  z-index: 5;
  width: 100%;
  max-width: 700px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.fd-hero .fd-main-image {
  width: 90%;
  filter: drop-shadow(0 50px 100px rgba(var(--primary-color-rgb), 0.3));
  z-index: 10;
  transform: rotate(-5deg);
  opacity: 0;
}

.fd-hero .fd-glass-card {
  position: absolute;
  background: rgba(var(--white-rgb), 0.6);
  backdrop-filter: blur(15px);
  border: 1px solid rgba(var(--white-rgb), 0.6);
  padding: 20px;
  border-radius: 20px;
  z-index: 12;
  box-shadow: 0 20px 40px rgba(var(--dark-color-rgb), 0.05);
  pointer-events: auto;
  opacity: 0;
  transform: scale(0.5);
  transition: var(--tr-smooth);
}

.fd-hero .fd-glass-card:hover {
  transform: scale(1.05) translateY(-5px);
  background: rgba(var(--white-rgb), 0.75);
}

.fd-hero .fd-glass-card__val {
  font-family: var(--font-head);
  font-size: 24px;
  color: var(--primary-color);
  display: block;
}

.fd-hero .fd-glass-card__label {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--dark-color);
}

.fd-hero .fd-glass-card:nth-child(1) {
  top: 10%;
  left: 0;
}

.fd-hero .fd-glass-card:nth-child(2) {
  bottom: 10%;
  right: -5%;
}

@media (max-width: 991px) {
  .fd-hero .fd-glass-card:nth-child(2) {
    right: 1%;
  }
}

.fd-hero .fd-floating-particle {
  position: absolute;
  z-index: 6;
  pointer-events: none;
}

.fd-hero__cta {
  position: absolute;
  bottom: 8%;
  z-index: 20;
  text-align: center;
  opacity: 0;
  transform: translateY(20px);
}

.fd-hero-s {
  position: relative;
  height: 100vh;
  min-height: 800px;
  overflow: hidden;
}

.fd-hero-s__slider {
  width: 100%;
  height: 100%;
}

.fd-hero-s__item {
  position: relative;
  display: flex;
  align-items: center;
}

.fd-hero-s__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: -1;
  transform: scale(1.1);
}

.fd-hero-s__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(var(--dark-color-fixed-rgb), 0.85) 0%,
    rgba(var(--dark-color-fixed-rgb), 0.4) 100%
  );
  z-index: -1;
}

.fd-hero-s__subtitle {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 5px;
  color: var(--secondary-color-fixed);
  margin-bottom: 20px;
  display: block;
}

.fd-hero-s__title {
  font-family: var(--font-head);
  font-size: clamp(3rem, 7vw, 6rem);
  line-height: 1.1;
  color: var(--white-fixed);
  margin-bottom: 30px;
  font-weight: 700;
}

.fd-hero-s__desc {
  color: var(--light-color-fixed);
  font-size: 18px;
  max-width: 580px;
  line-height: 1.7;
  margin-bottom: 40px;
  opacity: 0.9;
}

.fd-hero-s .fd-btn--hero {
  display: inline-flex;
  padding: 18px 45px;
  background: var(--gray-cus-900-fixed);
  color: var(--light-color-fixed);
  text-decoration: none;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  border-radius: 4px;
  transition: var(--tr-smooth);
  border: 1px solid var(--gray-cus-900-fixed);
}

.fd-hero-s .fd-btn--hero:hover {
  background: rgba(0, 0, 0, 0);
  color: var(--white-fixed);
  border-color: var(--white-fixed);
}

.fd-hero-s__controls-container {
  position: absolute;
  bottom: 60px;
  left: 0;
  width: 100%;
  z-index: 20;
}

.fd-hero-s__controls-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.fd-hero-s__status {
  display: flex;
  align-items: center;
  gap: 20px;
  color: var(--white-fixed);
  font-family: var(--font-head);
  font-size: 24px;
}

.fd-hero-s__status .line {
  width: 80px;
  height: 1px;
  background: rgba(var(--white-fixed-rgb), 0.2);
  position: relative;
}

.fd-hero-s__status .line-progress {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 0%;
  background: var(--secondary-color-fixed);
}

.fd-hero-s__navigation {
  display: flex;
  gap: 15px;
}

.fd-hero-s__nav-btn {
  width: 60px;
  height: 60px;
  border: 1px solid rgba(var(--white-fixed-rgb), 0.15);
  color: var(--white-fixed);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--tr-smooth);
  background: rgba(0, 0, 0, 0);
}

.fd-hero-s__nav-btn:hover {
  background: var(--secondary-color-fixed);
  border-color: var(--secondary-color-fixed);
  transform: translateY(-3px);
}

.fd-hero-v {
  position: relative;
  height: 100vh;
  min-height: 800px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.fd-hero-v__bg {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.fd-hero-v__bg video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.fd-hero-v__overlay {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: rgba(var(--dark-color-fixed-rgb), 0.4);
  background: radial-gradient(
    circle at center,
    rgba(var(--dark-color-fixed-rgb), 0.3) 0%,
    rgba(var(--dark-color-fixed-rgb), 0.85) 100%
  );
  backdrop-filter: blur(14px);
}

.fd-hero-v__content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  padding: 40px;
  border-radius: 20px;
}

.fd-hero-v__subtitle {
  display: inline-block;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 6px;
  color: var(--secondary-color-fixed);
  margin-bottom: 20px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.fd-hero-v__title {
  font-family: var(--font-head);
  font-size: clamp(3.2rem, 7vw, 6rem);
  line-height: 1.05;
  font-weight: 700;
  margin-bottom: 35px;
  color: var(--white-fixed);
  text-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
  letter-spacing: -1px;
}

.fd-hero-v__scroll {
  position: absolute;
  bottom: 50px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  text-decoration: none;
  color: var(--white);
}

.fd-hero-v__scroll-line {
  width: 1px;
  height: 60px;
  background: hsla(0, 0%, 100%, 0.2);
  position: relative;
  overflow: hidden;
}

.fd-hero-v__scroll-line::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--secondary-color-fixed);
  animation: scroll-anim 2s infinite;
}

@keyframes scroll-anim {
  0% {
    transform: translateY(-100%);
  }

  100% {
    transform: translateY(100%);
  }
}

.fd-about {
  position: relative;
}

.fd-about__bg-text {
  position: absolute;
  top: 50%;
  left: 5%;
  transform: translateY(-50%) rotate(-90deg);
  font-size: 150px;
  font-weight: 900;
  color: var(--gray-cus-50);
  z-index: 0;
  white-space: nowrap;
  user-select: none;
  line-height: 1;
}

.fd-about__gallery {
  position: relative;
  overflow: hidden;
  border-radius: var(--border-radius-sm);
  box-shadow: 30px 30px 0px var(--gray-cus-50);
}

.fd-about__gallery:hover .fd-about__img-main {
  transform: scale(1.1);
}

.fd-about__img-main {
  width: 100%;
  height: 650px;
  object-fit: cover;
  transition: var(--tr-smooth-slow);
}

.fd-about__content {
  padding: 60px;
  padding-left: 130px;
  background: rgba(var(--white-rgb), 0.9);
  backdrop-filter: blur(10px);
  margin-left: -120px;
  margin-top: 100px;
  border: 1px solid var(--gray-cus-100);
  position: relative;
  z-index: 2;
  opacity: 0.65;
}

@media (max-width: 991px) {
  .fd-about {
    background-position: bottom !important;
  }
  .fd-about__content {
    margin-left: 0;
    padding: 30px;
  }

  .fd-about__img-main {
    height: 450px;
  }
}

.fd-about__title {
  color: var(--gray-cus-900);
  line-height: 1.1;
  margin-bottom: 25px;
}

.fd-about__title span {
  color: var(--primary-color);
  font-style: italic;
}

.fd-about__desc {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--gray-cus-600);
  margin-bottom: 40px;
}

.fd-about__badges {
  display: flex;
  gap: 40px;
  margin-bottom: 50px;
}

.fd-about__badge-item {
  text-align: center;
}

.fd-about__badge-icon {
  width: 60px;
  height: 60px;
  background: var(--gray-cus-50);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: var(--primary-color);
  margin-bottom: 10px;
  transition: var(--tr-smooth);
}

.fd-about__badge-item:hover .fd-about__badge-icon {
  background: var(--secondary-color);
  color: var(--white);
  transform: translateY(-5px);
}

.fd-about__badge-text {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--gray-cus-900);
}

.fd-about__floating-circle {
  position: absolute;
  left: -15px;
  top: 50%;
  transform: translateY(-50%);
  width: 170px;
  height: 170px;
  background-color: var(--white);
  border-radius: 50%;
  padding: 15px;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
}

.fd-about__circle-inner {
  width: 100%;
  height: 100%;
  background-color: var(--dark-color);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--white);
  animation: spin 20s linear infinite;
}

.fd-about__chef-sign img {
  height: 60px;
}

.fd-featured {
  overflow: hidden;
}

.fd-featured .fd-menu-wrapper {
  position: relative;
  padding: 20px 0;
}

.fd-featured .fd-menu-swiper {
  overflow: visible !important;
}

.fd-featured .fd-menu-card {
  position: relative;
  background: rgba(0, 0, 0, 0);
  transition: var(--tr-smooth);
  padding-bottom: 30px;
}

.fd-featured .fd-menu-card__image-wrap {
  position: relative;
  width: 100%;
  height: 420px;
  overflow: hidden;
  border-radius: 4px;
  margin-bottom: 25px;
  box-shadow: 0 15px 40px rgba(var(--dark-color-rgb), 0.05);
}

.fd-featured .fd-menu-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.5s cubic-bezier(0.19, 1, 0.22, 1);
}

.fd-featured .fd-menu-card__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to bottom,
    transparent 50%,
    rgba(var(--primary-color-rgb), 0.4)
  );
  opacity: 0;
  transition: var(--tr-smooth);
}

.fd-featured .fd-menu-card__content {
  padding: 0 10px;
  position: relative;
}

.fd-featured .fd-menu-card__cat {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: rgba(var(--primary-color), 0.75);
  margin-bottom: 8px;
  display: block;
  font-weight: 600;
}

.fd-featured .fd-menu-card__title {
  font-weight: 300;
  transition: var(--tr-smooth);
}

.fd-featured .fd-menu-card__price {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  color: var(--primary-color);
  font-style: italic;
  border-top: 1px solid var(--gray-cus-200);
  display: inline-block;
  margin-top: 10px;
  padding-top: 5px;
}

.fd-featured .fd-menu-card:hover .fd-menu-card__img {
  transform: scale(1.1) rotate(1deg);
}

.fd-featured .fd-menu-card:hover .fd-menu-card__overlay {
  opacity: 1;
}

.fd-featured .fd-menu-card:hover .fd-menu-card__title {
  transform: translateY(-5px);
  color: var(--secondary-color);
}

.fd-featured .fd-nav-controls {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 20px;
  margin-top: -80px;
  margin-bottom: 40px;
  position: relative;
  z-index: 10;
}

.fd-featured .fd-nav-btn {
  width: 55px;
  height: 55px;
  border: 1px solid var(--gray-cus-200);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--tr-smooth);
  background: var(--white);
}

.fd-featured .fd-nav-btn:hover {
  background: var(--primary-color);
  color: var(--white);
  border-color: var(--primary-color);
}

.fd-featured .reveal-mask {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--primary-color);
  z-index: 2;
  transform-origin: right;
}

@media (max-width: 991px) {
  .fd-featured .fd-nav-controls {
    justify-content: center;
    margin-top: 40px;
  }

  .fd-featured .fd-menu-card__image-wrap {
    height: 350px;
  }
}

.fd-special-dish {
  background-color: var(--gray-cus-50);
  overflow: hidden;
}

.fd-special-dish__gallery {
  position: relative;
  z-index: 1;
}

.fd-special-dish__gallery:hover .fd-special-dish__main-img img {
  transform: scale(1.1);
}

.fd-special-dish__main-img img {
  transition: var(--tr-smooth-slow);
}

.fd-special-dish__main-img {
  position: relative;
  width: 85%;
  z-index: 2;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow-lg);
  overflow: hidden;
}

.fd-special-dish__sub-img {
  position: absolute;
  bottom: -40px;
  right: 0;
  width: 50%;
  z-index: 3;
  border: 10px solid var(--white);
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow-lg);
}

.fd-special-dish__badge {
  position: absolute;
  top: -20px;
  left: -20px;
  width: 110px;
  height: 110px;
  background: var(--primary-color);
  color: var(--light-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  z-index: 5;
  box-shadow: 0 10px 20px rgba(var(--primary-color-rgb), 0.3);
}

.fd-special-dish__price {
  font-family: var(--font-heading);
  font-size: 2rem;
  color: var(--primary-color);
  font-weight: 700;
}

.fd-reservation {
  position: relative;
}

.fd-reservation .fd-section-title__subtitle {
  display: block;
  text-transform: uppercase;
  letter-spacing: 3px;
  font-weight: 600;
  font-size: 10px;
  margin-bottom: 15px;
  color: var(--secondary-color);
}

.fd-reservation .fd-section-title__main {
  font-family: var(--font-head);
  font-weight: 700;
  line-height: 1.1;
  color: var(--dark-color);
}

.fd-reservation__image-wrapper {
  position: relative;
  border-radius: 150px 0 0 150px;
  overflow: hidden;
  aspect-ratio: 4/5;
}

.fd-reservation__img {
  width: 100%;
  height: 120%;
  object-fit: cover;
}

.fd-reservation__badge {
  position: absolute;
  bottom: 30px;
  right: 30px;
  background: var(--white);
  padding: 30px;
  border-radius: var(--border-radius-sm);
  box-shadow: var(--box-shadow-lg);
  z-index: 2;
  text-align: center;
}

.fd-reservation .fd-input-group {
  margin-bottom: 10px;
}

.fd-reservation__btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 18px 30px;
  background: var(--gray-cus-900);
  color: var(--white);
  border: none;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 600;
  font-size: 14px;
  overflow: hidden;
  transition: var(--tr-smooth);
  cursor: pointer;
}

.fd-reservation__btn__circle {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: var(--primary-color);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition:
    width 0.6s ease,
    height 0.6s ease;
  z-index: 0;
}

.fd-reservation__btn:hover .fd-reservation__btn__circle {
  width: 400px;
  height: 400px;
}

.fd-reservation__btn__text {
  position: relative;
  z-index: 1;
}

@media (max-width: 991px) {
  .fd-reservation__image-wrapper {
    border-radius: 4px;
  }
}

.fd-testimonials {
  position: relative;
}

.fd-testimonials__img-box {
  position: relative;
  padding-bottom: 120%;
  overflow: hidden;
  border-radius: var(--border-radius-sm);
  z-index: 2;
}

.fd-testimonials__img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--tr-smooth);
}

.fd-testimonials__img-wrapper {
  position: relative;
  max-width: 450px;
}

.fd-testimonials__img-wrapper::before {
  content: "";
  position: absolute;
  top: -30px;
  left: -30px;
  width: 100%;
  height: 100%;
  background-color: var(--gray-cus-50);
  z-index: 1;
}

.fd-testimonials__content-wrapper {
  padding: 40px 60px 40px 0px;
}

.fd-testimonials__quote-icon {
  font-size: 4rem;
  color: var(--secondary-color);
  line-height: 1;
  margin-bottom: 20px;
}

.fd-testimonials__text {
  font-family: var(--font-head);
  font-size: 2.25rem;
  font-style: italic;
  color: var(--gray-cus-900);
  line-height: 1.3;
  margin-bottom: 40px;
  letter-spacing: -0.02em;
}

.fd-testimonials__author {
  display: flex;
  align-items: center;
  gap: 20px;
}

.fd-testimonials__author-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--dark-color);
  margin-bottom: 0;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.fd-testimonials__author-meta span {
  font-size: 0.9rem;
  color: var(--secondary-color);
}

.fd-testimonials__nav-group {
  margin-top: 60px;
  display: flex;
  align-items: center;
  gap: 30px;
}

.fd-testimonials__pagination {
  width: 150px !important;
  height: 2px !important;
  background: rgba(var(--primary-color-rgb), 0.1) !important;
  position: relative !important;
}

.fd-testimonials__pagination .swiper-pagination-progressbar-fill {
  background: var(--primary-color) !important;
}

.fd-testimonials__arrows {
  display: flex;
  gap: 10px;
}

.fd-testimonials .fd-btn-nav {
  width: 45px;
  height: 45px;
  border: 1px solid var(--gray-cus-200);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--tr-smooth);
  background: rgba(0, 0, 0, 0);
  color: var(--dark-color);
}

.fd-testimonials .fd-btn-nav:hover {
  background: var(--primary-color);
  color: var(--white);
  border-color: var(--primary-color);
}

@media (max-width: 991px) {
  .fd-testimonials__content-wrapper {
    padding: 40px 0 0 0;
  }

  .fd-testimonials__text {
    font-size: 1.75rem;
  }

  .fd-testimonials__img-wrapper {
    margin: 0 auto;
  }
}

.fd-gallery {
  position: relative;
}

.fd-gallery__grid {
  margin-top: 60px;
  column-count: 3;
  column-gap: 30px;
}

@media (max-width: 991px) {
  .fd-gallery__grid {
    column-count: 2;
  }
}

@media (max-width: 576px) {
  .fd-gallery__grid {
    column-count: 1;
  }
}

.fd-gallery__item {
  position: relative;
  overflow: hidden;
  border-radius: var(--border-radius);
  margin-bottom: 24px;
  cursor: pointer;
  background-color: var(--gray-cus-100);
}

.fd-gallery__image-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  aspect-ratio: 4/5;
  overflow: hidden;
}

.fd-gallery__item--large .fd-gallery__image-wrapper {
  aspect-ratio: 1/1;
}

.fd-gallery__img {
  width: 100%;
  height: 120%;
  object-fit: cover;
  transition: transform 1.2s ease-out;
  will-change: transform;
  transform: scale(1.3);
}

.fd-gallery__overlay {
  position: absolute;
  inset: 0;
  background: rgba(var(--dark-color-fixed-rgb), 0.6);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: var(--tr-smooth);
  backdrop-filter: blur(3px);
}

.fd-gallery__icon {
  width: 60px;
  height: 60px;
  border: 1px solid rgba(var(--white-fixed-rgb), 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white-fixed);
  font-size: 24px;
  margin-bottom: 15px;
  transform: translateY(30px);
  transition: var(--tr-smooth-slow);
}

.fd-gallery__caption {
  color: var(--white-fixed);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 12px;
  font-weight: 500;
  transform: translateY(20px);
  transition: var(--tr-smooth-slow) 0.1s;
}

.fd-gallery__item:hover .fd-gallery__overlay {
  opacity: 1;
}

.fd-gallery__item:hover .fd-gallery__icon,
.fd-gallery__item:hover .fd-gallery__caption {
  transform: translateY(0);
}

.fd-gallery__item:hover .fd-gallery__img {
  transform: scale(1.05);
}

.fd-blog {
  position: relative;
  height: 100vh;
  width: 100%;
  overflow: hidden;
  display: flex;
  align-items: center;
  background-color: var(--gray-cus-900-fixed);
}

.fd-blog-wrapper {
  display: flex;
  padding-left: 10vw;
  will-change: transform;
}

.fd-blog .fd-blog-intro {
  min-width: 40vw;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-right: 5vw;
}

.fd-blog .fd-blog-intro__title {
  font-size: clamp(3rem, 8vw, 6rem);
  line-height: 0.9;
  color: var(--light-color-fixed);
  font-weight: 800;
  text-transform: uppercase;
}

.fd-blog .fd-blog-intro__des {
  color: rgba(var(--white-fixed-rgb), 0.75);
}

.fd-blog .fd-blog-item {
  display: flex;
  align-items: center;
  position: relative;
}

.fd-blog .fd-blog-item__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
  width: 100%;
}

.fd-blog .fd-blog-item__img-box {
  height: 60vh;
  width: 100%;
  overflow: hidden;
  border-radius: var(--border-radius-sm);
  position: relative;
}

.fd-blog .fd-blog-item__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.2);
  transition: var(--tr-smooth);
}

.fd-blog .fd-blog-item:hover .fd-blog-item__img {
  transform: scale(1);
}

.fd-blog .fd-blog-item__content {
  color: var(--white);
  padding-right: 2rem;
}

.fd-blog .fd-blog-item__tag {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: rgba(var(--light-color-rgb), 0.75);
  margin-bottom: 1rem;
  display: block;
}

.fd-blog .fd-blog-item__title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.2;
  text-decoration: none;
  display: block;
  transition: var(--tr-smooth);
}

.fd-blog .fd-blog-item__title a {
  color: var(--white-fixed);
  transition: color var(--tr-speed);
}

.fd-blog .fd-blog-item__title:hover {
  transform: translateX(10px);
}

.fd-blog .fd-blog-item__title:hover a {
  color: var(--light-color-fixed);
}

.fd-blog .fd-blog-item__des {
  color: rgba(var(--white-fixed-rgb), 0.75);
}

.fd-blog .fd-blog-item__link {
  width: 50px;
  height: 50px;
  border: 1px solid var(--light-color-fixed);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--light-color-fixed);
  text-decoration: none;
  margin-top: 2rem;
  transition: var(--tr-smooth);
}

.fd-blog .fd-blog-item__link:hover {
  background: var(--light-color);
  color: var(--gray-cus-900);
}

.fd-blog::before {
  content: "OUR STORIES JOURNAL";
  position: absolute;
  bottom: 0;
  left: 0;
  font-size: 10vw;
  font-weight: bold;
  color: rgba(var(--white-fixed-rgb), 0.05);
  white-space: nowrap;
  z-index: 0;
  pointer-events: none;
}

@media (min-width: 992px) {
  .fd-blog-wrapper {
    display: flex;
    padding-left: 10vw;
    will-change: transform;
  }

  .fd-blog .fd-blog-item {
    min-width: 65vw;
    height: 75vh;
    margin-right: 8vw;
  }

  .fd-blog .fd-blog-item__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    height: 100%;
  }

  .fd-blog-intro {
    min-width: 35vw;
    padding-right: 5vw;
  }
}

@media (max-width: 991.98px) {
  .fd-blog {
    height: auto;
    padding: 80px 0;
  }

  .fd-blog-wrapper {
    display: block;
    padding: 0 15px;
  }

  .fd-blog-intro {
    margin-bottom: 60px;
    text-align: center;
  }

  .fd-blog .fd-blog-item {
    margin-bottom: 80px;
    width: 100%;
  }

  .fd-blog .fd-blog-item__inner {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }

  .fd-blog .fd-blog-item__img-box {
    height: 350px;
  }
}

.fd-message {
  margin-top: 12px;
  font-size: 14px;
  opacity: 0;
  transform: translateY(5px);
  transition: all 0.3s ease;
  background-color: var(--white);
  padding: 1rem;
}

.fd-message.show {
  opacity: 1;
  transform: translateY(0);
}

.fd-message.success {
  color: var(--primary-color);
}

.fd-message.error {
  color: var(--bs-danger);
}

#fdCartOffcanvas {
  z-index: 9999;
  background-color: var(--white);
  color: var(--dark-color);
}

#fdCartOffcanvas .fd-cart {
  width: 450px !important;
  border-left: none;
  background-color: var(--white);
}

#fdCartOffcanvas .fd-cart__header {
  padding: 30px;
  border-bottom: 1px solid var(--gray-cus-100);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

#fdCartOffcanvas .fd-cart__title {
  font-weight: 700;
  font-size: 1.5rem;
  margin: 0;
  color: var(--gray-cus-900);
}

#fdCartOffcanvas .fd-cart__close {
  background: none;
  border: 1px solid var(--gray-cus-200);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  transition: var(--tr-smooth);
}

#fdCartOffcanvas .fd-cart__close:hover {
  background-color: var(--primary-color);
  color: var(--white);
}

#fdCartOffcanvas .fd-cart__body {
  padding: 30px;
  overflow-y: auto;
}

#fdCartOffcanvas .fd-cart__shipping-notice {
  background-color: var(--gray-cus-50);
  padding: 15px;
  border-radius: var(--border-radius-sm);
  margin-bottom: 25px;
}

#fdCartOffcanvas .fd-cart__progress-bar {
  height: 6px;
  background-color: var(--gray-cus-200);
  border-radius: 10px;
  margin-top: 10px;
  overflow: hidden;
}

#fdCartOffcanvas .fd-cart__progress-fill {
  height: 100%;
  background-color: var(--secondary-color);
}

#fdCartOffcanvas .fd-cart-item {
  display: flex;
  gap: 20px;
  padding-bottom: 20px;
  margin-bottom: 20px;
  border-bottom: 1px solid var(--gray-cus-100);
  opacity: 0;
  transform: translateY(20px);
}

#fdCartOffcanvas .fd-cart-item__img {
  width: 90px;
  height: 90px;
  object-fit: cover;
  border-radius: var(--border-radius-sm);
  background-color: var(--gray-cus-50);
}

#fdCartOffcanvas .fd-cart-item__info {
  flex: 1;
}

#fdCartOffcanvas .fd-cart-item__name {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--gray-cus-900);
  text-decoration: none;
  display: block;
  margin-bottom: 5px;
}

#fdCartOffcanvas .fd-cart-item__price {
  font-family: var(--font-head);
  color: var(--primary-color);
  font-weight: 600;
  font-size: 0.95rem;
}

#fdCartOffcanvas .fd-cart-item__qty-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 15px;
}

#fdCartOffcanvas .fd-qty-input {
  display: flex;
  align-items: center;
  border: 1px solid var(--gray-cus-200);
  border-radius: 4px;
}

#fdCartOffcanvas .fd-qty-input button {
  border: none;
  background: none;
  padding: 2px 10px;
  color: var(--gray-cus-600);
}

#fdCartOffcanvas .fd-qty-input input {
  width: 50px;
  border: none;
  text-align: center;
  font-size: 14px;
  font-weight: 600;
  padding: 3px;
  background-color: rgba(0, 0, 0, 0);
}

#fdCartOffcanvas .fd-cart-item__remove {
  color: var(--gray-cus-600);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: var(--tr-smooth);
}

#fdCartOffcanvas .fd-cart-item__remove:hover {
  color: #ff4d4d;
}

#fdCartOffcanvas .fd-cart__footer {
  padding: 30px;
  border-top: 1px solid var(--gray-cus-100);
  box-shadow: 0 -5px 20px rgba(var(--dark-color-rgb), 0.02);
}

#fdCartOffcanvas .fd-cart__summary {
  display: flex;
  justify-content: space-between;
  margin-bottom: 20px;
  font-family: var(--font-head);
  font-size: 1.25rem;
  font-weight: 700;
}

#fdCartOffcanvas .fd-btn-group {
  display: grid;
  gap: 10px;
}

.fd-page-header {
  padding: 120px 0 80px;
  background-color: var(--gray-cus-50);
  text-align: center;
  border-bottom: 1px solid var(--gray-cus-200);
}

.fd-page-header__title {
  font-size: clamp(3rem, 5vw, 4.5rem);
  color: var(--gray-cus-900);
  margin-bottom: 20px;
}

.fd-wedge-header {
  position: relative;
  min-height: 65vh;
  background: var(--gray-cus-900-fixed);
  overflow: visible;
  display: flex;
  align-items: center;
}

.fd-wedge-header__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-position: center;
  background-size: cover;
  opacity: 0.3;
  z-index: 1;
}

.fd-wedge-header__shape {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 55%;
  min-height: 150px;
  background: rgba(var(--primary-color-fixed-rgb), 0.55);
  backdrop-filter: blur(15px);
  color: var(--white-fixed);
  clip-path: polygon(15% 0%, 100% 0%, 100% 100%, 0% 100%);
  z-index: 5;
  text-align: right;
  padding: 30px 30px 30px 100px;
  display: flex;
  justify-content: right;
  align-items: center;
}

.fd-wedge-header__desc {
  font-size: 1.1rem;
  font-style: italic;
}

.fd-wedge-header .fd-vertical-breadcrumb {
  position: absolute;
  left: 8%;
  top: 50%;
  transform: translateY(-50%);
  z-index: 20;
  display: flex;
  flex-direction: column;
  gap: 30px;
  align-items: center;
}

.fd-wedge-header .fd-vertical-breadcrumb::before {
  content: "";
  width: 1px;
  height: 100px;
  background: linear-gradient(
    to bottom,
    transparent,
    var(--secondary-color-fixed)
  );
  margin-bottom: -20px;
}

.fd-wedge-header .fd-v-item {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: rgba(var(--white-fixed-rgb), 0.4);
  text-decoration: none;
  transition: var(--tr-smooth);
}

.fd-wedge-header .fd-v-item:hover,
.fd-wedge-header .fd-v-item--active {
  color: var(--secondary-color-fixed);
}

.fd-wedge-header .fd-displaced-title {
  position: relative;
  z-index: 10;
  padding-left: 10%;
}

.fd-wedge-header .fd-displaced-title h1 {
  font-size: clamp(50px, 5vw, 80px);
  line-height: 0.8;
  margin: 0;
  color: var(--white-fixed);
}

.fd-wedge-header .fd-displaced-title .outline {
  display: block;
  color: rgba(0, 0, 0, 0);
  -webkit-text-stroke: 1px var(--secondary-color-fixed);
  margin-bottom: 10px;
}

.fd-wedge-header .fd-displaced-title .sub-reveal {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 8px;
  color: var(--secondary-color-fixed);
  display: block;
  margin-bottom: 20px;
}

@media (max-width: 991px) {
  .fd-wedge-header__shape {
    width: 90%;
  }
}

.page-menu .fd-menu-filter-wrapper {
  position: sticky;
  top: 80px;
  background-color: var(--gray-cus-50);
  z-index: 100;
  padding: 20px 0;
  border-bottom: 1px solid var(--gray-cus-100);
}

.page-menu .fd-menu-filter-wrapper .fd-menu-filter {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: center;
}

.page-menu .fd-menu-filter-wrapper .fd-menu-filter li {
  display: inline-block;
  padding: 5px;
}

.page-menu .fd-menu-filter-wrapper .fd-menu-filter__btn {
  border: 1px solid var(--gray-cus-200);
  background: rgba(0, 0, 0, 0);
  padding: 8px 24px;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 500;
  color: var(--gray-cus-600);
  transition: var(--tr-smooth);
  cursor: pointer;
}

.page-menu .fd-menu-filter-wrapper .fd-menu-filter__btn.active,
.page-menu .fd-menu-filter-wrapper .fd-menu-filter__btn:hover {
  background: var(--primary-color);
  color: var(--white);
  border-color: var(--primary-color);
}

.page-menu .fd-menu-item {
  display: flex;
  align-items: center;
  padding: 20px;
  margin-bottom: 15px;
  border-radius: 12px;
  transition: var(--tr-smooth);
  border: 1px solid rgba(0, 0, 0, 0);
}

.page-menu .fd-menu-item:hover {
  background: var(--gray-cus-50);
  border-color: var(--gray-cus-100);
}

.page-menu .fd-menu-item__img {
  width: 80px;
  height: 80px;
  border-radius: 4px;
  object-fit: cover;
  margin-right: 20px;
}

.page-menu .fd-menu-item__info {
  flex-grow: 1;
}

.page-menu .fd-menu-item__header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
}

.page-menu .fd-menu-item__name {
  font-size: 1.2rem;
  color: var(--gray-cus-900);
  margin: 0;
}

.page-menu .fd-menu-item__price {
  font-family: var(--font-head);
  font-weight: 700;
  color: var(--primary-color);
  font-size: 1.1rem;
}

.page-menu .fd-menu-item__desc {
  font-size: 13px;
  margin: 5px 0 0;
  opacity: 0.8;
}

.page-menu .fd-menu-cta {
  background: var(--light-color);
  border-radius: 20px;
  padding: 50px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 80px 0;
  position: relative;
  overflow: hidden;
}

.page-menu .fd-menu-cta__circle {
  position: absolute;
  right: -50px;
  top: -50px;
  width: 200px;
  height: 200px;
  background: var(--secondary-color);
  border-radius: 50%;
  opacity: 0.1;
  pointer-events: none;
}

.page-menu .is-hidden {
  display: none !important;
}

.page-cs {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 40px;
  text-align: center;
  color: var(--dark-color);
  background-color: var(--light-color);
  overflow: hidden;
}

.page-cs__bg-text {
  position: absolute;
  font-family: var(--font-head);
  font-weight: 900;
  font-size: 15vw;
  color: rgba(var(--primary-color-rgb), 0.03);
  white-space: nowrap;
  z-index: 0;
  pointer-events: none;
}

.page-cs__content {
  position: relative;
  z-index: 2;
  max-width: 800px;
}

.page-cs__logo {
  font-family: var(--font-head);
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 2rem;
  letter-spacing: 2px;
  color: var(--primary-color);
}

.page-cs__title {
  font-size: clamp(2.5rem, 6vw, 5rem);
  line-height: 1.1;
  margin-bottom: 1.5rem;
  color: var(--dark-color);
}

.page-cs .cs-timer {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin: 3rem 0;
}

.page-cs .cs-timer__item {
  display: flex;
  flex-direction: column;
}

.page-cs .cs-timer__number {
  font-family: var(--font-head);
  font-size: 3rem;
  font-weight: 700;
  color: var(--primary-color);
}

.page-cs .cs-timer__label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  opacity: 0.7;
}

.page-cs .cs-form {
  max-width: 500px;
  margin: 0 auto;
  position: relative;
}

.page-cs .cs-deco {
  position: absolute;
  z-index: 1;
  pointer-events: none;
  opacity: 0.6;
}

.page-shop .fd-shop-filter-wrapper {
  position: sticky;
  top: 80px;
  background-color: var(--gray-cus-50);
  padding: 15px 0;
  z-index: 999;
}

.page-shop .fd-shop-filter {
  display: flex;
  overflow-x: auto;
  overflow-y: hidden;
  flex-wrap: nowrap;
  -webkit-overflow-scrolling: touch;
  gap: 30px;
  border-bottom: 1px solid var(--gray-cus-200);
  padding-bottom: 15px;
}

@media (max-width: 991px) {
  .page-shop .fd-shop-filter {
    gap: 15px;
  }
}

.page-shop .fd-shop-filter__btn {
  background: none;
  border: none;
  font-weight: 500;
  white-space: nowrap;
  color: var(--gray-cus-400);
  transition: var(--tr-smooth);
  position: relative;
  padding: 0;
}

.page-shop .fd-shop-filter__btn.active,
.page-shop .fd-shop-filter__btn:hover {
  color: var(--primary-color);
}

.page-shop .fd-shop-filter__btn.active::after {
  content: "";
  position: absolute;
  bottom: -16px;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--primary-color);
}

.page-shop .fd-shop-filter__price .dropdown-item:active {
  background-color: var(--primary-color);
}

.page-shop .fd-product {
  margin-bottom: 60px;
  position: relative;
}

.page-shop .fd-product-wrapper.is-hidden {
  display: none !important;
}

.page-shop .fd-product__media {
  position: relative;
  overflow: hidden;
  background: var(--gray-cus-50);
  aspect-ratio: 1/1.25;
}

.page-shop .fd-product__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s cubic-bezier(0.2, 1, 0.3, 1);
}

.page-shop .fd-product:hover .fd-product__img {
  transform: scale(1.08);
}

.page-shop .fd-product__actions {
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
  display: flex;
  gap: 10px;
  transform: translateY(20px);
  opacity: 0;
  transition: var(--tr-smooth);
}

@media (max-width: 991px) {
  .page-shop .fd-product__actions {
    transform: translateY(0);
    opacity: 1;
  }
}

.page-shop .fd-product:hover .fd-product__actions {
  transform: translateY(0);
  opacity: 1;
}

.page-shop .fd-product .btn-shop {
  flex: 1;
  text-align: center;
  padding: 12px;
  background: var(--white);
  color: var(--dark-color);
  border: none;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: var(--tr-smooth);
}

.page-shop .fd-product .btn-shop:hover {
  background: var(--primary-color);
  color: var(--white);
}

.page-shop .fd-product__info {
  padding-top: 25px;
  text-align: left;
}

.page-shop .fd-product__category {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--secondary-color);
  margin-bottom: 8px;
  display: block;
}

.page-shop .fd-product__title {
  font-size: 1.5rem;
  margin-bottom: 12px;
  font-weight: 500;
  line-height: 1.2;
}

.page-shop .fd-product__title a {
  transition: color var(--tr-speed);
}

.page-shop .fd-product__price {
  font-family: var(--font-head);
  font-size: 1.25rem;
  color: var(--gray-cus-900);
  display: flex;
  align-items: center;
  gap: 10px;
}

.page-shop .fd-product__price--old {
  font-size: 1rem;
  text-decoration: line-through;
  color: var(--gray-cus-400);
  font-weight: 400;
}

.page-shop .fd-product__label {
  position: absolute;
  top: 20px;
  left: 20px;
  z-index: 2;
  padding: 5px 15px;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  background: var(--primary-color);
  color: var(--white);
}

.page-shop-detail {
  position: relative;
}

.page-shop-detail__gallery {
  position: sticky;
  top: 0;
  height: 100vh;
  overflow: hidden;
  background: var(--gray-cus-50);
}

.page-shop-detail__gallery:hover .page-shop-detail__img {
  transform: scale(1.1);
}

.page-shop-detail__img-wrapper {
  height: 100%;
  width: 100%;
  clip-path: inset(0 0 0 0);
}

.page-shop-detail__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.5s ease;
}

.page-shop-detail__details {
  padding: 120px 80px;
  min-height: 100vh;
}

.page-shop-detail .fd-product-tag {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--secondary-color);
  font-weight: 700;
  display: block;
  margin-bottom: 20px;
}

.page-shop-detail .fd-product-title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  line-height: 1.1;
  color: var(--gray-cus-900);
  margin-bottom: 30px;
}

.page-shop-detail .fd-price-tag {
  font-size: 2.5rem;
  color: var(--primary-color);
  font-style: italic;
  margin-bottom: 40px;
  display: flex;
  align-items: center;
  gap: 15px;
}

.page-shop-detail .fd-price-tag::after {
  content: "";
  height: 1px;
  flex-grow: 1;
  background: var(--gray-cus-200);
}

.page-shop-detail .fd-quantity-v2 {
  display: inline-flex;
  border-bottom: 2px solid var(--gray-cus-900);
  padding: 10px 0;
  margin-bottom: 50px;
}

.page-shop-detail .fd-quantity-v2 input {
  width: 60px;
  border: none !important;
  text-align: center;
  font-weight: 700;
  font-size: 1.2rem;
  outline: none !important;
  background-color: rgba(0, 0, 0, 0);
}

.page-shop-detail .fd-quantity-v2 button {
  background: none;
  border: none;
  font-size: 1.2rem;
  padding: 0 15px;
  transition: var(--tr-smooth);
  color: var(--dark-color);
}

.page-shop-detail .fd-tabs-editorial {
  margin-top: 100px;
}

.page-shop-detail .fd-tabs-editorial .nav-link {
  border: none;
  color: var(--gray-cus-400);
  font-family: var(--font-head);
  font-size: 1.5rem;
  padding: 0;
  margin-right: 40px;
  transition: var(--tr-smooth);
}

.page-shop-detail .fd-tabs-editorial .nav-link.active {
  color: var(--gray-cus-900);
  background: none;
  text-decoration: underline;
}

@media (max-width: 991px) {
  .page-shop-detail__gallery {
    height: 60vh;
    position: relative;
  }

  .page-shop-detail__details {
    padding: 60px 24px;
  }
}

.page-wishlist__card {
  background: var(--white);
  border: 1px solid var(--gray-cus-100);
  border-radius: var(--border-radius-sm);
  transition: var(--tr-smooth);
  height: 100%;
  position: relative;
}

.page-wishlist__card:hover {
  transform: translateY(-10px);
  box-shadow: var(--box-shadow-lg);
  border-color: rgba(0, 0, 0, 0);
}

.page-wishlist__img-wrapper {
  position: relative;
  height: 280px;
  overflow: hidden;
  background: var(--gray-cus-50);
}

.page-wishlist__img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.page-wishlist__card:hover .page-wishlist__img-wrapper img {
  transform: scale(1.1);
}

.page-wishlist__overlay {
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 5;
  opacity: 0;
  transform: translateX(20px);
  transition: var(--tr-smooth);
}

.page-wishlist__card:hover .page-wishlist__overlay {
  opacity: 1;
  transform: translateX(0);
}

.page-wishlist .fd-btn-remove {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: none;
  background: var(--white);
  color: var(--dark-color);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 10px rgba(var(--dark-color-rgb), 0.1);
  transition: var(--tr-smooth);
}

.page-wishlist .fd-btn-remove:hover {
  background: #ff4d4d;
  color: #fff;
}

.page-wishlist__content {
  padding: 25px;
}

.page-wishlist__title {
  font-size: 1.5rem;
  margin-bottom: 5px;
  transition: var(--tr-smooth);
}

.page-wishlist__price {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary-color);
  font-family: var(--font-head);
}

.page-wishlist__desc {
  font-size: 0.95rem;
  color: var(--gray-cus-600);
  margin-bottom: 20px;
}

.page-wishlist .text-outline {
  -webkit-text-stroke: 1px var(--primary-color);
  color: rgba(0, 0, 0, 0);
  font-style: italic;
}

.page-wishlist .badge-premium {
  position: absolute;
  bottom: 15px;
  left: 20px;
  background: var(--secondary-color);
  color: var(--white);
  padding: 4px 12px;
  font-size: 10px;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 1px;
  border-radius: 20px;
}

.page-cart__title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  margin-bottom: 50px;
  letter-spacing: -1px;
}

.page-cart__table {
  background: var(--white);
  border-radius: var(--border-radius);
  overflow: hidden;
  border: 1px solid var(--gray-cus-100);
}

.page-cart__item {
  border-bottom: 1px solid var(--gray-cus-100);
  transition: var(--tr-smooth);
  padding: 25px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

@media (max-width: 991px) {
  .page-cart__item {
    flex-direction: column;
    align-items: flex-start;
  }
}

.page-cart__item:hover {
  background-color: var(--white);
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(var(--dark-color-rgb), 0.03);
}

.page-cart__img {
  width: 100px;
  height: 100px;
  object-fit: cover;
  border-radius: 12px;
  margin-right: 25px;
}

.page-cart__info-name {
  font-family: var(--font-head);
  font-size: 1.25rem;
  margin-bottom: 5px;
  display: block;
  text-decoration: none;
  color: var(--dark-color);
}

.page-cart__info-meta {
  font-size: 0.85rem;
  color: var(--secondary-color);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.page-cart__qty {
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--gray-cus-200);
  border-radius: 30px;
  padding: 5px 15px;
  max-width: 120px;
}

.page-cart__qty-btn {
  background: none;
  border: none;
  color: var(--dark-color);
  cursor: pointer;
  padding: 0 10px;
  transition: 0.3s;
}

.page-cart__qty-input {
  width: 50px !important;
  text-align: center;
  border: none !important;
  font-weight: 600;
  background: rgba(0, 0, 0, 0);
  padding: 3px !important;
}

.page-cart__summary {
  background: var(--gray-cus-100);
  color: var(--gray-cus-900);
  padding: 40px;
  border-radius: var(--border-radius);
  position: sticky;
  top: 100px;
}

.page-cart__summary-title {
  border-bottom: 1px solid rgba(var(--light-color-rgb), 0.1);
  padding-bottom: 20px;
  margin-bottom: 30px;
}

.page-cart__summary-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 20px;
  font-size: 1.1rem;
}

.page-cart__summary-total {
  border-top: 1px solid rgba(var(--primary-color-rgb), 0.1);
  padding-top: 20px;
  margin-top: 20px;
  font-size: 1.5rem;
  color: var(--primary-color);
}

.page-checkout .fd-form-group {
  position: relative;
  margin-bottom: 1.5rem;
}

.page-checkout .fd-label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
  color: var(--gray-cus-600);
  display: block;
  margin-bottom: 5px;
}

.page-checkout .fd-summary {
  background: var(--gray-cus-50);
  padding: 40px;
  border-radius: var(--border-radius);
  box-shadow: 0 10px 30px rgba(var(--dark-color-rgb), 0.03);
  position: sticky;
  top: 100px;
}

.page-checkout .fd-summary__item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 0;
  border-bottom: 1px solid var(--gray-cus-100);
}

.page-checkout .fd-summary__item:last-child {
  border-bottom: none;
}

.page-checkout .fd-dish-name {
  font-family: var(--font-head);
  color: var(--gray-cus-900);
  font-weight: 700;
  margin: 0;
}

.page-checkout .fd-dish-price {
  font-family: var(--font-head);
  color: var(--gray-cus-900);
}

.page-checkout .fd-badge {
  font-size: 10px;
  background: var(--light-color);
  color: var(--gray-cus-900);
  padding: 4px 10px;
  border-radius: 20px;
  text-transform: uppercase;
  font-weight: 700;
}

.page-checkout .pm-option > div {
  cursor: pointer;
}

.page-checkout .pm-option .is-active {
  border-color: var(--primary-color) !important;
}

.fd-about-hero {
  padding: 160px 0 100px;
  background-color: var(--gray-cus-50);
  position: relative;
}

.fd-about-hero__shape {
  position: absolute;
  top: 10%;
  right: 5%;
  width: 400px;
  height: 400px;
  background: rgba(var(--light-color-rgb), 0.3);
  border-radius: var(--border-radius);
  opacity: 0.4;
  z-index: 0;
}

.fd-about-hero__title {
  font-size: clamp(3.5rem, 8vw, 5.5rem);
  line-height: 0.9;
  color: var(--gray-cus-900);
  margin-left: -5px;
  position: relative;
  z-index: 2;
}

.fd-about-hero__title span {
  display: block;
  padding-left: 80px;
  font-style: italic;
  color: var(--primary-color);
}

.fd-about-hero__image-box {
  position: relative;
  z-index: 1;
  margin-top: -30px;
}

.fd-about-hero .paralax-img {
  overflow: hidden;
  width: 100%;
  height: 600px;
  object-fit: cover;
  border-radius: 160px 4px 160px 4px;
  box-shadow: 0 30px 60px rgba(var(--dark-color-rgb), 0.1);
}

.fd-about-hero__main-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.1);
}

.fd-about-hero__badge {
  position: absolute;
  top: 40px;
  left: -30px;
  background: rgba(var(--dark-color-rgb), 0.65);
  backdrop-filter: blur(15px);
  color: var(--white);
  padding: 40px;
  border-radius: 4px 40px 4px 40px;
  box-shadow: var(--box-shadow-lg);
}

.fd-about-hero__content-bottom {
  margin-top: 40px;
  padding-left: 80px;
}

.fd-about-hero .fd-btn-play {
  position: absolute;
  right: 50px;
  bottom: 50px;
}

@media (max-width: 991px) {
  .fd-about-hero__image-box {
    margin-top: 20px;
  }

  .fd-about-hero__badge {
    left: 0;
  }
}

.fd-about-story {
  position: relative;
}

.fd-about-story__media {
  position: relative;
  padding-right: 15%;
}

.fd-about-story__img-main {
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--box-shadow-lg);
}

.fd-about-story__img-floating {
  position: absolute;
  width: 55%;
  bottom: -15%;
  right: 0;
  border: 12px solid var(--white);
  border-radius: 15px;
  box-shadow: 20px 20px 60px rgba(var(--dark-color-rgb), 0.1);
  z-index: 2;
}

.fd-about-story__philosophy {
  margin-top: 3rem;
  padding-top: 3rem;
  border-top: 1px solid var(--gray-cus-100);
}

.fd-about-story .fd-philosophy-item {
  margin-bottom: 1.5rem;
}

.fd-about-story .fd-philosophy-item__title {
  font-family: var(--font-head);
  font-size: 1.25rem;
  color: var(--gray-cus-900);
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 15px;
}

.fd-about-story .fd-philosophy-item__title i {
  color: var(--secondary-color);
  font-size: 1rem;
}

.fd-about-story__signature {
  margin-top: 2.5rem;
  display: flex;
  align-items: center;
  gap: 20px;
}

.fd-about-story .fd-signature-img {
  opacity: 0.8;
  filter: grayscale(1);
}

.fd-about-story__stats {
  background-color: var(--gray-cus-50);
  padding: 40px;
  border-radius: var(--border-radius-lg);
  margin-top: 4rem;
}

.fd-about-story .fd-stat-card {
  text-align: center;
}

.fd-about-story .fd-stat-card__number {
  font-family: var(--font-head);
  font-size: 3rem;
  color: var(--primary-color);
  display: block;
  line-height: 1;
}

.fd-about-story .fd-stat-card__label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
}

.fd-about-story .blockquote-comment {
  background-color: var(--light-color);
  border-radius: 20px;
  padding: 30px;
  position: relative;
  margin-top: 2rem;
}

.fd-about-founder {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 80vh;
}

.fd-about-founder__img-holder {
  position: relative;
  width: 55%;
  height: 700px;
  overflow: hidden;
  border-radius: 0 200px 0 0;
  z-index: 1;
}

.fd-about-founder__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.2);
}

.fd-about-founder__content {
  position: absolute;
  right: 10%;
  width: 45%;
  background: var(--white);
  padding: 80px;
  z-index: 2;
  box-shadow: 40px 40px 100px rgba(var(--dark-color-rgb), 0.05);
  border: 1px solid var(--light-color);
}

.fd-about-founder__bg-text {
  position: absolute;
  top: -50px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-head);
  font-size: 10rem;
  color: var(--light-color);
  opacity: 0.3;
  white-space: nowrap;
  z-index: 0;
  pointer-events: none;
}

.fd-about-founder__quote {
  font-family: var(--font-head);
  font-style: italic;
  font-size: 1.5rem;
  color: var(--primary-color);
  margin-bottom: 30px;
  line-height: 1.4;
  position: relative;
}

.fd-about-founder__quote::before {
  content: "“";
  position: absolute;
  left: -40px;
  top: -20px;
  font-size: 5rem;
  opacity: 0.2;
}

.fd-about-founder__signature-box {
  margin-top: 40px;
  display: flex;
  align-items: center;
  gap: 20px;
}

.fd-about-founder__sig-img {
  height: 60px;
  width: auto;
}

@media (max-width: 991px) {
  .fd-about-founder {
    flex-direction: column;
    padding-top: 60px;
  }

  .fd-about-founder__img-holder {
    width: 90%;
    height: 400px;
    border-radius: 20px;
  }

  .fd-about-founder__content {
    position: relative;
    width: 90%;
    right: 0;
    margin-top: -60px;
    padding: 40px;
  }

  .fd-about-founder__bg-text {
    font-size: 5rem;
    top: 0;
  }
}

.fd-about-value {
  position: relative;
  background-color: var(--gray-cus-50);
}

.fd-about-value__bg-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--font-head);
  font-size: 20vw;
  font-weight: 700;
  color: var(--gray-cus-900);
  opacity: 0.03;
  white-space: nowrap;
  pointer-events: none;
  z-index: 0;
}

.fd-about-value__line {
  width: 1px;
  height: 100px;
  background: linear-gradient(
    to bottom,
    transparent,
    var(--secondary-color),
    transparent
  );
  margin: 0 auto 30px;
}

.fd-about-value__item {
  padding: 40px;
  border-bottom: 1px solid rgba(var(--primary-color-rgb), 0.1);
  transition: var(--tr-smooth);
  position: relative;
  z-index: 1;
  background: rgba(0, 0, 0, 0);
}

.fd-about-value__item:hover {
  background: var(--white);
  border-bottom-color: var(--primary-color);
  transform: scale(1.02);
  box-shadow: 0 30px 60px rgba(var(--dark-color-rgb), 0.05);
}

.fd-about-value__step {
  font-family: var(--font-head);
  font-style: italic;
  font-weight: bold;
  color: var(--secondary-color);
  margin-bottom: 20px;
  display: block;
}

.fd-about-value__desc {
  color: var(--gray-cus-600);
  line-height: 1.8;
  max-width: 400px;
}

.fd-about-value__img-reveal {
  position: absolute;
  right: 10%;
  top: 50%;
  transform: translateY(-50%) scale(0.8);
  width: 300px;
  height: 400px;
  opacity: 0;
  visibility: hidden;
  transition: var(--tr-smooth);
  pointer-events: none;
  border-radius: var(--border-radius-sm);
  overflow: hidden;
}

.fd-about-value__item:hover .fd-about-value__img-reveal {
  opacity: 1;
  visibility: visible;
  transform: translateY(-50%) scale(1);
  right: 5%;
}

.fd-about-value__img-reveal img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 991px) {
  .fd-about-value__img-reveal {
    display: none;
  }
}

.fd-about-history {
  position: relative;
}

.fd-about-history__line {
  position: absolute;
  left: 50%;
  top: 0;
  width: 1px;
  height: 100%;
  background: rgba(var(--primary-color-rgb), 0.1);
  transform: translateX(-50%);
}

.fd-about-history__item {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 80vh;
  margin-bottom: 100px;
  position: relative;
}

.fd-about-history__bg-text {
  position: absolute;
  font-family: var(--font-head);
  font-size: 25vw;
  font-weight: 900;
  color: rgba(var(--dark-color-rgb), 0.03);
  z-index: -1;
  line-height: 1;
  pointer-events: none;
  text-transform: uppercase;
}

.fd-about-history__content {
  width: 40%;
  padding: 40px;
  z-index: 2;
}

.fd-about-history__image-wrap {
  width: 50%;
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  box-shadow: 0 30px 60px rgba(var(--dark-color-rgb), 0.1);
}

.fd-about-history__image-wrap img {
  width: 100%;
  height: 600px;
  object-fit: cover;
  transition: var(--tr-smooth);
}

.fd-about-history__item:nth-child(odd) {
  flex-direction: row-reverse;
}

.fd-about-history__year {
  font-family: var(--font-head);
  font-size: 4rem;
  color: var(--primary-color);
  margin-bottom: 20px;
  display: block;
  font-weight: 700;
}

.fd-about-history__title {
  font-family: var(--font-head);
  font-size: 2.5rem;
  color: var(--dark-color);
  margin-bottom: 25px;
  line-height: 1.2;
}

.fd-about-history__desc {
  color: var(--gray-cus-600);
  line-height: 1.8;
  font-size: 1.1rem;
}

.fd-about-history__marker {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 15px;
  height: 15px;
  background: var(--secondary-color);
  border-radius: 50%;
  z-index: 3;
  box-shadow: 0 0 0 10px rgba(var(--secondary-color-rgb), 0.1);
}

@media (max-width: 991px) {
  .fd-about-history__item {
    flex-direction: column !important;
    min-height: auto;
  }

  .fd-about-history__content,
  .fd-about-history__image-wrap {
    width: 100%;
  }

  .fd-about-history__line {
    left: 20px;
  }

  .fd-about-history__marker {
    left: 20px;
  }
}

.page-chefs {
  position: relative;
}

.page-chefs::before {
  content: "";
  position: absolute;
  background-color: rgba(var(--light-color-rgb), 0.3);
  height: 60%;
  width: 55vw;
  transform: translateY(-50%);
  top: 50%;
  left: -15%;
  border-radius: var(--border-radius);
}

.page-chefs__item {
  position: relative;
  margin-bottom: 80px;
}

.page-chefs__img-wrapper {
  position: relative;
  width: 100%;
  height: 700px;
  overflow: hidden;
  border-radius: var(--border-radius);
  clip-path: inset(0 0 0 0);
  transition: var(--tr-smooth);
}

.page-chefs__img {
  width: 100%;
  height: 120%;
  object-fit: cover;
  filter: grayscale(100%);
  transition: var(--tr-smooth);
  transform: scale(1.1);
}

.page-chefs__item:hover .page-chefs__img {
  filter: grayscale(0%);
  transform: scale(1);
}

.page-chefs__info {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  text-align: center;
  z-index: 2;
  pointer-events: none;
}

.page-chefs__name {
  font-size: clamp(4rem, 10vw, 8rem);
  color: rgba(0, 0, 0, 0);
  -webkit-text-stroke: 1px rgba(var(--white-fixed-rgb), 0.6);
  line-height: 0.8;
  margin: 0;
  transition: var(--tr-smooth);
}

.page-chefs__item:hover .page-chefs__name {
  color: var(--white-fixed);
  -webkit-text-stroke: 1px rgba(0, 0, 0, 0);
  letter-spacing: 5px;
}

.page-chefs__role {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 4px;
  color: var(--primary-color-fixed);
  background: rgba(var(--white-fixed-rgb), 0.9);
  padding: 5px 15px;
  display: inline-block;
  margin-top: 20px;
  border-radius: 2px;
  transform: translateY(20px);
  opacity: 0;
  transition: var(--tr-smooth);
}

.page-chefs__item:hover .page-chefs__role {
  opacity: 1;
  transform: translateY(0);
}

.page-chefs__social {
  position: absolute;
  bottom: 40%;
  right: 40px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  z-index: 3;
}

.page-chefs__social a {
  color: var(--white-fixed);
  font-size: 1.2rem;
  opacity: 0;
  transform: translateX(20px);
  transition: 0.4s ease;
}

.page-chefs__item:hover .page-chefs__social a {
  opacity: 1;
  transform: translateX(0);
}

@media (max-width: 991px) {
  .page-chefs__img {
    filter: grayscale(0%);
    transform: scale(1);
  }

  .page-chefs__role {
    opacity: 1;
    transform: translateY(0);
  }

  .page-chefs__social a {
    opacity: 1;
    transform: translateX(0);
  }
}

.page-chefs .page-chefs-cta {
  position: relative;
}

.page-chefs .page-chefs-cta__watermark {
  position: absolute;
  top: 50%;
  left: 5%;
  transform: translateY(-50%);
  font-family: var(--font-head);
  font-size: 15vw;
  font-weight: 700;
  color: var(--gray-cus-100);
  line-height: 1;
  z-index: -1;
  opacity: 0.5;
  pointer-events: none;
  white-space: nowrap;
}

.page-chefs .page-chefs-cta__wrapper {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 600px;
}

.page-chefs .page-chefs-cta__image-group {
  position: relative;
  width: 100%;
  padding: 50px;
}

.page-chefs .page-chefs-cta__main-img {
  width: 80%;
  height: 650px;
  object-fit: cover;
  border-radius: 4px;
  clip-path: polygon(0% 0%, 100% 0%, 100% 90%, 0% 100%);
}

.page-chefs .page-chefs-cta__content-box {
  background: var(--white);
  padding: 60px;
  margin-left: -150px;
  box-shadow: 30px 30px 80px rgba(var(--dark-color-rgb), 0.05);
  position: relative;
  z-index: 5;
  border-radius: 4px;
}

.page-chefs .page-chefs-cta__title {
  line-height: 1.2;
  color: var(--gray-cus-900);
  margin-bottom: 25px;
}

.page-chefs .page-chefs-cta__title span {
  display: block;
  font-style: italic;
  color: var(--primary-color);
  font-weight: 400;
}

.page-chefs .page-chefs-cta__line {
  width: 60px;
  height: 2px;
  background: var(--primary-color);
  margin-bottom: 30px;
}

.page-chefs .page-chefs-cta .fd-btn-magnetic-wrapper {
  position: absolute;
  text-align: center;
  transform: translateY(-50%);
  top: 50%;
  right: 20%;
  z-index: 99;
  font-weight: bold;
}

.page-chefs .page-chefs-cta .fd-btn-magnetic-wrapper .fd-btn-magnetic {
  background-color: var(--gray-cus-50);
}

@media (max-width: 991px) {
  .page-chefs .page-chefs-cta__main-img {
    width: 100%;
    height: 450px;
  }

  .page-chefs .page-chefs-cta__content-box {
    margin-left: 0;
    margin-top: -80px;
    padding: 40px;
  }

  .page-chefs .page-chefs-cta__btn-float {
    width: 120px;
    height: 120px;
    font-size: 12px;
    top: -60px;
    right: 20px;
  }

  .page-chefs .page-chefs-cta__watermark {
    display: none;
  }
}

.page-awards {
  position: relative;
}

.page-awards-card {
  background: var(--white);
  padding: 40px;
  border: 1px solid var(--gray-cus-200);
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: var(--tr-smooth);
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.page-awards-card::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--primary-color);
  transform: translateY(100%);
  transition: var(--tr-smooth);
  z-index: -1;
}

.page-awards-card:hover {
  transform: translateY(-15px);
  color: var(--white);
  border-color: var(--primary-color);
  box-shadow: 0 30px 60px rgba(var(--primary-color-rgb), 0.15);
}

.page-awards-card:hover::after {
  transform: translateY(0);
}

.page-awards-card:hover .page-awards-card__year,
.page-awards-card:hover .page-awards-card__org {
  color: rgba(var(--white-rgb), 0.7);
}

.page-awards-card__year {
  font-family: var(--font-head);
  font-size: 1.5rem;
  color: var(--secondary-color);
  margin-bottom: 2rem;
  display: block;
}

.page-awards-card__title {
  font-size: 2.2rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.page-awards-card__org {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--gray-cus-600);
}

.page-awards-card__icon {
  position: absolute;
  bottom: -20px;
  right: -10px;
  font-size: 120px;
  opacity: 0.05;
  transition: var(--tr-smooth);
}

.page-awards-card:hover .page-awards-card__icon {
  opacity: 0.15;
  transform: scale(1.1) rotate(-10deg);
  color: var(--white);
}

.page-events-card {
  position: relative;
  margin-bottom: 80px;
  border: none;
}

.page-events-card__img-wrapper {
  position: relative;
  overflow: hidden;
  border-radius: var(--border-radius-sm);
}

.page-events-card__img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  transition: var(--tr-smooth);
}

.page-events-card:hover .page-events-card__img {
  transform: scale(1.05);
}

.page-events-card__content {
  padding-top: 30px;
}

.page-events-card__meta {
  font-size: 13px;
  color: var(--secondary-color);
  margin-bottom: 15px;
  font-weight: bold;
  text-transform: uppercase;
}

.page-events-card__title {
  font-size: 32px;
  margin-bottom: 20px;
  color: var(--dark-color);
}

.page-events-card__desc {
  max-width: 500px;
  color: var(--gray-cus-600);
  margin-bottom: 25px;
}

.page-gift .gift-card {
  position: relative;
  background: var(--white);
  border: 1px solid var(--gray-cus-200);
  padding: 40px;
  height: 100%;
  transition: var(--tr-smooth);
  overflow: hidden;
  z-index: 1;
}

.page-gift .gift-card:hover {
  border-color: var(--primary-color);
  transform: translateY(-10px);
}

.page-gift .gift-card__value {
  font-family: var(--font-head);
  font-size: 3rem;
  color: var(--primary-color);
  margin-bottom: 10px;
  display: block;
}

.page-gift .gift-card__tag {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 700;
  color: var(--secondary-color);
}

.page-gift .gift-card__description {
  margin: 25px 0;
  font-size: 15px;
  line-height: 1.8;
  color: var(--gray-cus-600);
}

.page-gift .gift-card__icon {
  position: absolute;
  right: -20px;
  bottom: -20px;
  font-size: 8rem;
  opacity: 0.03;
  transform: rotate(-15deg);
  z-index: -1;
}

.page-gift .gift-form {
  background: var(--gray-cus-900);
  color: var(--white);
  padding: 60px;
  border-radius: 4px;
}

.page-gift .gift-form input,
.page-gift .gift-form textarea,
.page-gift .gift-form select {
  background: rgba(0, 0, 0, 0);
  border: none;
  border-bottom: 1px solid rgba(var(--white-rgb), 0.2);
  color: var(--white);
  padding: 15px 0;
  width: 100%;
  margin-bottom: 30px;
}

.page-gift .gift-form input:focus,
.page-gift .gift-form textarea:focus,
.page-gift .gift-form select:focus {
  outline: none;
  border-bottom: 1px solid var(--secondary-color);
  box-shadow: none !important;
}

.page-gift .gift-form input option,
.page-gift .gift-form textarea option,
.page-gift .gift-form select option {
  color: #000;
}

.page-404 {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background-color: var(--gray-cus-50);
}

.page-404-image-side {
  position: relative;
  height: 100vh;
  overflow: hidden;
  background-color: var(--dark-color);
}

.page-404-image-side img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.8;
  transition: transform 2s ease;
}

.page-404-content {
  padding: 10% 8%;
}

.page-404__number {
  font-family: var(--font-head);
  font-size: 160px;
  font-weight: 700;
  line-height: 1;
  color: var(--primary-color);
  margin-bottom: 20px;
  display: block;
  font-style: italic;
}

.page-404__title {
  font-family: var(--font-head);
  font-size: 56px;
  color: var(--gray-cus-900);
  margin-bottom: 30px;
  line-height: 1.2;
}

.page-404__desc {
  font-size: 18px;
  max-width: 500px;
  margin-bottom: 40px;
  border-left: 3px solid var(--secondary-color);
  padding-left: 20px;
}

.page-404-links {
  margin-top: 50px;
  padding-top: 40px;
  border-top: 1px solid var(--gray-cus-200);
}

.page-404-links__title {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 700;
  color: var(--gray-cus-900);
  margin-bottom: 20px;
}

.page-404-nav {
  list-style: none;
  padding: 0;
  display: flex;
  gap: 30px;
}

.page-404-nav__link {
  text-decoration: none;
  color: var(--gray-cus-600);
  font-weight: 500;
  transition: var(--tr-smooth);
  position: relative;
}

.page-404-nav__link:hover {
  color: var(--primary-color);
}

.page-404-nav__link::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--secondary-color);
  transition: var(--tr-smooth);
}

.page-404-nav__link:hover::after {
  width: 100%;
}

@media (max-width: 991px) {
  .page-404-image-side {
    display: none;
  }

  .page-404-content {
    text-align: center;
  }

  .page-404__desc {
    margin-left: auto;
    margin-right: auto;
    border-left: none;
    border-bottom: 3px solid var(--secondary-color);
    padding: 0 0 20px 0;
  }

  .page-404-nav {
    justify-content: center;
  }
}

.page-user {
  min-height: 100vh;
  display: flex;
  align-items: stretch;
  justify-content: center;
}

.page-user__banner {
  position: sticky;
  top: 0px;
  background: var(--dark-color);
  overflow: hidden;
  display: none;
  height: 100vh;
}

@media (min-width: 992px) {
  .page-user__banner {
    display: block;
    flex: 1;
  }

  .page-user__form-wrapper {
    width: 45%;
  }
}

.page-user__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.6;
}

.page-user__overlay {
  position: absolute;
  inset: 0;
  padding: 60px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: end;
  text-align: end;
  color: var(--white-fixed);
  background: linear-gradient(
    to top,
    rgba(var(--dark-color-fixed-rgb), 0.9),
    transparent
  );
}

.page-user__title {
  font-size: clamp(2rem, 4vw, 3.5rem);
  color: var(--light-color-fixed);
  margin-bottom: 20px;
  line-height: 1.2;
}

.page-user .user-form {
  padding: 40px;
  width: 100%;
  margin: auto;
}

.page-user .user-form-login {
  max-width: 450px;
}

.page-user .user-form__logo {
  font-family: var(--font-head);
  font-size: 28px;
  font-weight: 700;
  color: var(--primary-color);
  text-decoration: none;
  display: inline-block;
  margin-bottom: 50px;
}

.page-user .user-form__header {
  margin-bottom: 40px;
}

.page-user .user-form__heading {
  font-family: var(--font-head);
  font-size: 32px;
  color: var(--gray-cus-900);
  margin-bottom: 10px;
}

.page-user .user-form__group {
  margin-bottom: 25px;
  position: relative;
}

.page-user .user-form__label {
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 10px;
  display: block;
  color: var(--gray-cus-900);
}

.page-user .user-form__footer {
  margin-top: 30px;
  text-align: center;
  font-size: 15px;
}

.page-user .user-form__link {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 600;
}

.page-user-social {
  display: flex;
  gap: 15px;
  margin-top: 30px;
}

.page-user-social__btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 10px;
  border: 1px solid var(--gray-cus-200);
  border-radius: 4px;
  background: rgba(0, 0, 0, 0);
  font-size: 13px;
  font-weight: 500;
  color: var(--gray-cus-900);
  transition: var(--tr-smooth);
  cursor: pointer;
}

.page-user-social__btn:hover {
  background-color: var(--gray-cus-50);
  border-color: var(--primary-color);
}

.page-terms .fd-terms__sidebar {
  position: sticky;
  top: 100px;
}

.page-terms .fd-terms__nav {
  list-style: none;
  padding: 0;
  border-left: 2px solid var(--gray-cus-200);
}

.page-terms .fd-terms__nav-item {
  margin-bottom: 15px;
}

.page-terms .fd-terms__nav-link {
  text-decoration: none;
  color: var(--gray-cus-400);
  padding-left: 20px;
  font-weight: 500;
  transition: var(--tr-smooth);
  display: block;
}

.page-terms .fd-terms__nav-link:hover,
.page-terms .fd-terms__nav-link.active {
  color: var(--primary-color);
  padding-left: 25px;
}

.page-terms .fd-terms__article {
  max-width: 850px;
}

.page-terms .fd-terms__section {
  margin-bottom: 60px;
}

.page-terms .fd-terms__section-title {
  color: var(--gray-cus-900);
  font-size: 2rem;
  margin-bottom: 25px;
  display: flex;
  align-items: center;
  gap: 15px;
}

.page-terms .fd-terms__section-title span {
  font-size: 1rem;
  color: var(--secondary-color);
  font-family: var(--font-text);
}

.page-terms .fd-terms__text {
  margin-bottom: 20px;
  font-size: 1.05rem;
}

.page-terms .fd-terms__list {
  list-style: none;
  padding-left: 0;
}

.page-terms .fd-terms__list li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 12px;
}

.page-terms .fd-terms__list li::before {
  content: "";
  font-family: "bootstrap-icons";
  position: absolute;
  left: 0;
  color: var(--secondary-color);
  font-size: 0.8rem;
}

.page-terms .fd-terms__section:target .page-terms .fd-terms__section-title {
  color: var(--primary-color);
  animation: h-light 1s ease;
}

@keyframes h-light {
  0% {
    opacity: 0.5;
  }

  100% {
    opacity: 1;
  }
}

.page-faqs__nav {
  position: sticky;
  top: 120px;
}

.page-faqs__link {
  display: flex;
  align-items: center;
  padding: 1rem 0;
  color: var(--gray-cus-600);
  text-decoration: none;
  border-bottom: 1px solid var(--gray-cus-100);
  transition: var(--tr-smooth);
  font-weight: 600;
}

.page-faqs__link.is-active {
  color: var(--primary-color);
  padding-left: 1rem;
}

.page-faqs .fd-accordion__item {
  border: 1px solid var(--gray-cus-100);
  border-radius: var(--border-radius);
  margin-bottom: 1.5rem;
  transition: var(--tr-smooth);
  background: var(--white);
}

.page-faqs .fd-accordion__item:hover {
  border-color: var(--secondary-color);
}

.page-faqs .fd-accordion__item.is-active {
  border-color: var(--primary-color);
  box-shadow: var(--box-shadow);
}

.page-faqs .fd-accordion__header {
  padding: 1.5rem 2rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.page-faqs .fd-accordion__icon {
  font-size: 1.2rem;
  transition: transform 0.4s ease;
}

.page-faqs .fd-accordion__item.is-active .page-faqs .fd-accordion__icon {
  transform: rotate(45deg);
  color: var(--primary-color);
}

.page-faqs .fd-accordion__body {
  height: 0;
  overflow: hidden;
  visibility: hidden;
}

.page-faqs .fd-accordion__content {
  padding: 0 2rem 2rem;
  line-height: 1.6;
}

.page-blog .fd-post {
  margin-bottom: 60px;
  transition: var(--tr-smooth);
}

.page-blog .fd-post__thumb {
  position: relative;
  overflow: hidden;
  border-radius: var(--border-radius);
  margin-bottom: 30px;
  background: var(--gray-cus-100);
}

.page-blog .fd-post__thumb img {
  width: 100%;
  height: auto;
  transition: transform 1.2s cubic-bezier(0.2, 1, 0.3, 1);
}

.page-blog .fd-post:hover .fd-post__thumb img {
  transform: scale(1.08);
}

.page-blog .fd-post__badge {
  position: absolute;
  top: 20px;
  left: 20px;
  background: var(--white);
  color: var(--gray-cus-900);
  padding: 6px 16px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  z-index: 2;
}

.page-blog .fd-post__meta {
  font-size: 13px;
  color: var(--gray-cus-600);
  font-weight: bold;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 15px;
}

.page-blog .fd-post__meta span {
  display: flex;
  align-items: center;
  gap: 5px;
}

.page-blog .fd-post__title {
  font-size: 32px;
  margin-bottom: 15px;
  transition: var(--tr-smooth);
}

.page-blog .fd-post__title a {
  text-decoration: none;
  color: inherit;
  transition: color var(--tr-speed);
}

.page-blog .fd-post__title a:hover {
  color: var(--primary-color);
}

.page-blog .fd-post__excerpt {
  font-size: 16px;
  margin-bottom: 25px;
  max-width: 90%;
}

.page-blog .fd-sidebar {
  position: sticky;
  top: 120px;
}

.page-blog .fd-sidebar__widget {
  margin-bottom: 50px;
}

.page-blog .fd-sidebar__title {
  font-size: 20px;
  position: relative;
  padding-bottom: 15px;
  margin-bottom: 25px;
}

.page-blog .fd-sidebar__title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background: var(--secondary-color);
}

.page-blog .fd-sidebar__list {
  list-style: none;
  padding: 0;
}

.page-blog .fd-sidebar__list li {
  padding: 12px 0;
  border-bottom: 1px solid var(--gray-cus-100);
}

.page-blog .fd-sidebar__list a {
  text-decoration: none;
  color: var(--gray-cus-600);
  display: flex;
  justify-content: space-between;
  transition: var(--tr-smooth);
}

.page-blog .fd-sidebar__list a:hover {
  color: var(--primary-color);
  padding-left: 5px;
}

.page-blog .fd-sidebar-author {
  background-color: var(--white);
  border-left: 1px solid var(--gray-cus-200);
  padding-left: 20px;
  margin-bottom: 50px;
}

.page-blog .fd-sidebar-author__label {
  font-size: 12px;
  font-weight: bold;
  text-transform: uppercase;
  color: var(--gray-cus-600);
  margin-bottom: 15px;
  display: block;
}

.page-blog .fd-sidebar-author__item a {
  transition: color var(--tr-speed);
}

.page-blog .page-link {
  border: none;
  color: var(--gray-cus-900);
  margin: 0 5px;
  font-weight: 600;
  border-radius: 4px !important;
}

.page-blog .page-item.active .page-link {
  background-color: var(--primary-color);
  color: var(--white);
}

.page-blog2-card {
  position: relative;
  margin-bottom: 30px;
  overflow: hidden;
  border-radius: 4px;
}

.page-blog2-card__img-wrapper {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/5;
  background: var(--gray-cus-50);
}

.page-blog2-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--tr-smooth);
}

.page-blog2-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    transparent 40%,
    rgba(var(--dark-color-fixed-rgb), 0.85)
  );
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 30px;
  opacity: 1;
  transition: var(--tr-smooth);
}

.page-blog2-card__meta {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--light-color-fixed);
  margin-bottom: 10px;
  font-weight: 600;
}

.page-blog2-card__title {
  font-family: var(--font-head);
  color: var(--white-fixed);
  font-size: clamp(18px, 5vw, 24px);
  line-height: 1.3;
  margin-bottom: 15px;
  text-decoration: none;
  display: block;
  transition: color var(--tr-speed);
}

.page-blog2-card__title:hover {
  color: var(--light-color-fixed);
}

.page-blog2-card--lg .page-blog2-card__img-wrapper {
  aspect-ratio: 16/9;
}

.page-blog2-card--lg .page-blog2-card__title {
  font-size: clamp(18px, 5vw, 32px);
}

.page-blog2-card:hover .page-blog2-card__img {
  transform: scale(1.1) rotate(1deg);
}

@media (max-width: 991px) {
  .page-blog2-card--lg .page-blog2-card__img-wrapper {
    aspect-ratio: 3/2;
  }
}

.fd-comments__avatar {
  width: 50px;
  height: 50px;
  object-fit: cover;
  border-radius: 50%;
  border: 2px solid var(--white);
  margin-right: 0.5rem;
  box-shadow: var(--box-shadow-sm);
}

.fd-comments-item__mood {
  padding: 5px 1rem;
  border-radius: var(--border-radius);
  font-size: 11px;
  background-color: var(--white);
}

.fd-comments .fd-comments__filter {
  cursor: pointer;
}

.fd-comments .fd-sort-dropdown {
  position: absolute;
  right: 0;
  top: 100%;
  min-width: 160px;
  display: none;
  border: 1px solid var(--bs-border-color);
  background-color: var(--white);
  z-index: 999;
}

.fd-comments .fd-sort-dropdown li {
  padding: 8px 16px;
  cursor: pointer;
  font-size: 13px;
}

.fd-comments .fd-sort-dropdown li:hover {
  background-color: rgba(var(--dark-color-rgb), 0.04);
}

.page-blog2 .fd-post-container {
  max-width: 850px;
  margin: 0 auto;
}

.page-blog2 .fd-post-featured-image {
  border-radius: var(--border-radius);
  overflow: hidden;
}

.page-blog2 .fd-image-breakout {
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  padding: 60px 0;
}

.page-blog2 .fd-image-breakout img {
  width: 100%;
  height: 600px;
  object-fit: cover;
}

.page-blog2 .fd-share-float {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 30px 0;
  border-top: 1px solid var(--gray-cus-100);
  margin-top: 60px;
}

.page-contact .contact-form-wrapper {
  background: var(--white);
  padding: 50px;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
}

.page-contact .form-group-cus {
  margin-bottom: 25px;
  position: relative;
}

.page-contact .contact-info__item {
  margin-bottom: 40px;
}

.page-contact .contact-info__label {
  font-size: 12px;
  text-transform: uppercase;
  color: var(--gray-cus-600);
  font-weight: bold;
  letter-spacing: 1.5px;
  margin-bottom: 10px;
  display: block;
}

.page-contact .contact-info__text {
  font-size: 20px;
  color: var(--gray-cus-900);
  font-family: var(--font-head);
  text-decoration: none;
  transition: var(--tr-smooth);
}

.page-contact .contact-info__text:hover {
  color: var(--secondary-color);
}

.page-contact .contact-map {
  height: 500px;
  width: 100%;
  border-radius: var(--border-radius);
  overflow: hidden;
}

.page-contact .contact-map iframe {
  width: 100%;
  height: 100%;
}

.fd-footer {
  position: relative;
  background-color: var(--gray-cus-900-fixed);
  color: var(--light-color-fixed);
  overflow: hidden;
  padding-top: 0;
}

.fd-footer__marquee {
  border-bottom: 1px solid rgba(var(--light-color-fixed-rgb), 0.15);
  padding: 30px 0;
  white-space: nowrap;
  overflow: hidden;
  display: flex;
}

.fd-footer__marquee-inner {
  display: flex;
  will-change: transform;
}

.fd-footer__marquee-text {
  font-family: var(--font-head);
  font-size: clamp(2rem, 5vw, 4rem);
  font-weight: 700;
  text-transform: uppercase;
  color: rgba(var(--white-fixed-rgb), 0.55);
  -webkit-text-stroke: 1px rgba(var(--white-fixed-rgb), 0.2);
  padding-right: 60px;
  letter-spacing: 2px;
}

.fd-footer__marquee-text span {
  color: var(--light-color-fixed);
  -webkit-text-stroke: 0;
}

.fd-footer__title {
  font-size: 1.75rem;
  margin-bottom: 1.5rem;
  color: var(--white-fixed);
}

.fd-footer__subtitle {
  font-family: var(--font-text);
  margin-bottom: 1.5rem;
  color: var(--white-fixed);
  font-size: 0.9rem;
  letter-spacing: 2px;
}

.fd-footer__text {
  line-height: 1.8;
  opacity: 0.8;
  color: var(--secondary-color);
}

.fd-footer__link-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.fd-footer__link {
  display: block;
  color: var(--secondary-color);
  text-decoration: none;
  padding: 8px 0;
  opacity: 0.7;
  transition: var(--tr-smooth);
}

.fd-footer__link:hover {
  opacity: 1;
  color: var(--secondary-color-fixed);
  transform: translateX(8px);
}

.fd-footer__form {
  position: relative;
  margin-top: 20px;
}

.fd-footer__input {
  width: 100%;
  background: rgba(0, 0, 0, 0);
  border: none !important;
  border-bottom: 1px solid rgba(var(--white-fixed-rgb), 0.1) !important;
  padding: 12px 0 !important;
  color: var(--white-fixed) !important;
  outline: none;
}

.fd-footer__input:focus {
  outline: none !important;
  border: none;
  border-bottom: 1px solid var(--secondary-color-fixed) !important;
  box-shadow: none !important;
}

.fd-footer .fd-btn--submit {
  background: rgba(0, 0, 0, 0);
  border: none;
  color: var(--light-color-fixed);
  position: absolute;
  padding: 12px;
  right: 0;
  top: 8%;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-size: 0.8rem;
}

.fd-footer__social {
  display: flex;
  gap: 15px;
  margin-top: 25px;
}

.fd-footer__social-icon {
  width: 40px;
  height: 40px;
  border: 1px solid rgba(var(--white-fixed-rgb), 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: var(--white-fixed);
  transition: var(--tr-smooth);
  text-decoration: none;
}

.fd-footer__social-icon:hover {
  background-color: var(--secondary-color-fixed);
  border-color: var(--secondary-color-fixed);
  color: var(--light-color-fixed);
  transform: translateY(-5px);
}

.fd-footer__bottom {
  background-color: rgba(0, 0, 0, 0.2);
  padding: 25px 0;
}
