/* ===================================================================
    Author          : Restrova – Restaurant HTML Template
    Version         : 1.0
* ================================================================= */

/* Google Fonts */

/* ===================================
Root Variables
=================================== */

:root {
  --primary-color: #1f4f8f;
  --secondary-color: #000000;
  --dark-color: #121212;
  --base-color: #1f1f1f;
  --text-color: #555555;
  --light-color: #f8f8f8;
  --white-color: #ffffff;
  --bg-color: #F6F3F0;
  --heading-font: "Raleway", sans-serif;
  --titleFontFamily: "Yesteryear", cursive;
  --body-font: "Plus Jakarta Sans", sans-serif;
  --transition: all 0.3s ease;
  --border-radius: 12px;
  --footer-newsletter-bg-color: #f4b400;
}

/* ===================================
Body
=================================== */

body {
  font-family: var(--body-font);
  color: var(--text-color);
  font-size: 16px;
  line-height: 1.7;
  font-weight: 400;
  background: var(--white-color);
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

html, body {
  height: 100%;
  scroll-behavior: smooth;
}

/* =========================
   THEME SCROLLBAR
========================= */

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

::-webkit-scrollbar-track {
  background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
  background: var(--primary-color);
  border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--secondary-color);
}

/* Firefox */

* {
  scrollbar-width: thin;
  scrollbar-color: var(--primary-color) #f1f1f1;
}

.overflow-wrapper {
  width: 100%;
  overflow-x: hidden;
  position: relative;
}

.container {
  width: 90% !important;
  max-width: 1480px !important;
  padding-left: 15px !important;
  padding-right: 15px !important;
  margin-left: auto !important;
  margin-right: auto !important;
}

/* ===================================
Typography
=================================== */

h1, h2, h3, h4, h5, h6 {
  font-family: var(--heading-font);
  color: var(--dark-color);
  font-weight: 600;
  margin: 0;
}

h1 {
  font-size: 56px;
  line-height: 1.2;
}

h2 {
  font-size: 42px;
}

h3 {
  font-size: 32px;
}

h4 {
  font-size: 24px;
}

h5 {
  font-size: 20px;
}

h6 {
  font-size: 18px;
}

p {
  margin-bottom: 15px;
}

a {
  text-decoration: none;
  color: var(--dark-color);
  transition: var(--transition);
}

a:hover {
  color: var(--primary-color);
}

section {
  padding: 100px 0;
  position: relative;
}

.bg-light {
  background: var(--light-color);
}

.bg-dark {
  background: var(--dark-color);
}

.text-primary {
  color: var(--primary-color);
}

.text-dark {
  color: var(--dark-color);
}

.rounded {
  border-radius: var(--border-radius);
}

.btn-default {
  position: relative;
  display: inline-block;
  font-size: 16px;
  font-weight: 700;
  line-height: 1em;
  text-transform: capitalize;
  background: var(--primary-color);
  color: #fff !important;
  border: none;
  border-radius: 100px;
  padding: 17px 56px 17px 25px;
  overflow: hidden;
  transition: all 0.4s ease-in-out;
  z-index: 1;
}

.btn-black {
  position: relative;
  display: inline-block;
  font-size: 16px;
  font-weight: 700;
  line-height: 1em;
  text-transform: capitalize;
  background: var(--white-color);
  color: var(--dark-color);
  border: none;
  border-radius: 100px;
  padding: 17px 56px 17px 25px;
  overflow: hidden;
  transition: all 0.4s ease-in-out;
  z-index: 1;
}

.btn-default::before {
  content: '';
  position: absolute;
  top: 50%;
  right: 6px;
  width: 40px;
  height: 40px;
  background-color: #fff;
  background-image: url('../../assets/img/arrow-blu.svg');
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 10px auto;
  border-radius: 50%;
  transform: translateY(-50%);
  transition: all 0.4s ease-in-out;
}

.btn-default:hover::before {
  transform: translateY(-50%) rotate(45deg);
}

.btn-default::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 0;
  height: 100%;
  background: var(--secondary-color);
  z-index: -1;
  transition: all 0.4s ease-in-out;
}

.btn-default:hover::after {
  right: auto;
  left: 0;
  width: 100%;
}

.btn-default.btn-highlighted:hover {
  color: var(--primary-color) !important;
}

.btn-default.btn-highlighted:hover:before {
  background-color: var(--primary-color);
  background-image: url('../../assets/img/arrow-white.svg');
}

.btn-default.btn-highlighted::after {
  background: #ffffff;
}

.btn-black-highlighted {
  background: var(--secondary-color);
}

.btn-default.btn-dark {
  background: var(--secondary-color);
  color: var(--primary-color);
}

.btn-default.btn-dark:before {
  background-color: var(--primary-color);
  background-image: url('../../assets/img/arrow-white.svg');
}

.btn-default.btn-dark::after {
  background: #fff;
}

.btn-outline-primary {
  background: transparent;
  border-color: var(--primary-color);
  color: var(--primary-color);
}

.btn-outline-primary:hover {
  background: var(--primary-color);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255,179,0,0.4);
}

.btn-outline-dark {
  background: transparent;
  border-color: var(--dark-color);
  color: var(--dark-color);
}

.btn-outline-dark:hover {
  background: var(--dark-color);
  color: #fff;
  transform: translateY(-2px);
}

.btn-outline-white {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.35);
  color: #fff;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  font-size: 16px;
  font-weight: 700;
  line-height: 1em;
  text-transform: capitalize;
  border-radius: 100px;
  padding: 17px 56px 17px 25px;
  overflow: hidden;
  transition: all 0.4s ease-in-out;
  z-index: 1;
}

.btn-outline-white:hover {
  background: rgba(255, 255, 255, 0.16);
  border-color: rgba(255, 255, 255, 0.6);
  color: #fff;
  transform: translateY(-2px);
}

.btn-pill {
  border-radius: 50px;
}

.btn-square {
  border-radius: 0;
}

.btn-icon {
  width: 44px;
  height: 44px;
  padding: 0;
  border-radius: 50%;
  font-size: 16px;
}

.btn-icon.btn-sm {
  width: 36px;
  height: 36px;
  font-size: 14px;
}

.btn-icon.btn-lg {
  width: 54px;
  height: 54px;
  font-size: 20px;
}

.btn.loading {
  pointer-events: none;
  opacity: 0.75;
}

.section-head {
  margin-bottom: 56px;
}

.section-head--center {
  text-align: center;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--primary-color);
  margin-bottom: 12px;
}

.section-tag::before {
  content: '';
  display: inline-block;
  width: 28px;
  height: 3px;
  background: var(--primary-color);
  border-radius: 2px;
}

.section-tag::after {
  content: '';
  display: inline-block;
  width: 8px;
  height: 8px;
  background: var(--secondary-color);
  border-radius: 50%;
}

.section-title {
  font-size: 42px;
  font-weight: 800;
  color: var(--dark-color);
  line-height: 1.2;
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 16px;
  color: var(--text-color);
  max-width: 560px;
  line-height: 1.8;
  margin-bottom: 0;
}

.section-head--center .section-subtitle {
  margin: 0 auto;
}

.section-head--white .section-title {
  color: #fff;
}

.section-head--white .section-subtitle {
  color: rgba(255, 255, 255, 0.65);
}

.text-highlight {
  color: var(--primary-color) !important;
}

.bg-primary {
  background: var(--primary-color) !important;
}

.bg-secondary {
  background: var(--secondary-color) !important;
}

.bg-dark {
  background: var(--dark-color) !important;
}

.bg-base {
  background: var(--base-color) !important;
}

.bg-light {
  background: var(--light-color) !important;
}

.bg-white {
  background: var(--white-color) !important;
}

.bg-gradient-primary {
  background: linear-gradient(135deg, var(--primary-color), #2964b3);
}

.bg-gradient-dark {
  background: linear-gradient(135deg, #0d0d0d, #1a0a00);
}

.bg-gradient-warm {
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
}

.overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.overlay-dark {
  background: rgba(0, 0, 0, 0.55);
}

.overlay-darker {
  background: rgba(0, 0, 0, 0.75);
}

.overlay-primary {
  background: rgba(31, 79, 143, 0.75);
}

.text-primary {
  color: var(--primary-color) !important;
}

.text-secondary {
  color: var(--secondary-color) !important;
}

.text-dark {
  color: var(--dark-color) !important;
}

.text-muted {
  color: var(--text-color) !important;
}

.text-white {
  color: #fff !important;
}

.text-light {
  color: var(--light-color) !important;
}

.fw-400 {
  font-weight: 400;
}

.fw-500 {
  font-weight: 500;
}

.fw-600 {
  font-weight: 600;
}

.fw-700 {
  font-weight: 700;
}

.fw-800 {
  font-weight: 800;
}

.font-heading {
  font-family: var(--heading-font);
}

.font-body {
  font-family: var(--body-font);
}

.font-title {
  font-family: var(--titleFontFamily);
}

.text-uppercase {
  text-transform: uppercase;
}

.text-capitalize {
  text-transform: capitalize;
}

.ls-1 {
  letter-spacing: 1px;
}

.ls-2 {
  letter-spacing: 2px;
}

.pt-0 {
  padding-top: 0 !important;
}

.pb-0 {
  padding-bottom: 0 !important;
}

.pt-20 {
  padding-top: 20px !important;
}

.pb-20 {
  padding-bottom: 20px !important;
}

.pt-40 {
  padding-top: 40px !important;
}

.pb-40 {
  padding-bottom: 40px !important;
}

.pt-60 {
  padding-top: 60px !important;
}

.pb-60 {
  padding-bottom: 60px !important;
}

.pt-80 {
  padding-top: 80px !important;
}

.pb-80 {
  padding-bottom: 80px !important;
}

.pt-100 {
  padding-top: 100px !important;
}

.pb-100 {
  padding-bottom: 100px !important;
}

.pt-120 {
  padding-top: 120px !important;
}

.pb-120 {
  padding-bottom: 120px !important;
}

.mt-0 {
  margin-top: 0 !important;
}

.mb-0 {
  margin-bottom: 0 !important;
}

.mt-20 {
  margin-top: 20px !important;
}

.mb-20 {
  margin-bottom: 20px !important;
}

.mt-40 {
  margin-top: 40px !important;
}

.mb-40 {
  margin-bottom: 40px !important;
}

.mt-60 {
  margin-top: 60px !important;
}

.mb-60 {
  margin-bottom: 60px !important;
}

.mt-80 {
  margin-top: 80px !important;
}

.mb-80 {
  margin-bottom: 80px !important;
}

.tag {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 50px;
  line-height: 1;
}

.tag-primary {
  background: rgba(31, 79, 143, 0.12);
  color: var(--primary-color);
}

.tag-secondary {
  background: rgba(255, 183, 3, 0.15);
  color: #b07d00;
}

.tag-dark {
  background: var(--dark-color);
  color: #fff;
}

.tag-white {
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
}

.tag-success {
  background: rgba(34, 197, 94, 0.12);
  color: #16a34a;
}

.tag-danger {
  background: rgba(239, 68, 68, 0.12);
  color: #dc2626;
}

.tag-outline {
  background: transparent;
  border: 1.5px solid var(--primary-color);
  color: var(--primary-color);
}

.card-base {
  background: #fff;
  border-radius: var(--border-radius);
  overflow: hidden;
  transition: var(--transition);
  border: 1px solid rgba(0, 0, 0, 0.06);
}

.card-hover:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.card-dark {
  background: var(--base-color);
  border-color: rgba(255, 255, 255, 0.06);
  color: #fff;
}

.divider {
  width: 100%;
  height: 1px;
  background: rgba(0, 0, 0, 0.08);
  margin: 40px 0;
}

.divider-primary {
  background: var(--primary-color);
  opacity: 0.3;
}

.divider-short {
  width: 60px;
  height: 3px;
  background: var(--primary-color);
  border-radius: 2px;
  margin: 16px 0;
}

.divider-short--center {
  margin: 16px auto;
}

.icon-box {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
  transition: var(--transition);
}

.icon-box-sm {
  width: 40px;
  height: 40px;
  font-size: 16px;
  border-radius: 10px;
}

.icon-box-lg {
  width: 72px;
  height: 72px;
  font-size: 28px;
  border-radius: 18px;
}

.icon-box-primary {
  background: rgba(31, 79, 143, 0.12);
  color: var(--primary-color);
}

.icon-box-secondary {
  background: rgba(255, 183, 3, 0.15);
  color: #b07d00;
}

.icon-box-dark {
  background: var(--dark-color);
  color: #fff;
}

.icon-box-white {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
}

.icon-box-circle {
  border-radius: 50%;
}

.stars {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  color: var(--secondary-color);
  font-size: 14px;
}

.stars span {
  color: var(--text-color);
  font-size: 13px;
  font-weight: 600;
  margin-left: 4px;
}

.price {
  font-size: 20px;
  font-weight: 800;
  color: var(--primary-color);
  font-family: var(--heading-font);
}

.price-old {
  font-size: 14px;
  color: var(--text-color);
  text-decoration: line-through;
  margin-left: 6px;
}

.price-wrap {
  display: inline-flex;
  align-items: baseline;
  gap: 4px;
}

.radius-sm {
  border-radius: 6px;
}

.radius-md {
  border-radius: var(--border-radius);
}

.radius-lg {
  border-radius: 20px;
}

.radius-xl {
  border-radius: 30px;
}

.radius-full {
  border-radius: 50%;
}

.shadow-sm {
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
}

.shadow-md {
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.1);
}

.shadow-lg {
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.14);
}

.shadow-primary {
  box-shadow: 0 8px 28px rgba(31, 79, 143, 0.35);
}

.d-flex-center {
  display: flex;
  align-items: center;
  justify-content: center;
}

.d-flex-between {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.d-flex-gap-sm {
  display: flex;
  align-items: center;
  gap: 10px;
}

.d-flex-gap-md {
  display: flex;
  align-items: center;
  gap: 20px;
}

.img-cover {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.transition {
  transition: var(--transition);
}

.curve-shape {
  position: absolute;
  bottom: -1px;
  z-index: 2;
}

.top-bar-shape {
  transform: rotate(180deg);
  top: 90px;
}

/* ===================================
   Loader Styles
=================================== */

#loader {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: var(--secondary-color);
  transition: opacity 0.9s ease, visibility 0.9s ease;
  overflow: hidden;
}

#loader.hide {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

#loader .glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  animation: ldr-pulse 4s ease-in-out infinite alternate;
}

@keyframes ldr-pulse {
  from {
    opacity: .6;
    transform: translate(-50%, -50%) scale(.95);
  }
  to {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.05);
  }
}

#loader .plate-wrap {
  position: relative;
  width: 200px;
  height: 200px;
  margin-bottom: 55px;
  z-index: 2;
}

#loader .ring-outer {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 3px solid var(--primary-color);
  animation: ldr-spin 12s linear infinite;
}

#loader .ring-dash {
  position: absolute;
  inset: 14px;
  border-radius: 50%;
  border: 2px dashed var(--primary-color);
  animation: ldr-spin 8s linear infinite reverse;
}

@keyframes ldr-spin {
  to {
    transform: rotate(360deg);
  }
}

#loader .arc-track {
  position: absolute;
  inset: 0;
}

#loader .arc-track circle {
  fill: none;
  stroke: var(--primary-color);
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-dasharray: 345;
  stroke-dashoffset: 345;
  transform-origin: center;
  transform: rotate(-90deg);
  animation: ldr-arc 2.8s cubic-bezier(.4, 0, .2, 1) forwards .4s;
  filter: drop-shadow(0 0 4px var(--primary-color));
}

@keyframes ldr-arc {
  to {
    stroke-dashoffset: 0;
  }
}

#loader .orbit {
  position: absolute;
  inset: 0;
  animation: ldr-spin 3s linear infinite;
}

#loader .dot {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--primary-color);
  box-shadow: 0 0 6px var(--primary-color);
  transform-origin: 0 0;
}

#loader .dot:nth-child(1) {
  transform: rotate(0deg) translate(99px) translate(-50%, -50%);
}

#loader .dot:nth-child(2) {
  transform: rotate(120deg) translate(99px) translate(-50%, -50%);
}

#loader .dot:nth-child(3) {
  transform: rotate(240deg) translate(99px) translate(-50%, -50%);
}

#loader .plate {
  position: absolute;
  inset: 28px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, rgba(31,79,143,0.21), transparent 55%), conic-gradient(from 0deg, rgba(31,79,143,0.26), rgba(31,79,143,0.38), rgba(31,79,143,0.27));
  border: 1px solid var(--primary-color);
  box-shadow: 0 0 0 4px rgba(31,79,143,0.08), 0 0 40px rgba(31, 79, 143, .12), inset 0 0 30px rgba(0, 0, 0, .5);
  display: flex;
  align-items: center;
  justify-content: center;
}

#loader .cutlery {
  display: flex;
  align-items: flex-end;
  gap: 9px;
  height: 60px;
  animation: ldr-cutlery-pop .8s cubic-bezier(.34, 1.56, .64, 1) forwards;
  opacity: 0;
}

#loader .cutlery svg {
  fill: var(--primary-color);
}

@keyframes ldr-cutlery-pop {
  from {
    opacity: 0;
    transform: scale(.5) translateY(6px);
  }
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

#loader .brand {
  position: relative;
  z-index: 2;
  text-align: center;
  letter-spacing: .42em;
  font-size: 52px;
  color: var(--bs-body-bg);
  text-transform: uppercase;
  animation: ldr-brand-in 1s ease forwards .5s;
  opacity: 0;
}

@keyframes ldr-brand-in {
  from {
    opacity: 0;
    letter-spacing: .8em;
  }
  to {
    opacity: 1;
    letter-spacing: .42em;
  }
}

#loader .tagline {
  position: relative;
  z-index: 2;
  font-weight: 300;
  font-size: 18px;
  color: var(--primary-color);
  letter-spacing: .22em;
  opacity: 0;
  animation: ldr-fade-up .9s ease forwards 1s;
}

@keyframes ldr-fade-up {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ===================================
Header
=================================== */

/* Top Bar */

.top-bar {
  background: var(--primary-color);
  color: #fff;
  padding: 10px 0;
  font-size: 12px;
  position: relative;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.top-info span {
  display: inline-flex;
  align-items: center;
  font-weight: 500;
  padding: 0 20px;
  border-right: 1px solid rgba(255, 255, 255, 0.4);
}

.top-info span:last-child {
  border-right: none;
}

.top-info i {
  margin-right: 8px;
  color: #fff;
  opacity: 0.9;
}

.top-social a {
  color: #fff;
  margin-left: 20px;
  font-size: 14px;
  transition: var(--transition);
  transform: scale(1);
  padding: 5px;
  border-radius: 50%;
  background: rgb(0 0 0 / 10%);
}

.top-social a:hover {
  color: var(--dark-color);
  background: #fff;
  transform: scale(1.1);
}

/* Main Header */

.main-header {
  background: var(--white-color);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 2px solid var(--light-color);
}

/* ===================================
Custom Hamburger Toggler
=================================== */

.navbar-toggler {
  background: none;
  border: none;
  padding: 6px;
  display: flex;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  box-shadow: none !important;
  outline: none !important;
}

.tog-line {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--dark-color);
  border-radius: 3px;
  transition: all 0.35s cubic-bezier(.23, 1, .32, 1);
  transform-origin: center;
}

.navbar-toggler:not(.collapsed) .tog-line:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.navbar-toggler:not(.collapsed) .tog-line:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.navbar-toggler:not(.collapsed) .tog-line:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ===================================
Dropdown Styles
=================================== */

.nav-arrow {
  font-size: 11px;
  margin-left: 4px;
  transition: transform 0.3s ease;
  display: inline-block;
  color: var(--text-color);
}

.has-dropdown:hover .nav-arrow {
  transform: rotate(180deg);
  color: var(--primary-color);
}

.has-dropdown {
  position: relative;
}

.has-dropdown:hover {
  z-index: 200;
}

.has-dropdown::after {
  content: '';
  position: absolute;
  top: 100%;
  left: -10px;
  width: calc(100% + 20px);
  height: 24px;
  background: transparent;
  z-index: 998;
}

.mega-dropdown {
  position: absolute;
  top: calc(100% + 20px);
  left: 50%;
  transform: translateX(-50%) translateY(6px);
  background: var(--white-color);
  border-radius: 18px;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.13), 0 4px 16px rgba(31, 79, 143, 0.07);
  border: 1px solid rgba(0, 0, 0, 0.06);
  padding: 10px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
  z-index: 999;
  pointer-events: none;
}

.has-dropdown:hover .mega-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
  pointer-events: all;
}

.dropdown-arrow {
  position: absolute;
  top: -7px;
  left: 50%;
  transform: translateX(-50%) rotate(45deg);
  width: 14px;
  height: 14px;
  background: var(--white-color);
  border-left: 1px solid rgba(0, 0, 0, 0.06);
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.dropdown-simple {
  min-width: 260px;
}

.dropdown-mega {
  min-width: 560px;
  display: flex;
  gap: 0;
  align-items: flex-start;
  padding: 14px 10px;
}

.mega-col {
  flex: 1;
  padding: 0 6px;
}

.mega-divider {
  width: 1px;
  background: rgba(0, 0, 0, 0.07);
  margin: 6px 8px;
  align-self: stretch;
}

.dropdown-label {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--primary-color);
  padding: 4px 12px 6px;
  margin: 0 0 2px;
}

.drop-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  border-radius: 12px;
  text-decoration: none;
  color: var(--dark-color);
  transition: all 0.22s ease;
  border: 1px solid transparent;
  position: relative;
}

.drop-row:hover {
  background: rgba(0,117,255,0.09);
  border-color: rgba(31,79,143,0.12);
  color: var(--dark-color);
  transform: translateX(3px);
}

.drop-icon {
  width: 38px;
  height: 38px;
  min-width: 38px;
  border-radius: 10px;
  background: rgba(31, 79, 143, 0.08);
  color: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  transition: all 0.22s ease;
}

.drop-row:hover .drop-icon {
  background: var(--primary-color);
  color: #fff;
  transform: scale(1.08);
}

.drop-body {
  display: flex;
  flex-direction: column;
  gap: 2px;
  flex: 1;
}

.drop-body strong {
  font-size: 13px;
  font-weight: 700;
  color: var(--dark-color);
  line-height: 1.3;
  display: block;
}

.drop-body small {
  font-size: 11px;
  color: var(--text-color);
  line-height: 1.3;
  display: block;
}

.drop-badge {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 20px;
  background: var(--primary-color);
  color: #fff;
  flex-shrink: 0;
  line-height: 1.4;
}

.navbar-brand img {
  height: 65px;
  transition: var(--transition);
}

.navbar-nav .nav-link {
  font-weight: 600;
  color: var(--dark-color);
  margin: 0 15px;
  transition: var(--transition);
  position: relative;
  padding: 10px 0;
  cursor: pointer;
}

.navbar-nav .nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 3px;
  background: var(--primary-color);
  transition: var(--transition);
  transform: translateX(-50%);
  z-index: 1;
}

.has-dropdown > .nav-link::after {
  z-index: 1;
  height: 3px;
  bottom: 0;
}

.navbar-nav .nav-link:hover::after, .navbar-nav .nav-link.active::after {
  width: 100%;
}

.navbar-nav .nav-link:hover, .navbar-nav .nav-link.active {
  color: var(--primary-color);
  transform: translateY(-2px);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 20px;
}

.header-icon {
  font-size: 20px;
  color: var(--primary-color);
  padding: 12px;
  border-radius: 50%;
  transition: var(--transition);
  position: relative;
  background: transparent;
  border: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  overflow: visible;
  cursor: pointer;
}

.header-icon::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background: var(--primary-color);
  transition: width 0.3s ease;
  z-index: -1;
  border-radius: 50%;
}

.header-icon:hover::before {
  width: 100%;
}

.header-icon:hover {
  color: #fff;
  transform: scale(1.1);
  box-shadow: 0 4px 15px rgba(31, 79, 143, 0.3);
}

.cart-count {
  position: absolute;
  top: 0px;
  right: 0px;
  background: var(--secondary-color);
  color: #fff;
  border-radius: 50%;
  width: 20px;
  height: 20px;
  font-size: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
}

.order-btn {
  padding: 12px 24px;
  font-weight: 600;
  transition: var(--transition);
  box-shadow: 0 4px 15px rgba(31, 79, 143, 0.3);
}

.order-btn:hover {
  background: var(--dark-color) !important;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

/* ===================================
Hero Section
=================================== */

.hero-section {
  position: relative;
  min-height: 100vh;
  background: url('../../assets/img/1feecfbb-b4ef-4308-9138-e2e52ec7dfa7.jpg') center/cover no-repeat;
  overflow: hidden;
  display: flex;
  align-items: center;
  padding: 0;
  /*opacity: .85;*/
}

.hero-row {
  min-height: 100vh;
  padding: 120px 0 120px;
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  z-index: 0;
}

.orb-1 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(31, 79, 143, 0.25) 0%, transparent 70%);
  top: -100px;
  right: 10%;
}

.orb-2 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(0,117,255,0.15) 0%, transparent 70%);
  bottom: -80px;
  left: 5%;
}

.hero-shape {
  position: absolute;
  pointer-events: none;
  z-index: 0;
  opacity: 0.8;
  filter: drop-shadow(0 8px 20px rgba(0, 0, 0, 0.4));
}

.shape-1 {
  width: 130px;
  top: 5%;
  left: 5%;
  animation: floatY 5s ease-in-out infinite 0s;
}

.shape-2 {
  width: 105px;
  top: 3%;
  left: 28%;
  animation: floatY 6s ease-in-out infinite 0.8s;
}

.shape-3 {
  width: 120px;
  top: 6%;
  left: 52%;
  animation: floatY 4.5s ease-in-out infinite 1.4s;
}

.shape-4 {
  width: 110px;
  top: 4%;
  right: 5%;
  animation: floatY 5.5s ease-in-out infinite 0.3s;
}

.shape-5 {
  width: 125px;
  top: 42%;
  left: 3%;
  animation: floatY 6s ease-in-out infinite 1.2s;
}

.shape-6 {
  width: 105px;
  top: 82%;
  left: 38%;
  animation: floatY 4s ease-in-out infinite 2s;
}

.shape-7 {
  width: 115px;
  top: 44%;
  left: 72%;
  animation: floatY 5.5s ease-in-out infinite 0.5s;
}

.shape-8 {
  width: 120px;
  top: 40%;
  right: 3%;
  animation: floatY 5s ease-in-out infinite 1.7s;
}

.shape-9 {
  width: 115px;
  bottom: 6%;
  left: 6%;
  animation: floatY 4.5s ease-in-out infinite 0.6s;
}

.shape-10 {
  width: 95px;
  bottom: 8%;
  left: 26%;
  animation: floatY 6s ease-in-out infinite 1.1s;
}

.shape-11 {
  width: 110px;
  bottom: 5%;
  left: 50%;
  animation: floatY 5s ease-in-out infinite 1.9s;
}

.shape-12 {
  width: 100px;
  bottom: 7%;
  right: 8%;
  animation: floatY 4s ease-in-out infinite 0.4s;
}

.shape-13 {
  width: 95px;
  top: 8%;
  left: 15%;
  animation: floatY 5.5s ease-in-out infinite 2.2s;
}

.shape-14 {
  width: 100px;
  top: 20%;
  right: 10%;
  animation: floatY 6.5s ease-in-out infinite 1.5s;
}

@keyframes floatY {
  0%, 100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-18px) rotate(6deg);
  }
}

/* Hero Content */

.hero-content {
  position: relative;
  z-index: 3;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(31, 79, 143, 0.15);
  border: 1px solid rgba(0,117,255,0.4);
  color: var(--primary-color);
  padding: 8px 18px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.5px;
  margin-bottom: 24px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.badge-dot {
  width: 8px;
  height: 8px;
  background: var(--primary-color);
  border-radius: 50%;
  animation: pulse-dot 1.5s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%, 100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.5);
    opacity: 0.6;
  }
}

.hero-title {
  font-size: 80px;
  font-weight: 800;
  color: #ffffff;
  line-height: 1.1;
  margin-bottom: 22px;
  letter-spacing: -1px;
}

.hero-highlight {
  color: var(--primary-color);
  position: relative;
  display: inline-block;
  font-family: var(--titleFontFamily);
}

.hero-desc {
  color: rgba(255, 255, 255, 0.65);
  font-size: 17px;
  line-height: 1.8;
  margin-bottom: 36px;
  max-width: 480px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 28px;
}

.stat-item {
  display: flex;
  flex-direction: column;
}

.stat-num {
  font-size: 26px;
  font-weight: 800;
  color: #fff;
  font-family: var(--heading-font);
  line-height: 1;
}

.stat-label {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 4px;
  letter-spacing: 0.3px;
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255, 255, 255, 0.15);
}

.hero-visual {
  position: relative;
  z-index: 3;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-plate-wrapper {
  position: relative;
  width: 520px;
  height: 520px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Rotating rings */

.plate-ring {
  position: absolute;
  inset: -20px;
  border-radius: 50%;
  border: 2px dashed var(--primary-color);
  animation: spinRing 18s linear infinite;
}

.ring-2 {
  inset: -45px;
  border-color: rgba(255, 183, 3, 0.2);
  animation-duration: 28s;
  animation-direction: reverse;
}

@keyframes spinRing {
  to {
    transform: rotate(360deg);
  }
}

.plate-glow {
  position: absolute;
  width: 440px;
  height: 440px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--primary-color) 0%, transparent 70%);
  filter: blur(30px);
  z-index: 0;
}

.hero-pizza {
  width: 440px;
  height: 440px;
  object-fit: cover;
  border-radius: 50%;
  position: relative;
  z-index: 1;
  border: 5px solid var(--primary-color);
  box-shadow: 0 0 60px rgba(31, 79, 143, 0.3), 0 30px 80px rgba(0, 0, 0, 0.5);
  animation: heroFloat 4s ease-in-out infinite;
}

@keyframes heroFloat {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-14px);
  }
}

/* Food Badges */

.food-badge {
  position: absolute;
  background: rgba(20, 20, 20, 0.85);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 10px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 3;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
  animation: badgeFloat 3.5s ease-in-out infinite;
}

.food-badge img {
  width: 38px;
  height: 38px;
  object-fit: contain;
}

.food-badge span {
  color: #fff;
  font-size: 13px;
  font-weight: 600;
}

.badge-top-right {
  top: 20px;
  right: -20px;
  animation-delay: 0s;
}

.badge-bottom-left {
  bottom: 30px;
  left: -20px;
  animation-delay: 1s;
}

.badge-top-left {
  top: 60px;
  left: -30px;
  animation-delay: 0.5s;
}

@keyframes badgeFloat {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

/* ===================================
   Footer Section
=================================== */

img.curve-shape.footer-bar-shape {
  filter: brightness(0) saturate(100%) invert(96%) sepia(3%) saturate(1217%) hue-rotate(189deg) brightness(116%) contrast(88%) !important;
}

.footer-modern {
  position: relative;
  color: var(--text-color);
  overflow: hidden;
  margin-top: 100px;
  z-index: 1;
}

.footer-background {
  background: var(--secondary-color);
  position: absolute;
  width: 100%;
  height: 100%;
  overflow: hidden;
  transition: all 0.4s ease-in-out;
  z-index: 1;
}

.footer-blob {
  position: absolute;
  border-radius: 50%;
  opacity: 0.8;
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
}

.footer-blob-2 {
  width: 350px;
  height: 350px;
  background: url('../../assets/img/shape/vino_pietrarizzo.png') no-repeat center/cover;
  position: absolute;
  top: auto;
  bottom: 5%;
  left: -5%;
  transform: none;
  animation: blob-float-2 18s infinite;
  opacity: 0.8;
  z-index: 0;
  pointer-events: none;
}

.footer-blob-3 {
  width: 400px;
  height: 400px;
  background: url('../../assets/img/shape/pizza.png') no-repeat center/cover;
  position: absolute;
  top: auto;
  bottom: 5%;
  right: -12%;
  transform: none;
  animation: blob-float-3 20s infinite;
  opacity: 0.8;
  z-index: 0;
  pointer-events: none;
}

@keyframes blob-float-2 {
  0%, 100% {
    transform: translate(0, 0) scale(1);
  }
  33% {
    transform: translate(30px, -20px) scale(1.02);
  }
  66% {
    transform: translate(-30px, 20px) scale(0.98);
  }
}

@keyframes blob-float-3 {
  0%, 100% {
    transform: rotate(0deg) translate(0, 0);
  }
  50% {
    transform: rotate(180deg) translate(-40px, 10px);
  }
}

.footer-wrapper {
  position: relative;
  z-index: 2;
}

.footer-cta-section {
  position: relative;
  padding: 80px 0;
  color: #fff;
  overflow: hidden;
  background: var(--bs-link-color);
  background-image: radial-gradient(rgba(255, 255, 255, 0.2) 1px, transparent 1px);
  background-size: 10px 10px;
}

.footer-cta-section .container {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.footer-cta-content, .footer-app-download {
  position: relative;
  z-index: 2;
}

.footer-cta-section::before {
  content: "";
  position: absolute;
  top: 0;
  right: -10%;
  width: 60%;
  height: 110%;
  background: var(--primary-color);
  border-top-left-radius: 200px;
  border-bottom-left-radius: 200px;
  z-index: 1;
  background-image: radial-gradient(rgba(255, 255, 255, 0.15) 1px, transparent 1px);
  background-size: 10px 10px;
}

.newsletter-section {
  position: relative;
  padding: 80px;
  color: #fff;
  overflow: hidden;
  background: var(--bs-link-color);
  background-image: radial-gradient(rgba(255, 255, 255, 0.2) 1px, transparent 1px);
  background-size: 10px 10px;
}

.newsletter-section::before {
  content: "";
  position: absolute;
  top: 0;
  right: -10%;
  width: 60%;
  height: 100%;
  background: var(--primary-color);
  border-top-left-radius: 300px;
  border-bottom-left-radius: 300px;
  z-index: 1;
}

.footer-app-download {
  text-align: center;
}

.app-text {
  font-size: 48px;
  font-weight: 800;
  margin: 0 0 15px 0;
  color: var(--light-color);
  font-family: var(--heading-font);
  letter-spacing: -1px;
  line-height: 1.2;
}

.store-buttons {
  display: flex;
  flex-direction: row;
  gap: 50px;
  align-items: center;
}

.store-buttons img {
  width: 260px;
  transition: transform 0.3s ease;
  cursor: pointer;
  display: block;
}

.store-buttons img:hover {
  transform: scale(1.05);
}

.footer-bar-shape {
  transform: rotate(180deg);
  top: 0;
}

.footer-cta-title {
  font-size: 48px;
  font-weight: 800;
  margin: 0 0 15px 0;
  color: var(--light-color);
  font-family: var(--heading-font);
  letter-spacing: -1px;
  line-height: 1.2;
}

.footer-cta-subtitle {
  font-size: 18px;
  color: var(--light-color);
  margin-bottom: 35px;
  line-height: 1.6;
}

.footer-text-highlight {
  color: var(--secondary-color);
  position: relative;
  display: inline-block;
  font-family: var(--titleFontFamily);
}

.footer-newsletter {
  display: flex;
  gap: 8px;
  max-width: 450px;
  background: var(--primary-color);
  padding: 6px;
  border-radius: 50px;
  border: 2px solid rgba(31, 79, 143, 0.2);
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  animation: slideInUp 0.8s ease-out 0.1s both;
}

.footer-newsletter:focus-within {
  background: var(--primary-color);
  border-color: var(--primary-color);
  box-shadow: 0 0 30px rgba(31, 79, 143, 0.3);
}

.footer-newsletter input {
  flex: 1;
  background: var(--primary-color);
  border-radius: 50px;
  padding: 15px 25px;
  color: #fff;
  font-size: 16px;
  outline: none;
  border: none !important;
}

.footer-newsletter input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.btn-footer-subscribe {
  background: var(--secondary-color);
  border: none;
  color: white;
  padding: 15px 30px;
  border-radius: 50px;
  cursor: pointer;
  font-size: 16px;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  flex-shrink: 0;
  box-shadow: 0 8px 25px rgba(31, 79, 143, 0.3);
}

.btn-footer-subscribe:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(31, 79, 143, 0.5);
}

.btn-footer-subscribe:active {
  transform: translateY(-1px);
}

.footer-main {
  padding: 80px 0 60px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1.2fr 1.2fr 1.6fr;
  gap: 60px;
  margin-bottom: 60px;
  animation: fadeInUp 0.8s ease-out 0.2s both;
}

@keyframes slideInDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.footer-column {
  position: relative;
  z-index: 1;
}

.footer-brand-column {
  animation-delay: 0.2s;
}

.footer-column:nth-child(2) {
  animation-delay: 0.3s;
}

.footer-column:nth-child(3) {
  animation-delay: 0.4s;
}

.footer-column:nth-child(4) {
  animation-delay: 0.5s;
}

.footer-logo {
  margin-bottom: 25px;
}

.footer-logo img {
  width: 300px;
  transition: all 0.3s ease;
}

.footer-description {
  font-size: 15px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 30px;
}

.footer-social-links {
  display: flex;
  gap: 15px;
}

.social-link {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(31,79,143,0.15);
  color: var(--primary-color);
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  border: 2px solid transparent;
  font-size: 18px;
  position: relative;
  overflow: hidden;
}

.social-link::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background: var(--primary-color);
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
  z-index: -1;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.social-link:hover {
  color: #fff;
  border-color: var(--primary-color);
  transform: translateY(-8px) scale(1.1);
  box-shadow: 0 15px 35px rgba(31, 79, 143,0.4);
}

.social-link:hover::before {
  transform: translate(-50%, -50%) scale(1);
}

.footer-column-title {
  font-size: 16px;
  font-weight: 700;
  margin: 0 0 30px 0;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  position: relative;
  padding-bottom: 15px;
  font-family: var(--heading-font);
}

.footer-column-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 3px;
  background: var(--primary-color);
  border-radius: 3px;
  transition: width 0.4s ease;
}

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

.footer-links li {
  margin-bottom: 14px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 15px;
  transition: all 0.3s ease;
  display: inline-block;
  position: relative;
  padding-bottom: 3px;
}

.footer-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary-color);
  transition: width 0.3s ease;
}

.footer-links a:hover {
  color: var(--primary-color);
  padding-left: 8px;
}

.footer-links a:hover::after {
  width: 100%;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.info-item {
  display: flex;
  gap: 15px;
  align-items: flex-start;
  transition: all 0.3s ease;
}

.info-item i {
  color: var(--primary-color);
  font-size: 18px;
  margin-top: 3px;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.info-item p {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
  line-height: 1.6;
  transition: color 0.3s ease;
}

.info-item:hover {
  transform: translateX(8px);
}

.info-item:hover i {
  color: var(--light-color);
  transform: scale(1.2);
}

.info-item:hover p {
  color: #fff;
}

.footer-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(31, 79, 143, 0.3) 50%, transparent 100%);
  margin-bottom: 40px;
  animation: expandWidth 0.8s ease-out 0.6s both;
}

@keyframes expandWidth {
  from {
    opacity: 0;
    transform: scaleX(0);
  }
  to {
    opacity: 1;
    transform: scaleX(1);
  }
}

/* ===================================
   Footer Bottom
=================================== */

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

.copyright-text {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
  margin: 0;
}

.copyright-text a {
  color: var(--primary-color);
  text-decoration: none;
  transition: all 0.3s ease;
  border-bottom: 1px solid transparent;
}

.copyright-text a:hover {
  color: var(--light-color);
  border-bottom-color: var(--primary-color);
}

.divider {
  margin: 0 10px;
  opacity: 0.4;
}

.payment-methods {
  display: flex;
  align-items: center;
  gap: 15px;
  flex-wrap: wrap;
}

.payment-label {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.6);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
}

.payment-methods i {
  font-size: 24px;
  color: rgba(255, 255, 255, 0.5);
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  cursor: pointer;
}

.footer-logo img {
  /*filter: brightness(0) invert(1);*/
  width: 300px;
  transition: all 0.3s ease;
}

/* ===================================
   Scroll to Top Button
=================================== */

.footer-scroll-top {
  position: fixed;
  bottom: 40px;
  right: 40px;
  width: 55px;
  height: 55px;
  background: var(--primary-color);
  color: white;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: none;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  z-index: 1000;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow: 0 10px 35px rgba(31, 79, 143,0.4);
}

.footer-scroll-top.show {
  display: flex;
  animation: popIn 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.footer-scroll-top:hover {
  transform: translateY(-10px) scale(1.15);
  box-shadow: 0 15px 45px rgba(31, 79, 143, 0.5);
}

.footer-scroll-top:active {
  transform: translateY(-5px) scale(1);
}

@keyframes popIn {
  from {
    opacity: 0;
    transform: scale(0.6) translateY(30px);
  }
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .footer-blob, .footer-newsletter, .footer-column, .social-link, .footer-links a, .info-item, .footer-scroll-top, .footer-column-title::after {
    animation: none !important;
    transition: none !important;
  }
}

/* **** vertical pulse **** */

.vertical-pulse {
  width: 2px;
  height: 400px;
  position: relative;
  overflow: hidden;
  margin: 20px auto;
  background: linear-gradient(to bottom, transparent, #222, transparent);
}

.vertical-pulse::before {
  content: '';
  position: absolute;
  left: 0;
  width: 100%;
  height: 50px;
  animation: pulseDown 4s ease-in-out infinite;
}

.vertical-pulse::after {
  content: '';
  position: absolute;
  animation: fadeTrail 4s ease-in-out infinite;
}

@keyframes pulseDown {
  0% {
    height: 50px;
    top: -50px;
    background: linear-gradient(0deg, #ff6206 0%, transparent 100%);
    box-shadow: 0 0 15px #ff6206;
  }
  100% {
    height: 50px;
    top: 100%;
    background: linear-gradient(0deg, #ff6206 0%, transparent 100%);
    box-shadow: 0 0 15px #ff6206;
  }
}

@keyframes fadeTrail {
  0% {
    background: linear-gradient(0deg, rgba(237, 254, 255, 0.8) 30%, rgba(237, 254, 255, 0) 100%);
    box-shadow: inset 0 -50px 50px rgba(237, 254, 255, 0.3);
  }
  100% {
    background: linear-gradient(0deg, rgba(237, 254, 255, 0.1) 40%, rgba(237, 254, 255, 0) 100%);
    box-shadow: inset 0 -100px 80px rgba(237, 254, 255, 0.05);
  }
}

/* **** horizontal pulse **** */

.horizontal-pulse {
  width: 100%;
  height: 2px;
  position: relative;
  overflow: hidden;
  margin: 40px 0;
  background: linear-gradient(to right, transparent, #222, transparent);
}

.horizontal-pulse::before {
  content: '';
  position: absolute;
  top: 0;
  left: -50px;
  width: 50px;
  height: 100%;
  animation: pulseRight 8s ease-in-out infinite;
}

.horizontal-pulse::after {
  content: '';
  position: absolute;
  animation: fadeTrailHorizontal 8s ease-in-out infinite;
}

@keyframes pulseRight {
  0% {
    left: -50px;
    background: linear-gradient(90deg, transparent 0%, var(--primary-color) 60%, var(--primary-color) 100%);
    box-shadow: 0 0 15px var(--primary-color);
  }
  100% {
    left: 100%;
    background: linear-gradient(90deg, transparent 0%, var(--primary-color) 60%, var(--primary-color) 100%);
    box-shadow: 0 0 15px var(--primary-color);
  }
}

@keyframes fadeTrailHorizontal {
  0% {
    background: linear-gradient(90deg, rgba(240, 144, 109, 0.4) 30%, transparent 100%);
  }
  100% {
    background: linear-gradient(90deg, rgba(31, 79, 143, 0.05) 40%, transparent 100%);
  }
}

.image-animation {
  position: relative;
  display: inline-block;
  overflow: hidden;
}

.image-animation::after {
  content: "";
  position: absolute;
  width: 200%;
  height: 0%;
  left: 50%;
  top: 50%;
  background: rgba(255, 255, 255, 0.3);
  transform: translate(-50%, -50%) rotate(-45deg);
  pointer-events: none;
}

.image-animation:hover::after {
  height: 250%;
  background: transparent;
  transition: all 600ms linear;
}

/* ===================================
About Us Section
=================================== */

.bg-section {
  padding: 100px 0 100px;
}

.section-heading {
  font-family: var(--heading-font);
  font-size: 60px;
  font-weight: 800;
  color: var(--dark-color);
  margin-bottom: 20px;
}

.about-section {
  position: relative;
  overflow: hidden;
  padding-bottom: 0;
}

.about-section::before {
  content: '';
  position: absolute;
  width: 700px;
  height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(31, 79, 143, .06) 0%, transparent 65%);
  top: -200px;
  right: -200px;
  pointer-events: none;
}

.about-section::after {
  content: '';
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(31, 79, 143, .05) 0%, transparent 65%);
  bottom: -100px;
  left: -100px;
  pointer-events: none;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-visual {
  position: relative;
  height: 620px;
  padding: 20px 20px 20px 10px;
}

.visual-blob {
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 60% 40% 55% 45% / 50% 60% 40% 50%;
  background: linear-gradient(135deg, rgba(31, 79, 143, .12), rgba(31, 79, 143, .04));
  top: 50%;
  left: 50%;
  transform: translate(-46%, -50%);
  animation: blob-morph 8s ease-in-out infinite;
  z-index: 0;
}

@keyframes blob-morph {
  0%, 100% {
    border-radius: 60% 40% 55% 45% / 50% 60% 40% 50%;
  }
  33% {
    border-radius: 45% 55% 40% 60% / 60% 40% 55% 45%;
  }
  66% {
    border-radius: 55% 45% 60% 40% / 40% 55% 45% 60%;
  }
}

.scatter-dot {
  position: absolute;
  border-radius: 50%;
  background: var(--primary-color);
  opacity: .18;
  z-index: 0;
}

.sd-1 {
  width: 14px;
  height: 14px;
  top: 60px;
  left: 40px;
}

.sd-2 {
  width: 8px;
  height: 8px;
  top: 120px;
  left: 10px;
  opacity: .12;
}

.sd-3 {
  width: 20px;
  height: 20px;
  bottom: 80px;
  right: 50px;
}

.sd-4 {
  width: 9px;
  height: 9px;
  bottom: 40px;
  left: 80px;
  opacity: .12;
}

.sd-5 {
  width: 12px;
  height: 12px;
  top: 40px;
  right: 100px;
}

.img-card {
  position: absolute;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(0, 0, 0, .16), 0 4px 16px rgba(0, 0, 0, .10);
  transition: transform .45s cubic-bezier(.25, .8, .25, 1), box-shadow .45s ease;
  z-index: 2;
  will-change: transform;
}

.img-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .55s ease;
  will-change: transform;
}

.img-card:hover img {
  transform: scale(1.06);
}

.img-card-1 {
  width: 260px;
  height: 340px;
  top: 50px;
  left: 20px;
  transform: rotate(-6deg);
  z-index: 2;
  border-radius: 120px 24px 120px 24px;
  border: 5px solid var(--primary-color);
}

.img-card-1:hover {
  transform: rotate(-3deg) translateY(-8px);
  box-shadow: 0 36px 80px rgba(0, 0, 0, .22);
}

.img-card-2 {
  width: 280px;
  height: 360px;
  top: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 4;
  border-radius: 24px 120px 24px 120px;
  border: 5px solid var(--primary-color);
}

.img-card-2:hover {
  transform: translateX(-50%) translateY(-10px);
  box-shadow: 0 40px 90px rgba(0, 0, 0, .24);
}

.img-card-3 {
  width: 255px;
  height: 330px;
  top: 60px;
  right: 10px;
  transform: rotate(6deg);
  z-index: 2;
  border-radius: 24px 120px 24px 120px;
  border: 5px solid var(--primary-color);
}

.img-card-3:hover {
  transform: rotate(3deg) translateY(-8px);
  box-shadow: 0 36px 80px rgba(0, 0, 0, .22);
}

.img-tag {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(255, 255, 255, .92);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-radius: 50px;
  padding: 6px 14px;
  font-family: var(--body-font);
  font-size: 11px;
  font-weight: 600;
  color: var(--dark-color);
  white-space: nowrap;
  letter-spacing: .04em;
  box-shadow: 0 4px 16px rgba(0, 0, 0, .10);
}

.img-tag span {
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--primary-color);
  margin-right: 6px;
  vertical-align: middle;
}

.float-card {
  position: absolute;
  background: var(--white-color);
  border-radius: 16px;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 11px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, .12);
  z-index: 6;
  animation: float-bob 3.5s ease-in-out infinite;
  min-width: 140px;
}

.float-card-a {
  bottom: 80px;
  left: 0px;
  animation-delay: 0s;
}

.float-card-b {
  bottom: 80px;
  right: -10px;
  animation-delay: 1.8s;
}

@keyframes float-bob {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

.fc-icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: var(--primary-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}

.fc-text strong {
  display: block;
  font-family: var(--heading-font);
  font-weight: 800;
  font-size: 17px;
  color: var(--dark-color);
  line-height: 1;
}

.fc-text span {
  font-size: 10.5px;
  color: var(--text-color);
  letter-spacing: .03em;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--titleFontFamily);
  font-size: 22px;
  color: var(--primary-color);
  letter-spacing: .03em;
}

.eyebrow-line {
  display: block;
  width: 36px;
  height: 2px;
  background: var(--primary-color);
  border-radius: 2px;
}

.about-desc {
  margin-bottom: 32px;
}

.feature-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 40px;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 16px;
  border-radius: 50px;
  font-family: var(--body-font);
  font-size: 13px;
  font-weight: 500;
  cursor: default;
  transition: var(--transition);
}

.pill-outline {
  border: 1.5px solid rgba(31, 79, 143, .3);
  color: var(--primary-color);
  background: var(--primary-light);
}

.pill-outline:hover {
  background: var(--primary-color);
  color: #fff;
  border-color: var(--primary-color);
}

.pill-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: currentColor;
  flex-shrink: 0;
}

.stats-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border: 1.5px solid rgba(0, 0, 0, .08);
  border-radius: var(--border-radius);
  overflow: hidden;
  margin-bottom: 44px;
  background: var(--light-color);
}

.stat-box {
  padding: 22px 18px;
  text-align: center;
  position: relative;
  transition: var(--transition);
}

.stat-box:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 20%;
  bottom: 20%;
  width: 1px;
  background: rgba(0, 0, 0, .08);
}

.stat-box:hover {
  background: var(--primary-light);
}

.stat-num {
  display: block;
  font-family: var(--heading-font);
  font-size: 30px;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 4px;
}

.stat-lbl {
  font-size: 11.5px;
  color: var(--text-color);
  font-family: var(--body-font);
  letter-spacing: .04em;
  text-transform: uppercase;
}

.cta-row {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.marquee-wrap {
  margin-top: 90px;
  overflow: hidden;
  border-top: 1.5px solid rgba(0, 0, 0, .07);
  border-bottom: 1.5px solid rgba(0, 0, 0, .07);
  background: var(--primary-color);
  padding: 18px 0;
}

.marquee-track {
  display: flex;
  gap: 52px;
  animation: marquee-scroll 22s linear infinite;
  width: max-content;
}

.marquee-item {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--white-color);
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 40px;
}

.marquee-item::after {
  content: '✦';
  font-size: 15px;
  color: var(--white-color);
}

@keyframes marquee-scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

.chefs-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 28px;
}

.chef-avatars {
  display: flex;
}

.chef-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 2.5px solid var(--white-color);
  margin-left: -10px;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, .1);
  flex-shrink: 0;
}

.chef-avatar:first-child {
  margin-left: 0;
}

.chef-avatar-1 {
  background: linear-gradient(135deg, var(--primary-color), var(--primary-color));
}

.chef-avatar-2 {
  background: linear-gradient(135deg, var(--footer-newsletter-bg-color), var(--footer-newsletter-bg-color));
}

.chef-avatar-3 {
  background: linear-gradient(135deg, var(--dark-color), var(--dark-color));
}

.chef-avatar img {
  width: 80%;
  height: 80%;
  border-radius: 50%;
  object-fit: cover;
}

.chef-avatar-more {
  background: var(--dark-color);
  color: #fff;
  font-family: var(--heading-font);
  font-size: 11px;
  font-weight: 700;
}

.chefs-text {
  font-size: 13px;
  color: var(--text-color);
  font-family: var(--body-font);
  margin: 0;
}

.chefs-text strong {
  color: var(--dark-color);
  font-weight: 600;
}

/* ===================================
Category Section
=================================== */

.cat-section {
  position: relative;
  background: var(--bg-color);
  overflow: hidden;
}

.cat-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(31, 79, 143, .12) 1px, transparent 1px);
  background-size: 30px 30px;
  opacity: .45;
  pointer-events: none;
  z-index: 0;
}

.cat-orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}

.cat-orb-1 {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(31, 79, 143, .09) 0%, transparent 70%);
  top: -100px;
  right: -200px;
}

.cat-orb-2 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(31, 79, 143, .07) 0%, transparent 70%);
  bottom: 200px;
  left: -150px;
}

.hs .container {
  max-width: 1220px;
  margin: 0 auto;
  padding: 0 28px;
  position: relative;
  z-index: 1;
}

.cat-header {
  text-align: center;
  margin-bottom: 70px;
}

.cat-track-outer {
  position: relative;
  mask-image: linear-gradient(to right, transparent 0%, black 5%, black 95%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 5%, black 95%, transparent 100%);
  padding-bottom: 60px;
}

.cat-track {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  padding: 20px 60px 30px;
  scroll-snap-type: x mandatory;
  cursor: grab;
  -ms-overflow-style: none;
  scrollbar-width: none;
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
}

.cat-track::-webkit-scrollbar {
  display: none;
}

.cat-track.grabbing {
  cursor: grabbing;
  scroll-snap-type: none;
  scroll-behavior: auto;
}

.cat-track * {
  user-select: none;
  -webkit-user-select: none;
}

.cat-track img {
  pointer-events: none;
  -webkit-user-drag: none;
  draggable: false;
}

.cat-card {
  position: relative;
  flex: 0 0 280px;
  height: 400px;
  border-radius: 32px;
  overflow: hidden;
  scroll-snap-align: start;
  cursor: pointer;
  transition: transform .45s cubic-bezier(.25, .8, .25, 1), box-shadow .45s ease;
  box-shadow: 0 16px 48px rgba(0, 0, 0, .12);
  will-change: transform;
}

.cat-card:hover {
  transform: translateY(-14px) scale(1.02);
  box-shadow: 0 40px 80px rgba(0, 0, 0, .20);
}

.cat-card-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s ease;
  will-change: transform;
}

.cat-card:hover .cat-card-img {
  transform: scale(1.08);
}

.cat-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, .0) 0%, rgba(0, 0, 0, .15) 40%, rgba(0, 0, 0, .75) 80%, rgba(0, 0, 0, .90) 100%);
  transition: opacity .4s ease;
}

.cat-card:hover .cat-card-overlay {
  background: linear-gradient(to bottom, rgba(31, 79, 143, .05) 0%, rgba(0, 0, 0, .25) 40%, rgba(0, 0, 0, .82) 80%, rgba(0, 0, 0, .95) 100%);
}

.card-badge {
  position: absolute;
  top: 18px;
  left: 18px;
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, .15);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, .25);
  border-radius: 50px;
  padding: 6px 14px;
  font-family: var(--heading-font);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: .07em;
  color: #fff;
  text-transform: uppercase;
}

.card-badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #4eff91;
  animation: blink 1.8s ease-in-out infinite;
  flex-shrink: 0;
}

@keyframes blink {
  0%, 100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: .4;
    transform: scale(.7);
  }
}

.card-count {
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 4;
  background: var(--primary-color);
  color: #fff;
  border-radius: 50px;
  padding: 5px 12px;
  font-family: var(--heading-font);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .06em;
}

.card-body {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 4;
  padding: 24px 22px 26px;
  transform: translateY(0);
  transition: transform .4s ease;
}

.cat-card:hover .card-emoji {
  background: var(--primary-color);
  border-color: var(--primary-color);
  transform: scale(1.12) rotate(-6deg);
}

.card-name {
  font-family: var(--heading-font);
  font-size: 22px;
  font-weight: 800;
  color: #fff;
  letter-spacing: -.01em;
  margin-bottom: 6px;
  line-height: 1.2;
}

.card-desc {
  font-size: 13px;
  color: rgba(255, 255, 255, .65);
  line-height: 1.6;
  margin-bottom: 16px;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height .4s ease, opacity .4s ease, margin .4s ease;
}

.cat-card:hover .card-desc {
  max-height: 60px;
  opacity: 1;
}

.card-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  font-family: var(--heading-font);
  font-weight: 700;
  font-size: 13px;
  line-height: 1em;
  text-transform: capitalize;
  background: var(--primary-color);
  color: #fff !important;
  border: none;
  border-radius: 100px;
  padding: 13px 48px 14px 20px;
  overflow: hidden;
  text-decoration: none;
  letter-spacing: .04em;
  z-index: 1;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity .35s ease, transform .35s ease, color .4s ease-in-out;
  will-change: transform, opacity;
}

.card-btn::before {
  content: '';
  position: absolute;
  top: 50%;
  right: 4px;
  width: 34px;
  height: 34px;
  background-color: #fff;
  background-image: url('../../assets/img/arrow-blu.svg');
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 10px auto;
  border-radius: 50%;
  transform: translateY(-50%);
  transition: transform .4s ease-in-out;
  z-index: 2;
}

.card-btn::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 0;
  height: 100%;
  background: var(--secondary-color);
  z-index: -1;
  transition: width .4s ease-in-out, left .4s ease-in-out;
}

.cat-card:hover .card-btn {
  opacity: 1;
  transform: translateY(0);
}

.card-btn:hover::before {
  transform: translateY(-50%) rotate(45deg);
}

.card-btn:hover::after {
  right: auto;
  left: 0;
  width: 100%;
}

.cat-card[data-color="orange"] .cat-card-overlay {
  background: linear-gradient(to bottom, transparent 30%, rgba(180, 50, 0, .85) 100%);
}

.cat-card[data-color="gold"] .cat-card-overlay {
  background: linear-gradient(to bottom, transparent 30%, rgba(140, 90, 0, .85) 100%);
}

.cat-card[data-color="green"] .cat-card-overlay {
  background: linear-gradient(to bottom, transparent 30%, rgba(20, 80, 40, .85) 100%);
}

.cat-card[data-color="blue"] .cat-card-overlay {
  background: linear-gradient(to bottom, transparent 30%, rgba(0, 50, 120, .85) 100%);
}

.cat-card[data-color="purple"] .cat-card-overlay {
  background: linear-gradient(to bottom, transparent 30%, rgba(80, 20, 110, .85) 100%);
}

.cat-card[data-color="teal"] .cat-card-overlay {
  background: linear-gradient(to bottom, transparent 30%, rgba(0, 80, 80, .85) 100%);
}

.cat-card[data-color="red"] .cat-card-overlay {
  background: linear-gradient(to bottom, transparent 30%, rgba(140, 0, 20, .85) 100%);
}

.bg-orange {
  background: linear-gradient(145deg, #ff8c5a, #c93d00) !important;
}

.bg-gold {
  background: linear-gradient(145deg, #f4b400, #a87000) !important;
}

.bg-green {
  background: linear-gradient(145deg, #3dba6e, #1a6b3a) !important;
}

.bg-blue {
  background: linear-gradient(145deg, #3a9fff, #004fa8) !important;
}

.bg-purple {
  background: linear-gradient(145deg, #b86fff, #6b0fa8) !important;
}

.bg-teal {
  background: linear-gradient(145deg, #00c4b4, #006860) !important;
}

.bg-red {
  background: linear-gradient(145deg, #ff4d6d, #8c0020) !important;
}

.cat-card--wide {
  flex: 0 0 420px;
}

/* ** SCROLL ARROWS *** */

.track-nav {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 10px;
  margin-bottom: 10px;
}

.track-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 1.5px solid rgba(0, 0, 0, .12);
  background: var(--white-color);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all .3s ease;
  box-shadow: 0 4px 16px rgba(0, 0, 0, .08);
}

.track-btn:hover {
  background: var(--primary-color);
  border-color: var(--primary-color);
  box-shadow: 0 8px 28px rgba(31, 79, 143, .35);
  transform: scale(1.08);
}

.track-btn:hover svg {
  stroke: #fff;
}

.track-btn svg {
  width: 20px;
  height: 20px;
  stroke: var(--dark-color);
  transition: stroke .3s;
}

/* =====================================================
   OUR HISTORY SECTION
===================================================== */

.hs {
  color: var(--light-color);
}

.hs-backdrop {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: radial-gradient(ellipse 80% 60% at 15% 10%, rgba(31, 79, 143, 0.07) 0%, transparent 60%), radial-gradient(ellipse 60% 50% at 85% 90%, rgba(0,117,255,0.05) 0%, transparent 55%), radial-gradient(ellipse 100% 80% at 50% 50%, rgba(31, 79, 143, 0.03) 0%, transparent 70%), var(--dark-color);
}

.hs-orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
  filter: blur(80px);
}

.hs-orb-1 {
  width: 700px;
  height: 700px;
  top: -200px;
  right: -200px;
  background: radial-gradient(circle, rgba(31, 79, 143, 0.12) 0%, transparent 70%);
  animation: orbDrift1 18s ease-in-out infinite;
}

.hs-orb-2 {
  width: 500px;
  height: 500px;
  bottom: -100px;
  left: -100px;
  background: radial-gradient(circle, rgba(0,117,255,0.08) 0%, transparent 70%);
  animation: orbDrift2 22s ease-in-out infinite;
}

.hs-orb-3 {
  width: 300px;
  height: 300px;
  top: 40%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(31, 79, 143,0.06) 0%, transparent 70%);
  animation: orbDrift1 14s ease-in-out infinite reverse;
}

@keyframes orbDrift1 {
  0%, 100% {
    transform: translate(0, 0) scale(1);
  }
  33% {
    transform: translate(30px, -40px) scale(1.05);
  }
  66% {
    transform: translate(-20px, 25px) scale(0.97);
  }
}

@keyframes orbDrift2 {
  0%, 100% {
    transform: translate(0, 0) scale(1);
  }
  50% {
    transform: translate(40px, -30px) scale(1.08);
  }
}

.hs-header {
  text-align: center;
  margin: 0 auto 110px;
}

.hs-header .section-heading {
  color: var(--light-color);
}

.hs-timeline {
  position: relative;
  z-index: 2;
}

.hs-spine {
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 1px;
  transform: translateX(-50%);
  background: rgba(255, 255, 255, 0.05);
  z-index: 1;
}

.hs-spine-glow {
  position: absolute;
  left: 50%;
  top: 0;
  width: 1px;
  height: 0%;
  transform: translateX(-50%);
  background: linear-gradient(180deg, var(--primary-color) 0%, var(--primary-color) 60%, transparent 100%);
  box-shadow: 0 0 12px rgba(27,105,255,0.6);
  z-index: 2;
  transition: height 0.05s linear;
  border-radius: 2px;
}

.hs-row {
  display: grid;
  grid-template-columns: 1fr 120px 1fr;
  align-items: center;
  min-height: 520px;
  position: relative;
}

.hs-node {
  grid-column: 2;
  grid-row: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 5;
}

.node-outer {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.node-outer::before {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: 50%;
  background: conic-gradient(var(--primary-color) 0deg, var(--primary-color) 180deg, var(--primary-color) 360deg);
  opacity: 0.5;
  z-index: -1;
  transition: opacity 0.4s;
}

.node-outer::after {
  content: '';
  position: absolute;
  inset: 2px;
  border-radius: 50%;
  background: var(--dark-color);
}

.node-icon-wrap {
  position: relative;
  z-index: 2;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(31, 79, 143, 0.25), rgba(31, 79, 143, 0.05));
  border: 1px solid rgba(31, 79, 143, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.4s, border-color 0.4s, transform 0.4s;
}

.node-icon-wrap i {
  font-size: 17px;
  color: var(--primary-color);
  transition: color 0.3s;
}

.hs-row:hover .node-outer::before {
  opacity: 1;
}

.hs-row:hover .node-icon-wrap {
  background: linear-gradient(135deg, rgba(31,79,143,0.45), rgba(31,79,143,0.15));
  border-color: rgba(31,79,143,0.7);
  transform: scale(1.08);
}

.node-pulse {
  position: absolute;
  inset: -12px;
  border-radius: 50%;
  border: 1px solid var(--primary-color);
  opacity: 0;
  animation: nodePulse 2.4s ease-out infinite;
}

.node-pulse-2 {
  animation-delay: 0.8s;
  inset: -20px;
}

@keyframes nodePulse {
  0% {
    transform: scale(0.8);
    opacity: 0.7;
  }
  100% {
    transform: scale(1.4);
    opacity: 0;
  }
}

.hs-card {
  background: #141414;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.06);
  position: relative;
  transition: transform 0.5s cubic-bezier(0.34, 1.4, 0.64, 1), box-shadow 0.5s ease, border-color 0.4s;
  cursor: pointer;
}

.hs-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(31, 79, 143, 0.07) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.4s;
  pointer-events: none;
  z-index: 2;
}

.hs-card:hover {
  border-color: rgba(31, 79, 143, 0.3);
}

.hs-card:hover::before {
  opacity: 1;
}

.hs-row.row-left .hs-card {
  grid-column: 1;
  margin-right: 28px;
}

.hs-row.row-right .hs-card {
  grid-column: 3;
  margin-left: 28px;
}

.hs-row.row-left .hs-node, .hs-row.row-right .hs-node {
  grid-column: 2;
}

.hs-row.row-left .hs-card:hover {
  transform: translateX(-10px) translateY(-6px) scale(1.015);
  box-shadow: 20px 20px 60px rgba(0, 0, 0, 0.5), 0 0 40px rgba(31, 79, 143, 0.08);
}

.hs-row.row-right .hs-card:hover {
  transform: translateX(10px) translateY(-6px) scale(1.015);
  box-shadow: -20px 20px 60px rgba(0, 0, 0, 0.5), 0 0 40px rgba(31, 79, 143, 0.08);
}

.hs-card .card-img-wrap {
  position: relative;
  height: 240px;
  overflow: hidden;
  display: block;
}

.hs-card .card-img-wrap::after {
  content: "";
  position: absolute;
  width: 200%;
  height: 0%;
  left: 50%;
  top: 50%;
  background: rgba(255, 255, 255, 0.22);
  transform: translate(-50%, -50%) rotate(-45deg);
  pointer-events: none;
  z-index: 4;
  transition: none;
}

.hs-card:hover .card-img-wrap::after {
  height: 250%;
  background: transparent;
  transition: height 600ms linear, background 600ms linear;
}

.hs-card .card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94), filter 0.5s;
  filter: brightness(0.75) saturate(0.9);
}

.hs-card:hover .card-img {
  transform: scale(1.08);
  filter: brightness(0.85) saturate(1.1);
}

.hs-card .card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(13, 13, 13, 0.92) 0%, rgba(13, 13, 13, 0.3) 50%, transparent 100%), linear-gradient(to right, rgba(31, 79, 143, 0.06) 0%, transparent 100%);
}

.hs-card .card-year {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px 28px 18px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  z-index: 3;
}

.year-number {
  font-family: var(--titleFontFamily);
  font-size: 72px;
  font-weight: 700;
  color: #fff;
  line-height: 1;
  letter-spacing: -2px;
  text-shadow: 0 4px 30px rgba(0, 0, 0, 0.7);
  transition: color 0.3s;
}

.hs-card:hover .year-number {
  color: var(--primary-color);
}

.year-era {
  font-family: var(--heading-font);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--primary-color);
  background: rgba(31, 79, 143, 0.15);
  border: 1px solid rgba(31, 79, 143, 0.3);
  padding: 5px 12px;
  border-radius: 30px;
  align-self: flex-end;
  margin-bottom: 8px;
}

.hs-card .card-body {
  padding: 28px 30px 32px;
  position: relative;
}

.hs-card .card-body::before {
  content: '';
  position: absolute;
  top: 0;
  left: 30px;
  right: 30px;
  height: 1px;
  background: linear-gradient(90deg, var(--primary-color), rgba(0,117,255,0.36), transparent);
  opacity: 0.3;
}

.hs-card .card-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}

.hs-card .card-tag {
  font-family: var(--heading-font);
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--primary-color);
}

.hs-card .card-meta-dot {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: rgba(31, 79, 143, 0.4);
}

.hs-card .card-date-small {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.25);
  font-weight: 500;
  letter-spacing: 1px;
}

.hs-card .card-title {
  font-size: 30px;
  font-weight: 600;
  line-height: 1.2;
  color: #fff;
  margin-bottom: 14px;
  transition: color 0.3s;
}

.hs-card:hover .card-title {
  color: rgba(255, 255, 255, 0.95);
}

.hs-card .card-text {
  color: rgba(255, 255, 255, 0.42);
  margin-bottom: 24px;
}

.hs-card .card-highlight {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(31, 79, 143, 0.07);
  border: 1px solid rgba(31, 79, 143, 0.15);
  border-radius: 12px;
  padding: 13px 18px;
  transition: background 0.3s, border-color 0.3s;
}

.hs-card:hover .card-highlight {
  background: rgba(31, 79, 143, 0.12);
  border-color: rgba(31, 79, 143, 0.3);
}

.highlight-icon {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  background: rgba(31, 79, 143, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.highlight-icon i {
  font-size: 14px;
  color: var(--primary-color);
}

.highlight-text {
  font-size: 13px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.4;
}

.highlight-text span {
  display: block;
  font-size: 11px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.3);
  margin-top: 2px;
}

.hs-card .card-corner-glow {
  position: absolute;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  pointer-events: none;
  background: radial-gradient(circle, rgba(31, 79, 143, 0.12), transparent 70%);
  top: -40px;
  right: -40px;
  opacity: 0;
  transition: opacity 0.5s;
}

.hs-card:hover .card-corner-glow {
  opacity: 1;
}

/* Stats ribbon */

.hs-ribbon {
  position: relative;
  margin-top: 110px;
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.hs-ribbon-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(31, 79, 143, 0.12) 0%, rgba(0,117,255,0.05) 50%, rgba(31, 79, 143, 0.08) 100%), #1c1c1c;
}

.hs-ribbon-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.ribbon-item {
  padding: 52px 30px;
  text-align: center;
  position: relative;
  transition: background 0.3s;
}

.ribbon-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 25%;
  bottom: 25%;
  width: 1px;
  background: rgba(255, 255, 255, 0.07);
}

.ribbon-item:hover {
  background: rgba(31, 79, 143, 0.05);
}

.ribbon-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: rgba(31, 79, 143, 0.1);
  border: 1px solid rgba(31, 79, 143, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  transition: background 0.3s, transform 0.3s;
}

.ribbon-icon i {
  font-size: 18px;
  color: var(--primary-color);
}

.ribbon-item:hover .ribbon-icon {
  background: rgba(31, 79, 143, 0.2);
  transform: scale(1.1) rotate(-5deg);
}

.ribbon-num {
  display: block;
  font-family: var(--heading-font);
  font-size: 60px;
  font-weight: 700;
  line-height: 1;
  color: #fff;
  letter-spacing: -2px;
  margin-bottom: 10px;
}

.ribbon-num .accent {
  color: var(--primary-color);
}

.ribbon-label {
  font-family: var(--heading-font);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  color: rgba(255, 255, 255, 0.35);
}

/* ==================================================
   MENU SECTION
=================================================== */

.menu-section {
  overflow: hidden;
}

.menu-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 52px;
  flex-wrap: wrap;
}

.menu-head-right {
  text-align: right;
}

.menu-desc {
  max-width: 620px;
}

/* FILTER TABS */

.menu-filter {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 56px;
}

.filter-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 11px 24px;
  border-radius: 100px;
  border: 1.5px solid rgba(18, 18, 18, .12);
  background: var(--white-color);
  cursor: pointer;
  font-family: var(--body-font);
  font-size: 13px;
  font-weight: 600;
  color: var(--text-color);
  transition: all 0.3s ease;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}

.filter-btn i {
  font-size: 13px;
  transition: all 0.3s ease;
}

.filter-btn .filter-count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 20px;
  height: 20px;
  border-radius: 10px;
  background: rgba(18, 18, 18, .07);
  font-size: 10px;
  font-weight: 800;
  color: var(--text-color);
  padding: 0 5px;
  transition: all 0.3s ease;
}

.filter-btn:hover {
  border-color: var(--primary-color);
  color: var(--primary-color);
  background: rgba(31, 79, 143, .04);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(31, 79, 143, .12);
}

.filter-btn.active {
  background: var(--primary-color);
  border-color: var(--primary-color);
  color: #fff;
  box-shadow: 0 6px 24px rgba(31,79,143,0.35);
  transform: translateY(-2px);
}

.filter-btn.active i {
  color: #fff;
}

.filter-btn.active .filter-count {
  background: rgba(255, 255, 255, .25);
  color: #fff;
}

.menu-panel {
  display: none;
}

.menu-panel.active {
  display: block;
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.menu-card {
  background: var(--white-color);
  border-radius: 20px;
  border: 1px solid rgba(18, 18, 18, .08);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.4s cubic-bezier(.34, 1.4, .64, 1), box-shadow 0.4s ease, border-color 0.3s;
  box-shadow: 0 2px 16px rgba(18, 18, 18, .06);
  position: relative;
}

.menu-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 24px 60px rgba(18, 18, 18, .14);
  border-color: rgba(31, 79, 143, .2);
}

.menu-card.featured {
  grid-column: span 2;
  flex-direction: column;
}

.menu-card.featured .ms-card-img {
  width: 100%;
  flex-shrink: 0;
}

.menu-card.featured .ms-card-img img {
  height: 100%;
}

.menu-card.featured .ms-card-body {
  padding: 36px 36px 32px;
  justify-content: center;
}

.menu-card.featured .ms-card-name {
  font-size: 30px;
}

.menu-card.featured .ms-card-price {
  font-size: 34px;
}

.menu-card.featured .ms-card-desc {
  font-size: 15px;
}

.menu-card .ms-card-img {
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
  height: 230px;
}

.menu-card .ms-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.7s cubic-bezier(.25, .46, .45, .94), filter 0.4s;
  filter: brightness(.93) saturate(1.05);
}

.menu-card:hover .ms-card-img img {
  transform: scale(1.08);
  filter: brightness(1) saturate(1.12);
}

.menu-card .ms-card-img::after {
  content: '';
  position: absolute;
  width: 200%;
  height: 0%;
  left: 50%;
  top: 50%;
  background: rgba(255, 255, 255, .25);
  transform: translate(-50%, -50%) rotate(-45deg);
  pointer-events: none;
  z-index: 4;
  transition: none;
}

.menu-card:hover .ms-card-img::after {
  height: 250%;
  background: transparent;
  transition: height 600ms linear, background 600ms linear;
}

.menu-card .ms-card-img-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  opacity: 0;
  transition: opacity 0.4s;
}

.menu-card:hover .ms-card-img-overlay {
  opacity: 1;
}

.menu-card[data-cat="starter"] .ms-card-img-overlay {
  background: linear-gradient(to top, rgba(134,239,172,0.18) 0%, transparent 60%);
}

.menu-card[data-cat="mains"] .ms-card-img-overlay {
  background: linear-gradient(to top, rgba(252, 165, 165, .2) 0%, transparent 60%);
}

.menu-card[data-cat="pizza"] .ms-card-img-overlay {
  background: linear-gradient(to top, rgba(253, 186, 116, .2) 0%, transparent 60%);
}

.menu-card[data-cat="pasta"] .ms-card-img-overlay {
  background: linear-gradient(to top, rgba(253, 224, 71, .18) 0%, transparent 60%);
}

.menu-card[data-cat="dessert"] .ms-card-img-overlay {
  background: linear-gradient(to top, rgba(216, 180, 254, .2) 0%, transparent 60%);
}

.menu-card[data-cat="drinks"] .ms-card-img-overlay {
  background: linear-gradient(to top, rgba(147, 197, 253, .2) 0%, transparent 60%);
}

.menu-card .ms-card-badges {
  position: absolute;
  top: 14px;
  left: 14px;
  right: 14px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  z-index: 5;
}

.menu-card .badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-family: var(--body-font);
  font-size: 9px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.8px;
  padding: 5px 12px;
  border-radius: 100px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.badge-primary {
  background: var(--primary-color);
  color: #fff;
  box-shadow: 0 4px 14px rgba(31, 79, 143, .45);
}

.badge-dark {
  background: rgba(18, 18, 18, .82);
  color: #fff;
}

.badge-gold {
  background: rgba(255, 255, 255, .92);
  color: #92400e;
  border: 1px solid rgba(146, 64, 14, .22);
}

.badge-green {
  background: rgba(255, 255, 255, .92);
  color: #166534;
  border: 1px solid rgba(22, 101, 52, .22);
}

.badge-red {
  background: rgba(255, 255, 255, .92);
  color: #b91c1c;
  border: 1px solid rgba(185, 28, 28, .22);
}

.badge-nil {
  visibility: hidden;
}

.menu-card .ms-card-rating {
  position: absolute;
  bottom: 14px;
  right: 14px;
  z-index: 5;
  display: flex;
  align-items: center;
  gap: 4px;
  background: rgba(255, 255, 255, .92);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: 4px 11px;
  border-radius: 100px;
  border: 1px solid rgba(245, 158, 11, .2);
  font-family: var(--body-font);
  font-size: 11px;
  font-weight: 700;
  color: var(--dark-color);
}

.menu-card .ms-card-rating i {
  color: #F59E0B;
  font-size: 9px;
}

.menu-card .ms-card-rating small {
  color: var(--text-color);
  font-weight: 400;
}

.menu-card .ms-card-color-bar {
  height: 4px;
  width: 100%;
  flex-shrink: 0;
  transition: all 0.3s;
}

.menu-card[data-cat="starter"] .ms-card-color-bar {
  background: linear-gradient(90deg, #34d399, #10b981);
}

.menu-card[data-cat="mains"] .ms-card-color-bar {
  background: linear-gradient(90deg, var(--primary-color), var(--primary-color));
}

.menu-card[data-cat="pizza"] .ms-card-color-bar {
  background: linear-gradient(90deg, #fb923c, #f97316);
}

.menu-card[data-cat="pasta"] .ms-card-color-bar {
  background: linear-gradient(90deg, #facc15, #eab308);
}

.menu-card[data-cat="dessert"] .ms-card-color-bar {
  background: linear-gradient(90deg, #c084fc, #a855f7);
}

.menu-card[data-cat="drinks"] .ms-card-color-bar {
  background: linear-gradient(90deg, #60a5fa, #3b82f6);
}

.menu-card .ms-card-body {
  padding: 22px 24px 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.menu-card .ms-card-meta-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8px;
}

.menu-card .ms-card-cat {
  font-family: var(--body-font);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  color: var(--primary-color);
}

.menu-card .ms-card-spice {
  display: flex;
  align-items: center;
  gap: 3px;
}

.menu-card .ms-card-spice i {
  font-size: 9px;
  color: #d1d5db;
}

.menu-card .ms-card-spice i.on {
  color: #ef4444;
}

.menu-card .ms-card-name {
  font-family: var(--heading-font);
  font-size: 21px;
  font-weight: 700;
  color: var(--dark-color);
  line-height: 1.2;
  margin-bottom: 8px;
  transition: color 0.3s;
}

.menu-card:hover .ms-card-name {
  color: var(--primary-color);
}

.menu-card .ms-card-desc {
  font-size: 13.5px;
  line-height: 1.75;
  color: var(--text-color);
  margin-bottom: 14px;
  flex: 1;
}

.menu-card .ms-card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin-bottom: 14px;
}

.menu-card .ms-card-tag {
  font-size: 10px;
  font-weight: 600;
  color: var(--text-color);
  background: var(--light-color);
  border: 1px solid rgba(18, 18, 18, .08);
  padding: 3px 10px;
  border-radius: 100px;
  transition: all 0.25s;
}

.menu-card:hover .ms-card-tag {
  background: rgba(31, 79, 143, .07);
  border-color: rgba(31, 79, 143, .2);
  color: var(--primary-color);
}

.menu-card .ms-card-meta-row {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}

.menu-card .ms-card-meta-item {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 11px;
  font-weight: 500;
  color: #9ca3af;
}

.menu-card .ms-card-meta-item i {
  font-size: 10px;
  color: var(--primary-color);
  opacity: .7;
}

.menu-card .ms-card-divider {
  height: 1px;
  background: rgba(18, 18, 18, .07);
  margin-bottom: 16px;
}

.menu-card .ms-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.menu-card .ms-card-price {
  font-family: var(--heading-font);
  font-size: 28px;
  font-weight: 800;
  color: var(--dark-color);
  line-height: 1;
  letter-spacing: -0.5px;
}

.menu-card .ms-card-price-was {
  display: block;
  font-size: 12px;
  color: #9ca3af;
  text-decoration: line-through;
  margin-top: 2px;
}

.menu-card.offer-card {
  background: var(--dark-color);
  border-color: rgba(31, 79, 143, .2);
  overflow: hidden;
}

.menu-card.offer-card .ms-card-body {
  padding: 36px 32px;
  justify-content: center;
}

.offer-ms-card-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 80% at 110% -10%, rgba(31, 79, 143, .3) 0%, transparent 55%), radial-gradient(ellipse 60% 60% at -10% 110%, rgba(255, 165, 0, .15) 0%, transparent 55%);
  pointer-events: none;
}

.offer-ms-card-pattern {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: repeating-linear-gradient(-45deg, transparent 0, transparent 24px, rgba(255, 255, 255, .02) 24px, rgba(255, 255, 255, .02) 25px);
}

.offer-kicker {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--primary-color);
  display: flex;
  align-items: center;
  gap: 7px;
  margin-bottom: 14px;
  position: relative;
  z-index: 2;
}

.offer-title {
  font-family: var(--heading-font);
  font-size: 30px;
  font-weight: 800;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 10px;
  position: relative;
  z-index: 2;
}

.offer-title span {
  color: var(--primary-color);
}

.offer-sub {
  font-size: 13px;
  color: rgba(255, 255, 255, .45);
  margin-bottom: 26px;
  position: relative;
  z-index: 2;
  line-height: 1.65;
}

.btn-offer {
  width: fit-content;
}

/* ==================================================
   CHEFS SECTION
=================================================== */

.chefs-section {
  background: var(--dark-color);
  position: relative;
  overflow: hidden;
  padding: 150px 0 150px;
}

.chefs-section::before {
  content: '';
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(31, 79, 143, .12) 0%, transparent 70%);
  top: -100px;
  left: -150px;
  pointer-events: none;
}

.chefs-section::after {
  content: '';
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(31,79,143,0.08) 0%, transparent 70%);
  bottom: -80px;
  right: -100px;
  pointer-events: none;
}

.curve-top {
  position: absolute;
  top: -1px;
  left: 0;
  right: 0;
  height: 70px;
  background: var(--white-color);
  clip-path: ellipse(55% 100% at 50% 0%);
  z-index: 2;
  pointer-events: none;
}

.curve-bottom {
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  height: 70px;
  background: var(--white-color);
  clip-path: ellipse(55% 100% at 50% 100%);
  z-index: 2;
  pointer-events: none;
}

.chefs-head {
  margin-bottom: 56px;
  color: var(--white-color);
}

.chefs-section .section-heading {
  color: var(--white-color);
}

.chefs-section .section-subtitle {
  color: rgba(255, 255, 255, .45);
}

.chef-card {
  border-radius: var(--border-radius);
  overflow: hidden;
  background: var(--dark-color);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease;
  cursor: pointer;
}

.chef-card:hover {
  border-color: rgba(31, 79, 143, .4);
  box-shadow: 0 24px 48px rgba(0, 0, 0, .45);
}

.chef-card--featured {
  border-color: rgba(31, 79, 143, .25);
}

.chef-card--featured .chef-card__photo {
  height: 360px;
}

.chef-card__photo {
  position: relative;
  height: 300px;
  width: 100%;
  overflow: hidden;
  background: var(--dark-color);
}

.chef-card__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
  transition: transform .5s ease, filter .4s ease;
  filter: brightness(.88) saturate(.9);
  transform: translateZ(0);
}

.chef-card:hover .chef-card__photo img {
  transform: scale(1.06) translateZ(0);
  filter: brightness(1) saturate(1);
}

.chef-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 45%, rgba(18, 18, 18, .9) 100%);
}

.chef-card__socials {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%) translateY(14px);
  opacity: 0;
  display: flex;
  gap: 8px;
  transition: opacity .3s ease, transform .3s ease;
  z-index: 2;
}

.chef-card:hover .chef-card__socials {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.chef-card__socials a {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .15);
  border: 1px solid rgba(255, 255, 255, .22);
  color: #fff;
  font-size: 12px;
  display: grid;
  place-items: center;
  transition: background .25s, transform .25s;
  text-decoration: none;
}

.chef-card__socials a:hover {
  background: var(--primary-color);
  border-color: var(--primary-color);
  color: #fff;
  transform: translateY(-3px);
}

.chef-card__info {
  padding: 20px 22px 24px;
  text-align: center;
}

.chef-card__role {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--primary-color);
  margin-bottom: 6px;
}

.chef-card__name {
  font-family: var(--heading-font);
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  margin: 0 0 8px;
  transition: color .3s;
}

.chef-card:hover .chef-card__name {
  color: var(--primary-color);
}

.chef-card__specialty {
  font-size: 12.5px;
  color: rgba(255, 255, 255, .38);
  margin: 0;
  line-height: 1.5;
}

/* ==================================================
   TESTIMONIAL SECTION
=================================================== */

.testi-section {
  background: var(--white-color);
  padding-bottom: 0px;
}

.testi-header-row {
  margin-bottom: 52px;
}

.testi-rating-pill {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--primary-color);
  border: 1px solid rgba(18, 18, 18, .1);
  border-radius: 100px;
  padding: 10px 20px 10px 14px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, .06);
}

.testi-rating-pill__score {
  font-family: var(--heading-font);
  font-size: 28px;
  font-weight: 800;
  color: var(--white-color);
  line-height: 1;
}

.testi-rating-pill__stars {
  display: flex;
  gap: 3px;
  margin-bottom: 3px;
}

.testi-rating-pill__stars i {
  font-size: 11px;
  color: #fff800;
}

.testi-rating-pill__label {
  font-size: 11px;
  font-weight: 600;
  color: var(--white-color);
  letter-spacing: .5px;
}

.testi-arrows {
  display: flex;
  gap: 10px;
}

.testi-arrow {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 1.5px solid rgba(18, 18, 18, .15);
  background: var(--light-color);
  color: var(--dark-color);
  font-size: 14px;
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: all .3s ease;
}

.testi-arrow:hover {
  background: var(--primary-color);
  border-color: var(--primary-color);
  color: #fff;
  transform: scale(1.08);
  box-shadow: 0 8px 24px rgba(31, 79, 143, .35);
}

.testi-slider-wrap {
  overflow: hidden;
  padding: 20px 10px;
  margin: -20px -10px;
}

.testi-track {
  display: flex;
  gap: 24px;
  align-items: stretch;
  transition: transform .55s cubic-bezier(.25, .46, .45, .94);
  will-change: transform;
  padding: 10px 0;
}

.testi-card {
  flex-shrink: 0;
  background: var(--light-color);
  border-radius: 16px;
  border: 1px solid rgba(18, 18, 18, .07);
  padding: 30px 28px 26px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0, 0, 0, .05);
  transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease;
}

.testi-card__top-line {
  position: absolute;
  top: 0;
  left: 0;
  height: 3px;
  width: 0;
  background: var(--primary-color);
  border-radius: 0 3px 3px 0;
  transition: width .4s ease;
  pointer-events: none;
}

.testi-card:hover .testi-card__top-line {
  width: 100%;
}

.testi-card--highlight {
  background: var(--white-color);
  border: 1.5px solid var(--primary-color) !important;
}

.testi-card--highlight .testi-card__top-line {
  width: 0%;
  border-radius: 0;
}

.testi-card--highlight:hover {
  border-color: rgba(31, 79, 143, .45);
}

.testi-card__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.testi-card__stars {
  display: flex;
  gap: 4px;
}

.testi-card__stars i {
  font-size: 13px;
  color: #F59E0B;
}

.testi-card__ql {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(31, 79, 143, .1);
  border: 1px solid rgba(31, 79, 143, .2);
  color: var(--primary-color);
  font-size: 12px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  transition: background .3s, color .3s, border-color .3s;
}

.testi-card:hover .testi-card__ql {
  background: var(--primary-color);
  color: #fff;
  border-color: var(--primary-color);
}

.testi-card__text {
  font-size: 14.5px;
  line-height: 1.85;
  color: var(--text-color);
  margin: 0;
  flex: 1;
}

.testi-card__footer {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 18px;
  border-top: 1px solid rgba(18, 18, 18, .09);
  margin-top: auto;
}

.testi-card--highlight .testi-card__footer {
  border-top-color: rgba(31, 79, 143, .15);
}

.testi-card__avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(31, 79, 143, .35);
  flex-shrink: 0;
  transition: transform .3s;
}

.testi-card:hover .testi-card__avatar {
  transform: scale(1.07);
}

.testi-card__name {
  display: block;
  font-family: var(--heading-font);
  font-size: 15px;
  font-weight: 700;
  color: var(--dark-color);
  margin-bottom: 3px;
}

.testi-card__source {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--primary-color);
  display: flex;
  align-items: center;
  gap: 5px;
}

.testi-card__source i {
  font-size: 10px;
}

.testi-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 40px;
}

.testi-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(18, 18, 18, .15);
  border: none;
  padding: 0;
  cursor: pointer;
  transition: background .3s, width .3s, border-radius .3s;
}

.testi-dot.active {
  width: 32px;
  border-radius: 4px;
  background: var(--primary-color);
}

/* ====================================
   BREADCRUMB & PAGE BANNER
====================================== */

.page-banner {
  position: relative;
  height: 300px;
  background: var(--dark-color);
  display: flex;
  align-items: center;
  overflow: hidden;
}

.page-banner__bg {
  position: absolute;
  inset: 0;
  background: url('../../assets/img/WhatsApp%20Image%202026-05-30%20at%2010.02.25%20PM.jpeg') center/cover no-repeat;
  opacity: .40;
}

.page-banner__content {
  position: relative;
  z-index: 2;
}

.page-banner__content .section-heading, .page-banner__content p {
  color: var(--white-color);
  margin-bottom: 5px;
}

.page-banner__breadcrumb {
  position: absolute;
  bottom: 28px;
  right: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
}

.page-banner__breadcrumb a {
  color: var(--white-color);
  text-decoration: none;
  transition: color .25s;
}

.page-banner__breadcrumb a:hover {
  color: var(--primary-color);
}

.page-banner__breadcrumb span {
  color: var(--primary-color);
}

.page-banner__breadcrumb i {
  font-size: 10px;
  color: var(--white-color);
}

/* ====================================
   CONTACT US PAGE
====================================== */

.cp-wrap {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
}

/* LEFT PANEL */

.cp-left {
  background: var(--dark-color);
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 60px 64px;
  overflow: hidden;
  min-height: 100vh;
}

.cp-left__bg {
  position: absolute;
  inset: 0;
  background: url('../../assets/img/menu/WhatsApp%20Image%202026-05-30%20at%2010.02.33%20PM.jpeg') center/cover no-repeat;
  opacity: .12;
}

.cp-left__bignum {
  position: absolute;
  font-family: var(--heading-font);
  font-size: 150px;
  font-weight: 900;
  color: rgba(255, 255, 255, .03);
  line-height: 1;
  right: 0px;
  bottom: -25px;
  pointer-events: none;
  user-select: none;
  letter-spacing: 0px;
}

.cp-left__ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(31, 79, 143, .18);
  pointer-events: none;
  animation: ringFloat 6s ease-in-out infinite;
}

.cp-left__ring--1 {
  width: 280px;
  height: 280px;
  top: -80px;
  right: -80px;
  animation-delay: 0s;
}

.cp-left__ring--2 {
  width: 160px;
  height: 160px;
  top: 30%;
  left: -60px;
  animation-delay: 2s;
}

.cp-left__ring--3 {
  width: 80px;
  height: 80px;
  bottom: 25%;
  right: 10%;
  animation-delay: 4s;
  border-style: dashed;
}

@keyframes ringFloat {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-12px);
  }
}

.cp-left__brand {
  position: relative;
  z-index: 2;
}

.cp-left__logo {
  font-family: "Yesteryear", cursive;
  font-size: 36px;
  color: #fff;
  text-decoration: none;
  letter-spacing: 1px;
}

.cp-left__logo span {
  color: var(--primary);
}

.cp-left__body {
  position: relative;
  z-index: 2;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 60px 0 40px;
}

.cp-left__tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--titleFontFamily);
  font-size: 22px;
  color: var(--primary-color);
  letter-spacing: .03em;
}

.cp-left__tag::before {
  content: '';
  width: 32px;
  height: 2px;
  background: var(--primary-color);
  border-radius: 2px;
  display: block;
}

.cp-left__title {
  font-family: var(--heading-font);
  font-size: 60px;
  font-weight: 800;
  color: var(--white-color);
  margin-bottom: 20px;
}

.cp-left__desc {
  font-size: 15px;
  color: rgba(255, 255, 255, .45);
  line-height: 1.8;
  max-width: 380px;
  margin-bottom: 48px;
}

.cp-info-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 48px;
}

.cp-info-item {
  display: flex;
  align-items: center;
  gap: 16px;
  cursor: default;
}

.cp-info-item__icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(31, 79, 143, .15);
  border: 1px solid rgba(31, 79, 143, .25);
  display: grid;
  place-items: center;
  font-size: 15px;
  color: var(--primary-color);
  flex-shrink: 0;
  transition: background .3s, transform .3s;
}

.cp-info-item:hover .cp-info-item__icon {
  background: var(--primary-color);
  color: #fff;
  transform: rotate(-8deg) scale(1.08);
}

.cp-info-item__label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .3);
  margin-bottom: 2px;
}

.cp-info-item__value {
  font-family: var(--heading-font);
  font-size: 15px;
  font-weight: 700;
  color: #fff;
}

.cp-socials {
  display: flex;
  gap: 10px;
}

.cp-social {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, .12);
  color: rgba(255, 255, 255, .5);
  font-size: 13px;
  display: grid;
  place-items: center;
  text-decoration: none;
  transition: all .3s;
}

.cp-social:hover {
  background: var(--primary-color);
  border-color: var(--primary-color);
  color: #fff;
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(31, 79, 143, .4);
}

.cp-left__foot {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.cp-left__copy {
  font-size: 12px;
  color: rgba(255, 255, 255, .2);
}

.cp-left__hours {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 100px;
  padding: 7px 16px;
  font-size: 12px;
  font-weight: 600;
  color: rgba(255, 255, 255, .5);
}

.cp-left__hours-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #22c55e;
  animation: blink 1.5s ease-in-out infinite;
}

@keyframes blink {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: .3;
  }
}

.cp-right {
  background: var(--white-color);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 72px;
  position: relative;
  overflow: hidden;
}

.cp-right::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(18, 18, 18, .06) 1px, transparent 1px);
  background-size: 24px 24px;
  pointer-events: none;
}

.cp-right::after {
  content: '';
  position: absolute;
  width: 180px;
  height: 180px;
  bottom: 0;
  right: 0;
  background: linear-gradient(135deg, transparent 50%, rgba(31, 79, 143, .06) 50%);
  pointer-events: none;
}

.cp-form-wrap {
  width: 100%;
  max-width: 650px;
  position: relative;
  z-index: 1;
}

.cp-form-head {
  margin-bottom: 40px;
}

.cp-form-head__title {
  font-family: var(--heading-font);
  font-size: 32px;
  font-weight: 900;
  color: var(--dark-color);
  line-height: 1.15;
  margin-bottom: 8px;
  letter-spacing: -0.5px;
}

.cp-form-head__title span {
  color: var(--primary-color);
}

.cp-form-head__sub {
  font-size: 14px;
  color: var(--base-color);
  line-height: 1.7;
}

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

.cp-field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 20px;
}

.cp-label {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: var(--dark-color);
  margin-bottom: 9px;
  opacity: .6;
}

.cp-input-wrap {
  position: relative;
}

.cp-input-wrap i {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 13px;
  color: rgba(18, 18, 18, .25);
  pointer-events: none;
  transition: color .3s;
}

.cp-input-wrap.textarea-wrap i {
  top: 18px;
  transform: none;
}

.cp-input, .cp-select, .cp-textarea {
  width: 100%;
  background: var(--light-color);
  border: 1.5px solid rgba(18, 18, 18, .08);
  border-radius: 12px;
  padding: 14px 16px 14px 44px;
  font-family: var(--body-font);
  font-size: 14px;
  font-weight: 500;
  color: var(--dark-color);
  outline: none;
  transition: border-color .3s, background .3s, box-shadow .3s;
  -webkit-appearance: none;
}

.cp-input::placeholder, .cp-textarea::placeholder {
  color: rgba(18, 18, 18, .28);
}

.cp-input:focus, .cp-select:focus, .cp-textarea:focus {
  border-color: var(--primary-color);
  background: rgba(31, 79, 143, .04);
  box-shadow: 0 0 0 4px rgba(31, 79, 143, .1);
}

.cp-input:focus + i, .cp-input-wrap:focus-within i {
  color: var(--primary-color);
}

.cp-textarea {
  resize: none;
  height: 110px;
  padding-top: 14px;
  line-height: 1.6;
}

.cp-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
}

.cp-chip {
  padding: 7px 16px;
  border-radius: 100px;
  border: 1.5px solid rgba(18, 18, 18, .1);
  background: var(--light-color);
  font-size: 12px;
  font-weight: 600;
  color: var(--base-color);
  cursor: pointer;
  transition: all .25s;
  user-select: none;
}

.cp-chip:hover {
  border-color: var(--primary-color);
  color: var(--primary-color);
  background: rgba(31, 79, 143, .05);
}

.cp-chip.selected {
  background: var(--primary-color);
  border-color: var(--primary-color);
  color: #fff;
}

.cp-privacy {
  text-align: center;
  font-size: 12px;
  color: rgba(18, 18, 18, .3);
  margin-top: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.cp-privacy i {
  font-size: 11px;
  color: var(--primary-color);
}

.cp-map-strip {
  grid-column: 1 / -1;
  height: 320px;
  position: relative;
  overflow: hidden;
}

.cp-map-strip iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
  filter: grayscale(25%) contrast(1.05);
}

/* ====================================
   MENU PAGE
====================================== */

.menu-hero {
  min-height: 80vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.menu-hero::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 45%;
  background: linear-gradient(135deg, transparent 0%, transparent 50%, rgba(31, 79, 143, .07) 50%);
  pointer-events: none;
}

.menu-hero-ghost {
  position: absolute;
  font-size: 280px;
  font-weight: 900;
  letter-spacing: -8px;
  color: rgb(31 79 143 / 13%);
  bottom: -20px;
  left: -10px;
  user-select: none;
  pointer-events: none;
  white-space: nowrap;
  line-height: 1;
}

.menu-hero-content {
  position: relative;
  z-index: 2;
  width: 90%;
  max-width: 1480px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 440px;
  gap: 60px;
  align-items: center;
}

.menu-hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--primary-color);
  margin-bottom: 26px;
}

.menu-hero-kicker::before, .menu-hero-kicker::after {
  content: '';
  width: 28px;
  height: 1.5px;
  background: var(--primary-color);
}

.menu-hero-left .menu-hero-h1 {
  font-size: 108px;
  line-height: .92;
}

.menu-hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.menu-hero-visual {
  position: relative;
  height: 480px;
}

.dish-card {
  position: absolute;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(0, 0, 0, .6);
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.4s ease;
  will-change: transform;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

.dish-card::after {
  content: "";
  position: absolute;
  width: 200%;
  height: 0%;
  left: 50%;
  top: 50%;
  background: rgba(255, 255, 255, 0.3);
  transform: translate(-50%, -50%) rotate(-45deg);
  pointer-events: none;
  z-index: 10;
  transition: height 600ms linear, background 600ms linear;
}

.dish-card:hover::after {
  height: 250%;
  background: transparent;
}

.dish-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.dish-card.c1 {
  width: 240px;
  height: 300px;
  top: 0;
  left: 50%;
  translate: -50% 0;
  z-index: 3;
}

.dish-card.c2 {
  width: 190px;
  height: 220px;
  bottom: 10px;
  left: 0;
  transform: rotate(-6deg);
  z-index: 2;
}

.dish-card.c3 {
  width: 190px;
  height: 220px;
  bottom: 30px;
  right: 0;
  transform: rotate(5deg);
  z-index: 2;
}

.dish-card:hover {
  transform: translateX(-30%) scale(1.04) !important;
  z-index: 10;
}

.dish-card.c1:hover {
  transform: scale(1.05);
  z-index: 10;
  box-shadow: 0 32px 72px rgba(0, 0, 0, .75);
}

.dish-card.c2:hover {
  transform: rotate(-6deg) scale(1.06) translateY(-10px);
  z-index: 10;
  box-shadow: 0 32px 72px rgba(0, 0, 0, .75);
}

.dish-card.c3:hover {
  transform: rotate(5deg) scale(1.06) translateY(-10px);
  z-index: 10;
  box-shadow: 0 32px 72px rgba(0, 0, 0, .75);
}

.dish-badge {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 14px 16px;
  background: linear-gradient(to top, rgba(31, 79, 143, .95), transparent);
}

.dish-badge-name {
  font-weight: 800;
  color: var(--white-color);
}

.dish-badge-price {
  color: var(--dark-color);
  font-weight: 700;
}

.menu-hero-float {
  position: absolute;
  top: 10px;
  right: -10px;
  z-index: 5;
  background: var(--primary-color);
  border-radius: 14px;
  padding: 12px 18px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 8px 24px rgba(31, 79, 143, .45);
  animation: floatY 3s ease-in-out infinite;
  will-change: transform;
  animation: floatY 3s cubic-bezier(0.45, 0, 0.55, 1) infinite;
}

@keyframes floatY {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

.menu-hero-float-icon {
  font-size: 20px;
}

.menu-hero-float-text {
  font-size: 12px;
  font-weight: 800;
  color: var(--white-color);
  line-height: 1.3;
}

.menu-hero-float-text span {
  display: block;
  font-weight: 400;
  opacity: .75;
  font-size: 11px;
}

.ticker {
  background: var(--primary-color);
  overflow: hidden;
  padding: 13px 0;
}

.ticker-track {
  display: flex;
  gap: 40px;
  width: max-content;
  animation: slide 22s linear infinite;
}

@keyframes slide {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

.ti {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--white-color);
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 40px;
}

.ti::after {
  content: '✦';
  font-size: 15px;
  color: var(--light-color);
}

.promo {
  background: var(--dark-color);
  position: relative;
}

.promo::before {
  content: '50%';
  font-size: 220px;
  font-weight: 900;
  color: rgba(255, 255, 255, .03);
  position: absolute;
  right: -20px;
  top: 80%;
  transform: translateY(-50%);
  pointer-events: none;
  letter-spacing: -8px;
  line-height: 1;
}

.promo-inner {
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
  flex-wrap: wrap;
}

.promo-tag {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--primary-color);
  margin-bottom: 14px;
}

.promo-title {
  font-size: 52px;
  font-weight: 900;
  color: var(--white-color);
  line-height: 1.05;
  margin-bottom: 14px;
}

.promo-title span {
  color: var(--primary-color);
  font-style: italic;
}

.promo-desc {
  color: var(--white-color);
}

.promo-code {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 28px;
  background: rgba(255, 255, 255, .06);
  border: 1.5px dashed rgba(31, 79, 143, .4);
  border-radius: 12px;
  padding: 14px 22px;
}

.promo-code-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .35);
}

.promo-code-val {
  font-size: 22px;
  font-weight: 900;
  color: var(--primary-color);
  letter-spacing: 2px;
}

.promo-right {
  display: flex;
  gap: 24px;
  flex-shrink: 0;
}

.cd-box {
  text-align: center;
  background: rgba(255, 255, 255, .05);
  border: 1px solid rgba(255, 255, 255, .07);
  border-radius: 14px;
  padding: 20px 24px;
  min-width: 80px;
}

.cd-num {
  font-size: 40px;
  font-weight: 900;
  color: var(--white-color);
  line-height: 1;
}

.cd-lbl {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .3);
  margin-top: 6px;
}

.cd-sep {
  font-size: 28px;
  font-weight: 900;
  color: rgba(255, 255, 255, .2);
  align-self: center;
  padding-bottom: 16px;
}

/* ====================================
   MENU DETAIL PAGE
====================================== */

.detail-grid {
  display: grid;
  grid-template-columns: 1fr 440px;
  gap: 64px;
  align-items: flex-start;
}

.gallery-main {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  height: 520px;
  margin-bottom: 16px;
  display: block;
}

.gallery-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.gallery-main:hover img {
  transform: scale(1.04);
}

/* Navigation Arrows */

.gallery-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  background: var(--white-color);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 15;
  transition: all 0.3s cubic-bezier(0.23, 1, 0.320, 1);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
  font-size: 20px;
  color: var(--primary-color);
}

.gallery-arrow:hover {
  background: var(--primary-color);
  color: var(--white-color);
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 6px 24px rgba(31, 79, 143, 0.35);
}

.gallery-arrow:active {
  transform: translateY(-50%) scale(0.95);
}

.gallery-arrow.prev {
  left: 16px;
}

.gallery-arrow.next {
  right: 16px;
}

/* overlay badges */

.gallery-badges {
  position: absolute;
  top: 20px;
  left: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  z-index: 5;
}

.g-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border-radius: 100px;
  font-family: var(--body-font);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.g-badge-primary {
  background: var(--primary-color);
  color: var(--white-color);
  box-shadow: 0 4px 14px rgba(31, 79, 143, .45);
}

.g-badge-dark {
  background: var(--dark-color);
  color: var(--white-color);
}

/* rating pill */

.gallery-rating {
  position: absolute;
  bottom: 20px;
  right: 20px;
  z-index: 5;
  display: flex;
  align-items: center;
  gap: 5px;
  background: rgba(255, 255, 255, .92);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: 6px 14px;
  border-radius: 100px;
  border: 1px solid rgba(245, 158, 11, .2);
  font-family: var(--body-font);
  font-size: 13px;
  font-weight: 700;
  color: var(--dark-color);
}

.gallery-rating i {
  color: #F59E0B;
  font-size: 11px;
}

.gallery-rating small {
  color: var(--text-color);
  font-weight: 400;
}

/* thumbnails */

.gallery-thumbs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.gallery-thumb {
  height: 96px;
  border-radius: 14px;
  overflow: hidden;
  border: 2.5px solid transparent;
  cursor: pointer;
  transition: var(--transition);
}

.gallery-thumb img {
  height: 100%;
  transition: transform 0.4s ease;
  width: 100%;
  object-fit: cover;
}

.gallery-thumb:hover img {
  transform: scale(1.08);
}

.gallery-thumb.active {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(31, 79, 143, .2);
}

.detail-color-bar {
  height: 4px;
  width: 100%;
  border-radius: 4px;
  margin-bottom: 0;
  background: linear-gradient(90deg, #f87171, var(--primary-color));
}

.detail-cat {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--primary-color);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.detail-cat::before {
  content: '';
  width: 18px;
  height: 2px;
  background: var(--primary-color);
  border-radius: 2px;
}

.detail-name {
  font-family: var(--heading-font);
  font-size: 40px;
  font-weight: 900;
  color: var(--dark-color);
  line-height: 1.05;
  letter-spacing: -1px;
  margin-bottom: 16px;
}

.detail-meta {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 22px;
  padding-bottom: 22px;
  border-bottom: 1px solid rgba(18, 18, 18, .08);
}

.detail-meta-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-color);
}

.detail-meta-item i {
  color: var(--primary-color);
  font-size: 12px;
}

/* stars */

.detail-stars {
  display: flex;
  gap: 3px;
}

.detail-stars i {
  color: #F59E0B;
  font-size: 13px;
}

.detail-review-count {
  font-size: 13px;
  color: var(--text-color);
  font-weight: 500;
}

.detail-desc {
  font-size: 15px;
  color: var(--text-color);
  line-height: 1.85;
  margin-bottom: 22px;
  padding-bottom: 22px;
  border-bottom: 1px solid rgba(18, 18, 18, .08);
}

/* spice level */

.detail-spice {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 24px;
  font-size: 13px;
  font-weight: 600;
  color: var(--dark-color);
}

.spice-dots {
  display: flex;
  gap: 4px;
}

.spice-dots i {
  font-size: 14px;
  color: #d1d5db;
}

.spice-dots i.on {
  color: var(--primary-color);
}

/* price block */

.detail-price-row {
  display: flex;
  align-items: flex-end;
  gap: 12px;
  margin-bottom: 28px;
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(18, 18, 18, .08);
}

.detail-price {
  font-family: var(--heading-font);
  font-size: 52px;
  font-weight: 900;
  color: var(--dark-color);
  line-height: 1;
  letter-spacing: -2px;
}

.detail-price sup {
  font-size: 24px;
  color: var(--primary-color);
  font-weight: 700;
  vertical-align: super;
  line-height: 0;
}

.detail-price-was {
  font-size: 18px;
  color: #9ca3af;
  text-decoration: line-through;
  font-weight: 500;
  margin-bottom: 6px;
}

.detail-price-save {
  background: rgba(31, 79, 143, .1);
  border: 1px solid rgba(31, 79, 143, .2);
  color: var(--primary-color);
  padding: 4px 12px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 6px;
  align-self: flex-end;
}

/* quantity */

.detail-qty-row {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}

.qty-label {
  font-size: 13px;
  font-weight: 700;
  color: var(--dark-color);
  letter-spacing: 0.5px;
  min-width: 64px;
}

.qty-control {
  display: flex;
  align-items: center;
  background: var(--light-color);
  border-radius: 100px;
  border: 1.5px solid rgba(18, 18, 18, .1);
  overflow: hidden;
}

.qty-btn {
  width: 42px;
  height: 42px;
  background: none;
  border: none;
  font-size: 20px;
  color: var(--dark-color);
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: var(--transition);
}

.qty-btn:hover {
  color: var(--primary-color);
}

.qty-num {
  font-family: var(--heading-font);
  font-size: 17px;
  font-weight: 900;
  color: var(--dark-color);
  min-width: 36px;
  text-align: center;
}

.detail-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}

.detail-actions .btn-default {
  flex: 1;
  text-align: center;
  justify-content: center;
  min-width: 180px;
}

/* share row */

.detail-share {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 22px;
  border-top: 1px solid rgba(18, 18, 18, .08);
}

.detail-share-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-color);
}

.share-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1.5px solid rgba(18, 18, 18, .1);
  background: var(--light-color);
  font-size: 13px;
  color: var(--text-color);
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: var(--transition);
}

.share-btn:hover {
  background: var(--primary-color);
  border-color: var(--primary-color);
  color: #fff;
  transform: translateY(-2px);
}

/* DETAIL TABS */

.tabs-section {
  padding: 0 0 80px;
}

.detail-tabs-nav {
  display: flex;
  gap: 0;
  border-bottom: 2px solid rgba(18, 18, 18, .08);
  margin-bottom: 48px;
  overflow-x: auto;
  scrollbar-width: none;
}

.detail-tabs-nav::-webkit-scrollbar {
  display: none;
}

.dtab {
  padding: 16px 28px;
  background: none;
  border: none;
  border-bottom: 3px solid transparent;
  font-family: var(--heading-font);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.5px;
  color: var(--text-color);
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
  margin-bottom: -2px;
}

.dtab:hover {
  color: var(--primary-color);
}

.dtab.active {
  color: var(--primary-color);
  border-bottom-color: var(--primary-color);
}

.dtab-panel {
  display: none;
}

.dtab-panel.active {
  display: block;
  animation: tabIn .3s ease;
}

@keyframes tabIn {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Description Tab */

.desc-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}

.desc-body h3 {
  font-size: 26px;
  font-weight: 800;
  color: var(--dark-color);
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}

.desc-body p {
  font-size: 15px;
  line-height: 1.9;
  color: var(--text-color);
}

.desc-highlights {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 28px;
}

.desc-highlight {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: var(--light-color);
  border-radius: 14px;
  padding: 16px 18px;
  border: 1px solid rgba(18, 18, 18, .06);
  transition: var(--transition);
}

.desc-highlight:hover {
  border-color: rgba(31, 79, 143, .2);
  background: rgba(31, 79, 143, .04);
}

.desc-hi-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  flex-shrink: 0;
  background: rgba(31, 79, 143, .1);
  border: 1px solid rgba(31, 79, 143, .2);
  display: grid;
  place-items: center;
  font-size: 15px;
  color: var(--primary-color);
}

.desc-hi-title {
  font-family: var(--heading-font);
  font-size: 14px;
  font-weight: 800;
  color: var(--dark-color);
  margin-bottom: 3px;
}

.desc-hi-text {
  font-size: 12.5px;
  color: var(--text-color);
  line-height: 1.6;
  margin: 0;
}

/* info cards on right */

.desc-info-cards {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.desc-info-card {
  background: var(--white-color);
  border-radius: 20px;
  border: 1px solid rgba(18, 18, 18, .07);
  padding: 28px;
  box-shadow: 0 2px 16px rgba(18, 18, 18, .06);
}

.desc-info-card-title {
  font-family: var(--heading-font);
  font-size: 16px;
  font-weight: 800;
  color: var(--dark-color);
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.desc-info-card-title i {
  color: var(--primary-color);
  font-size: 14px;
}

.chef-note-card {
  background: var(--dark-color);
}

.chef-note-card .desc-info-card-title {
  color: var(--primary-color);
}

.chef-note-card p {
  color: var(--white-color);
  font-size: 14px;
}

/* nutrition table */

.nutrition-table {
  width: 100%;
  border-collapse: collapse;
}

.nutrition-table tr {
  border-bottom: 1px solid rgba(18, 18, 18, .06);
}

.nutrition-table tr:last-child {
  border-bottom: none;
}

.nutrition-table td {
  padding: 9px 0;
  font-size: 13.5px;
}

.nutrition-table td:last-child {
  text-align: right;
  font-weight: 700;
  color: var(--dark-color);
  font-family: var(--heading-font);
}

/* allergens */

.allergen-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.allergen-pill {
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(239, 68, 68, .07);
  border: 1px solid rgba(239, 68, 68, .18);
  color: #b91c1c;
  padding: 5px 12px;
  border-radius: 100px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.allergen-pill i {
  font-size: 10px;
}

/* Ingredients Tab */

.ingredients-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.ing-card {
  background: var(--white-color);
  border-radius: 16px;
  border: 1px solid rgba(18, 18, 18, .07);
  padding: 20px 18px;
  text-align: center;
  transition: var(--transition);
  box-shadow: 0 2px 12px rgba(18, 18, 18, .05);
}

.ing-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(18, 18, 18, .1);
  border-color: rgba(31, 79, 143, .2);
}

.ing-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  margin: 0 auto 12px;
  background: rgba(31, 79, 143, .08);
  border: 1px solid rgba(31, 79, 143, .15);
  display: grid;
  place-items: center;
  font-size: 22px;
}

.ing-name {
  font-family: var(--heading-font);
  font-size: 14px;
  font-weight: 800;
  color: var(--dark-color);
  margin-bottom: 4px;
}

.ing-qty {
  font-size: 12px;
  color: var(--primary-color);
  font-weight: 600;
}

.ing-origin {
  font-size: 11px;
  color: var(--text-color);
}

/* Preparation Tab */

.prep-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.prep-step {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 28px;
  position: relative;
  padding-bottom: 40px;
}

.prep-step:last-child {
  padding-bottom: 0;
}

.prep-step::before {
  content: '';
  position: absolute;
  left: 39px;
  top: 56px;
  bottom: 0;
  width: 2px;
  background: rgba(18, 18, 18, .08);
  border-radius: 2px;
}

.prep-step:last-child::before {
  display: none;
}

.prep-num-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}

.prep-num {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--primary-color);
  color: var(--white-color);
  font-family: var(--heading-font);
  font-size: 20px;
  font-weight: 900;
  display: grid;
  place-items: center;
  box-shadow: 0 6px 20px rgba(31, 79, 143, .35);
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}

.prep-body {
  padding-top: 8px;
}

.prep-title {
  font-family: var(--heading-font);
  font-size: 18px;
  font-weight: 800;
  color: var(--dark-color);
  margin-bottom: 8px;
}

.prep-text {
  font-size: 14.5px;
  color: var(--text-color);
  line-height: 1.85;
  margin-bottom: 12px;
}

.prep-tip {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(31, 79, 143, .07);
  border: 1px solid rgba(31, 79, 143, .18);
  color: var(--primary-color);
  padding: 6px 14px;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 600;
}

.prep-tip i {
  font-size: 11px;
}

/* Reviews Tab */

.reviews-summary {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 48px;
  margin-bottom: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(18, 18, 18, .08);
  align-items: center;
}

.rs-score {
  text-align: center;
}

.rs-big {
  font-family: var(--heading-font);
  font-size: 80px;
  font-weight: 900;
  color: var(--dark-color);
  line-height: 1;
  letter-spacing: -3px;
  margin-bottom: 8px;
}

.rs-stars {
  display: flex;
  justify-content: center;
  gap: 4px;
  margin-bottom: 8px;
}

.rs-stars i {
  color: #F59E0B;
  font-size: 18px;
}

.rs-total {
  font-size: 13px;
  color: var(--text-color);
}

.rs-bars {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.rs-bar-row {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
}

.rs-bar-label {
  min-width: 40px;
  font-weight: 600;
  color: var(--dark-color);
}

.rs-bar-track {
  flex: 1;
  height: 8px;
  background: rgba(18, 18, 18, .08);
  border-radius: 100px;
  overflow: hidden;
}

.rs-bar-fill {
  height: 100%;
  background: var(--primary-color);
  border-radius: 100px;
}

.rs-bar-count {
  min-width: 32px;
  text-align: right;
  color: var(--text-color);
}

/* review cards */

.review-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.review-card {
  background: var(--white-color);
  border-radius: 16px;
  border: 1px solid rgba(18, 18, 18, .07);
  padding: 24px 26px;
  transition: var(--transition);
  box-shadow: 0 2px 12px rgba(18, 18, 18, .05);
}

.review-card:hover {
  box-shadow: 0 8px 32px rgba(18, 18, 18, .1);
}

.review-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}

.review-user {
  display: flex;
  align-items: center;
  gap: 12px;
}

.review-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  overflow: hidden;
  background: var(--primary-color);
  display: grid;
  place-items: center;
  font-family: var(--heading-font);
  font-size: 16px;
  font-weight: 800;
  color: #fff;
  flex-shrink: 0;
}

.review-name {
  font-family: var(--heading-font);
  font-size: 15px;
  font-weight: 700;
  color: var(--dark-color);
}

.review-date {
  font-size: 12px;
  color: var(--text-color);
}

.review-stars {
  display: flex;
  gap: 3px;
}

.review-stars i {
  color: #F59E0B;
  font-size: 12px;
}

.review-text {
  font-size: 14px;
  color: var(--text-color);
  line-height: 1.8;
  margin: 0;
}

.review-verified {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  margin-top: 10px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: #16a34a;
}

.review-verified i {
  font-size: 10px;
}

/* RELATED DISHES */

.related-section {
  background: var(--bg-color);
}

.related-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

.related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

/* ==================================
   FAQ SECTION
====================================== */

.faq-section {
  padding: 100px 0;
}

.faq-layout {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 64px;
  align-items: flex-start;
}

.faq-sidebar {
  position: sticky;
  top: 100px;
}

.faq-sidebar-title {
  font-family: var(--heading-font);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-color);
  margin-bottom: 16px;
}

.faq-cats {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 36px;
}

.faq-cat-btn {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 13px 18px;
  border-radius: var(--border-radius);
  background: var(--light-color);
  border: 1.5px solid transparent;
  font-family: var(--body-font);
  font-size: 14px;
  font-weight: 600;
  color: var(--text-color);
  cursor: pointer;
  transition: var(--transition);
  text-align: left;
  width: 100%;
}

.faq-cat-btn:hover {
  background: rgba(31, 79, 143, .06);
  border-color: rgba(31, 79, 143, .2);
  color: var(--primary-color);
}

.faq-cat-btn.active {
  background: var(--primary-color);
  border-color: var(--primary-color);
  color: #fff;
}

.faq-cat-btn i {
  font-size: 15px;
  width: 18px;
  text-align: center;
  color: var(--primary-color);
  flex-shrink: 0;
}

.faq-cat-btn.active i {
  color: rgba(255, 255, 255, .85);
}

.faq-cat-count {
  margin-left: auto;
  font-size: 11px;
  font-weight: 800;
  background: rgba(18, 18, 18, .08);
  color: var(--text-color);
  padding: 2px 8px;
  border-radius: 100px;
  min-width: 22px;
  text-align: center;
}

.faq-cat-btn.active .faq-cat-count {
  background: rgba(255, 255, 255, .25);
  color: #fff;
}

/* contact card */

.faq-contact-card {
  background: var(--dark-color);
  border-radius: 20px;
  padding: 28px 24px;
  border: 1px solid rgba(31, 79, 143, .2);
  position: relative;
  overflow: hidden;
}

.faq-contact-card::before {
  content: '';
  position: absolute;
  top: -40px;
  right: -40px;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(31, 79, 143, .3) 0%, transparent 70%);
  pointer-events: none;
}

.faq-contact-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: rgba(31, 79, 143, .15);
  border: 1px solid rgba(31, 79, 143, .25);
  display: grid;
  place-items: center;
  margin-bottom: 16px;
  font-size: 22px;
  color: var(--primary-color);
}

.faq-contact-title {
  font-family: var(--heading-font);
  font-size: 18px;
  font-weight: 800;
  color: var(--white-color);
  margin-bottom: 8px;
}

.faq-contact-text {
  font-size: 13px;
  color: rgba(255, 255, 255, .45);
  line-height: 1.75;
  margin-bottom: 20px;
}

.faq-contact-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.faq-contact-link {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 600;
  color: rgba(255, 255, 255, .7);
  text-decoration: none;
  transition: var(--transition);
}

.faq-contact-link i {
  color: var(--primary-color);
  font-size: 13px;
  width: 16px;
}

.faq-contact-link:hover {
  color: var(--primary-color);
}

/* search */

.faq-search-wrap {
  position: relative;
  margin-bottom: 40px;
}

.faq-search-icon {
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-color);
  font-size: 15px;
  pointer-events: none;
  transition: var(--transition);
}

.faq-search {
  width: 100%;
  padding: 16px 52px 16px 52px;
  border-radius: 100px;
  border: 2px solid rgba(18, 18, 18, .1);
  background: var(--white-color);
  font-family: var(--body-font);
  font-size: 15px;
  color: var(--dark-color);
  outline: none;
  transition: var(--transition);
  box-shadow: 0 2px 16px rgba(18, 18, 18, .06);
}

.faq-search::placeholder {
  color: rgba(18, 18, 18, .35);
}

.faq-search:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 4px rgba(31, 79, 143, .1), 0 2px 16px rgba(18, 18, 18, .06);
}

.faq-search:focus ~ .faq-search-icon {
  color: var(--primary-color);
}

/* category group */

.faq-group {
  margin-bottom: 48px;
}

.faq-group:last-child {
  margin-bottom: 0;
}

.faq-group-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
}

.faq-group-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  flex-shrink: 0;
  background: rgba(31, 79, 143, .1);
  border: 1px solid rgba(31, 79, 143, .2);
  display: grid;
  place-items: center;
  font-size: 18px;
  color: var(--primary-color);
}

.faq-group-title {
  font-family: var(--heading-font);
  font-size: 20px;
  font-weight: 800;
  color: var(--dark-color);
  letter-spacing: -0.3px;
}

.faq-group-count {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  background: rgba(31, 79, 143, .1);
  color: var(--primary-color);
  padding: 3px 10px;
  border-radius: 100px;
}

/* accordion */

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: var(--white-color);
  border-radius: 16px;
  border: 1.5px solid rgba(18, 18, 18, .08);
  overflow: hidden;
  transition: var(--transition);
  box-shadow: 0 2px 12px rgba(18, 18, 18, .05);
}

.faq-item:hover {
  border-color: rgba(31, 79, 143, .2);
  box-shadow: 0 4px 20px rgba(18, 18, 18, .09);
}

.faq-item.open {
  border-color: rgba(31, 79, 143, .3);
  box-shadow: 0 8px 32px rgba(31, 79, 143, .1);
}

.faq-question {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 24px;
  cursor: pointer;
  user-select: none;
  transition: var(--transition);
}

.faq-question:hover {
  background: rgba(31, 79, 143, .03);
}

.faq-item.open .faq-question {
  background: rgba(31, 79, 143, .04);
}

/* number bubble */

.faq-q-num {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  flex-shrink: 0;
  background: rgba(18, 18, 18, .06);
  border: 1px solid rgba(18, 18, 18, .1);
  display: grid;
  place-items: center;
  font-family: var(--heading-font);
  font-size: 12px;
  font-weight: 800;
  color: var(--text-color);
  transition: var(--transition);
}

.faq-item.open .faq-q-num, .faq-item:hover .faq-q-num {
  background: var(--primary-color);
  border-color: var(--primary-color);
  color: #fff;
}

.faq-q-text {
  flex: 1;
  font-family: var(--heading-font);
  font-size: 16px;
  font-weight: 700;
  color: var(--dark-color);
  line-height: 1.4;
  transition: var(--transition);
}

.faq-item.open .faq-q-text, .faq-item:hover .faq-q-text {
  color: var(--primary-color);
}

.faq-q-text mark {
  background: rgba(31, 79, 143, .15);
  color: var(--primary-color);
  border-radius: 3px;
  padding: 0 3px;
}

.faq-chevron {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  flex-shrink: 0;
  border: 1.5px solid rgba(18, 18, 18, .1);
  display: grid;
  place-items: center;
  font-size: 12px;
  color: var(--text-color);
  transition: all 0.35s ease;
}

.faq-item.open .faq-chevron {
  background: var(--primary-color);
  border-color: var(--primary-color);
  color: #fff;
  transform: rotate(180deg);
}

/* answer panel */

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.45s cubic-bezier(.25, .46, .45, .94), opacity 0.35s ease;
  opacity: 0;
}

.faq-item.open .faq-answer {
  opacity: 1;
}

.faq-answer-inner {
  padding: 0 24px 24px 80px;
  font-size: 14.5px;
  color: var(--text-color);
  line-height: 1.85;
}

.faq-answer-inner p {
  margin-bottom: 12px;
}

.faq-answer-inner p:last-child {
  margin-bottom: 0;
}

.faq-tip {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: rgba(31, 79, 143, .06);
  border: 1px solid rgba(31, 79, 143, .18);
  border-radius: 12px;
  padding: 14px 16px;
  margin-top: 14px;
}

.faq-tip i {
  color: var(--primary-color);
  font-size: 14px;
  margin-top: 2px;
  flex-shrink: 0;
}

.faq-tip p {
  margin: 0;
  font-size: 13.5px;
  line-height: 1.7;
}

/* answer links */

.faq-answer-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--primary-color);
  font-weight: 700;
  font-size: 13.5px;
  text-decoration: none;
  transition: var(--transition);
  margin-top: 10px;
}

.faq-answer-link i {
  font-size: 11px;
  transition: transform 0.25s ease;
}

.faq-answer-link:hover i {
  transform: translateX(3px);
}

/* helpful vote */

.faq-helpful {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid rgba(18, 18, 18, .07);
  font-size: 12.5px;
  color: var(--text-color);
}

.helpful-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(18, 18, 18, .06);
  border: 1px solid rgba(18, 18, 18, .1);
  border-radius: 100px;
  padding: 5px 14px;
  font-size: 12px;
  font-weight: 600;
  color: var(--text-color);
  cursor: pointer;
  transition: var(--transition);
}

.helpful-btn:hover {
  border-color: var(--primary-color);
  color: var(--primary-color);
}

.helpful-btn.voted {
  background: var(--primary-color);
  border-color: var(--primary-color);
  color: #fff;
}

/* ===================================
    404 page
=================================== */

.error-modern-shell {
  position: relative;
  display: flex;
  justify-content: center;
  width: 940px;
  margin: 0 auto;
  padding: 54px;
  border-radius: 34px;
  border: 1px solid rgba(255, 255, 255, 0.6);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.82) 55%, rgba(255, 255, 255, 0.9) 100%);
  box-shadow: 0 34px 90px rgba(18, 18, 18, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  overflow: hidden;
  isolation: isolate;
}

.error-modern-main {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  width: 100%;
  max-width: 760px;
  min-width: 0;
}

.error-modern-heading {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 8px;
}

.error-modern-code {
  display: flex;
  align-items: center;
  gap: 30px;
  margin: 0;
  font-size: 176px;
  line-height: 0.86;
  font-weight: 900;
  letter-spacing: -2px;
  color: var(--dark-color);
  text-shadow: 0 15px 34px rgba(18, 18, 18, 0.14);
}

.error-modern-code span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--titleFontFamily);
  color: var(--primary-color);
}

.error-modern-zero {
  position: relative;
  --zero-size: 152px;
  --dot-orbit: calc((var(--zero-size) / 2) - 8px);
  width: var(--zero-size);
  height: var(--zero-size);
  border-radius: 50%;
  border: 13px solid var(--primary-color);
  color: transparent;
  animation: errorPulse 2.8s ease-in-out infinite;
}

.error-modern-zero::before {
  content: "";
  position: absolute;
  inset: -25px;
  border-radius: 50%;
  border: 1.5px dashed rgba(31, 79, 143, 0.58);
  animation: errorRotate 12s linear infinite;
}

.error-modern-zero::after {
  content: "";
  position: absolute;
  width: 16px;
  height: 16px;
  top: 50%;
  left: 50%;
  border-radius: 50%;
  background: var(--white-color);
  box-shadow: 0 0 0 4px rgba(31, 79, 143, 0.2);
  transform: translate(-50%, -50%) rotate(0deg) translateX(var(--dot-orbit));
  animation: errorDotOrbit 4.6s linear infinite;
}

.error-modern-title {
  margin: 12px 0 12px;
  font-size: 42px;
  font-weight: 800;
  letter-spacing: -0.5px;
  color: var(--dark-color);
}

.error-modern-text {
  max-width: 620px;
  margin: 0 auto;
  font-size: 18px;
  line-height: 1.75;
  color: var(--text-color);
}

@keyframes errorPulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.045);
  }
}

@keyframes errorRotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

@keyframes errorDotOrbit {
  from {
    transform: translate(-50%, -50%) rotate(0deg) translateX(var(--dot-orbit));
  }
  to {
    transform: translate(-50%, -50%) rotate(360deg) translateX(var(--dot-orbit));
  }
}

/* ==============================
   PRIVACY POLICY AND TERMS & CONDITIONS PAGE
================================= */

.policy-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 0;
  align-items: flex-start;
}

.policy-main {
  min-width: 0;
  max-height: none;
  overflow: visible;
  padding-right: 0;
}

.policy-intro {
  background: var(--dark-color);
  border-radius: 20px;
  padding: 36px 40px;
  position: relative;
  overflow: hidden;
  margin-bottom: 48px;
  border: 1px solid rgba(31, 79, 143, .18);
}

.policy-intro::before {
  content: '';
  position: absolute;
  top: -50px;
  right: -50px;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(31, 79, 143, .22) 0%, transparent 70%);
  pointer-events: none;
}

.policy-intro::after {
  content: '';
  position: absolute;
  bottom: -30px;
  left: -30px;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(31, 79, 143, .1) 0%, transparent 70%);
  pointer-events: none;
}

.policy-intro-inner {
  position: relative;
  z-index: 2;
  display: flex;
  gap: 24px;
  align-items: flex-start;
}

.policy-intro-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  flex-shrink: 0;
  background: rgba(31, 79, 143, .15);
  border: 1px solid rgba(31, 79, 143, .3);
  display: grid;
  place-items: center;
  font-size: 22px;
  color: var(--primary-color);
}

.policy-intro-title {
  font-family: var(--heading-font);
  font-size: 20px;
  font-weight: 800;
  color: var(--white-color);
  margin-bottom: 8px;
}

.policy-intro-desc {
  font-size: 14px;
  color: rgba(255, 255, 255, .5);
  line-height: 1.8;
  margin: 0;
}

.policy-block {
  margin-bottom: 40px;
  background: var(--white-color);
  border-radius: 20px;
  border: 1px solid rgba(18, 18, 18, .08);
  overflow: hidden;
  box-shadow: 0 2px 16px rgba(18, 18, 18, .05);
  transition: var(--transition);
  scroll-margin-top: 110px;
}

.policy-block:hover {
  border-color: rgba(31, 79, 143, .18);
  box-shadow: 0 8px 32px rgba(18, 18, 18, .1);
}

.policy-block:last-child {
  margin-bottom: 0;
}

.policy-block-bar {
  height: 4px;
  width: 100%;
  background: var(--primary-color);
}

.policy-block-inner {
  padding: 32px 36px;
}

.policy-block-head {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  margin-bottom: 22px;
}

.policy-block-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  flex-shrink: 0;
  background: rgba(31, 79, 143, .08);
  border: 1px solid rgba(31, 79, 143, .18);
  display: grid;
  place-items: center;
  font-size: 20px;
  color: var(--primary-color);
  transition: var(--transition);
}

.policy-block:hover .policy-block-icon {
  background: var(--primary-color);
  color: #fff;
  transform: rotate(-4deg) scale(1.05);
}

.policy-block-num {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--primary-color);
  margin-bottom: 5px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.policy-block-num::before {
  content: '';
  width: 16px;
  height: 2px;
  background: var(--primary-color);
  border-radius: 2px;
}

.policy-block-title {
  font-family: var(--heading-font);
  font-size: 22px;
  font-weight: 900;
  color: var(--dark-color);
  line-height: 1.2;
  letter-spacing: -0.3px;
}

.policy-divider {
  height: 1px;
  background: rgba(18, 18, 18, .07);
  margin-bottom: 22px;
}

.policy-body {
  font-size: 14.5px;
  color: var(--text-color);
  line-height: 1.9;
}

.policy-body p {
  margin-bottom: 14px;
}

.policy-body p:last-child {
  margin-bottom: 0;
}

.policy-body strong {
  color: var(--dark-color);
  font-weight: 700;
}

.policy-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 14px 0;
}

.policy-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14.5px;
  color: var(--text-color);
  line-height: 1.7;
}

.policy-list li::before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: 2px solid var(--primary-color);
  flex-shrink: 0;
  margin-top: 7px;
}

.policy-list li b {
  color: var(--dark-color);
  font-weight: 700;
}

.policy-tip {
  display: flex;
  align-items: center;
  gap: 14px;
  background: rgba(31, 79, 143, .05);
  border: 1px solid rgba(31, 79, 143, .18);
  border-radius: 12px;
  padding: 16px 18px;
  margin-top: 18px;
}

.policy-tip i {
  color: var(--primary-color);
  font-size: 15px;
  margin-top: 2px;
  flex-shrink: 0;
}

.policy-tip p {
  font-size: 13.5px;
  color: var(--text-color);
  line-height: 1.75;
  margin: 0;
}

.rights-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 18px;
}

.right-card {
  background: var(--light-color);
  border-radius: 12px;
  padding: 16px 18px;
  border: 1px solid rgba(18, 18, 18, .07);
  display: flex;
  align-items: center;
  gap: 12px;
  transition: var(--transition);
}

.right-card:hover {
  border-color: rgba(31, 79, 143, .25);
  background: rgba(31, 79, 143, .04);
}

.right-card-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  flex-shrink: 0;
  background: rgba(31, 79, 143, .1);
  border: 1px solid rgba(31, 79, 143, .2);
  display: grid;
  place-items: center;
  font-size: 14px;
  color: var(--primary-color);
}

.right-card-title {
  font-family: var(--heading-font);
  font-size: 13px;
  font-weight: 800;
  color: var(--dark-color);
  margin-bottom: 3px;
}

.right-card-text {
  font-size: 12px;
  color: var(--text-color);
  line-height: 1.6;
  margin: 0;
}

.policy-contact-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--primary-color);
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
  transition: var(--transition);
}

.policy-contact-link i {
  font-size: 11px;
  transition: transform 0.25s;
}

.policy-contact-link:hover i {
  transform: translateX(3px);
}

/* ==================================
   ABOUT US PAGE
====================================== */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: url('../../assets/img/about/dining.jpg') center/cover no-repeat;
  transform: scale(1.08);
  animation: bgIn 1.4s cubic-bezier(.25, .46, .45, .94) forwards;
  filter: brightness(.4) saturate(.9);
}

@keyframes bgIn {
  from {
    transform: scale(1.12);
  }
  to {
    transform: scale(1.04);
  }
}

.hero-grad {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(18, 18, 18, 1) 0%, rgba(18, 18, 18, .6) 40%, transparent 100%), linear-gradient(90deg, rgba(18, 18, 18, .5) 0%, transparent 60%);
  z-index: 1;
}

.hero-inner {
  position: relative;
  z-index: 4;
  width: 100%;
  padding: 0 0 80px;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-h1 {
  font-family: var(--heading-font);
  font-size: 140px;
  font-weight: 900;
  color: var(--white-color);
  margin-bottom: 32px;
  animation: fadeUp .9s .45s cubic-bezier(.25, .46, .45, .94) both;
}

.hero-h1 em {
  color: transparent;
  -webkit-text-fill-color: transparent;
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: var(--white-color);
}

.hero-bottom {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 32px;
  animation: fadeUp .9s .6s cubic-bezier(.25, .46, .45, .94) both;
}

.hero-ctas {
  display: flex;
  gap: 14px;
  align-items: center;
  flex-wrap: wrap;
}

/* scroll indicator */

.scroll-hint {
  position: absolute;
  bottom: 90px;
  right: 60px;
  z-index: 4;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--white-color);
  animation: fadeUp .8s .9s cubic-bezier(.25, .46, .45, .94) both;
}

.scroll-track {
  width: 1px;
  height: 48px;
  background: rgba(255, 255, 255, .1);
  border-radius: 1px;
  overflow: hidden;
}

.scroll-thumb {
  width: 100%;
  height: 40%;
  background: var(--primary-color);
  animation: scrollAnim 1.8s ease-in-out infinite;
}

@keyframes scrollAnim {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(250%);
  }
}

.ticker {
  background: var(--primary-color);
  overflow: hidden;
  padding: 14px 0;
  position: relative;
  z-index: 5;
}

.ticker-t {
  display: flex;
  gap: 52px;
  width: max-content;
  animation: tick 26s linear infinite;
}

@keyframes tick {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

.story {
  padding: 130px 0;
  position: relative;
  overflow: hidden;
}

.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  align-items: stretch;
  border: 1px solid rgba(255, 255, 255, .06);
  border-radius: 28px;
  overflow: hidden;
  background: var(--dark-color);
}

.story-text-side {
  padding: 72px 60px;
  background: rgba(255, 255, 255, .025);
  border-right: 1px solid rgba(255, 255, 255, .06);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.story-text-side .section-heading {
  color: var(--white-color);
}

.story-body {
  color: var(--white-color);
  margin-bottom: 40px;
}

.story-text-side .pull-quote {
  border-left: 3px solid var(--primary-color);
  padding-left: 22px;
  margin-top: 28px;
}

.story-text-side .pq-text {
  font-family: var(--heading-font);
  font-size: 18px;
  font-style: italic;
  font-weight: 700;
  color: var(--white-color);
}

.story-text-side .pq-attr {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .3);
  margin-top: 8px;
}

.story-text-side .pq-attr span {
  color: var(--primary-color);
}

.story-img-side {
  display: grid;
  grid-template-rows: 1fr 1fr;
  gap: 0;
}

.story-img-top, .story-img-bot {
  position: relative;
  overflow: hidden;
  height: 385px;
}

.story-img-top img, .story-img-bot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(.75) saturate(1.1);
  transition: transform .7s cubic-bezier(.25, .46, .45, .94), filter .5s;
}

.story-img-top:hover img, .story-img-bot:hover img {
  transform: scale(1.06);
  filter: brightness(.9) saturate(1.2);
}

.story-img-top {
  border-bottom: 1px solid rgba(255, 255, 255, .05);
}

.story-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(18, 18, 18, .6) 0%, transparent 50%);
  z-index: 1;
}

.story-img-caption {
  position: absolute;
  bottom: 16px;
  left: 16px;
  z-index: 2;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--white-color);
  background: var(--primary-color);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: 6px 12px;
  border-radius: 100px;
}

.counters {
  padding: 0;
  background: var(--primary-color);
  position: relative;
  overflow: visible;
  z-index: 2;
  border: none;
}

.counters::before {
  content: '';
  position: absolute;
  top: -79px;
  left: 0;
  width: 100%;
  height: 81px;
  background: var(--primary-color);
  clip-path: polygon(0 100%, 100% 0, 100% 100%, 0 100%);
  z-index: -1;
}

.counters::after {
  content: '';
  position: absolute;
  bottom: -79px;
  left: 0;
  width: 100%;
  height: 81px;
  background: var(--primary-color);
  clip-path: polygon(0 0, 100% 0, 100% 0, 0 100%);
  z-index: -1;
}

.counters-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  position: relative;
  z-index: 2;
}

.counter-item {
  padding: 56px 40px;
  text-align: center;
  position: relative;
  transition: background .3s;
}

.counter-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 20%;
  bottom: 20%;
  width: 1px;
  background: rgba(255, 255, 255, .2);
}

.counter-item:hover {
  background: rgba(0, 0, 0, .1);
}

.c-num {
  font-family: var(--heading-font);
  font-size: 80px;
  font-weight: 900;
  color: var(--white-color);
  line-height: 1;
  letter-spacing: -3px;
  display: block;
}

.c-num sup {
  font-size: 30%;
  font-weight: 700;
  vertical-align: super;
  line-height: 0;
}

.c-lbl {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .6);
  margin-top: 10px;
  display: block;
}

.c-icon {
  font-size: 22px;
  color: rgba(255, 255, 255, .3);
  margin-bottom: 16px;
  display: block;
}

.values {
  padding: 130px 0;
  background: var(--bg-color);
  position: relative;
  overflow: hidden;
}

.values-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 60px;
  margin-bottom: 30px;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

.v-intro {
  color: var(--text-color);
  max-width: 400px;
}

.values-mosaic {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: 100px;
  gap: 16px;
}

.vc {
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  transition: transform .35s cubic-bezier(.25, .46, .45, .94), box-shadow .35s;
}

.vc:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 48px rgba(18, 18, 18, .15);
}

.vc1 {
  grid-column: 1/5;
  grid-row: 1/5;
}

.vc2 {
  grid-column: 5/9;
  grid-row: 1/3;
}

.vc3 {
  grid-column: 9/13;
  grid-row: 1/3;
}

.vc4 {
  grid-column: 5/8;
  grid-row: 3/5;
}

.vc5 {
  grid-column: 8/13;
  grid-row: 3/5;
}

.vc6 {
  grid-column: 1/5;
  grid-row: 5/7;
}

.vc7 {
  grid-column: 5/13;
  grid-row: 5/7;
}

.vc-dark {
  background: var(--dark-color);
}

.vc-orange {
  background: var(--primary-color);
}

.vc-light {
  background: var(--white-color);
  border: 1.5px solid rgba(18, 18, 18, .08);
}

.vc-img {
  background: var(--dark-color);
}

.vc-inner {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px;
  z-index: 2;
  color: var(--white-color);
}

.vc-inner-team {
  flex-direction: row;
  align-items: flex-end;
  justify-content: space-between;
}

.vc-tag {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--primary-color);
  margin-bottom: 8px;
}

.vc-dark .vc-tag, .vc-orange .vc-tag {
  color: rgba(255, 255, 255, .6);
}

.vc-orange .vc-tag {
  color: rgba(255, 255, 255, .7);
}

.vc-h {
  font-family: var(--heading-font);
  font-size: 22px;
  font-weight: 800;
  color: var(--white-color);
  line-height: 1.2;
  letter-spacing: -.3px;
}

.vc-h-black {
  color: var(--dark-color);
}

.vc-dark .vc-h, .vc-orange .vc-h {
  color: var(--white-color);
}

.vc-p {
  font-size: 13px;
  color: var(--text-color);
  line-height: 1.7;
  margin-top: 8px;
}

.vc-dark .vc-p {
  color: var(--white-color);
}

.vc-orange .vc-p {
  color: rgba(255, 255, 255, .75);
}

.vc-big-num {
  font-family: var(--heading-font);
  font-size: 100px;
  font-weight: 900;
  color: var(--white-color);
  line-height: 1;
  letter-spacing: -4px;
}

.vc-big-num sup {
  font-size: 30%;
  color: var(--primary-color);
  vertical-align: super;
  line-height: 0;
}

.vc-img-layer {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.vc-img-layer img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(.55) saturate(1.1);
}

.vc-img-layer::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(18, 18, 18, .75) 0%, transparent 55%);
}

.vc-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(31, 79, 143, .12);
  border: 1px solid rgba(31, 79, 143, .2);
  display: grid;
  place-items: center;
  font-size: 18px;
  color: var(--primary-color);
  margin-bottom: 14px;
  flex-shrink: 0;
}

.vc-dark .vc-icon, .vc-orange .vc-icon {
  background: rgba(255, 255, 255, .1);
  border-color: rgba(255, 255, 255, .15);
  color: rgba(255, 255, 255, .7);
}

.manifesto {
  background: var(--dark-color);
  position: relative;
  overflow: hidden;
}

.manifesto::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('../../assets/img/about/dining.jpg') center/cover no-repeat;
  opacity: .08;
  filter: saturate(.3);
}

.manifesto-inner {
  position: relative;
  z-index: 1;
  max-width: 1000px;
}

.manifesto-lines {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 56px;
}

.m-line {
  font-family: var(--heading-font);
  font-size: 64px;
  font-weight: 900;
  color: var(--white-color);
  line-height: 1.1;
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255, 255, 255, .05);
  overflow: hidden;
}

.m-line:last-child {
  border-bottom: none;
}

.m-line-num {
  color: rgba(255, 255, 255, .2);
}

.m-line .hl {
  display: inline-block;
  background: var(--primary-color);
  color: #fff;
  padding: 2px 14px;
  border-radius: 100px;
  font-size: 80%;
  letter-spacing: 0;
  font-style: normal;
  font-weight: 800;
}

.m-author {
  display: flex;
  align-items: center;
  gap: 20px;
}

.m-author-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  border: 2px solid var(--primary-color);
}

.m-author-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.m-author-name {
  font-family: var(--heading-font);
  font-size: 16px;
  font-weight: 700;
  color: var(--white-color);
  margin-bottom: 3px;
}

.m-author-role {
  font-size: 12px;
  color: rgba(255, 255, 255, .35);
  letter-spacing: .5px;
}

.cta {
  padding: 0;
  background: var(--dark-color);
  overflow: hidden;
}

.cta-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 540px;
}

.cta-l {
  background: var(--primary-color);
  padding: 80px 64px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.cta-l::before {
  content: '';
  position: absolute;
  top: -60px;
  right: -60px;
  width: 250px;
  height: 250px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .08);
  pointer-events: none;
}

.cta-l::after {
  content: '';
  position: absolute;
  bottom: -40px;
  left: -40px;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: rgba(0, 0, 0, .08);
  pointer-events: none;
}

.cta-l-inner {
  position: relative;
  z-index: 1;
}

.cta-l-tag {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .65);
  margin-bottom: 20px;
}

.cta-l-title {
  font-family: var(--heading-font);
  font-size: 58px;
  font-weight: 900;
  color: var(--white-color);
  line-height: .95;
  letter-spacing: -2px;
  margin-bottom: 24px;
}

.cta-l-sub {
  font-size: 15px;
  color: rgba(255, 255, 255, .65);
  line-height: 1.8;
  max-width: 380px;
  margin-bottom: 36px;
}

.cta-r {
  position: relative;
  overflow: hidden;
}

.cta-r img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(.5) saturate(.8);
  transition: transform 8s ease;
}

.cta:hover .cta-r img {
  transform: scale(1.04);
}

.cta-r-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 64px;
  background: rgba(18, 18, 18, .2);
}

.cta-r-stat {
  margin-bottom: 20px;
}

.cta-r-num {
  font-family: var(--heading-font);
  font-size: 88px;
  font-weight: 900;
  color: var(--white-color);
  line-height: 1;
  letter-spacing: -3px;
}

.cta-r-num span {
  color: var(--primary-color);
}

.cta-r-lbl {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .4);
  margin-top: 6px;
}

.cta-r-divider {
  width: 48px;
  height: 2px;
  background: var(--primary-color);
  margin: 28px 0;
}

/* =============================
   RESERVATION PAGE
================================ */

.page {
  display: grid;
  grid-template-columns: 1fr 1fr;
  height: fit-content;
  width: 100vw;
  overflow: hidden;
}

.left {
  position: relative;
  overflow: hidden;
  background: var(--dark-color);
}

.left-bg {
  position: absolute;
  inset: 0;
  background: url('../images/reservation.html') center/cover no-repeat;
  transform: scale(1.06);
  animation: bgDrift 18s ease-in-out infinite alternate;
}

@keyframes bgDrift {
  from {
    transform: scale(1.06) translateX(0);
  }
  to {
    transform: scale(1.06) translateX(-3%);
  }
}

.left-grad {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(to right, rgba(18, 18, 18, .7) 0%, rgba(18, 18, 18, .3) 100%), linear-gradient(to top, rgba(18, 18, 18, .9) 0%, transparent 60%);
}

/* animated ring */

.left-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid var(--primary-color);
  pointer-events: none;
  z-index: 2;
  animation: ringPulse 6s ease-in-out infinite;
}

.lr1 {
  width: 500px;
  height: 500px;
  top: -150px;
  right: -150px;
  animation-delay: 0s;
}

.lr2 {
  width: 300px;
  height: 300px;
  bottom: 80px;
  left: -80px;
  animation-delay: 2s;
}

.lr3 {
  width: 160px;
  height: 160px;
  top: 40%;
  left: 20%;
  animation-delay: 4s;
}

@keyframes ringPulse {
  0%, 100% {
    opacity: .4;
    transform: scale(1);
  }
  50% {
    opacity: .7;
    transform: scale(1.40);
  }
}

.left-content {
  position: relative;
  z-index: 3;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 48px 52px;
}

.res-logo {
  font-family: var(--titleFontFamily);
  font-size: 36px;
  color: var(--primary-color);
  text-decoration: none;
  letter-spacing: .5px;
}

.left-cards {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.li-card {
  background: rgba(255, 255, 255, .06);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 16px;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 14px;
  transition: all .3s cubic-bezier(.25, .46, .45, .94);
}

.li-card:hover {
  background: rgba(255, 255, 255, .1);
  border-color: rgba(31, 79, 143, .3);
  transform: translateX(4px);
}

.li-icon {
  width: 40px;
  height: 40px;
  border-radius: 11px;
  flex-shrink: 0;
  background: rgba(31, 79, 143, .15);
  border: 1px solid rgba(31, 79, 143, .25);
  display: grid;
  place-items: center;
  font-size: 15px;
  color: var(--primary-color);
}

.li-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .3);
  margin-bottom: 2px;
}

.li-value {
  font-family: var(--heading-font);
  font-size: 14px;
  font-weight: 700;
  color: var(--white-color);
}

/* live clock */

.left-clock {
  position: absolute;
  top: 48px;
  right: 52px;
  z-index: 4;
  text-align: right;
}

.clock-time {
  font-family: var(--heading-font);
  font-size: 22px;
  font-weight: 800;
  color: var(--white-color);
}

.clock-date {
  color: var(--white-color);
  letter-spacing: 1px;
}

.left-strip {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--primary-color), rgba(31, 79, 143, .3), transparent);
  z-index: 5;
}

/* RIGHT PANEL */

.right {
  background: var(--bg-color);
  overflow-y: auto;
  overflow-x: hidden;
  position: relative;
}

.right::-webkit-scrollbar {
  width: 4px;
}

.right::-webkit-scrollbar-thumb {
  background: var(--primary-color);
}

.form-wrap {
  min-height: 100%;
  display: flex;
  flex-direction: column;
  padding: 48px 52px;
}

/* STEP PROGRESS */

.steps {
  display: flex;
  align-items: center;
  gap: 0;
  margin-bottom: 48px;
}

.step {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 1;
  position: relative;
  flex-direction: column;
}

.step:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 21px;
  height: 2px;
  background: rgba(18, 18, 18, .12);
  z-index: 0;
  transition: background .5s;
  left: calc(50% + 20px);
  right: calc(-50% + 20px);
}

.step.done:not(:last-child)::after, .step.active:not(:last-child)::after {
  background: var(--primary-color);
}

.step-dot {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  flex-shrink: 0;
  display: grid;
  place-items: center;
  z-index: 1;
  font-family: var(--heading-font);
  font-size: 13px;
  font-weight: 800;
  background: rgba(18, 18, 18, .08);
  border: 2px solid rgba(18, 18, 18, .12);
  color: var(--text-color);
  transition: all .35s cubic-bezier(.25, .46, .45, .94);
}

.step.active .step-dot {
  background: var(--primary-color);
  border-color: var(--primary-color);
  color: #fff;
  transform: scale(1.1);
  box-shadow: 0 0 0 6px rgba(31, 79, 143, .15);
}

.step.done .step-dot {
  background: var(--dark-color);
  border-color: var(--dark-color);
  color: #fff;
}

.step.done .step-dot::before {
  content: '\f00c';
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  font-size: 12px;
}

.step-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text-color);
}

.step.active .step-label {
  color: var(--primary-color);
}

.step.done .step-label {
  color: var(--dark-color);
}

/* STEP PANELS */

.step-panel {
  display: none;
  flex-direction: column;
  flex: 1;
  animation: stepIn .4s cubic-bezier(.25, .46, .45, .94);
}

.step-panel.active {
  display: flex;
}

@keyframes stepIn {
  from {
    opacity: 0;
    transform: translateX(20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.panel-title {
  font-family: var(--heading-font);
  font-size: 38px;
  font-weight: 900;
  color: var(--dark-color);
  line-height: 1.05;
  letter-spacing: -1px;
  margin-bottom: 8px;
}

.panel-sub {
  font-size: 14px;
  color: var(--text-color);
  line-height: 1.7;
  margin-bottom: 36px;
}

.field {
  margin-bottom: 22px;
  position: relative;
}

.field-label {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--dark-color);
  margin-bottom: 9px;
  opacity: .65;
}

.field-label i {
  font-size: 12px;
  color: var(--primary-color);
}

.fi {
  width: 100%;
  padding: 14px 18px 14px 46px;
  background: var(--white-color);
  border: 1.5px solid rgba(18, 18, 18, .1);
  border-radius: 14px;
  font-size: 15px;
  color: var(--dark-color);
  outline: none;
  transition: all .3s cubic-bezier(.25, .46, .45, .94);
  -webkit-appearance: none;
}

.fi::placeholder {
  color: rgba(18, 18, 18, .3);
}

.fi:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 4px rgba(31, 79, 143, .1);
  background: rgba(31, 79, 143, .02);
}

.fi-icon {
  position: absolute;
  bottom: 0;
  left: 18px;
  transform: translateY(-50%);
  font-size: 14px;
  color: rgba(18, 18, 18, .3);
  pointer-events: none;
  transition: .3s;
}

.field:focus-within .fi-icon {
  color: var(--primary-color);
}

.fi-icon {
  top: auto;
  bottom: auto;
  margin-top: 0;
}

.field .fi-icon {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
}

.field .fi-icon {
  top: calc(50% + 18px);
  transform: translateY(-50%);
}

.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.guest-selector {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--white-color);
  border: 1.5px solid rgba(18, 18, 18, .1);
  border-radius: 14px;
  padding: 10px 16px;
  margin-bottom: 22px;
}

.guest-count {
  font-family: var(--heading-font);
  font-size: 32px;
  font-weight: 900;
  color: var(--dark-color);
  min-width: 56px;
  text-align: center;
  line-height: 1;
}

.guest-label-sm {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-color);
  text-align: center;
  margin-top: 3px;
}

.gs-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--light-color);
  border: 1.5px solid rgba(18, 18, 18, .1);
  font-size: 20px;
  color: var(--dark-color);
  display: grid;
  place-items: center;
  cursor: none;
  transition: all .25s cubic-bezier(.25, .46, .45, .94);
}

.gs-btn:hover {
  background: var(--primary-color);
  border-color: var(--primary-color);
  color: #fff;
  transform: scale(1.1);
}

.gs-btn:active {
  transform: scale(.95);
}

/* TIME SLOTS */

.time-slots {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-bottom: 22px;
}

.ts {
  padding: 12px 8px;
  border-radius: 12px;
  text-align: center;
  cursor: pointer;
  background: var(--white-color);
  border: 1.5px solid rgba(18, 18, 18, .1);
  font-family: var(--heading-font);
  font-size: 14px;
  font-weight: 700;
  color: var(--dark-color);
  transition: all .25s cubic-bezier(.25, .46, .45, .94);
  position: relative;
  overflow: hidden;
}

.ts::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--primary-color);
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform .25s cubic-bezier(.25, .46, .45, .94);
  z-index: 0;
}

.ts span {
  position: relative;
  z-index: 1;
}

.ts .ts-avail {
  display: block;
  font-size: 10px;
  font-weight: 500;
  color: var(--text-color);
  margin-top: 2px;
  transition: .25s;
}

.ts:hover, .ts.selected {
  border-color: var(--primary-color);
  color: #fff;
}

.ts:hover::before, .ts.selected::before {
  transform: scaleY(1);
}

.ts.selected .ts-avail, .ts:hover .ts-avail {
  color: rgba(255, 255, 255, .7);
}

.ts.full {
  opacity: .35;
  cursor: not-allowed;
}

.ts.full:hover::before {
  transform: scaleY(0);
}

.ts.full:hover {
  border-color: rgba(18, 18, 18, .1);
  color: var(--dark-color);
}

/* CUSTOM DATE PICKER */

.datepicker {
  background: var(--white-color);
  border: 1.5px solid rgba(18, 18, 18, .1);
  border-radius: 18px;
  overflow: hidden;
  margin-bottom: 22px;
}

.dp-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 20px;
  background: var(--dark-color);
}

.dp-month {
  font-family: var(--heading-font);
  font-size: 16px;
  font-weight: 800;
  color: var(--white-color);
  letter-spacing: -.3px;
}

.dp-nav {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .1);
  border: 1px solid rgba(255, 255, 255, .15);
  color: rgba(255, 255, 255, .7);
  font-size: 12px;
  display: grid;
  place-items: center;
  cursor: none;
  transition: .25s;
}

.dp-nav:hover {
  background: var(--primary-color);
  border-color: var(--primary-color);
  color: #fff;
}

.dp-days-header {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  padding: 12px 12px 4px;
}

.dp-day-lbl {
  text-align: center;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(18, 18, 18, .35);
}

.dp-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  padding: 4px 12px 16px;
  gap: 2px;
}

.dp-cell {
  aspect-ratio: 1;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-family: var(--heading-font);
  font-size: 13px;
  font-weight: 700;
  color: var(--dark-color);
  cursor: pointer;
  transition: all .2s cubic-bezier(.25, .46, .45, .94);
  position: relative;
}

.dp-cell:hover:not(.disabled):not(.empty) {
  background: rgba(31, 79, 143, .12);
  color: var(--primary-color);
}

.dp-cell.today:not(.selected) {
  color: var(--primary-color);
}

.dp-cell.today:not(.selected)::after {
  content: '';
  position: absolute;
  bottom: 3px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--primary-color);
}

.dp-cell.selected {
  background: var(--primary-color);
  color: #fff;
  transform: scale(1.1);
  box-shadow: 0 4px 14px rgba(31, 79, 143, .4);
}

.dp-cell.disabled, .dp-cell.empty {
  opacity: .2;
  cursor: not-allowed;
}

.dp-cell.empty {
  cursor: default;
}

.occasion-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-bottom: 22px;
}

.oc {
  padding: 9px 18px;
  border-radius: 100px;
  cursor: pointer;
  background: var(--white-color);
  border: 1.5px solid rgba(18, 18, 18, .1);
  font-size: 13px;
  font-weight: 600;
  color: var(--dark-color);
  transition: all .25s cubic-bezier(.25, .46, .45, .94);
  display: flex;
  align-items: center;
  gap: 7px;
}

.oc:hover, .oc.on {
  background: var(--dark-color);
  border-color: var(--dark-color);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(18, 18, 18, .15);
}

.oc.on {
  background: var(--primary-color);
  border-color: var(--primary-color);
  box-shadow: 0 6px 18px rgba(31, 79, 143, .25);
}

.ta {
  width: 100%;
  padding: 14px 18px;
  min-height: 100px;
  resize: none;
  background: var(--white-color);
  border: 1.5px solid rgba(18, 18, 18, .1);
  border-radius: 14px;
  font-size: 14px;
  color: var(--dark-color);
  outline: none;
  transition: all .3s;
  line-height: 1.7;
}

.ta::placeholder {
  color: rgba(18, 18, 18, .3);
}

.ta:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 4px rgba(31, 79, 143, .1);
}

.step-nav {
  display: flex;
  gap: 14px;
  margin-top: auto;
  padding-top: 28px;
}

.btn-back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--heading-font);
  font-size: 14px;
  font-weight: 700;
  background: transparent;
  color: var(--text-color);
  border: 1.5px solid rgba(18, 18, 18, .15);
  border-radius: 100px;
  padding: 15px 24px;
  cursor: pointer;
  transition: .3s;
  white-space: nowrap;
}

.btn-back:hover {
  border-color: var(--dark-color);
  color: var(--dark-color);
}

.reservation-review-card {
  background: var(--white-color);
  border: 1.5px solid rgba(18, 18, 18, .08);
  border-radius: 20px;
  overflow: hidden;
  margin-bottom: 22px;
  box-shadow: 0 4px 20px rgba(18, 18, 18, .06);
}

.reservation-review-card-head {
  background: var(--dark-color);
  padding: 18px 22px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.rc-head-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: rgba(31, 79, 143, .15);
  border: 1px solid rgba(31, 79, 143, .25);
  display: grid;
  place-items: center;
  font-size: 14px;
  color: var(--primary-color);
}

.rc-head-title {
  font-family: var(--heading-font);
  font-size: 14px;
  font-weight: 800;
  color: var(--white-color);
}

.reservation-review-rows {
  padding: 6px 0;
}

.reservation-review-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 13px 22px;
  border-bottom: 1px solid rgba(18, 18, 18, .05);
}

.reservation-review-row:last-child {
  border-bottom: none;
}

.rr-key {
  font-size: 12px;
  font-weight: 600;
  color: var(--text-color);
  display: flex;
  align-items: center;
  gap: 7px;
}

.rr-key i {
  color: var(--primary-color);
  font-size: 11px;
}

.rr-val {
  font-family: var(--heading-font);
  font-size: 14px;
  font-weight: 700;
  color: var(--dark-color);
}

.terms-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  cursor: pointer;
}

.terms-text {
  font-size: 13px;
  color: var(--text-color);
  line-height: 1.6;
}

.terms-text a {
  color: var(--primary-color);
  font-weight: 600;
}

/* =============================
   SHOP PAGE
================================ */

/* PROMO BANNER */

.shop-promo-bar {
  background: var(--dark-color);
  padding: 12px 0;
  position: relative;
  overflow: hidden;
}

.shop-promo-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  position: relative;
  z-index: 1;
  flex-wrap: wrap;
}

.shop-promo-text {
  font-weight: 700;
  color: var(--white-color);
  letter-spacing: .3px;
}

.shop-promo-text strong {
  color: var(--primary-color);
}

.shop-promo-code {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(31, 79, 143, .15);
  border: 1px solid rgba(31, 79, 143, .3);
  border-radius: 100px;
  padding: 5px 14px;
  font-family: var(--heading-font);
  font-weight: 900;
  color: var(--primary-color);
  letter-spacing: 1.5px;
  transition: .25s;
}

.shop-promo-code:hover {
  background: rgba(31, 79, 143, .25);
}

.shop-promo-countdown {
  display: flex;
  align-items: center;
  gap: 6px;
  font-weight: 700;
  color: rgba(255, 255, 255, .5);
}

.pc-num {
  font-family: var(--heading-font);
  font-size: 24px;
  font-weight: 900;
  color: var(--white-color);
}

.pc-sep {
  color: var(--primary-color);
}

/* HERO */

.shop-hero {
  position: relative;
  padding: 80px 0 60px;
  overflow: hidden;
  background: var(--dark-color);
}

.shop-hero-bg {
  position: absolute;
  inset: 0;
  background: url('../images/shop-banner.html') center/cover;
  filter: brightness(.2) saturate(.6);
  animation: hBgDrift 20s ease-in-out infinite alternate;
}

@keyframes hBgDrift {
  from {
    transform: scale(1.05) translateX(0);
  }
  to {
    transform: scale(1.05) translateX(-2%);
  }
}

.shop-hero-inner {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

.shop-hero-right {
  flex-shrink: 0;
}

.shop-hero-stats {
  display: flex;
  gap: 32px;
}

.hs-item {
  text-align: center;
}

.hs-num {
  font-family: var(--heading-font);
  font-size: 36px;
  font-weight: 900;
  color: var(--white-color);
  line-height: 1;
}

.hs-num span {
  color: var(--primary-color);
}

.hs-lbl {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--primary-color);
  margin-top: 5px;
}

.shop-hero-stripe {
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--primary-color), rgba(31, 79, 143, .3), transparent);
  margin-top: 48px;
  position: relative;
  z-index: 2;
}

.shop-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 40px;
  align-items: flex-start;
}

.sb-card {
  background: var(--white-color);
  border-radius: 20px;
  border: 1px solid rgba(18, 18, 18, .08);
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(18, 18, 18, .06);
  margin-bottom: 18px;
}

.sb-head {
  background: var(--dark-color);
  padding: 17px 22px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.sb-head-icon {
  width: 34px;
  height: 34px;
  border-radius: 9px;
  background: rgba(31, 79, 143, .15);
  border: 1px solid rgba(31, 79, 143, .25);
  display: grid;
  place-items: center;
  font-size: 13px;
  color: var(--primary-color);
}

.sb-head-title {
  font-family: var(--heading-font);
  font-size: 14px;
  font-weight: 800;
  color: var(--white-color);
}

.sb-body {
  padding: 14px 8px;
}

/* category filter buttons */

.cat-btn {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 14px;
  border-radius: 10px;
  border: 1.5px solid transparent;
  background: none;
  font-family: var(--body-font);
  font-size: 13.5px;
  font-weight: 600;
  color: var(--text-color);
  transition: .25s;
  text-align: left;
}

.cat-btn i {
  font-size: 14px;
  color: var(--primary-color);
  width: 16px;
  text-align: center;
}

.cat-btn:hover {
  background: rgba(31, 79, 143, .06);
  border-color: rgba(31, 79, 143, .18);
  color: var(--primary-color);
}

.cat-btn.on {
  background: var(--primary-color);
  border-color: var(--primary-color);
  color: #fff;
}

.cat-btn.on i {
  color: rgba(255, 255, 255, .8);
}

.cat-count {
  margin-left: auto;
  font-size: 11px;
  font-weight: 800;
  background: rgba(18, 18, 18, .07);
  color: var(--text-color);
  padding: 2px 8px;
  border-radius: 100px;
  min-width: 24px;
  text-align: center;
}

.cat-btn.on .cat-count {
  background: rgba(255, 255, 255, .25);
  color: #fff;
}

/* price range */

.price-range-wrap {
  padding: 16px 20px 20px;
}

.pr-labels {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  font-weight: 700;
  color: var(--dark-color);
  font-family: var(--heading-font);
  margin-bottom: 12px;
}

.pr-labels span {
  color: var(--primary-color);
}

.range-slider {
  width: 100%;
  height: 4px;
  background: rgba(18, 18, 18, .1);
  border-radius: 2px;
  -webkit-appearance: none;
  outline: none;
}

.range-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--primary-color);
  box-shadow: 0 2px 8px rgba(31, 79, 143, .35);
  transition: .2s;
}

.range-slider::-webkit-slider-thumb:hover {
  transform: scale(1.2);
}

/* rating filter */

.rating-filters {
  padding: 10px 14px 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.rf {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 7px 8px;
  border-radius: 8px;
  transition: .2s;
}

.rf:hover {
  background: rgba(31, 79, 143, .06);
}

.rf-stars {
  display: flex;
  gap: 2px;
}

.rf-stars i {
  font-size: 11px;
  color: #F59E0B;
}

.rf-lbl {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-color);
  flex: 1;
}

.rf-cnt {
  font-size: 11px;
  color: var(--text-color);
}

.rf-cb {
  width: 18px;
  height: 18px;
  border-radius: 5px;
  border: 1.5px solid rgba(18, 18, 18, .2);
  flex-shrink: 0;
  display: grid;
  place-items: center;
  transition: .25s;
  margin-left: auto;
}

.rf.checked .rf-cb {
  background: var(--primary-color);
  border-color: var(--primary-color);
}

.rf.checked .rf-cb::after {
  content: '\f00c';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  font-size: 9px;
  color: #fff;
}

/* toolbar */

.toolbar {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 28px;
  flex-wrap: wrap;
}

.shop-search-wrap {
  flex: 1;
  min-width: 200px;
  position: relative;
}

.shop-search-input {
  width: 100%;
  padding: 13px 48px 13px 46px;
  background: var(--white-color);
  border: 1.5px solid rgba(18, 18, 18, .1);
  border-radius: 100px;
  font-family: var(--body-font);
  font-size: 14px;
  color: var(--dark-color);
  outline: none;
  transition: .3s;
}

.shop-search-input::placeholder {
  color: rgba(18, 18, 18, .3);
}

.shop-search-input:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 4px rgba(31, 79, 143, .1);
}

.shop-search-icon {
  position: absolute;
  left: 17px;
  top: 50%;
  transform: translateY(-50%);
  color: rgba(18, 18, 18, .3);
  font-size: 14px;
  pointer-events: none;
}

.sort-select {
  padding: 12px 36px 12px 16px;
  background: var(--white-color);
  border: 1.5px solid rgba(18, 18, 18, .1);
  border-radius: 100px;
  font-family: var(--body-font);
  font-size: 13px;
  font-weight: 600;
  color: var(--dark-color);
  outline: none;
  transition: .3s;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ff581b' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 14px;
}

.sort-select:focus {
  border-color: var(--primary-color);
}

.result-count {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-color);
  white-space: nowrap;
}

.result-count strong {
  color: var(--primary-color);
  font-family: var(--heading-font);
}

/* PRODUCT GRID */

.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.products-grid.list-view {
  grid-template-columns: 1fr;
}

/* PRODUCT CARD */

.pc {
  background: var(--white-color);
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid rgba(18, 18, 18, .07);
  transition: transform .45s cubic-bezier(.22, .61, .36, 1), box-shadow .45s cubic-bezier(.22, .61, .36, 1), border-color .3s ease;
  box-shadow: 0 2px 14px rgba(18, 18, 18, .05);
  position: relative;
  display: flex;
  flex-direction: column;
  will-change: transform;
}

.pc:hover {
  transform: translate3d(0, -8px, 0);
  box-shadow: 0 24px 56px rgba(18, 18, 18, .14);
  border-color: rgba(31, 79, 143, .18);
}

.pc > a {
  display: block;
}

/* product image */

.pc-img-wrap {
  position: relative;
  height: 240px;
  overflow: hidden;
  border-radius: 0;
  flex-shrink: 0;
}

.pc-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .65s cubic-bezier(.22, .61, .36, 1), filter .45s ease;
  will-change: transform, filter;
}

.pc:hover .pc-img-wrap img {
  transform: scale(1.05);
  filter: brightness(.95) saturate(1.1);
}

.pc-img-wrap::after {
  content: '';
  position: absolute;
  width: 200%;
  height: 0%;
  left: 50%;
  top: 50%;
  background: rgba(255, 255, 255, .3);
  transform: translate(-50%, -50%) rotate(-45deg);
  pointer-events: none;
  z-index: 4;
}

.pc:hover .pc-img-wrap::after {
  height: 250%;
  background: transparent;
  transition: all 600ms linear;
}

.pc-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(18, 18, 18, .4) 0%, transparent 50%);
  z-index: 2;
}

/* badges */

.pc-badges {
  position: absolute;
  top: 14px;
  left: 14px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  z-index: 5;
}

.pc-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 9px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding: 4px 11px;
  border-radius: 100px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.badge-hot {
  background: var(--primary-color);
  color: #fff;
  box-shadow: 0 4px 12px rgba(31, 79, 143, .4);
}

.badge-new {
  background: rgba(18, 18, 18, .82);
  color: #fff;
}

.badge-sale {
  background: rgba(255, 255, 255, .92);
  color: #b91c1c;
  border: 1px solid rgba(185, 28, 28, .2);
}

.badge-bestseller {
  background: rgba(255, 255, 255, .92);
  color: #92400e;
  border: 1px solid rgba(146, 64, 14, .2);
}

/* rating on image */

.pc-rating-img {
  position: absolute;
  bottom: 12px;
  right: 12px;
  z-index: 5;
  display: flex;
  align-items: center;
  gap: 4px;
  background: rgba(255, 255, 255, .92);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: 3px 10px;
  border-radius: 100px;
  font-family: var(--body-font);
  font-size: 11px;
  font-weight: 700;
  color: var(--dark-color);
}

.pc-rating-img i {
  color: #F59E0B;
  font-size: 9px;
}

/* card body */

.pc-body {
  padding: 18px 20px 20px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.pc-cat {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--primary-color);
}

.pc-name {
  font-family: var(--heading-font);
  font-size: 19px;
  font-weight: 800;
  color: var(--dark-color);
  transition: .3s;
}

.pc:hover .pc-name {
  color: var(--primary-color);
}

.pc-desc {
  font-size: 14px;
  color: var(--text-color);
  line-height: 1.7;
  margin-bottom: auto;
  padding-bottom: 16px;
}

.pc-divider {
  height: 1px;
  background: rgba(18, 18, 18, .07);
  margin-bottom: 14px;
}

.pc-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.pc-price {
  font-family: var(--heading-font);
  font-size: 34px;
  font-weight: 900;
  color: var(--dark-color);
  line-height: 1;
}

.pc-price sup {
  font-size: 22px;
  color: var(--primary-color);
  font-weight: 700;
}

.pc-price s {
  font-size: 16px;
  color: #bbb;
  font-weight: 400;
  margin-right: 4px;
}

/* LIST VIEW CARD */

.products-grid.list-view .pc {
  display: grid;
  grid-template-columns: 240px minmax(0, 1fr);
  grid-template-areas: "bar bar" "thumb body";
  border-radius: 20px;
  align-items: stretch;
}

.products-grid.list-view .pc > .pc-bar {
  grid-area: bar;
}

.products-grid.list-view .pc > a {
  grid-area: thumb;
  display: block;
  height: auto;
  align-self: stretch;
  min-width: 0;
  overflow: hidden;
  border-radius: 20px 0 0 20px;
}

.products-grid.list-view .pc > a .pc-img-wrap {
  width: 100%;
  height: 100%;
  min-height: 100%;
  border-radius: inherit;
}

.products-grid.list-view .pc:hover {
  transform: translateY(-6px);
}

.products-grid.list-view .pc-qv {
  opacity: 1;
  transform: none;
  right: 12px;
  left: 12px;
}

.products-grid.list-view .pc-body {
  grid-area: body;
  padding: 20px 24px;
  min-width: 0;
  flex: initial;
  align-self: stretch;
}

.products-grid.list-view .pc-name {
  font-size: 20px;
  margin-bottom: 10px;
}

.products-grid.list-view .pc-desc {
  font-size: 13.5px;
  margin-bottom: 10px;
  padding-bottom: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.products-grid.list-view .pc-price {
  font-size: 28px;
}

.products-grid.list-view .pc-footer {
  margin-top: 4px;
  flex-wrap: wrap;
  gap: 12px;
}

.products-grid.list-view .pc-footer .btn-default {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  min-width: 156px;
  white-space: nowrap;
}

.products-grid.list-view .pc .pc-img-overlay {
  background: linear-gradient(to top, rgba(18, 18, 18, .22) 0%, transparent 58%);
}

.pc-bar {
  height: 3px;
  width: 100%;
  background: var(--primary-color);
  flex-shrink: 0;
}

/* FEATURED BANNER */

.feat-banner {
  margin-bottom: 28px;
  border-radius: 22px;
  overflow: hidden;
  position: relative;
  height: 220px;
}

.feat-banner-bg {
  position: absolute;
  inset: 0;
}

.feat-banner-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(.3) saturate(.7);
}

.feat-banner-inner {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  align-items: center;
  padding: 0 40px;
  justify-content: space-between;
  gap: 24px;
}

.fb-tag {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--primary-color);
  margin-bottom: 10px;
}

.fb-title {
  font-family: var(--heading-font);
  font-size: 28px;
  font-weight: 900;
  color: var(--white-color);
  line-height: 1;
  letter-spacing: -1px;
  margin-bottom: 8px;
}

.fb-sub {
  font-size: 13px;
  color: rgba(255, 255, 255, .45);
  line-height: 1.6;
}

.fb-right {
  flex-shrink: 0;
  text-align: center;
}

.fb-price {
  font-family: var(--heading-font);
  font-size: 48px;
  font-weight: 900;
  color: var(--white-color);
  line-height: 1;
  letter-spacing: -2px;
}

.fb-price span {
  color: var(--primary-color);
  font-size: 22px;
  vertical-align: super;
  line-height: 0;
}

.fb-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .3);
  margin-top: 6px;
}

/* ==================================================
   TESTIMONIALS PAGE
=================================================== */

.tp-section {
  padding: 100px 0 120px;
  background: var(--bg-color);
  position: relative;
  overflow: hidden;
}

.tp-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(31, 79, 143, .10) 1px, transparent 1px);
  background-size: 28px 28px;
  opacity: .4;
  pointer-events: none;
}

.tp-bg-orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(90px);
  z-index: 0;
}

.tp-orb-1 {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(31, 79, 143, .10) 0%, transparent 70%);
  top: -150px;
  right: -150px;
}

.tp-orb-2 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(31, 79, 143, .07) 0%, transparent 70%);
  bottom: 0;
  left: -100px;
}

.tp-orb-3 {
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(244, 180, 0, .06) 0%, transparent 70%);
  top: 40%;
  left: 50%;
  transform: translate(-50%, -50%);
}

/* Header */

.tp-header {
  text-align: center;
  margin-bottom: 60px;
  position: relative;
  z-index: 1;
}

.tp-header .eyebrow {
  justify-content: center;
  margin-bottom: 14px;
}

.tp-header .section-heading {
  margin-bottom: 16px;
}

.tp-header__sub {
  font-size: 16px;
  color: var(--text-color);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.8;
}

/* Stats Bar */

.tp-stats-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  background: var(--white-color);
  border-radius: 20px;
  border: 1px solid rgba(18, 18, 18, .08);
  box-shadow: 0 8px 40px rgba(18, 18, 18, .08);
  padding: 28px 40px;
  margin-bottom: 60px;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

.tp-stat-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 0 32px;
  flex: 1;
  min-width: 140px;
}

.tp-stat-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: rgba(31, 79, 143, .10);
  border: 1px solid rgba(31, 79, 143, .2);
  display: grid;
  place-items: center;
  font-size: 18px;
  color: var(--primary-color);
  flex-shrink: 0;
  transition: var(--transition);
}

.tp-stat-item:hover .tp-stat-icon {
  background: var(--primary-color);
  color: #fff;
  transform: rotate(-6deg) scale(1.08);
}

.tp-stat-body {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.tp-stat-body strong {
  font-family: var(--heading-font);
  font-size: 20px;
  font-weight: 800;
  color: var(--dark-color);
  line-height: 1;
}

.tp-stat-body span {
  font-size: 12px;
  color: var(--text-color);
  letter-spacing: .3px;
}

.tp-stat-divider {
  width: 1px;
  height: 44px;
  background: rgba(18, 18, 18, .09);
  flex-shrink: 0;
}

/* Featured Testimonial */

.tp-featured {
  position: relative;
  background: var(--dark-color);
  border-radius: 28px;
  border: 1px solid rgba(31, 79, 143, .2);
  padding: 56px 60px;
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 56px;
  align-items: center;
  margin-bottom: 60px;
  overflow: hidden;
  z-index: 1;
}

.tp-featured::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 0% 0%, rgba(31, 79, 143, .18) 0%, transparent 55%), radial-gradient(ellipse 60% 60% at 100% 100%, rgba(31, 79, 143, .10) 0%, transparent 55%);
  pointer-events: none;
}

.tp-featured__quote-mark {
  position: absolute;
  top: 28px;
  right: 40px;
  font-size: 80px;
  color: rgba(31, 79, 143, .12);
  line-height: 1;
  pointer-events: none;
}

.tp-featured__left {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  position: relative;
  z-index: 2;
}

.tp-featured__img-wrap {
  position: relative;
  width: 160px;
  height: 160px;
}

.tp-featured__img-wrap img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid var(--primary-color);
  box-shadow: 0 0 0 8px rgba(31, 79, 143, .15);
}

.tp-featured__img-badge {
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary-color);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 100px;
  white-space: nowrap;
}

.tp-featured__meta {
  text-align: center;
}

.tp-featured__stars {
  display: flex;
  gap: 4px;
  justify-content: center;
  margin-bottom: 10px;
}

.tp-featured__stars i {
  color: #F59E0B;
  font-size: 14px;
}

.tp-featured__name {
  font-family: var(--heading-font);
  font-size: 20px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 4px;
}

.tp-featured__role {
  display: block;
  font-size: 12px;
  color: rgba(255, 255, 255, .45);
  letter-spacing: .5px;
  margin-bottom: 12px;
}

.tp-featured__source {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(31, 79, 143, .12);
  border: 1px solid rgba(31, 79, 143, .25);
  color: var(--primary-color);
  font-size: 11px;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: 100px;
}

.tp-featured__right {
  position: relative;
  z-index: 2;
}

.tp-featured__tag {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--primary-color);
  margin-bottom: 20px;
}

.tp-featured__tag::before {
  content: '';
  width: 24px;
  height: 2px;
  background: var(--primary-color);
  border-radius: 2px;
}

.tp-featured__text {
  font-size: 17px;
  line-height: 1.9;
  color: rgba(255, 255, 255, .75);
  font-style: italic;
  margin: 0 0 28px;
  border: none;
  padding: 0;
}

.tp-featured__footer {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, .08);
}

.tp-featured__dish, .tp-featured__date {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: rgba(255, 255, 255, .45);
}

.tp-featured__dish i, .tp-featured__date i {
  color: var(--primary-color);
  font-size: 12px;
}

/* Filter Row */

.tp-filter-row {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 40px;
  position: relative;
  z-index: 1;
}

.tp-filter-btn {
  padding: 10px 22px;
  border-radius: 100px;
  border: 1.5px solid rgba(18, 18, 18, .12);
  background: var(--white-color);
  font-family: var(--body-font);
  font-size: 13px;
  font-weight: 600;
  color: var(--text-color);
  cursor: pointer;
  transition: all .3s ease;
}

.tp-filter-btn:hover {
  border-color: var(--primary-color);
  color: var(--primary-color);
  background: rgba(31, 79, 143, .04);
  transform: translateY(-2px);
}

.tp-filter-btn.active {
  background: var(--primary-color);
  border-color: var(--primary-color);
  color: #fff;
  box-shadow: 0 6px 20px rgba(31, 79, 143, .35);
  transform: translateY(-2px);
}

/* Testimonials Grid */

.tp-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 60px;
  position: relative;
  z-index: 1;
}

/* Base Card */

.tp-card {
  background: var(--white-color);
  border-radius: 20px;
  border: 1px solid rgba(18, 18, 18, .08);
  padding: 28px 26px 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 2px 16px rgba(18, 18, 18, .06);
  transition: transform .4s cubic-bezier(.34, 1.4, .64, 1), box-shadow .4s ease, border-color .3s;
}

.tp-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 56px rgba(18, 18, 18, .13);
  border-color: rgba(31, 79, 143, .2);
}

.tp-card__top-bar {
  position: absolute;
  top: 0;
  left: 0;
  height: 3px;
  width: 0;
  background: var(--primary-color);
  border-radius: 0 3px 3px 0;
  transition: width .4s ease;
}

.tp-card:hover .tp-card__top-bar {
  width: 100%;
}

/* Dark card */

.tp-card--dark {
  background: var(--dark-color);
  border-color: rgba(31, 79, 143, .18);
}

.tp-card--dark:hover {
  border-color: rgba(31, 79, 143, .4);
}

/* Orange card */

.tp-card--orange {
  background: var(--primary-color);
  border-color: transparent;
}

.tp-card--orange:hover {
  box-shadow: 0 24px 56px rgba(31, 79, 143, .35);
}

.tp-card--orange .tp-card__top-bar {
  background: #fff;
}

/* Accent card */

.tp-card--accent {
  border-color: var(--primary-color);
  background: var(--white-color);
}

.tp-card--accent .tp-card__top-bar {
  width: 60px;
}

/* Wide highlight card */

.tp-card--wide {
  grid-column: span 2;
  background: linear-gradient(135deg, var(--dark-color) 0%, #1a0a00 100%);
  border-color: rgba(31, 79, 143, .25);
}

.tp-card--wide:hover {
  border-color: rgba(31, 79, 143, .5);
}

.tp-card--highlight .tp-card__top-bar {
  background: var(--primary-color);
  width: 80px;
}

.tp-card__wide-inner {
  display: flex;
  align-items: flex-start;
  gap: 24px;
}

.tp-card__wide-quote {
  font-size: 56px;
  color: rgba(31, 79, 143, .25);
  line-height: 1;
  flex-shrink: 0;
  margin-top: -8px;
}

.tp-card__wide-body {
  flex: 1;
}

/* Card Head */

.tp-card__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.tp-card__stars {
  display: flex;
  gap: 3px;
}

.tp-card__stars i {
  font-size: 12px;
  color: #F59E0B;
}

.tp-card--dark .tp-card__stars i, .tp-card--wide .tp-card__stars i {
  color: #F59E0B;
}

.tp-card--orange .tp-card__stars i {
  color: #fff800;
}

.tp-card__platform {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(18, 18, 18, .06);
  border: 1px solid rgba(18, 18, 18, .1);
  display: grid;
  place-items: center;
  font-size: 13px;
  color: var(--text-color);
  transition: var(--transition);
}

.tp-card:hover .tp-card__platform {
  background: var(--primary-color);
  border-color: var(--primary-color);
  color: #fff;
}

.tp-card__platform--light {
  background: rgba(255, 255, 255, .12);
  border-color: rgba(255, 255, 255, .2);
  color: rgba(255, 255, 255, .7);
}

.tp-card--orange .tp-card__platform--light {
  background: rgba(255, 255, 255, .2);
  border-color: rgba(255, 255, 255, .3);
  color: #fff;
}

/* Card Text */

.tp-card__text {
  font-size: 14.5px;
  line-height: 1.85;
  color: var(--text-color);
  margin: 0;
  flex: 1;
}

.tp-card--dark .tp-card__text {
  color: rgba(255, 255, 255, .6);
}

.tp-card--orange .tp-card__text {
  color: rgba(255, 255, 255, .85);
}

.tp-card--wide .tp-card__text {
  color: rgba(255, 255, 255, .65);
}

.tp-card__text--lg {
  font-size: 16px;
}

/* Card Footer */

.tp-card__footer {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 16px;
  border-top: 1px solid rgba(18, 18, 18, .08);
  margin-top: auto;
}

.tp-card--dark .tp-card__footer {
  border-top-color: rgba(255, 255, 255, .08);
}

.tp-card--orange .tp-card__footer {
  border-top-color: rgba(255, 255, 255, .2);
}

.tp-card--wide .tp-card__footer {
  border-top-color: rgba(255, 255, 255, .08);
}

.tp-card__avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(31, 79, 143, .3);
  flex-shrink: 0;
  transition: transform .3s;
}

.tp-card:hover .tp-card__avatar {
  transform: scale(1.08);
}

.tp-card--orange .tp-card__avatar {
  border-color: rgba(255, 255, 255, .5);
}

.tp-card__name {
  display: block;
  font-family: var(--heading-font);
  font-size: 14px;
  font-weight: 700;
  color: var(--dark-color);
  margin-bottom: 2px;
}

.tp-card__name--light {
  color: #fff;
}

.tp-card__info {
  font-size: 11px;
  color: var(--text-color);
  display: flex;
  align-items: center;
  gap: 4px;
}

.tp-card__info i {
  color: var(--primary-color);
  font-size: 10px;
}

.tp-card__info--light {
  color: rgba(255, 255, 255, .5);
}

.tp-card--orange .tp-card__info--light {
  color: rgba(255, 255, 255, .65);
}

.tp-card__verified {
  margin-left: auto;
  font-size: 18px;
  color: var(--primary-color);
  flex-shrink: 0;
}

.tp-card__verified--light {
  color: rgba(255, 255, 255, .6);
}

.tp-card--orange .tp-card__verified--light {
  color: rgba(255, 255, 255, .8);
}

.tp-card.tp-hidden {
  display: none;
}

/* Rating Breakdown */

.tp-breakdown {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 60px;
  align-items: center;
  background: var(--white-color);
  border-radius: 24px;
  border: 1px solid rgba(18, 18, 18, .08);
  padding: 48px 56px;
  margin-bottom: 40px;
  box-shadow: 0 4px 24px rgba(18, 18, 18, .07);
  position: relative;
  z-index: 1;
}

.tp-breakdown__left {
  text-align: center;
}

.tp-breakdown__score {
  font-family: var(--heading-font);
  font-size: 88px;
  font-weight: 900;
  color: var(--dark-color);
  line-height: 1;
  letter-spacing: -4px;
  margin-bottom: 8px;
}

.tp-breakdown__stars {
  display: flex;
  justify-content: center;
  gap: 5px;
  margin-bottom: 10px;
}

.tp-breakdown__stars i {
  color: #F59E0B;
  font-size: 18px;
}

.tp-breakdown__total {
  font-size: 13px;
  color: var(--text-color);
  margin-bottom: 20px;
}

.tp-breakdown__platforms {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.tp-breakdown__platforms span {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 11px;
  font-weight: 700;
  color: var(--text-color);
  background: var(--light-color);
  border: 1px solid rgba(18, 18, 18, .08);
  padding: 4px 12px;
  border-radius: 100px;
}

.tp-breakdown__platforms span i {
  color: var(--primary-color);
}

.tp-breakdown__right {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.tp-bar-row {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 13px;
}

.tp-bar-label {
  min-width: 52px;
  font-weight: 600;
  color: var(--dark-color);
}

.tp-bar-track {
  flex: 1;
  height: 10px;
  background: rgba(18, 18, 18, .08);
  border-radius: 100px;
  overflow: hidden;
}

.tp-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--primary-color), #ff8c5a);
  border-radius: 100px;
  transition: width 1.2s cubic-bezier(.25, .46, .45, .94);
}

.tp-bar-count {
  min-width: 36px;
  text-align: right;
  color: var(--text-color);
  font-weight: 600;
}

/* CTA Strip */

.tp-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  background: var(--dark-color);
  border-radius: 20px;
  border: 1px solid rgba(31, 79, 143, .2);
  padding: 36px 48px;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.tp-cta::before {
  content: '';
  position: absolute;
  top: -60px;
  right: -60px;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(31, 79, 143, .2) 0%, transparent 70%);
  pointer-events: none;
}

.tp-cta__left {
  display: flex;
  align-items: center;
  gap: 20px;
  position: relative;
  z-index: 2;
}

.tp-cta__icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: rgba(31, 79, 143, .15);
  border: 1px solid rgba(31, 79, 143, .3);
  display: grid;
  place-items: center;
  font-size: 22px;
  color: var(--primary-color);
  flex-shrink: 0;
}

.tp-cta__title {
  font-family: var(--heading-font);
  font-size: 22px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 4px;
}

.tp-cta__sub {
  font-size: 14px;
  color: rgba(255, 255, 255, .45);
  margin: 0;
}

.tp-cta__right {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
  position: relative;
  z-index: 2;
}

.tp-cta__btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  transition: all .3s ease;
  border: 1.5px solid transparent;
}

.tp-cta__btn--google {
  background: rgba(255, 255, 255, .08);
  border-color: rgba(255, 255, 255, .15);
  color: #fff;
}

.tp-cta__btn--google:hover {
  background: #fff;
  color: var(--dark-color);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, .3);
}

/* ==================================================
   OUR CHEFS PAGE
=================================================== */

/* Featured Chef */

.oc-featured {
  display: grid;
  grid-template-columns: 480px 1fr;
  gap: 72px;
  align-items: center;
  margin-bottom: 80px;
  position: relative;
  z-index: 1;
}

/* Image column */

.oc-featured__img-col {
  position: relative;
}

.oc-featured__img-frame {
  position: relative;
  width: 420px;
  height: 520px;
  margin: 0 auto;
}

.oc-featured__img-ring {
  position: absolute;
  border-radius: 50%;
  border: 1.5px dashed rgba(31, 79, 143, .35);
  pointer-events: none;
  animation: oc-spin 20s linear infinite;
}

.oc-ring-1 {
  inset: -28px;
  animation-duration: 22s;
}

.oc-ring-2 {
  inset: -52px;
  border-color: rgba(31, 79, 143, .15);
  animation-direction: reverse;
  animation-duration: 30s;
}

@keyframes oc-spin {
  to {
    transform: rotate(360deg);
  }
}

.oc-featured__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  border-radius: 40% 60% 55% 45% / 50% 45% 55% 50%;
  border: 5px solid var(--primary-color);
  box-shadow: 0 30px 80px rgba(31, 79, 143, .25), 0 0 0 12px rgba(31, 79, 143, .08);
  display: block;
  position: relative;
  z-index: 2;
  transition: border-radius .6s ease;
}

.oc-featured__img-frame:hover .oc-featured__img {
  border-radius: 50%;
}

.oc-featured__award {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 4;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--primary-color);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .5px;
  padding: 8px 20px;
  border-radius: 100px;
  white-space: nowrap;
  box-shadow: 0 8px 24px rgba(31, 79, 143, .45);
}

/* Floating badges */

.oc-float-badge {
  position: absolute;
  background: var(--white-color);
  border-radius: 16px;
  padding: 12px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 12px 40px rgba(18, 18, 18, .12);
  z-index: 5;
  animation: oc-float 3.5s ease-in-out infinite;
  border: 1px solid rgba(18, 18, 18, .06);
}

.oc-float-badge i {
  font-size: 20px;
  color: var(--primary-color);
  flex-shrink: 0;
}

.oc-float-badge strong {
  display: block;
  font-family: var(--heading-font);
  font-size: 14px;
  font-weight: 800;
  color: var(--dark-color);
  line-height: 1;
}

.oc-float-badge span {
  font-size: 11px;
  color: var(--text-color);
}

.oc-badge-a {
  top: 40px;
  left: -20px;
  animation-delay: 0s;
}

.oc-badge-b {
  bottom: 100px;
  right: -20px;
  animation-delay: 1.8s;
}

@keyframes oc-float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

.oc-featured__kicker {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--primary-color);
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}

.oc-featured__kicker::before {
  content: '';
  width: 28px;
  height: 2px;
  background: var(--primary-color);
  border-radius: 2px;
}

.oc-featured__name {
  font-family: var(--heading-font);
  font-size: 52px;
  font-weight: 900;
  color: var(--dark-color);
  line-height: 1.05;
  letter-spacing: -1.5px;
  margin-bottom: 10px;
}

.oc-featured__origin {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-color);
  margin-bottom: 22px;
}

.oc-featured__origin i {
  color: var(--primary-color);
}

.oc-featured__bio {
  font-size: 15px;
  line-height: 1.85;
  color: var(--text-color);
  margin-bottom: 14px;
}

/* Skill bars */

.oc-skills {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin: 28px 0;
}

.oc-skill__head {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  font-weight: 700;
  color: var(--dark-color);
  margin-bottom: 7px;
}

.oc-skill__track {
  height: 8px;
  background: rgba(18, 18, 18, .08);
  border-radius: 100px;
  overflow: hidden;
}

.oc-skill__fill {
  height: 100%;
  background: linear-gradient(90deg, var(--primary-color), #ff8c5a);
  border-radius: 100px;
  transition: width 1.4s cubic-bezier(.25, .46, .45, .94);
}

/* Signature dishes */

.oc-featured__dishes {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}

.oc-dish-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text-color);
}

.oc-dish-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(31, 79, 143, .08);
  border: 1px solid rgba(31, 79, 143, .2);
  color: var(--primary-color);
  font-size: 12px;
  font-weight: 600;
  padding: 5px 14px;
  border-radius: 100px;
  transition: var(--transition);
}

.oc-dish-tag:hover {
  background: var(--primary-color);
  color: #fff;
}

.oc-dish-tag i {
  font-size: 10px;
}

/* Socials row */

.oc-featured__socials {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.oc-social {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1.5px solid rgba(18, 18, 18, .12);
  background: var(--light-color);
  color: var(--text-color);
  font-size: 14px;
  display: grid;
  place-items: center;
  text-decoration: none;
  transition: all .3s cubic-bezier(.34, 1.56, .64, 1);
}

.oc-social:hover {
  background: var(--primary-color);
  border-color: var(--primary-color);
  color: #fff;
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(31, 79, 143, .4);
}

.oc-divider {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 64px;
  position: relative;
  z-index: 1;
}

.oc-divider__line {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(18, 18, 18, .12), transparent);
}

.oc-divider__icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--primary-color);
  color: #fff;
  font-size: 20px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  box-shadow: 0 8px 24px rgba(31, 79, 143, .35);
}

/* Chef Cards Grid */

.oc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-bottom: 72px;
  position: relative;
  z-index: 1;
}

.oc-card {
  background: var(--white-color);
  border-radius: 24px;
  border: 1px solid rgba(18, 18, 18, .08);
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(18, 18, 18, .07);
  transition: transform .45s cubic-bezier(.34, 1.4, .64, 1), box-shadow .45s ease, border-color .3s;
  position: relative;
  display: flex;
  flex-direction: column;
}

.oc-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 32px 72px rgba(18, 18, 18, .15);
  border-color: rgba(31, 79, 143, .2);
}

.oc-card--dark {
  background: var(--dark-color);
  border-color: rgba(31, 79, 143, .15);
}

.oc-card--dark:hover {
  border-color: rgba(31, 79, 143, .4);
}

/* Card image */

.oc-card__img-wrap {
  position: relative;
  height: 320px;
  overflow: hidden;
}

.oc-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
  transition: transform .7s cubic-bezier(.25, .46, .45, .94), filter .4s;
  filter: brightness(.88) saturate(.95);
}

.oc-card:hover .oc-card__img {
  transform: scale(1.07);
  filter: brightness(1) saturate(1.1);
}

/* shine sweep */

.oc-card__img-wrap::after {
  content: '';
  position: absolute;
  width: 200%;
  height: 0%;
  left: 50%;
  top: 50%;
  background: rgba(255, 255, 255, .22);
  transform: translate(-50%, -50%) rotate(-45deg);
  pointer-events: none;
  z-index: 4;
}

.oc-card:hover .oc-card__img-wrap::after {
  height: 250%;
  background: transparent;
  transition: height 600ms linear, background 600ms linear;
}

.oc-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 40%, rgba(18, 18, 18, .85) 100%);
  z-index: 2;
}

.oc-card--dark .oc-card__overlay {
  background: linear-gradient(to bottom, transparent 35%, rgba(10, 10, 10, .92) 100%);
}

/* Cuisine badge */

.oc-card__cuisine-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 5;
  background: var(--primary-color);
  color: #fff;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 100px;
  box-shadow: 0 4px 14px rgba(31, 79, 143, .45);
}

/* Social icons on image */

.oc-card__socials {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%) translateY(14px);
  opacity: 0;
  display: flex;
  gap: 8px;
  transition: opacity .3s ease, transform .3s ease;
  z-index: 5;
}

.oc-card:hover .oc-card__socials {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.oc-card__socials a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .15);
  border: 1px solid rgba(255, 255, 255, .25);
  color: #fff;
  font-size: 13px;
  display: grid;
  place-items: center;
  text-decoration: none;
  transition: background .25s, transform .25s;
}

.oc-card__socials a:hover {
  background: var(--primary-color);
  border-color: var(--primary-color);
  transform: translateY(-3px);
}

.oc-card__body {
  padding: 24px 26px 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.oc-card__role {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--primary-color);
  margin-bottom: 6px;
}

.oc-card__name {
  font-family: var(--heading-font);
  font-size: 22px;
  font-weight: 800;
  color: var(--dark-color);
  margin-bottom: 10px;
  transition: color .3s;
}

.oc-card--dark .oc-card__name {
  color: #fff;
}

.oc-card:hover .oc-card__name {
  color: var(--primary-color);
}

.oc-card--dark:hover .oc-card__name {
  color: var(--primary-color);
}

.oc-card__bio {
  font-size: 13.5px;
  line-height: 1.8;
  color: var(--text-color);
  margin-bottom: 16px;
  flex: 1;
}

.oc-card--dark .oc-card__bio {
  color: rgba(255, 255, 255, .5);
}

/* Tags */

.oc-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 18px;
}

.oc-card__tags span {
  font-size: 11px;
  font-weight: 600;
  color: var(--text-color);
  background: var(--light-color);
  border: 1px solid rgba(18, 18, 18, .08);
  padding: 3px 12px;
  border-radius: 100px;
  transition: all .25s;
}

.oc-card--dark .oc-card__tags span {
  background: rgba(255, 255, 255, .06);
  border-color: rgba(255, 255, 255, .1);
  color: rgba(255, 255, 255, .5);
}

.oc-card:hover .oc-card__tags span {
  background: rgba(31, 79, 143, .07);
  border-color: rgba(31, 79, 143, .2);
  color: var(--primary-color);
}

.oc-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  border-top: 1px solid rgba(18, 18, 18, .08);
  font-size: 12px;
  font-weight: 600;
  color: var(--text-color);
  gap: 8px;
}

.oc-card--dark .oc-card__footer {
  border-top-color: rgba(255, 255, 255, .08);
  color: rgba(255, 255, 255, .35);
}

.oc-card__exp, .oc-card__origin {
  display: flex;
  align-items: center;
  gap: 5px;
}

.oc-card__exp i, .oc-card__origin i {
  color: var(--primary-color);
  font-size: 11px;
}

.oc-card__accent-line {
  height: 3px;
  width: 0;
  background: var(--primary-color);
  transition: width .4s ease;
  border-radius: 0 0 24px 24px;
}

.oc-card:hover .oc-card__accent-line {
  width: 100%;
}

/* Philosophy Banner */

.oc-philosophy {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  margin-bottom: 40px;
  z-index: 1;
}

.oc-philosophy__bg {
  position: absolute;
  inset: 0;
  background: var(--dark-color);
}

.oc-philosophy__bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 80% at 0% 50%, rgba(31, 79, 143, .2) 0%, transparent 55%), radial-gradient(ellipse 50% 60% at 100% 50%, rgba(31, 79, 143, .1) 0%, transparent 55%);
}

.oc-philosophy__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255, 255, 255, .04) 1px, transparent 1px);
  background-size: 22px 22px;
}

.oc-philosophy__inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 60px;
  align-items: center;
  padding: 56px 60px;
}

.oc-philosophy__left {
  display: flex;
  align-items: flex-start;
  gap: 24px;
}

.oc-philosophy__icon {
  width: 60px;
  height: 60px;
  border-radius: 18px;
  background: rgba(31, 79, 143, .15);
  border: 1px solid rgba(31, 79, 143, .3);
  display: grid;
  place-items: center;
  font-size: 24px;
  color: var(--primary-color);
  flex-shrink: 0;
}

.oc-philosophy__title {
  font-family: var(--heading-font);
  font-size: 26px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 12px;
}

.oc-philosophy__text {
  font-size: 14.5px;
  line-height: 1.85;
  color: rgba(255, 255, 255, .5);
  margin: 0;
  max-width: 520px;
}

.oc-philosophy__pillars {
  display: flex;
  flex-direction: column;
  gap: 20px;
  flex-shrink: 0;
  min-width: 220px;
}

.oc-pillar {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 18px;
  background: rgba(255, 255, 255, .04);
  border: 1px solid rgba(255, 255, 255, .07);
  border-radius: 14px;
  transition: background .3s, border-color .3s;
}

.oc-pillar:hover {
  background: rgba(31, 79, 143, .1);
  border-color: rgba(31, 79, 143, .25);
}

.oc-pillar__icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: rgba(31, 79, 143, .12);
  border: 1px solid rgba(31, 79, 143, .2);
  display: grid;
  place-items: center;
  font-size: 15px;
  color: var(--primary-color);
  flex-shrink: 0;
}

.oc-pillar strong {
  display: block;
  font-family: var(--heading-font);
  font-size: 13px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 2px;
}

.oc-pillar span {
  font-size: 11px;
  color: rgba(255, 255, 255, .35);
}

/* ==================================
   CART PAGE
===================================== */

.progress-wrap {
  background: var(--white-color);
  border-bottom: 1px solid rgba(18, 18, 18, .07);
  padding: 20px 0;
}

.progress-steps {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  max-width: 600px;
  margin: 0 auto;
}

.ps {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 1;
  position: relative;
  flex-direction: column;
}

.ps:not(:last-child)::after {
  content: '';
  position: absolute;
  left: calc(50% + 0px);
  right: calc(-50% + 0px);
  top: 18px;
  height: 2px;
  background: rgba(18, 18, 18, .1);
  z-index: 0;
}

.ps.done:not(:last-child)::after, .ps.active:not(:last-child)::after {
  background: var(--primary-color);
}

.ps-dot {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  z-index: 1;
  font-family: var(--heading-font);
  font-size: 13px;
  font-weight: 800;
  flex-shrink: 0;
  transition: all .3s;
  border: 2px solid rgba(18, 18, 18, .12);
  background: var(--bg-color);
  color: var(--text-color);
}

.ps.active .ps-dot {
  background: var(--primary-color);
  border-color: var(--primary-color);
  color: #fff;
  box-shadow: 0 0 0 5px rgba(31, 79, 143, .15);
}

.ps.done .ps-dot {
  background: var(--dark-color);
  border-color: var(--dark-color);
  color: #fff;
}

.ps-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .5px;
  color: var(--text-color);
  white-space: nowrap;
}

.ps.active .ps-label {
  color: var(--primary-color);
}

.ps.done .ps-label {
  color: var(--dark-color);
}

.cart-section {
  padding: 60px 0 100px;
  background: var(--light-color);
}

.cart-layout {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 32px;
  align-items: flex-start;
}

.col-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
  gap: 16px;
  flex-wrap: wrap;
}

.col-title {
  font-family: var(--heading-font);
  font-size: 22px;
  font-weight: 900;
  color: var(--dark-color);
  letter-spacing: -.5px;
}

.col-count {
  font-size: 13px;
  color: var(--text-color);
  font-weight: 500;
}

.col-count strong {
  color: var(--primary-color);
  font-family: var(--heading-font);
  font-weight: 800;
}

.clear-link {
  font-size: 13px;
  font-weight: 700;
  color: var(--text-color);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: color .3s;
  cursor: pointer;
}

.clear-link:hover {
  color: #ff0000;
}

.clear-link i {
  font-size: 11px;
}

/* CART ITEM CARD */

.cart-item {
  background: var(--white-color);
  border-radius: var(--border-radius);
  border: 1.5px solid rgba(18, 18, 18, .08);
  overflow: hidden;
  margin-bottom: 16px;
  box-shadow: 0 2px 16px rgba(18, 18, 18, .05);
  transition: transform .35s cubic-bezier(.25, .46, .45, .94), box-shadow .35s cubic-bezier(.25, .46, .45, .94), border-color .3s;
}

.cart-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(18, 18, 18, .12);
  border-color: rgba(31, 79, 143, .2);
}

.cart-item:last-child {
  margin-bottom: 0;
}

.ci-bar {
  height: 4px;
  background: linear-gradient(90deg, var(--primary-color), rgba(31, 79, 143, .25));
}

/* item inner */

.ci-body {
  display: grid;
  grid-template-columns: 140px 1fr auto;
  gap: 24px;
  padding: 22px 24px;
  align-items: center;
}

/* image */

.ci-img-wrap {
  position: relative;
  width: 140px;
  height: 120px;
  border-radius: 14px;
  overflow: hidden;
  flex-shrink: 0;
}

.ci-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s cubic-bezier(.25, .46, .45, .94);
}

.cart-item:hover .ci-img-wrap img {
  transform: scale(1.06);
}

.ci-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(18, 18, 18, .35) 0%, transparent 50%);
}

/* badge on image */

.ci-badge {
  position: absolute;
  top: 8px;
  left: 8px;
  background: var(--primary-color);
  color: #fff;
  font-family: var(--body-font);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 100px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 2;
}

.ci-cat {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--primary-color);
  margin-bottom: 5px;
}

.ci-name {
  font-family: var(--heading-font);
  font-size: 18px;
  font-weight: 800;
  color: var(--dark-color);
  line-height: 1.2;
  margin-bottom: 6px;
  letter-spacing: -.3px;
}

.ci-meta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 14px;
}

.ci-meta-item {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  font-weight: 600;
  color: var(--text-color);
}

.ci-meta-item i {
  color: var(--primary-color);
  font-size: 10px;
}

/* inline tags */

.ci-tags {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}

.ci-tag {
  font-size: 10px;
  font-weight: 600;
  color: var(--text-color);
  background: var(--light-color);
  border: 1px solid rgba(18, 18, 18, .08);
  padding: 3px 10px;
  border-radius: 100px;
}

.ci-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  min-width: 120px;
}

.ci-price {
  font-family: var(--heading-font);
  font-size: 26px;
  font-weight: 900;
  color: var(--dark-color);
  line-height: 1;
  letter-spacing: -1px;
  text-align: right;
}

.ci-price sup {
  font-size: 14px;
  color: var(--primary-color);
  font-weight: 700;
  vertical-align: super;
  line-height: 0;
}

.ci-price-was {
  font-size: 12px;
  color: #bbb;
  text-decoration: line-through;
  font-weight: 500;
  text-align: right;
  margin-top: 2px;
}

.ci-price-save {
  font-size: 11px;
  font-weight: 700;
  color: #16a34a;
  background: rgba(34, 197, 94, .1);
  border: 1px solid rgba(34, 197, 94, .2);
  padding: 3px 10px;
  border-radius: 100px;
  text-align: right;
}

.ci-qty-wrap {
  display: flex;
  align-items: center;
  background: var(--light-color);
  border: 1.5px solid rgba(18, 18, 18, .1);
  border-radius: 100px;
  overflow: hidden;
}

.ci-qty-btn {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  font-size: 16px;
  color: var(--dark-color);
  background: none;
  border: none;
  transition: color .25s;
}

.ci-qty-btn:hover {
  color: var(--primary-color);
}

.ci-qty-num {
  font-family: var(--heading-font);
  font-size: 15px;
  font-weight: 900;
  color: var(--dark-color);
  min-width: 32px;
  text-align: center;
}

/* remove button */

.ci-remove {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  font-weight: 700;
  color: var(--text-color);
  background: none;
  border: none;
  cursor: pointer;
  transition: color .25s;
  text-decoration: none;
}

.ci-remove:hover {
  color: #ff0000;
}

.ci-remove i {
  font-size: 11px;
}

/* PROMO CODE INPUT ROW */

.promo-row {
  display: flex;
  gap: 12px;
  margin-top: 24px;
  align-items: stretch;
}

.promo-input-wrap {
  flex: 1;
  position: relative;
}

.promo-input-wrap i {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: rgba(18, 18, 18, .3);
  font-size: 14px;
  pointer-events: none;
}

.promo-input {
  width: 100%;
  padding: 14px 18px 14px 44px;
  border: 1.5px solid rgba(18, 18, 18, .1);
  border-radius: 14px;
  background: var(--white-color);
  font-family: var(--body-font);
  font-size: 14px;
  color: var(--dark-color);
  outline: none;
  transition: border-color .3s, box-shadow .3s;
}

.promo-input::placeholder {
  color: rgba(18, 18, 18, .3);
}

.promo-input:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 4px rgba(31, 79, 143, .1);
}

.promo-apply {
  padding: 14px 26px;
  background: var(--dark-color);
  color: var(--white-color);
  border: none;
  border-radius: 14px;
  font-family: var(--heading-font);
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: background .3s;
  white-space: nowrap;
  text-decoration: none;
  display: flex;
  align-items: center;
}

.promo-apply:hover {
  background: var(--primary-color);
  color: var(--white-color);
}

/* applied promo chip */

.promo-applied {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 12px;
  background: rgba(34, 197, 94, .08);
  border: 1px solid rgba(34, 197, 94, .25);
  border-radius: 12px;
  padding: 10px 16px;
}

.pa-icon {
  color: #16a34a;
  font-size: 14px;
}

.pa-code {
  font-family: var(--heading-font);
  font-size: 14px;
  font-weight: 800;
  color: #15803d;
  letter-spacing: 1px;
}

.pa-desc {
  font-size: 12.5px;
  color: #16a34a;
  font-weight: 600;
}

.pa-remove {
  margin-left: auto;
  font-size: 12px;
  font-weight: 700;
  color: #16a34a;
  cursor: pointer;
  text-decoration: none;
}

.pa-remove:hover {
  color: #e11d48;
}

/* CONTINUE SHOPPING LINK */

.continue-link {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 28px;
  font-family: var(--heading-font);
  font-size: 14px;
  font-weight: 700;
  color: var(--dark-color);
  text-decoration: none;
  transition: color .3s;
  width: fit-content;
}

.continue-link i {
  font-size: 12px;
  transition: transform .3s;
}

.continue-link:hover {
  color: var(--primary-color);
}

.continue-link:hover i {
  transform: translateX(-4px);
}

/* TRUST ROW (below items) */

.trust-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 28px;
}

.trust-card {
  background: var(--white-color);
  border-radius: 16px;
  padding: 18px 16px;
  text-align: center;
  border: 1px solid rgba(18, 18, 18, .07);
  box-shadow: 0 2px 10px rgba(18, 18, 18, .04);
  transition: transform .3s cubic-bezier(.25, .46, .45, .94), box-shadow .3s, border-color .3s;
}

.trust-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 28px rgba(18, 18, 18, .1);
  border-color: rgba(31, 79, 143, .2);
}

.tc-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(31, 79, 143, .08);
  border: 1px solid rgba(31, 79, 143, .18);
  display: grid;
  place-items: center;
  margin: 0 auto 10px;
  font-size: 18px;
  color: var(--primary-color);
  transition: all .3s;
}

.trust-card:hover .tc-icon {
  background: var(--primary-color);
  color: #fff;
  transform: rotate(-6deg) scale(1.08);
}

.tc-title {
  font-family: var(--heading-font);
  font-size: 13px;
  font-weight: 800;
  color: var(--dark-color);
  line-height: 1.3;
}

.tc-sub {
  font-size: 11px;
  color: var(--text-color);
  margin-top: 3px;
  line-height: 1.5;
}

/* ORDER SUMMARY (RIGHT) */

.order-summary {
  position: sticky;
  top: 90px;
}

/* header card — dark */

.os-header {
  background: var(--dark-color);
  border-radius: var(--border-radius) var(--border-radius) 0 0;
  padding: 24px 28px;
  display: flex;
  align-items: center;
  gap: 14px;
  position: relative;
  overflow: hidden;
}

.os-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(31, 79, 143, .15);
  border: 1px solid rgba(31, 79, 143, .28);
  display: grid;
  place-items: center;
  font-size: 18px;
  color: var(--primary-color);
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}

.os-title {
  font-family: var(--heading-font);
  font-size: 16px;
  font-weight: 900;
  color: var(--white-color);
  letter-spacing: -.2px;
  position: relative;
  z-index: 1;
}

.os-sub {
  font-size: 11px;
  color: rgba(255, 255, 255, .35);
  font-weight: 500;
  margin-top: 1px;
  position: relative;
  z-index: 1;
}

/* body */

.os-body {
  background: var(--white-color);
  border: 1.5px solid rgba(18, 18, 18, .08);
  border-top: none;
  border-radius: 0 0 var(--border-radius) var(--border-radius);
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(18, 18, 18, .08);
}

/* line item rows */

.os-rows {
  padding: 8px 0;
}

.os-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  padding: 13px 28px;
  border-bottom: 1px solid rgba(18, 18, 18, .05);
}

.os-row:last-child {
  border-bottom: none;
}

.os-row-product {
  background: rgba(31, 79, 143, .03);
  border-bottom: 1px solid rgba(31, 79, 143, .07);
}

.or-name {
  font-family: var(--heading-font);
  font-size: 14px;
  font-weight: 700;
  color: var(--dark-color);
  line-height: 1.3;
}

.or-detail {
  font-size: 11.5px;
  color: var(--text-color);
  margin-top: 2px;
  font-weight: 500;
}

.or-price {
  font-family: var(--heading-font);
  font-size: 15px;
  font-weight: 800;
  color: var(--dark-color);
  white-space: nowrap;
  text-align: right;
}

/* subtotal / discount / shipping / total rows */

.os-calcs {
  padding: 0;
}

.os-calc-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 28px;
  border-bottom: 1px solid rgba(18, 18, 18, .05);
}

.os-calc-row:last-child {
  border-bottom: none;
}

.oc-key {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-color);
  display: flex;
  align-items: center;
  gap: 7px;
}

.oc-key i {
  color: var(--primary-color);
  font-size: 11px;
}

.oc-val {
  font-family: var(--heading-font);
  font-size: 14px;
  font-weight: 700;
  color: var(--dark-color);
}

.oc-val.green {
  color: #16a34a;
}

.oc-val.orange {
  color: var(--primary-color);
}

/* divider */

.os-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(31, 79, 143, .3), transparent);
  margin: 4px 28px;
}

/* total block */

.os-total-block {
  background: var(--dark-color);
  padding: 20px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  position: relative;
  overflow: hidden;
}

.otb-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .4);
  position: relative;
  z-index: 1;
}

.otb-val {
  font-family: var(--heading-font);
  font-size: 40px;
  font-weight: 900;
  color: var(--white-color);
  line-height: 1;
  letter-spacing: -2px;
  position: relative;
  z-index: 1;
}

.otb-val sup {
  font-size: 20px;
  color: var(--primary-color);
  font-weight: 700;
  vertical-align: super;
  line-height: 0;
}

.otb-save-note {
  font-size: 11px;
  color: rgba(255, 255, 255, .35);
  margin-top: 4px;
  position: relative;
  z-index: 1;
}

.otb-save-note strong {
  color: rgba(34, 197, 94, .7);
}

/* delivery note */

.os-delivery-note {
  padding: 14px 28px;
  background: rgba(34, 197, 94, .05);
  border-top: 1px solid rgba(34, 197, 94, .12);
  display: flex;
  align-items: center;
  gap: 10px;
}

.odn-icon {
  font-size: 16px;
  color: #16a34a;
  flex-shrink: 0;
}

.odn-text {
  font-size: 12.5px;
  color: #16a34a;
  font-weight: 600;
  line-height: 1.5;
}

.odn-text span {
  font-weight: 800;
}

/* checkout button area */

.os-cta {
  padding: 20px 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.os-cta .btn-default {
  width: 100%;
  justify-content: center;
  font-size: 16px;
  padding: 18px 60px 18px 24px;
}

.os-cta .btn-outline {
  width: 100%;
  justify-content: center;
}

/* payment icons */

.os-payment {
  padding: 14px 28px;
  border-top: 1px solid rgba(18, 18, 18, .06);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}

.pay-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-color);
}

.pay-icons {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  align-items: center;
}

.pay-icon {
  background: var(--light-color);
  border: 1px solid rgba(18, 18, 18, .1);
  border-radius: 8px;
  padding: 5px 10px;
  font-size: 18px;
  color: var(--dark-color);
  display: flex;
  align-items: center;
}

/* RECENTLY VIEWED */

.recently-title {
  font-family: var(--heading-font);
  font-size: 15px;
  font-weight: 800;
  color: var(--dark-color);
  margin-bottom: 14px;
  letter-spacing: -.2px;
}

.rv-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.rv-item {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 12px;
  align-items: center;
  padding: 12px;
  background: var(--white-color);
  border-radius: 14px;
  border: 1px solid rgba(18, 18, 18, .07);
  transition: all .25s;
  text-decoration: none;
}

.rv-item:hover {
  border-color: rgba(31, 79, 143, .2);
  transform: translateX(4px);
  box-shadow: 0 4px 16px rgba(18, 18, 18, .08);
}

.rv-img {
  width: 64px;
  height: 56px;
  border-radius: 10px;
  overflow: hidden;
  flex-shrink: 0;
}

.rv-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.rv-cat {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--primary-color);
  margin-bottom: 2px;
}

.rv-name {
  font-family: var(--heading-font);
  font-size: 13px;
  font-weight: 700;
  color: var(--dark-color);
  line-height: 1.25;
}

.rv-price {
  font-family: var(--heading-font);
  font-size: 13px;
  font-weight: 800;
  color: var(--primary-color);
  margin-top: 2px;
}

/* btn-outline — used in cart order summary CTA */

.btn-outline {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 15px;
  font-weight: 700;
  line-height: 1em;
  text-transform: capitalize;
  background: transparent;
  color: var(--dark-color);
  border: 2px solid rgba(18, 18, 18, .15);
  border-radius: 100px;
  padding: 15px 24px;
  transition: all 0.3s ease;
  text-decoration: none;
}

.btn-outline:hover {
  background: var(--dark-color);
  border-color: var(--dark-color);
  color: #fff;
}

.os-recently-viewed {
  padding: 18px 28px 24px;
  border-top: 1px solid rgba(18, 18, 18, .06);
}

.ci-badge-dark {
  background: var(--dark-color);
}

.ci-badge-green {
  background: #15803d;
}

.ci-price-mobile {
  display: none;
}

.ci-price-sm {
  font-size: 20px;
}

.otb-right {
  text-align: right;
}

.ci-price-mobile-right {
  display: flex;
  align-items: center;
  gap: 14px;
}

/* ====================================
   CHECKOUT PAGE
====================================== */

.checkout-section {
  background: var(--bg-color);
}

.checkout-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 420px;
  gap: 36px;
  align-items: flex-start;
  width: 100%;
}

.checkout-forms-col {
  min-width: 0;
  width: 100%;
  overflow: hidden;
}

/* CO BLOCK */

.co-block {
  background: var(--white-color);
  border-radius: 20px;
  border: 1px solid rgba(18, 18, 18, .08);
  overflow: hidden;
  margin-bottom: 24px;
  box-shadow: 0 2px 20px rgba(18, 18, 18, .06);
  transition: box-shadow .3s ease, border-color .3s ease;
  width: 100%;
  box-sizing: border-box;
}

.co-block:hover {
  box-shadow: 0 8px 40px rgba(18, 18, 18, .1);
  border-color: rgba(31, 79, 143, .15);
}

.co-block__head {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 22px 28px;
  border-bottom: 1px solid rgba(18, 18, 18, .07);
  background: linear-gradient(135deg, rgba(31, 79, 143, .03) 0%, transparent 60%);
  position: relative;
}

.co-block__num {
  font-family: var(--heading-font);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 2px;
  color: var(--primary-color);
  background: rgba(31, 79, 143, .1);
  border: 1px solid rgba(31, 79, 143, .2);
  border-radius: 8px;
  padding: 5px 10px;
  flex-shrink: 0;
}

.co-block__title {
  font-family: var(--heading-font);
  font-size: 17px;
  font-weight: 800;
  color: var(--dark-color);
  letter-spacing: -.2px;
}

.co-block__sub {
  font-size: 12px;
  color: var(--text-color);
  margin-top: 2px;
}

.co-block__icon {
  margin-left: auto;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: rgba(31, 79, 143, .08);
  border: 1px solid rgba(31, 79, 143, .15);
  display: grid;
  place-items: center;
  font-size: 16px;
  color: var(--primary-color);
  flex-shrink: 0;
}

.co-block__body {
  padding: 28px;
}

/* FIELDS */

.co-field {
  margin-bottom: 18px;
}

.co-field:last-child {
  margin-bottom: 0;
}

.co-field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 18px;
  width: 100%;
  box-sizing: border-box;
}

.co-field-row--3 {
  grid-template-columns: 1fr 1fr 1fr;
}

.co-label {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: var(--dark-color);
  opacity: .65;
  margin-bottom: 8px;
}

.co-label i {
  color: var(--primary-color);
  font-size: 10px;
}

.co-input-wrap {
  position: relative;
}

.co-input {
  width: 100%;
  max-width: 100%;
  padding: 13px 16px;
  background: var(--light-color);
  border: 1.5px solid rgba(18, 18, 18, .1);
  border-radius: 12px;
  font-family: var(--body-font);
  font-size: 14px;
  font-weight: 500;
  color: var(--dark-color);
  outline: none;
  transition: border-color .3s, background .3s, box-shadow .3s;
  -webkit-appearance: none;
  box-sizing: border-box;
}

.co-input::placeholder {
  color: rgba(18, 18, 18, .28);
}

.co-input:focus {
  border-color: var(--primary-color);
  background: rgba(31, 79, 143, .03);
  box-shadow: 0 0 0 4px rgba(31, 79, 143, .1);
}

.co-select {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23555' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
}

.co-textarea {
  resize: none;
  height: 90px;
  line-height: 1.6;
}

/* DELIVERY OPTIONS */

.co-delivery-options {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.co-delivery-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 20px;
  border-radius: 14px;
  border: 1.5px solid rgba(18, 18, 18, .1);
  background: var(--light-color);
  cursor: pointer;
  transition: all .25s ease;
  position: relative;
}

.co-delivery-card:hover {
  border-color: rgba(31, 79, 143, .3);
  background: rgba(31, 79, 143, .03);
}

.co-delivery-card.active {
  border-color: var(--primary-color);
  background: rgba(31, 79, 143, .05);
  box-shadow: 0 4px 20px rgba(31, 79, 143, .12);
}

.co-dc-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(31, 79, 143, .1);
  border: 1px solid rgba(31, 79, 143, .2);
  display: grid;
  place-items: center;
  font-size: 17px;
  color: var(--primary-color);
  flex-shrink: 0;
  transition: background .25s, color .25s;
}

.co-delivery-card.active .co-dc-icon {
  background: var(--primary-color);
  color: #fff;
  border-color: var(--primary-color);
}

.co-dc-body {
  flex: 1;
}

.co-dc-title {
  font-family: var(--heading-font);
  font-size: 15px;
  font-weight: 700;
  color: var(--dark-color);
}

.co-dc-desc {
  font-size: 12px;
  color: var(--text-color);
  margin-top: 2px;
}

.co-dc-price {
  font-family: var(--heading-font);
  font-size: 16px;
  font-weight: 800;
  color: var(--dark-color);
  flex-shrink: 0;
}

.co-dc-price.free {
  color: #16a34a;
}

.co-dc-check {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: 1.5px solid rgba(18, 18, 18, .15);
  display: grid;
  place-items: center;
  font-size: 10px;
  color: transparent;
  flex-shrink: 0;
  transition: all .25s ease;
}

.co-delivery-card.active .co-dc-check {
  background: var(--primary-color);
  border-color: var(--primary-color);
  color: #fff;
}

/* PAYMENT TABS */

.co-pay-tabs {
  display: flex;
  gap: 8px;
  margin-bottom: 24px;
  background: var(--light-color);
  border-radius: 14px;
  padding: 6px;
}

.co-pay-tab {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 11px 16px;
  border-radius: 10px;
  border: none;
  background: transparent;
  font-family: var(--body-font);
  font-size: 13px;
  font-weight: 600;
  color: var(--text-color);
  cursor: pointer;
  transition: all .25s ease;
  white-space: nowrap;
}

.co-pay-tab:hover {
  color: var(--primary-color);
}

.co-pay-tab.active {
  background: var(--white-color);
  color: var(--dark-color);
  box-shadow: 0 2px 12px rgba(18, 18, 18, .1);
}

.co-pay-panel {
  display: none;
}

.co-pay-panel.active {
  display: block;
  animation: tabIn .3s ease;
}

/* CARD VISUAL */

.co-card-visual {
  background: var(--dark-color);
  border-radius: 16px;
  padding: 24px 28px;
  margin-bottom: 24px;
  position: relative;
  overflow: hidden;
  min-height: 140px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 0 12px 40px rgba(0, 0, 0, .3);
}

.co-card-chip {
  width: 36px;
  height: 28px;
  border-radius: 6px;
  background: linear-gradient(135deg, #d4a843, #f0c060);
  position: relative;
  z-index: 1;
}

.co-card-chip::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 1px;
  background: rgba(0, 0, 0, .2);
  transform: translateY(-50%);
}

.co-card-chip::after {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 1px;
  background: rgba(0, 0, 0, .2);
  transform: translateX(-50%);
}

.co-card-number {
  font-family: var(--heading-font);
  font-size: 18px;
  font-weight: 700;
  color: rgba(255, 255, 255, .9);
  letter-spacing: 3px;
  position: relative;
  z-index: 1;
}

.co-card-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  z-index: 1;
}

.co-card-holder {
  font-size: 12px;
  font-weight: 700;
  color: rgba(255, 255, 255, .6);
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.co-card-exp {
  font-size: 13px;
  font-weight: 700;
  color: rgba(255, 255, 255, .7);
  letter-spacing: 1px;
}

.co-card-brand {
  position: absolute;
  bottom: 40px;
  right: 24px;
  font-size: 36px;
  color: rgba(255, 255, 255, .7);
  z-index: 1;
}

/* card number input with icons */

.co-input-card {
  position: relative;
}

.co-input-card .co-input {
  padding-right: 110px;
}

.co-card-icons {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  gap: 4px;
  font-size: 20px;
  color: rgba(18, 18, 18, .25);
}

/* SAVE CARD CHECKBOX */

.co-save-card {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-color);
  margin-top: 16px;
  user-select: none;
}

.co-save-card input {
  display: none;
}

.co-save-card__box {
  width: 20px;
  height: 20px;
  border-radius: 6px;
  border: 1.5px solid rgba(18, 18, 18, .2);
  background: var(--light-color);
  flex-shrink: 0;
  display: grid;
  place-items: center;
  transition: all .25s ease;
}

.co-save-card input:checked ~ .co-save-card__box {
  background: var(--primary-color);
  border-color: var(--primary-color);
}

.co-save-card input:checked ~ .co-save-card__box::after {
  content: '\f00c';
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  font-size: 10px;
  color: #fff;
}

/* ALT PAY */

.co-alt-pay {
  text-align: center;
  padding: 32px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.co-alt-pay__icon {
  font-size: 56px;
  color: var(--primary-color);
}

.co-alt-pay p {
  font-size: 14px;
  color: var(--text-color);
  max-width: 320px;
  line-height: 1.7;
  margin: 0;
}

/* PLACE ORDER */

.co-place-order {
  margin-top: 20px;
}

.co-place-btn {
  width: 80%;
  padding: 18px 24px;
  background: var(--primary-color);
  color: #fff;
  border: none;
  border-radius: 14px;
  font-family: var(--heading-font);
  font-size: 17px;
  font-weight: 800;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: background .3s ease, box-shadow .3s ease, transform .2s ease;
  letter-spacing: -.2px;
  line-height: 1.2;
  text-align: center;
  margin: 0 auto;
}

.co-place-btn i, .co-place-btn span {
  position: relative;
  z-index: 1;
}

.co-place-btn:hover {
  background: var(--dark-color);
  transform: translateY(-2px);
}

.co-place-btn:active {
  transform: translateY(0);
}

.co-place-btn i {
  font-size: 15px;
  flex-shrink: 0;
}

.co-place-note {
  text-align: center;
  font-size: 12px;
  color: var(--text-color);
  margin-top: 10px;
  margin-bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.co-place-note i {
  color: #16a34a;
  font-size: 11px;
}

/* ==========================
   BLOG PAGE
* ============================ */

/* Featured Story */

.blog-page .featured-section {
  padding: 48px 0 0;
  background: var(--bg-color);
}

.blog-page .featured-card {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  min-height: 520px;
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid rgba(18, 18, 18, .08);
  box-shadow: 0 8px 48px rgba(18, 18, 18, .12);
  transition: box-shadow .4s cubic-bezier(.25, .46, .45, .94), transform .4s cubic-bezier(.25, .46, .45, .94);
}

.blog-page .featured-card:hover {
  box-shadow: 0 24px 80px rgba(18, 18, 18, .18);
  /*transform: translateY(-4px);*/
}

.blog-page .fc-img {
  position: relative;
  min-height: 520px;
  overflow: hidden;
}

.blog-page .fc-img img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(.72) saturate(1.08);
  transition: transform .8s cubic-bezier(.25, .46, .45, .94), filter .45s ease;
}

.blog-page .featured-card:hover .fc-img img {
  transform: scale(1.05);
  filter: brightness(.82) saturate(1.15);
}

.blog-page .fc-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(18, 18, 18, .5) 0%, transparent 55%), linear-gradient(to right, rgba(18, 18, 18, .68) 0%, transparent 62%);
  z-index: 1;
}

.blog-page .fc-img::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 4px;
  background: var(--primary-color);
  z-index: 3;
}

.blog-page .fc-issue {
  position: absolute;
  top: 22px;
  left: 22px;
  z-index: 4;
  padding: 7px 14px;
  border-radius: 100px;
  border: 1px solid rgba(255, 255, 255, .12);
  background: rgba(18, 18, 18, .5);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  font-family: var(--heading-font);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .56);
}

.blog-page .fc-readtime {
  position: absolute;
  left: 22px;
  bottom: 100px;
  z-index: 4;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 6px 14px;
  border-radius: 100px;
  border: 1px solid rgba(255, 255, 255, .12);
  background: rgba(18, 18, 18, .58);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  font-family: var(--body-font);
  font-size: 12px;
  font-weight: 600;
  color: rgba(255, 255, 255, .72);
}

.blog-page .fc-readtime i {
  color: var(--primary-color);
  font-size: 11px;
}

.blog-page .fc-img-content {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 3;
  padding: 26px 26px 30px;
  background: linear-gradient(to top, rgba(18, 18, 18, .9) 0%, transparent 100%);
}

.blog-page .fc-img-cat {
  margin-bottom: 6px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2.4px;
  text-transform: uppercase;
  color: var(--primary-color);
}

.blog-page .fc-img-title {
  font-family: var(--heading-font);
  font-size: 30px;
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -.4px;
  color: var(--white-color);
}

.blog-page .fc-body {
  position: relative;
  display: flex;
  align-items: center;
  background: var(--dark-color);
  padding: 52px;
  overflow: hidden;
}

.blog-page .fc-body::before {
  content: '';
  position: absolute;
  top: -60px;
  right: -60px;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(31, 79, 143, .16) 0%, transparent 70%);
}

.blog-page .fc-body::after {
  content: '';
  position: absolute;
  left: -36px;
  bottom: -36px;
  width: 130px;
  height: 130px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(31, 79, 143, .1) 0%, transparent 70%);
}

.blog-page .fc-inner {
  position: relative;
  z-index: 1;
}

.blog-page .fc-title {
  margin-bottom: 16px;
  font-family: var(--heading-font);
  font-size: 36px;
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -.8px;
  color: var(--white-color);
}

.blog-page .fc-excerpt {
  margin-bottom: 28px;
  font-size: 14.5px;
  line-height: 1.82;
  color: rgba(255, 255, 255, .48);
}

.blog-page .fc-meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 26px;
  padding-bottom: 22px;
  border-bottom: 1px solid rgba(255, 255, 255, .08);
}

.blog-page .fc-author {
  display: flex;
  align-items: center;
  gap: 10px;
}

.blog-page .fc-av {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid var(--primary-color);
  flex-shrink: 0;
}

.blog-page .fc-av img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog-page .fc-av-name {
  font-family: var(--heading-font);
  font-size: 13px;
  font-weight: 700;
  color: var(--white-color);
}

.blog-page .fc-av-role {
  font-size: 11px;
  color: rgba(255, 255, 255, .4);
}

.blog-page .fc-date-rt {
  margin-left: auto;
  text-align: right;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.5;
  color: rgba(255, 255, 255, .34);
}

.blog-page .fc-date-rt strong {
  display: block;
  font-family: var(--heading-font);
  font-weight: 700;
  color: rgba(255, 255, 255, .56);
}

.blog-page .fc-tags-list {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.blog-page .fc-tag-pill {
  padding: 4px 12px;
  border-radius: 100px;
  border: 1px solid rgba(255, 255, 255, .1);
  background: rgba(255, 255, 255, .06);
  font-size: 11px;
  font-weight: 600;
  color: rgba(255, 255, 255, .55);
  transition: all .25s ease;
}

.blog-page .fc-tag-pill:hover {
  color: var(--primary-color);
  border-color: rgba(31, 79, 143, .35);
  background: rgba(31, 79, 143, .16);
}

/* Blog Layout */

.blog-page .blog-section {
  padding: 52px 0 100px;
  background: var(--bg-color);
}

.blog-page .blog-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 36px;
  align-items: flex-start;
}

.blog-page .articles-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.blog-page .article-card {
  display: flex;
  flex-direction: column;
  background: var(--white-color);
  border: 1.5px solid rgba(18, 18, 18, .08);
  border-radius: var(--border-radius);
  box-shadow: 0 2px 16px rgba(18, 18, 18, .05);
  overflow: hidden;
  transition: transform .38s cubic-bezier(.25, .46, .45, .94), box-shadow .38s cubic-bezier(.25, .46, .45, .94), border-color .3s ease;
}

.blog-page .article-card:hover {
  transform: translateY(-8px);
  border-color: rgba(31, 79, 143, .22);
  box-shadow: 0 20px 52px rgba(18, 18, 18, .13);
}

.blog-page .ac-bar {
  height: 4px;
  width: 100%;
  background: linear-gradient(90deg, var(--primary-color), rgba(31, 79, 143, .25));
}

.blog-page .ac-img {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.blog-page .ac-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: brightness(.9) saturate(1.05);
  transition: transform .6s cubic-bezier(.25, .46, .45, .94), filter .4s ease;
}

.blog-page .article-card:hover .ac-img img {
  transform: scale(1.07);
  filter: brightness(1) saturate(1.1);
}

.blog-page .ac-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(18, 18, 18, .46) 0%, transparent 56%);
  z-index: 1;
  pointer-events: none;
}

.blog-page .ac-badges {
  position: absolute;
  top: 12px;
  left: 12px;
  right: 12px;
  z-index: 4;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.blog-page .ac-badge {
  display: inline-flex;
  align-items: center;
  padding: 4px 11px;
  border-radius: 100px;
  font-family: var(--body-font);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.blog-page .badge-cat {
  color: var(--white-color);
  background: var(--primary-color);
  box-shadow: 0 4px 12px rgba(31, 79, 143, .38);
}

.blog-page .badge-new {
  color: var(--white-color);
  background: rgba(18, 18, 18, .82);
}

.blog-page .badge-hot {
  color: #b91c1c;
  border: 1px solid rgba(185, 28, 28, .18);
  background: rgba(255, 255, 255, .92);
}

.blog-page .badge-tips {
  color: #1e40af;
  border: 1px solid rgba(30, 64, 175, .2);
  background: rgba(255, 255, 255, .92);
}

.blog-page .ac-rt {
  position: absolute;
  right: 12px;
  bottom: 12px;
  z-index: 4;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px 10px;
  border-radius: 100px;
  font-family: var(--body-font);
  font-size: 10px;
  font-weight: 700;
  color: var(--dark-color);
  background: rgba(255, 255, 255, .92);
}

.blog-page .ac-rt i {
  font-size: 9px;
  color: var(--primary-color);
}

.blog-page .ac-body {
  padding: 20px 22px 22px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.blog-page .ac-cat {
  margin-bottom: 7px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2.4px;
  text-transform: uppercase;
  color: var(--primary-color);
}

.blog-page .ac-title {
  margin-bottom: 9px;
  font-family: var(--heading-font);
  font-size: 18px;
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: -.3px;
  color: var(--dark-color);
  transition: color .3s ease;
}

.blog-page .article-card:hover .ac-title {
  color: var(--primary-color);
}

.blog-page .ac-excerpt {
  margin-bottom: auto;
  /*padding-bottom: 16px;*/
  font-size: 13px;
  line-height: 1.75;
  color: var(--text-color);
}

.blog-page .ac-divider {
  height: 1px;
  margin-bottom: 14px;
  background: rgba(18, 18, 18, .08);
}

.blog-page .ac-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
}

.blog-page .ac-author {
  display: flex;
  align-items: center;
  gap: 9px;
}

.blog-page .ac-av {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid rgba(31, 79, 143, .3);
  flex-shrink: 0;
}

.blog-page .ac-av img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog-page .ac-av-name {
  font-family: var(--heading-font);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.2;
  color: var(--dark-color);
}

.blog-page .ac-av-date {
  font-size: 10px;
  color: var(--text-color);
}

.blog-page .article-card.wide {
  grid-column: span 2;
  flex-direction: row;
}

.blog-page .article-card.wide .ac-bar {
  display: none;
}

.blog-page .article-card.wide .ac-img {
  width: 340px;
  height: auto;
  flex-shrink: 0;
}

.blog-page .article-card.wide .ac-body {
  padding: 28px;
}

.blog-page .article-card.wide .ac-title {
  font-size: 22px;
}

.blog-page .article-card.dark-card {
  border-color: rgba(31, 79, 143, .16);
  background: var(--dark-color);
}

.blog-page .article-card.dark-card .ac-title, .blog-page .article-card.dark-card .ac-av-name {
  color: var(--white-color);
}

.blog-page .article-card.dark-card .ac-excerpt {
  color: rgba(255, 255, 255, .46);
}

.blog-page .article-card.dark-card .ac-divider {
  background: rgba(255, 255, 255, .08);
}

.blog-page .article-card.dark-card .ac-av-date, .blog-page .article-card.dark-card .ac-read-link {
  color: rgba(255, 255, 255, .62);
}

.blog-page .article-card.dark-card .ac-read-link:hover {
  color: var(--primary-color);
}

.blog-page .load-more-row {
  margin-top: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.blog-page .load-more-line {
  flex: 1;
  height: 1px;
  background: rgba(18, 18, 18, .12);
}

.blog-page .showing-count {
  white-space: nowrap;
  font-size: 12px;
  font-weight: 600;
  color: var(--text-color);
}

/* Sidebar */

.blog-page .blog-layout .sidebar {
  position: sticky;
  top: 90px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.blog-page .blog-layout .sb-card {
  background: var(--white-color);
  border: 1px solid rgba(18, 18, 18, .08);
  border-radius: var(--border-radius);
  box-shadow: 0 2px 16px rgba(18, 18, 18, .05);
  overflow: hidden;
}

.blog-page .blog-layout .sbc-head {
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 11px;
  background: var(--dark-color);
}

.blog-page .blog-layout .sbc-icon {
  width: 34px;
  height: 34px;
  border-radius: 9px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  font-size: 13px;
  color: var(--primary-color);
  border: 1px solid rgba(31, 79, 143, .25);
  background: rgba(31, 79, 143, .15);
}

.blog-page .blog-layout .sbc-title {
  font-family: var(--heading-font);
  font-size: 14px;
  font-weight: 800;
  color: var(--white-color);
}

.blog-page .blog-layout .sbc-sub {
  margin-top: 1px;
  font-size: 10px;
  color: rgba(255, 255, 255, .35);
}

.blog-page .blog-layout .sb-search {
  padding: 18px;
}

.blog-page .search-wrap {
  position: relative;
}

.blog-page .search-wrap i {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 14px;
  color: rgba(18, 18, 18, .32);
  pointer-events: none;
}

.blog-page .search-input {
  width: 100%;
  height: 46px;
  padding: 0 16px 0 42px;
  border-radius: 12px;
  border: 1.5px solid rgba(18, 18, 18, .1);
  outline: none;
  font-family: var(--body-font);
  font-size: 14px;
  color: var(--dark-color);
  background: var(--light-color);
  transition: all .3s ease;
}

.blog-page .search-input::placeholder {
  color: rgba(18, 18, 18, .35);
}

.blog-page .search-input:focus {
  background: var(--white-color);
  border-color: var(--primary-color);
  box-shadow: 0 0 0 4px rgba(31, 79, 143, .1);
}

.blog-page .blog-layout .pop-list, .blog-page .blog-layout .cat-list {
  padding: 12px 0;
}

.blog-page .blog-layout .pop-item {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 12px;
  align-items: center;
  padding: 12px 18px;
  border-bottom: 1px solid rgba(18, 18, 18, .05);
  color: inherit;
  text-decoration: none;
  transition: all .25s ease;
}

.blog-page .blog-layout .pop-item:last-child {
  border-bottom: 0;
}

.blog-page .blog-layout .pop-item:hover {
  background: rgba(31, 79, 143, .04);
}

.blog-page .blog-layout .pop-item:hover .pop-title {
  color: var(--primary-color);
}

.blog-page .blog-layout .pop-img {
  width: 64px;
  height: 52px;
  border-radius: 10px;
  overflow: hidden;
}

.blog-page .blog-layout .pop-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}

.blog-page .blog-layout .pop-item:hover .pop-img img {
  transform: scale(1.06);
}

.blog-page .blog-layout .pop-cat {
  margin-bottom: 3px;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--primary-color);
}

.blog-page .blog-layout .pop-title {
  font-family: var(--heading-font);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.3;
  color: var(--dark-color);
  transition: color .25s ease;
}

.blog-page .blog-layout .pop-date {
  margin-top: 3px;
  font-size: 11px;
  color: var(--text-color);
}

.blog-page .blog-layout .cat-list-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 12px 18px;
  border-bottom: 1px solid rgba(18, 18, 18, .05);
  text-decoration: none;
  color: inherit;
  transition: all .25s ease;
}

.blog-page .blog-layout .cat-list-item:last-child {
  border-bottom: 0;
}

.blog-page .blog-layout .cat-list-item:hover {
  background: rgba(31, 79, 143, .04);
}

.blog-page .blog-layout .cli-left {
  display: flex;
  align-items: center;
  gap: 10px;
}

.blog-page .blog-layout .cli-icon {
  width: 32px;
  height: 32px;
  border-radius: 9px;
  display: grid;
  place-items: center;
  font-size: 13px;
  color: var(--primary-color);
  border: 1px solid rgba(31, 79, 143, .16);
  background: rgba(31, 79, 143, .08);
  transition: all .25s ease;
}

.blog-page .blog-layout .cat-list-item:hover .cli-icon {
  color: var(--white-color);
  background: var(--primary-color);
  transform: rotate(-5deg);
}

.blog-page .blog-layout .cli-name {
  font-family: var(--heading-font);
  font-size: 13.5px;
  font-weight: 700;
  color: var(--dark-color);
  transition: color .25s ease;
}

.blog-page .blog-layout .cat-list-item:hover .cli-name, .blog-page .blog-layout .cat-list-item:hover .cli-arrow {
  color: var(--primary-color);
}

.blog-page .blog-layout .cli-count {
  padding: 3px 9px;
  border-radius: 100px;
  font-size: 11px;
  font-weight: 700;
  color: var(--text-color);
  background: rgba(18, 18, 18, .07);
}

.blog-page .blog-layout .cli-arrow {
  font-size: 11px;
  color: var(--text-color);
  transition: all .25s ease;
}

.blog-page .blog-layout .cat-list-item:hover .cli-arrow {
  transform: translateX(3px);
}

.blog-page .blog-layout .tags-cloud {
  padding: 16px 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.blog-page .blog-layout .tag-chip {
  padding: 6px 14px;
  border-radius: 100px;
  border: 1px solid rgba(18, 18, 18, .08);
  background: var(--light-color);
  font-size: 12px;
  font-weight: 600;
  color: var(--text-color);
  text-decoration: none;
  transition: all .25s ease;
}

.blog-page .blog-layout .tag-chip:hover {
  color: var(--white-color);
  border-color: var(--primary-color);
  background: var(--primary-color);
  transform: translateY(-2px);
}

.blog-page .blog-layout .ig-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4px;
  width: 100%;
  padding: 0;
  margin: 0;
  overflow: hidden;
  border-radius: 0 0 var(--border-radius) var(--border-radius);
}

.blog-page .blog-layout .ig-item {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  line-height: 0;
}

.blog-page .blog-layout .ig-item img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: brightness(.86) saturate(.9);
  transition: transform .5s cubic-bezier(.25, .46, .45, .94), filter .4s ease;
}

.blog-page .blog-layout .ig-item:hover img {
  transform: scale(1.1);
  filter: brightness(1) saturate(1.1);
}

.blog-page .blog-layout .ig-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  background: rgba(18, 18, 18, .5);
  transition: opacity .3s ease;
}

.blog-page .blog-layout .ig-item:hover .ig-overlay {
  opacity: 1;
}

.blog-page .blog-layout .ig-overlay i {
  color: var(--white-color);
  font-size: 18px;
}

/* Newsletter */

.blog-page .newsletter-section {
  color: var(--dark-color);
}

.blog-page .newsletter-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 0 !important;
}

.blog-page .nl-inner {
  position: relative;
  z-index: 1;
}

.blog-page .nl-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.blog-page .nl-perks {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.blog-page .nl-form-card {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  padding: 36px;
  border: 1px solid var(--dark-color);
  background: var(--dark-color);
}

.blog-page .nl-form-inner {
  position: relative;
  z-index: 1;
}

.blog-page .nl-form-title {
  font-family: var(--heading-font);
  font-size: 26px;
  font-weight: 900;
  color: var(--white-color);
}

.blog-page .nl-form-sub {
  margin-bottom: 22px;
  font-size: 13px;
  color: rgba(255, 255, 255, .35);
}

.blog-page .nl-field {
  margin-bottom: 14px;
}

.blog-page .nl-field-label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 7px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--primary-color);
}

.blog-page .nl-field-label i {
  font-size: 11px;
  color: var(--primary-color);
}

.blog-page .nl-input {
  width: 100%;
  height: 46px;
  border-radius: 12px;
  border: 1.5px solid rgba(255, 255, 255, .12);
  background: rgba(255, 255, 255, .06);
  padding: 0 16px;
  font-family: var(--body-font);
  font-size: 14px;
  color: var(--white-color);
  outline: none;
  transition: all .3s ease;
}

.blog-page .nl-input::placeholder {
  color: rgba(255, 255, 255, .28);
}

.blog-page .nl-input:focus {
  border-color: var(--primary-color);
  background: rgba(31, 79, 143, .06);
  box-shadow: 0 0 0 4px rgba(31, 79, 143, .1);
}

.blog-page .nl-submit {
  width: 100%;
  height: 48px;
  border: 0;
  border-radius: 12px;
  cursor: pointer;
  margin-top: 6px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  font-family: var(--heading-font);
  font-size: 15px;
  font-weight: 700;
  color: var(--white-color);
  background: var(--primary-color);
  transition: all .3s ease;
}

.blog-page .nl-submit:hover {
  color: var(--primary-color);
  background: var(--white-color);
}

.blog-page .nl-privacy {
  margin-top: 12px;
  text-align: center;
  font-size: 11px;
  line-height: 1.5;
  color: var(--white-color);
}

.blog-page .nl-privacy a {
  color: var(--primary-color);
}

.blog-page .nl-readers {
  width: fit-content;
  margin-top: 24px;
  padding: 10px 18px;
  border-radius: 100px;
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1px solid var(--primary-color);
  background: var(--primary-color);
}

.blog-page .nl-avatars {
  display: flex;
  margin-right: 4px;
}

.blog-page .nl-av-sm {
  width: 28px;
  height: 28px;
  margin-left: -8px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  border: 2px solid var(--dark-color);
}

.blog-page .nl-av-sm:first-child {
  margin-left: 0;
}

.blog-page .nl-av-sm img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog-page .nl-reader-text {
  font-size: 12px;
  font-weight: 500;
  color: var(--white-color);
}

.blog-page .nl-reader-text strong {
  font-family: var(--heading-font);
  color: var(--dark-color);
}

/* ============================
   BLOG DETAIL PAGE
=============================== */

.article-section {
  padding: 72px 0 100px;
  background: var(--bg-color);
}

.art-intro-card {
  background: var(--dark-color);
  border-radius: 24px;
  padding: 36px 40px;
  margin-bottom: 48px;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(31, 79, 143, .2);
}

.art-intro-card::before {
  content: '';
  position: absolute;
  top: -40px;
  right: -40px;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(31, 79, 143, .2) 0%, transparent 70%);
  pointer-events: none;
}

.aic-inner {
  position: relative;
  z-index: 1;
}

.prose .lead-para::first-letter {
  float: left;
  font-family: var(--heading-font);
  font-size: 6em;
  font-weight: 900;
  line-height: .72;
  color: var(--primary-color);
  margin-right: 12px;
  margin-top: 8px;
  padding: 0 4px 0 0;
}

.prose h2 {
  font-family: var(--heading-font);
  font-size: 36px;
  font-weight: 900;
  color: var(--dark-color);
  letter-spacing: -1px;
  line-height: 1.1;
  margin: 52px 0 20px;
  padding-top: 52px;
  border-top: 2px solid rgba(18, 18, 18, .07);
  position: relative;
}

.prose h2::before {
  content: '';
  position: absolute;
  top: -2px;
  left: 0;
  width: 48px;
  height: 2px;
  background: var(--primary-color);
}

.prose h3 {
  font-family: var(--heading-font);
  font-size: 22px;
  font-weight: 800;
  color: var(--dark-color);
  letter-spacing: -.3px;
  margin: 36px 0 14px;
}

.prose strong {
  color: var(--dark-color);
  font-weight: 700;
}

.prose em {
  font-style: italic;
  color: var(--primary-color);
}

.prose ul {
  margin: 20px 0 28px 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.prose ul li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-family: var(--body-font);
  font-size: 17px;
  color: #444;
  line-height: 1.75;
}

.prose ul li::before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: 2px solid var(--primary-color);
  flex-shrink: 0;
  margin-top: 9px;
}

.prose ol {
  margin: 20px 0 28px 0;
  counter-reset: ol-counter;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.prose ol li {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  font-family: var(--body-font);
  font-size: 17px;
  color: #444;
  line-height: 1.75;
  counter-increment: ol-counter;
}

.prose ol li::before {
  content: counter(ol-counter);
  width: 30px;
  height: 30px;
  border-radius: 50%;
  flex-shrink: 0;
  background: var(--primary-color);
  color: #fff;
  font-family: var(--heading-font);
  font-size: 13px;
  font-weight: 900;
  display: grid;
  place-items: center;
  margin-top: 3px;
  box-shadow: 0 4px 12px rgba(31, 79, 143, .3);
}

/* QUOTE */

.article-body .pull-quote {
  margin: 48px 0;
  padding: 32px 36px;
  border-left: 5px solid var(--primary-color);
  background: rgba(31, 79, 143, .04);
  border-radius: 16px;
  position: relative;
}

.article-body .pull-quote::before {
  content: '“';
  position: absolute;
  top: 0px;
  left: 24px;
  font-family: var(--heading-font);
  font-size: 80px;
  color: var(--primary-color);
  line-height: 1;
  opacity: .4;
}

.article-body .pq-text {
  font-family: var(--heading-font);
  font-size: 26px;
  font-weight: 800;
  font-style: italic;
  color: var(--dark-color);
  line-height: 1.4;
  letter-spacing: -.3px;
  margin-bottom: 12px;
  position: relative;
  z-index: 1;
}

.article-body .pq-author {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--primary-color);
  display: flex;
  align-items: center;
  gap: 8px;
}

.article-body .pq-author::before {
  content: '—';
}

.article-body .inline-img {
  margin: 44px 0;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  height: 400px;
  box-shadow: 0 16px 56px rgba(18, 18, 18, .15);
}

.article-body .inline-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(.88) saturate(1.05);
  transition: transform .6s cubic-bezier(.25, .46, .45, .94);
}

.article-body .inline-img:hover img {
  transform: scale(1.03);
}

/* TAG ROW */

.art-tag-row {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  padding: 28px 0;
  border-top: 1px solid rgba(18, 18, 18, .08);
  border-bottom: 1px solid rgba(18, 18, 18, .08);
  margin: 52px 0;
}

.atr-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-color);
}

.art-tag {
  font-size: 12px;
  font-weight: 600;
  color: var(--text-color);
  background: var(--light-color);
  border: 1px solid rgba(18, 18, 18, .1);
  padding: 6px 14px;
  border-radius: 100px;
  transition: all .25s;
}

.art-tag:hover {
  background: var(--primary-color);
  border-color: var(--primary-color);
  color: #fff;
}

/* AUTHOR BIO */

.author-bio {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 24px;
  background: var(--white-color);
  border-radius: 24px;
  padding: 28px;
  border: 1.5px solid rgba(18, 18, 18, .08);
  box-shadow: 0 4px 20px rgba(18, 18, 18, .06);
  margin-bottom: 48px;
  align-items: flex-start;
}

.ab-avatar {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid var(--primary-color);
  flex-shrink: 0;
}

.ab-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ab-tag {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--primary-color);
  margin-bottom: 6px;
}

.ab-name {
  font-family: var(--heading-font);
  font-size: 20px;
  font-weight: 900;
  color: var(--dark-color);
  letter-spacing: -.3px;
  margin-bottom: 8px;
}

.ab-text {
  font-size: 14px;
  color: var(--text-color);
  line-height: 1.75;
  margin-bottom: 14px;
}

.ab-socials {
  display: flex;
  gap: 8px;
}

.ab-social {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1.5px solid rgba(18, 18, 18, .12);
  background: var(--light-color);
  display: grid;
  place-items: center;
  font-size: 13px;
  color: var(--text-color);
  transition: all .25s;
}

.ab-social:hover {
  background: var(--primary-color);
  border-color: var(--primary-color);
  color: #fff;
  transform: translateY(-2px);
}

/* SHARE ROW */

.share-row {
  display: flex;
  align-items: center;
  /*gap: 12px;*/
  padding: 22px 0;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

.sr-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--dark-color);
}

.sr-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border-radius: 100px;
  font-family: var(--heading-font);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .5px;
  border: 1.5px solid rgba(18, 18, 18, .12);
  color: var(--dark-color);
  background: var(--white-color);
  transition: all .25s;
}

.sr-btn:hover {
  border-color: var(--primary-color);
  color: var(--primary-color);
  background: rgba(31, 79, 143, .04);
}

.sr-btn i {
  font-size: 14px;
}

/* COMMENTS */

.comments-head {
  font-family: var(--heading-font);
  font-size: 24px;
  font-weight: 900;
  color: var(--dark-color);
  letter-spacing: -.5px;
  margin-bottom: 24px;
}

.comments-head span {
  color: var(--primary-color);
}

.comment-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 40px;
}

.comment-card {
  background: var(--white-color);
  border-radius: 18px;
  padding: 22px 24px;
  border: 1.5px solid rgba(18, 18, 18, .07);
  box-shadow: 0 2px 12px rgba(18, 18, 18, .05);
  transition: all .3s;
}

.comment-card:hover {
  border-color: rgba(31, 79, 143, .18);
  box-shadow: 0 8px 28px rgba(18, 18, 18, .1);
}

.cc-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
  gap: 10px;
  flex-wrap: wrap;
}

.cc-user {
  display: flex;
  align-items: center;
  gap: 12px;
}

.cc-av {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  border: 2px solid rgba(31, 79, 143, .3);
}

.cc-av img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cc-name {
  font-family: var(--heading-font);
  font-size: 14px;
  font-weight: 700;
  color: var(--dark-color);
}

.cc-date {
  font-size: 11px;
  color: var(--text-color);
}

.cc-stars {
  display: flex;
  gap: 2px;
}

.cc-stars i {
  color: #F59E0B;
  font-size: 11px;
}

.cc-text {
  font-size: 14px;
  color: var(--text-color);
  line-height: 1.8;
  margin: 0;
}

.cc-reply {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--heading-font);
  font-size: 12px;
  font-weight: 700;
  color: var(--text-color);
  margin-top: 10px;
  transition: color .25s;
}

.cc-reply:hover {
  color: var(--primary-color);
}

.cc-reply i {
  font-size: 10px;
}

/* comment form */

.comment-form {
  background: var(--white-color);
  border-radius: 22px;
  padding: 28px;
  border: 1.5px solid rgba(18, 18, 18, .08);
  box-shadow: 0 4px 20px rgba(18, 18, 18, .06);
}

.cf-title {
  font-family: var(--heading-font);
  font-size: 18px;
  font-weight: 900;
  color: var(--dark-color);
  letter-spacing: -.3px;
  margin-bottom: 20px;
}

.cf-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 14px;
}

.cf-field {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.cf-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--dark-color);
  opacity: .6;
  display: flex;
  align-items: center;
  gap: 5px;
}

.cf-label i {
  color: var(--primary-color);
  font-size: 11px;
}

.cf-input {
  padding: 12px 16px;
  background: var(--light-color);
  border: 1.5px solid rgba(18, 18, 18, .1);
  border-radius: 12px;
  font-family: var(--body-font);
  font-size: 14px;
  color: var(--dark-color);
  outline: none;
  transition: .3s;
}

.cf-input::placeholder {
  color: rgba(18, 18, 18, .3);
}

.cf-input:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 4px rgba(31, 79, 143, .1);
  background: #fff;
}

.cf-textarea {
  width: 100%;
  padding: 13px 16px;
  min-height: 110px;
  resize: none;
  background: var(--light-color);
  border: 1.5px solid rgba(18, 18, 18, .1);
  border-radius: 12px;
  font-family: var(--body-font);
  font-size: 14px;
  color: var(--dark-color);
  outline: none;
  transition: .3s;
  line-height: 1.7;
  margin-bottom: 14px;
}

.cf-textarea::placeholder {
  color: rgba(18, 18, 18, .3);
}

.cf-textarea:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 4px rgba(31, 79, 143, .1);
  background: #fff;
}

/* SIDEBAR */

.art-sidebar {
  position: sticky;
  top: 88px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* TABLE OF CONTENTS */

.toc-list {
  padding: 14px 0;
}

.toc-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 9px 18px;
  border-bottom: 1px solid rgba(18, 18, 18, .05);
  font-size: 13px;
  color: var(--text-color);
  font-weight: 600;
  transition: all .25s;
  text-decoration: none;
}

.toc-item:last-child {
  border-bottom: none;
}

.toc-item:hover {
  background: rgba(31, 79, 143, .05);
  color: var(--primary-color);
}

.toc-num {
  font-family: var(--heading-font);
  font-size: 11px;
  font-weight: 900;
  color: var(--primary-color);
  min-width: 20px;
  flex-shrink: 0;
  margin-top: 2px;
}

.toc-item.toc-active {
  background: rgba(31, 79, 143, .06);
  color: var(--primary-color);
}

.toc-item.toc-active .toc-num {
  color: var(--primary-color);
}

/* AUTHOR MINI */

.sb-author {
  padding: 20px;
}

.sba-av {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  border: 3px solid var(--primary-color);
  overflow: hidden;
  margin: 0 auto 14px;
  display: block !important;
}

.sba-av img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.sba-name {
  font-family: var(--heading-font);
  font-size: 15px;
  font-weight: 900;
  color: var(--dark-color);
  text-align: center;
  margin-bottom: 4px;
}

.sba-role {
  font-size: 11px;
  color: var(--text-color);
  text-align: center;
  margin-bottom: 10px;
}

.sba-text {
  font-size: 13px;
  color: var(--text-color);
  line-height: 1.7;
  text-align: center;
  margin-bottom: 14px;
}

.sba-socials {
  display: flex;
  justify-content: center;
  gap: 8px;
}

.sba-social {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1.5px solid rgba(18, 18, 18, .12);
  background: var(--light-color);
  display: grid;
  place-items: center;
  font-size: 12px;
  color: var(--text-color);
  transition: all .25s;
}

.sba-social:hover {
  background: var(--primary-color);
  border-color: var(--primary-color);
  color: #fff;
  transform: translateY(-2px);
}

/* RELATED in sidebar */

.sb-rel-list {
  padding: 12px 0;
}

.sbr-item {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 12px;
  align-items: center;
  padding: 11px 16px;
  border-bottom: 1px solid rgba(18, 18, 18, .05);
  transition: all .25s;
  text-decoration: none;
}

.sbr-item:last-child {
  border-bottom: none;
}

.sbr-item:hover {
  background: rgba(31, 79, 143, .04);
}

.sbr-item:hover .sbr-title {
  color: var(--primary-color);
}

.sbr-img {
  width: 64px;
  height: 52px;
  border-radius: 10px;
  overflow: hidden;
  flex-shrink: 0;
}

.sbr-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s;
}

.sbr-item:hover .sbr-img img {
  transform: scale(1.08);
}

.sbr-cat {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--primary-color);
  margin-bottom: 2px;
}

.sbr-title {
  font-family: var(--heading-font);
  font-size: 12px;
  font-weight: 700;
  color: var(--dark-color);
  line-height: 1.3;
  transition: color .25s;
}

.sbr-time {
  font-size: 10px;
  color: var(--text-color);
  margin-top: 2px;
}

/* NEWSLETTER */

.sb-nl {
  padding: 20px;
}

.sbnl-title {
  font-family: var(--heading-font);
  font-size: 15px;
  font-weight: 900;
  color: var(--dark-color);
  margin-bottom: 6px;
}

.sbnl-text {
  font-size: 13px;
  color: var(--text-color);
  line-height: 1.7;
  margin-bottom: 14px;
}

.sbnl-text strong {
  color: var(--dark-color);
}

.sbnl-input {
  width: 100%;
  padding: 11px 14px;
  background: var(--light-color);
  border: 1.5px solid rgba(18, 18, 18, .1);
  border-radius: 10px;
  font-family: var(--body-font);
  font-size: 13px;
  color: var(--dark-color);
  outline: none;
  transition: .3s;
  margin-bottom: 9px;
}

.sbnl-input::placeholder {
  color: rgba(18, 18, 18, .3);
}

.sbnl-input:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(31, 79, 143, .1);
  background: #fff;
}

.sbnl-btn {
  width: 100%;
  padding: 12px;
  border-radius: 10px;
  background: var(--primary-color);
  color: #fff;
  border: none;
  font-family: var(--heading-font);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .5px;
  cursor: pointer;
  transition: .3s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
}

.sbnl-btn:hover {
  background: var(--dark-color);
}

/* =================================
   GALLERY PAGE
==================================== */

/* CATEGORY FILTER */

.filter-section {
  background: var(--dark-color);
  padding: 36px 0 32px;
  border-bottom: 1px solid rgba(255, 255, 255, .06);
}

.filter-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.filter-pills {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  align-items: center;
}

.fp {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 10px 20px;
  border-radius: 100px;
  border: 1.5px solid rgba(255, 255, 255, .1);
  background: rgba(255, 255, 255, .04);
  font-family: var(--heading-font);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .5px;
  color: rgba(255, 255, 255, .55);
  transition: all .25s cubic-bezier(0.4, 0, 0.2, 1);
  white-space: nowrap;
}

.fp i {
  font-size: 12px;
  color: var(--primary-color);
}

.fp:hover {
  border-color: rgba(31, 79, 143, .4);
  color: var(--white-color);
  background: rgba(31, 79, 143, .08);
}

.fp.active {
  background: var(--primary-color);
  border-color: var(--primary-color);
  color: var(--white-color);
  box-shadow: 0 6px 20px rgba(31, 79, 143, .3);
}

.fp.active i {
  color: rgba(255, 255, 255, .8);
}

.fp-count {
  margin-left: 2px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .1);
  font-size: 9px;
  font-weight: 800;
  color: rgba(255, 255, 255, .6);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all .25s cubic-bezier(0.4, 0, 0.2, 1);
}

.fp.active .fp-count {
  background: rgba(255, 255, 255, .25);
  color: #fff;
}

.view-toggle {
  display: flex;
  gap: 6px;
}

.vt-btn {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  border: 1.5px solid var(--base-color);
  background: transparent;
  font-size: 15px;
  color: var(--base-color);
  display: grid;
  place-items: center;
  transition: all .25s cubic-bezier(0.4, 0, 0.2, 1);
}

.vt-btn.on {
  background: var(--primary-color);
  border-color: var(--primary-color);
  color: var(--white-color);
}

.vt-btn:hover:not(.on) {
  border-color: rgba(31, 79, 143, .35);
  color: var(--primary-color);
}

/* MOSAIC GALLERY GRID */

.gallery-section {
  background: var(--dark-color);
}

.mosaic {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: 120px;
  gap: 14px;
  margin-bottom: 14px;
}

.m-item.s1 {
  grid-column: 1/5;
  grid-row: 1/4;
}

.m-item.s2 {
  grid-column: 5/9;
  grid-row: 1/3;
}

.m-item.s3 {
  grid-column: 9/13;
  grid-row: 1/3;
}

.m-item.s4 {
  grid-column: 5/7;
  grid-row: 3/4;
}

.m-item.s5 {
  grid-column: 7/9;
  grid-row: 3/4;
}

.m-item.s6 {
  grid-column: 9/13;
  grid-row: 3/5;
}

.m-item.s7 {
  grid-column: 1/4;
  grid-row: 4/6;
}

.m-item.s8 {
  grid-column: 4/7;
  grid-row: 4/5;
}

.m-item.s9 {
  grid-column: 7/9;
  grid-row: 4/5;
}

.m-item.s10 {
  grid-column: 4/9;
  grid-row: 5/7;
}

.m-item.s11 {
  grid-column: 9/13;
  grid-row: 5/7;
}

.m-item.s12 {
  grid-column: 1/4;
  grid-row: 6/8;
}

.m-item.s13 {
  grid-column: 4/6;
  grid-row: 7/8;
}

.m-item.s14 {
  grid-column: 6/9;
  grid-row: 7/8;
}

.m-item.s15 {
  grid-column: 9/13;
  grid-row: 7/9;
}

.m-item.s16 {
  grid-column: 1/5;
  grid-row: 8/10;
}

.m-item.s17 {
  grid-column: 5/9;
  grid-row: 8/9;
}

.m-item.s18 {
  grid-column: 5/9;
  grid-row: 9/11;
}

.m-item.s19 {
  grid-column: 9/13;
  grid-row: 9/11;
}

.m-item.s20 {
  grid-column: 1/5;
  grid-row: 10/12;
}

/* GALLERY ITEM */

.m-item {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  background: var(--base-color);
}

.m-item img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1), filter 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  filter: brightness(.78) saturate(.95);
  will-change: transform, filter;
}

.m-item img::after {
  content: '';
  position: absolute;
  width: 200%;
  height: 0%;
  left: 50%;
  top: 50%;
  background: rgba(255, 255, 255, .18);
  transform: translate(-50%, -50%) rotate(-45deg);
  pointer-events: none;
  z-index: 5;
  transition: height 0.6s cubic-bezier(0.4, 0, 0.2, 1), background 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: height, background;
}

.m-item:hover img {
  transform: scale(1.09);
  filter: brightness(.95) saturate(1.15);
}

.m-item:hover img::after {
  height: 250%;
  background: transparent;
}

.m-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(18, 18, 18, .85) 0%, transparent 55%);
  z-index: 2;
  opacity: 0;
  transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: opacity;
}

.m-item:hover .m-overlay {
  opacity: 1;
}

.m-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 3;
  padding: 18px 18px;
  transform: translateY(10px);
  opacity: 0;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  will-change: transform, opacity;
}

.m-item:hover .m-info {
  transform: translateY(0);
  opacity: 1;
}

.m-cat {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--primary-color);
  margin-bottom: 4px;
}

.m-title {
  font-family: var(--heading-font);
  font-size: 16px;
  font-weight: 800;
  color: var(--white-color);
  line-height: 1.2;
}

.m-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 6px;
}

.m-meta-item {
  font-size: 10px;
  color: var(--white-color);
  display: flex;
  align-items: center;
  gap: 4px;
}

.m-meta-item i {
  color: var(--primary-color);
  font-size: 9px;
}

.m-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 4;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-family: var(--body-font);
  font-size: 9px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding: 4px 11px;
  border-radius: 100px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}

.m-badge:hover {
  transform: translateY(-2px);
}

.mb-hot {
  background: var(--primary-color);
  color: var(--white-color);
  box-shadow: 0 4px 12px rgba(31, 79, 143, .4);
}

.mb-new {
  background: rgba(18, 18, 18, .82);
  border: 1px solid rgba(255, 255, 255, .15);
  color: var(--white-color);
}

.mb-feat {
  background: rgba(255, 255, 255, .92);
  color: var(--dark-color);
  border: 1px solid rgba(18, 18, 18, .1);
}

/* lightbox zoom icon */

.m-zoom {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 4;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .15);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, .2);
  display: grid;
  place-items: center;
  font-size: 13px;
  color: rgba(255, 255, 255, .8);
  opacity: 0;
  transform: scale(.8);
  transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
  will-change: opacity, transform;
}

.m-item:hover .m-zoom {
  opacity: 1;
  transform: scale(1);
}

.m-zoom:hover {
  background: var(--primary-color);
  border-color: var(--primary-color);
  color: var(--white-color);
  transform: scale(1.1);
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* STATS STRIP */

.gallery-stats-strip {
  background: var(--primary-color);
  padding: 0;
  overflow: hidden;
  position: relative;
}

.gallery-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  position: relative;
  z-index: 1;
}

.gallery-stat-item {
  padding: 48px 32px;
  text-align: center;
  position: relative;
  transition: background 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-stat-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 20%;
  bottom: 20%;
  width: 1px;
  background: rgba(255, 255, 255, .2);
}

.gallery-stat-item:hover {
  background: rgba(0, 0, 0, .1);
}

.si-icon {
  font-size: 24px;
  color: rgba(255, 255, 255, .35);
  margin-bottom: 14px;
  display: block;
  transition: color 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-stat-item:hover .si-icon {
  color: rgba(255, 255, 255, .55);
}

.si-num {
  font-family: var(--heading-font);
  font-size: 68px;
  font-weight: 900;
  color: var(--white-color);
  line-height: 1;
  letter-spacing: -3px;
  display: block;
}

.si-num sup {
  font-size: 28%;
  vertical-align: super;
  line-height: 0;
  font-weight: 700;
}

.si-lbl {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .55);
  margin-top: 8px;
  display: block;
}

/* INSTAGRAM */

.ig-cta-inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
  flex-wrap: wrap;
}

.ig-handle {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--heading-font);
  font-size: 15px;
  font-weight: 800;
  color: var(--white-color);
}

.ig-handle i {
  color: var(--primary-color);
  font-size: 18px;
}

.ig-right {
  flex-shrink: 0;
}

.ig-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  width: 380px;
}

.ig-cell {
  aspect-ratio: 1;
  border-radius: 14px;
  overflow: hidden;
  position: relative;
}

.ig-cell img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(.75) saturate(.85);
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1), filter 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform, filter;
}

.ig-cell:hover img {
  transform: scale(1.1);
  filter: brightness(.95) saturate(1.1);
}

.ig-cell-overlay {
  position: absolute;
  inset: 0;
  background: rgba(18, 18, 18, .55);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: opacity;
}

.ig-cell:hover .ig-cell-overlay {
  opacity: 1;
}

.ig-cell-overlay i {
  font-size: 20px;
  color: #fff;
}

/* =============================
   HOMEPAGE 2
================================ */

/* HEADER 2 */

.header2-wrap {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9999;
  padding: 20px 0;
  transition: all 0.35s ease;
  background: transparent;
}

.header2-wrap.scrolled {
  padding: 12px 0;
  background: rgba(10, 10, 10, 0.72);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.18);
}

.header2-navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  min-height: 74px;
}

.header2-logo img {
  height: 62px;
  transition: var(--transition);
}

.header2-wrap.scrolled .header2-logo img {
  height: 54px;
}

.header2-menu-wrap {
  flex: 1;
  display: flex;
  justify-content: center;
}

.header2-menu {
  display: flex;
  align-items: center;
  gap: 34px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.header2-menu-item {
  position: relative;
}

.header2-menu-item > a {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--white-color) !important;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.3px;
  padding: 12px 0;
  transition: var(--transition);
  cursor: pointer;
}

.header2-menu-item > a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--primary-color);
  border-radius: 20px;
  transform: translateX(-50%);
  transition: var(--transition);
}

.header2-menu-item:hover > a, .header2-menu-item > a:hover {
  color: var(--primary-color);
}

.header2-menu-item:hover > a::after {
  width: 100%;
}

.header2-menu-item i {
  font-size: 11px;
  transition: transform 0.3s ease;
}

.header2-has-dropdown:hover > a i {
  transform: rotate(180deg);
}

/* Dropdown */

.header2-dropdown {
  position: absolute;
  top: calc(100% + 18px);
  left: 0;
  min-width: 250px;
  padding: 14px;
  border-radius: 22px;
  background: rgba(18, 18, 18, 0.94);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 28px 60px rgba(0, 0, 0, 0.28);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.28s ease;
  z-index: 999;
}

.header2-dropdown a {
  display: block;
  color: rgba(255, 255, 255, 0.82);
  font-size: 14px;
  font-weight: 500;
  padding: 12px 14px;
  border-radius: 14px;
  transition: var(--transition);
}

.header2-dropdown a:hover, .header2-dropdown a.active {
  background: rgba(31, 79, 143, 0.14);
  color: var(--primary-color);
  transform: translateX(4px);
}

.header2-has-dropdown:hover .header2-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.header2-dropdown-wide {
  min-width: 420px;
}

.header2-dropdown-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
}

/* Header Actions */

.header2-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.header2-icon {
  position: relative;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--white-color);
  font-size: 17px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: var(--transition);
}

.header2-icon:hover {
  background: var(--primary-color);
  color: var(--white-color);
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(31, 79, 143, 0.3);
}

.header2-cart span {
  position: absolute;
  top: -3px;
  right: -2px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--primary-color);
  color: var(--white-color);
  font-size: 11px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Mobile Toggle */

.header2-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  padding: 0;
}

.header2-toggle span {
  width: 22px;
  height: 2px;
  background: var(--white-color);
  border-radius: 20px;
  transition: all 0.3s ease;
}

.header2-toggle.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.header2-toggle.active span:nth-child(2) {
  opacity: 0;
}

.header2-toggle.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile Menu */

.header2-mobile-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  opacity: 0;
  visibility: hidden;
  z-index: 9997;
  transition: all 0.35s ease;
}

.header2-mobile-overlay.active {
  opacity: 1;
  visibility: visible;
}

.header2-mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  max-width: 420px;
  height: 100vh;
  background: rgba(12, 12, 12, 0.96);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-left: 1px solid rgba(255, 255, 255, 0.08);
  z-index: 9998;
  transition: all 0.45s cubic-bezier(0.77, 0, 0.175, 1);
  overflow-y: auto;
  box-shadow: -20px 0 60px rgba(0, 0, 0, 0.3);
}

.header2-mobile-menu.active {
  right: 0;
}

.header2-mobile-inner {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 24px 24px 30px;
}

.header2-mobile-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 22px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  margin-bottom: 26px;
}

.header2-mobile-logo img {
  height: 54px;
}

.header2-mobile-close {
  width: 46px;
  height: 46px;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: var(--white-color);
  font-size: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.header2-mobile-close:hover {
  background: var(--primary-color);
  color: var(--white-color);
  transform: rotate(90deg);
}

.header2-mobile-nav {
  list-style: none;
  margin: 0;
  padding: 0;
  flex: 1;
}

.header2-mobile-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.header2-mobile-item > a, .header2-mobile-link-wrap > a {
  color: var(--white-color) !important;
  font-size: 17px;
  font-weight: 600;
  display: block;
  padding: 18px 0;
  transition: var(--transition);
}

.header2-mobile-item > a:hover, .header2-mobile-link-wrap > a:hover {
  color: var(--primary-color);
}

.header2-mobile-link-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.header2-mobile-submenu-toggle {
  width: 38px;
  height: 38px;
  min-width: 38px;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  color: var(--white-color);
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.header2-mobile-submenu-toggle:hover {
  background: var(--primary-color);
  color: var(--white-color);
}

.header2-mobile-has-submenu.active .header2-mobile-submenu-toggle {
  background: var(--primary-color);
  color: var(--white-color);
}

.header2-mobile-has-submenu.active .header2-mobile-submenu-toggle i {
  transform: rotate(180deg);
}

.header2-mobile-submenu-toggle i {
  transition: transform 0.3s ease;
}

.header2-mobile-submenu {
  list-style: none;
  margin: 0;
  padding: 0 0 12px 14px;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: all 0.4s ease;
}

.header2-mobile-has-submenu.active .header2-mobile-submenu {
  max-height: 800px;
  opacity: 1;
}

.header2-mobile-submenu li a {
  display: block;
  color: rgba(255, 255, 255, 0.74);
  font-size: 15px;
  font-weight: 500;
  padding: 11px 0;
  transition: var(--transition);
  position: relative;
  padding-left: 18px;
}

.header2-mobile-submenu li a::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  width: 8px;
  height: 2px;
  background: var(--primary-color);
  transform: translateY(-50%);
  border-radius: 20px;
}

.header2-mobile-submenu li a:hover {
  color: var(--primary-color);
  transform: translateX(6px);
}

.header2-mobile-bottom {
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  margin-top: 24px;
}

/* =========================
   HERO 2 SECTION
========================= */

.hero2-section {
  position: relative;
  min-height: 120vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  background: var(--secondary-color);
  padding: 0;
}

.hero2-video-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.hero2-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.05);
  filter: brightness(0.85) contrast(1.1) saturate(1.15);
}

.hero2-overlay-dark {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.35) 0%, rgba(0, 0, 0, 0.65) 100%);
  z-index: 1;
}

.hero2-overlay-gradient {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 28%, rgba(31, 79, 143, 0.2), transparent 35%), radial-gradient(circle at 82% 72%, rgba(31, 79, 143, 0.12), transparent 32%);
  z-index: 1;
}

.hero2-grid-overlay {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 80px 80px;
  z-index: 1;
  mask-image: radial-gradient(circle at center, black 35%, transparent 90%);
  -webkit-mask-image: radial-gradient(circle at center, black 35%, transparent 90%);
}

.hero2-section .container {
  position: relative;
  z-index: 3;
}

.hero2-row {
  min-height: 100vh;
  align-items: center;
  padding: 170px 0 190px;
}

.hero2-content {
  max-width: 700px;
  animation: fadeInUp 0.8s ease 0.2s both;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero2-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 18px;
  border-radius: 999px;
  background: rgba(31, 79, 143, 0.12);
  border: 1px solid rgba(31, 79, 143, 0.25);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  color: var(--white-color);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 28px;
  animation: fadeInDown 0.8s ease 0.3s both;
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero2-badge-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--primary-color);
  box-shadow: 0 0 0 rgba(31, 79, 143, 0.7);
  animation: hero2Pulse 1.8s infinite;
}

@keyframes hero2Pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(31, 79, 143, 0.7);
  }
  70% {
    box-shadow: 0 0 0 14px rgba(31, 79, 143, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(31, 79, 143, 0);
  }
}

.hero2-title {
  font-size: 92px;
  line-height: 1.02;
  font-weight: 800;
  color: var(--white-color);
  margin-bottom: 24px;
  letter-spacing: -2px;
}

.hero2-outline-text {
  color: transparent;
  -webkit-text-stroke: 1.6px var(--primary-color);
  text-stroke: 1.6px var(--primary-color);
}

.hero2-script {
  color: var(--primary-color);
  font-family: var(--titleFontFamily);
  font-weight: 400;
}

.hero2-desc {
  max-width: 620px;
  font-size: 18px;
  line-height: 1.95;
  color: rgba(255, 255, 255, 0.76);
  margin-bottom: 38px;
}

.hero2-actions {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  margin-bottom: 42px;
}

.hero2-btn-glass {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  border-radius: 999px;
  color: var(--white-color);
  font-size: 15px;
  font-weight: 700;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  transition: var(--transition);
  cursor: pointer;
  text-decoration: none;
}

.hero2-btn-glass:hover {
  background: rgba(31, 79, 143, 0.18);
  border-color: rgba(31, 79, 143, 0.4);
  color: var(--white-color);
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(31, 79, 143, 0.25);
}

.hero2-meta {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.hero2-meta-item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 18px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.07);
  color: var(--white-color);
  font-size: 14px;
  font-weight: 600;
  border: 1px solid rgba(255, 255, 255, 0.10);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.hero2-meta-item i {
  color: var(--primary-color);
}

.hero2-ui-wrap {
  position: relative;
  min-height: 560px;
}

.hero2-card {
  position: absolute;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-radius: 28px;
  padding: 28px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.24);
  color: var(--white-color);
  animation: hero2CardFloat 5.5s ease-in-out infinite;
}

.hero2-card-special {
  top: 20px;
  right: 10px;
  width: 320px;
}

.hero2-card-rating {
  top: 235px;
  left: 20px;
  width: 270px;
  animation-delay: 1s;
}

.hero2-card-delivery {
  bottom: 20px;
  right: 40px;
  width: 300px;
  animation-delay: 2s;
}

@keyframes hero2CardFloat {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-12px);
  }
}

.hero2-card-tag {
  display: inline-block;
  padding: 7px 14px;
  border-radius: 999px;
  background: rgba(31, 79, 143, 0.14);
  border: 1px solid rgba(31, 79, 143, 0.26);
  color: var(--primary-color);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.hero2-card h4, .hero2-card h6 {
  color: var(--white-color);
  margin-bottom: 10px;
}

.hero2-card p {
  color: rgba(255, 255, 255, 0.72);
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 0;
}

.hero2-card-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-top: 18px;
}

.hero2-price {
  color: var(--primary-color);
  font-size: 30px;
  font-weight: 800;
  font-family: var(--heading-font);
}

.hero2-order-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--white-color);
  font-size: 12px;
  font-weight: 700;
}

.hero2-rating-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 12px;
}

.hero2-stars {
  display: flex;
  gap: 4px;
  color: #ffcf33;
  font-size: 14px;
}

.hero2-rating-top span {
  font-size: 14px;
  font-weight: 700;
  color: var(--white-color);
}

.hero2-delivery-box {
  display: flex;
  align-items: center;
  gap: 16px;
}

.hero2-delivery-icon {
  width: 56px;
  height: 56px;
  border-radius: 18px;
  background: rgba(31, 79, 143, 0.14);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-color);
  font-size: 22px;
  flex-shrink: 0;
}

/* Stats */

.hero2-stats {
  position: absolute;
  left: 50%;
  bottom: 35px;
  transform: translateX(-50%);
  width: 100%;
  max-width: 1200px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  z-index: 4;
  padding: 0 20px;
  box-sizing: border-box;
}

.hero2-stat-box {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-radius: 24px;
  padding: 24px 20px;
  text-align: center;
  transition: var(--transition);
}

.hero2-stat-box:hover {
  transform: translateY(-8px);
  border-color: rgba(31, 79, 143, 0.4);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
  background: rgba(31, 79, 143, 0.08);
}

.hero2-stat-box h3 {
  color: var(--primary-color);
  font-size: 32px;
  font-weight: 800;
  margin-bottom: 8px;
}

.hero2-stat-box p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 13px;
  margin: 0;
}

/* Scroll */

.hero2-scroll {
  position: absolute;
  left: 50%;
  bottom: 12px;
  transform: translateX(-50%);
  z-index: 5;
  width: 34px;
  height: 58px;
  border: 2px solid rgba(255, 255, 255, 0.35);
  border-radius: 30px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 10px;
  transition: var(--transition);
}

.hero2-scroll:hover {
  border-color: var(--primary-color);
}

.hero2-scroll span {
  width: 6px;
  height: 12px;
  border-radius: 999px;
  background: var(--primary-color);
  animation: hero2ScrollDot 1.6s infinite;
}

@keyframes hero2ScrollDot {
  0% {
    opacity: 0;
    transform: translateY(0);
  }
  30% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: translateY(18px);
  }
}

/* ===========================
   CATEGORY SECTION
=============================== */

.catv3-section {
  position: relative;
  overflow: hidden;
}

.catv3-heading {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 60px;
}

.catv3-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 240px;
  gap: 24px;
}

.catv3-card {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 28px;
  min-height: 240px;
  isolation: isolate;
  transform: translateY(0);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.28);
  background: var(--dark-color);
  text-decoration: none;
}

.catv3-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.75s ease;
  display: block;
}

.catv3-card:hover img {
  transform: scale(1.08);
}

.catv3-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.38);
}

.catv3-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.72) 12%, rgba(0, 0, 0, 0.18) 55%, rgba(0, 0, 0, 0.06) 100%);
  z-index: 1;
}

.catv3-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  opacity: 0.9;
  mix-blend-mode: screen;
  pointer-events: none;
}

.catv3-burger::before {
  background: linear-gradient(135deg, rgba(255, 102, 0, 0.45), rgba(255, 190, 60, 0.15));
}

.catv3-pizza::before {
  background: linear-gradient(135deg, rgba(255, 60, 60, 0.42), rgba(255, 165, 0, 0.14));
}

.catv3-drinks::before {
  background: linear-gradient(135deg, rgba(0, 196, 255, 0.42), rgba(0, 255, 170, 0.12));
}

.catv3-pasta::before {
  background: linear-gradient(135deg, rgba(5, 255, 0, 0.38), rgba(5, 255, 0, 0.15));
}

.catv3-dessert::before {
  background: linear-gradient(135deg, rgba(255, 0, 140, 0.36), rgba(255, 120, 190, 0.14));
}

.catv3-salad::before {
  background: linear-gradient(135deg, rgba(50, 205, 50, 0.38), rgba(173, 255, 47, 0.12));
}

.catv3-chicken::before {
  background: linear-gradient(135deg, rgba(0, 23, 255, 0.45), rgba(0, 23, 255, 0.15));
}

.catv3-combo::before {
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.40), rgba(255, 120, 0, 0.15));
}

.catv3-content {
  position: absolute;
  left: 26px;
  bottom: 24px;
  z-index: 4;
}

.catv3-content h3 {
  font-family: var(--heading-font);
  margin: 0 0 14px;
  font-size: 34px;
  color: var(--white-color);
  font-weight: 900;
}

.catv3-content span {
  font-family: var(--body-font);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 18px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 700;
  color: var(--white-color);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.catv3-arrow {
  position: absolute;
  right: 18px;
  top: 18px;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white-color);
  font-size: 16px;
  z-index: 5;
  transition: all 0.35s ease;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.catv3-card:hover .catv3-arrow {
  background: #ff5a1f;
  transform: translateX(5px) scale(1.08);
}

.catv3-large {
  grid-column: span 2;
  grid-row: span 2;
}

.catv3-wide {
  grid-column: span 2;
}

/* ==================================
   HOME PAGE 2 ABOUT US SECTION
==================================== */

.au2-section {
  overflow: hidden;
  position: relative;
  padding: 110px 0 0 0;
}

.au2-container {
  width: 90%;
  max-width: 1480px;
  margin: 0 auto;
  padding: 0 15px;
}

/* STORY SECTION */

.au2-story {
  background: var(--bg-color);
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}

.au2-story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.au2-img-stack {
  position: relative;
}

.au2-img-main {
  width: 100%;
  height: 520px;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 32px 80px rgba(18, 18, 18, .18);
}

.au2-img-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(.88) saturate(1.05);
  transition: transform .6s cubic-bezier(.25, .46, .45, .94);
}

.au2-img-main:hover img {
  transform: scale(1.04);
}

.au2-img-float {
  position: absolute;
  bottom: -32px;
  right: -28px;
  width: 180px;
  height: 160px;
  border-radius: 18px;
  overflow: hidden;
  border: 4px solid var(--bg-color);
  box-shadow: 0 20px 52px rgba(18, 18, 18, .2);
  z-index: 2;
}

.au2-img-float img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.au2-img-badge {
  position: absolute;
  top: 24px;
  left: 24px;
  z-index: 3;
  background: var(--primary-color);
  color: #fff;
  border-radius: 100px;
  padding: 9px 18px;
  font-family: var(--body-font);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 7px;
  box-shadow: 0 6px 20px rgba(31, 79, 143, .4);
}

.au2-img-year {
  position: absolute;
  bottom: 20px;
  left: 20px;
  z-index: 3;
  font-family: var(--heading-font);
  font-size: 100px;
  font-weight: 900;
  color: transparent;
  -webkit-text-stroke: 1.6px var(--primary-color);
  line-height: 1;
}

/* feature list */

.au2-feature-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 36px;
  padding-left: 0;
}

.au2-feat-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px 18px;
  background: var(--white-color);
  border-radius: 14px;
  border: 1.5px solid rgba(18, 18, 18, .07);
  box-shadow: 0 2px 10px rgba(18, 18, 18, .04);
  transition: all .3s cubic-bezier(.25, .46, .45, .94);
}

.au2-feat-item:hover {
  transform: translateX(6px);
  border-color: rgba(31, 79, 143, .25);
  box-shadow: 0 8px 28px rgba(18, 18, 18, .1);
}

.au2-feat-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  flex-shrink: 0;
  background: rgba(31, 79, 143, .1);
  border: 1px solid rgba(31, 79, 143, .2);
  display: grid;
  place-items: center;
  font-size: 18px;
  color: var(--primary-color);
  transition: all .3s cubic-bezier(.25, .46, .45, .94);
}

.au2-feat-item:hover .au2-feat-icon {
  background: var(--primary-color);
  color: #fff;
  transform: rotate(-5deg) scale(1.05);
}

.au2-feat-title {
  font-family: var(--heading-font);
  font-size: 15px;
  font-weight: 800;
  color: var(--dark-color);
  margin-bottom: 4px;
}

.au2-feat-text {
  font-size: 13px;
  color: var(--text-color);
  line-height: 1.65;
  margin: 0;
}

/* VALUES STRIP */

.au2-values {
  background: var(--dark-color);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.au2-values-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 56px;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

.au2-values-title {
  font-family: var(--heading-font);
  font-size: 58px;
  font-weight: 900;
  color: var(--white-color);
  line-height: .95;
  letter-spacing: -2px;
}

.au2-values-title em {
  font-style: italic;
  font-weight: 300;
  color: var(--primary-color);
}

.au2-values-sub {
  font-size: 14px;
  color: rgba(255, 255, 255, .35);
  max-width: 340px;
  line-height: 1.8;
}

.au2-values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  position: relative;
  z-index: 1;
}

.au2-val-card {
  background: rgba(255, 255, 255, .04);
  border: 1.5px solid rgba(255, 255, 255, .07);
  border-radius: 20px;
  padding: 32px 26px;
  transition: all .35s cubic-bezier(.25, .46, .45, .94);
  position: relative;
  overflow: hidden;
}

.au2-val-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary-color), rgba(31, 79, 143, .3));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .4s cubic-bezier(.25, .46, .45, .94);
}

.au2-val-card:hover {
  background: rgba(31, 79, 143, .07);
  border-color: rgba(31, 79, 143, .25);
  transform: translateY(-8px);
  box-shadow: 0 20px 52px rgba(0, 0, 0, .3);
}

.au2-val-card:hover::before {
  transform: scaleX(1);
}

.au2-vc-num {
  font-family: var(--heading-font);
  font-size: 52px;
  font-weight: 900;
  font-style: italic;
  color: rgba(255, 255, 255, .05);
  line-height: 1;
  letter-spacing: -3px;
  margin-bottom: 20px;
  transition: color .35s;
}

.au2-val-card:hover .au2-vc-num {
  color: rgba(31, 79, 143, .12);
}

.au2-vc-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: rgba(31, 79, 143, .1);
  border: 1px solid rgba(31, 79, 143, .2);
  display: grid;
  place-items: center;
  font-size: 21px;
  color: var(--primary-color);
  margin-bottom: 20px;
  transition: all .35s cubic-bezier(.25, .46, .45, .94);
}

.au2-val-card:hover .au2-vc-icon {
  background: var(--primary-color);
  color: #fff;
  transform: rotate(-6deg) scale(1.08);
}

.au2-vc-title {
  font-family: var(--heading-font);
  font-size: 19px;
  font-weight: 800;
  color: var(--white-color);
  margin-bottom: 10px;
  line-height: 1.15;
  letter-spacing: -.3px;
}

.au2-vc-text {
  font-size: 14px;
  color: rgba(255, 255, 255, .4);
  line-height: 1.75;
  margin: 0;
}

.au2-vc-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--heading-font);
  font-size: 12px;
  font-weight: 700;
  color: var(--primary-color);
  margin-top: 18px;
  opacity: 0;
  transform: translateY(6px);
  transition: all .3s cubic-bezier(.25, .46, .45, .94);
}

.au2-vc-link i {
  font-size: 10px;
  transition: transform .25s;
}

.au2-val-card:hover .au2-vc-link {
  opacity: 1;
  transform: translateY(0);
}

.au2-val-card:hover .au2-vc-link:hover i {
  transform: translateX(3px);
}

/* TEAM ROW */

.au2-team {
  background: var(--bg-color);
  padding: 120px 0 80px;
  position: relative;
  overflow: hidden;
}

.au2-team-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 60px;
  flex-wrap: wrap;
}

.au2-team-title {
  font-family: var(--heading-font);
  font-size: 56px;
  font-weight: 900;
  color: var(--dark-color);
  line-height: .95;
  letter-spacing: -2px;
}

.au2-team-title em {
  font-style: italic;
  font-weight: 300;
  color: var(--primary-color);
}

.au2-team-sub {
  font-size: 14px;
  color: var(--text-color);
  max-width: 320px;
  line-height: 1.8;
}

.au2-team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.au2-team-grid .au2-member-card:nth-child(2) {
  margin-top: 52px;
}

.au2-team-grid .au2-member-card:nth-child(4) {
  margin-top: 28px;
}

.au2-member-card {
  background: var(--white-color);
  border-radius: 22px;
  overflow: hidden;
  border: 1.5px solid rgba(18, 18, 18, .07);
  box-shadow: 0 4px 20px rgba(18, 18, 18, .06);
  transition: transform .4s cubic-bezier(.25, .46, .45, .94), box-shadow .4s, border-color .3s;
}

.au2-member-card:hover {
  transform: translateY(-12px) scale(1.02);
  box-shadow: 0 24px 60px rgba(18, 18, 18, .16);
  border-color: rgba(31, 79, 143, .25);
}

.au2-member-bar {
  height: 4px;
  background: var(--primary-color);
}

.au2-member-photo {
  height: 300px;
  overflow: hidden;
  position: relative;
  display: block !important;
}

.au2-member-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  filter: brightness(.82) saturate(.9) grayscale(.1);
  transition: transform .7s cubic-bezier(.25, .46, .45, .94), filter .5s;
}

.au2-member-card:hover .au2-member-photo img {
  transform: scale(1.06);
  filter: brightness(.95) saturate(1.1) grayscale(0);
}

.au2-photo-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(18, 18, 18, .75) 0%, transparent 55%);
  z-index: 1;
}

/* social links — slide up on hover */

.au2-member-socials {
  position: absolute;
  bottom: 14px;
  left: 14px;
  z-index: 3;
  display: flex;
  gap: 7px;
  transform: translateY(10px);
  opacity: 0;
  transition: all .35s cubic-bezier(.25, .46, .45, .94);
}

.au2-member-card:hover .au2-member-socials {
  transform: translateY(0);
  opacity: 1;
}

.au2-ms-link {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .12);
  border: 1px solid rgba(255, 255, 255, .2);
  display: grid;
  place-items: center;
  font-size: 11px;
  color: rgba(255, 255, 255, .75);
  transition: all .25s;
}

.au2-ms-link:hover {
  background: var(--primary-color);
  border-color: var(--primary-color);
  color: #fff;
}

/* info block */

.au2-member-info {
  padding: 20px 22px 22px;
}

.au2-member-role {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--primary-color);
  margin-bottom: 5px;
}

.au2-member-name {
  font-family: var(--heading-font);
  font-size: 18px;
  font-weight: 800;
  color: var(--dark-color);
  margin-bottom: 6px;
  line-height: 1.2;
  letter-spacing: -.2px;
}

.au2-member-spec {
  font-size: 12px;
  color: var(--text-color);
  line-height: 1.5;
}

/* CTA STRIP */

.au2-cta-strip {
  background: var(--dark-color);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.au2-cta-strip::before {
  content: 'RESTROVA';
  font-family: var(--heading-font);
  font-size: 140px;
  font-weight: 900;
  font-style: italic;
  letter-spacing: -6px;
  color: rgba(255, 255, 255, .018);
  position: absolute;
  bottom: -16px;
  left: -10px;
  line-height: 1;
  pointer-events: none;
  user-select: none;
  white-space: nowrap;
}

.au2-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

.au2-cta-desc {
  font-size: 15px;
  color: rgba(255, 255, 255, .35);
  max-width: 440px;
  line-height: 1.85;
}

.au2-cta-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  flex-shrink: 0;
}

/* ===========================
   Our story video modal
============================== */

.fancybox__backdrop {
  background: rgba(0, 0, 0, 0.90) !important;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.fancybox__content {
  border-radius: 20px !important;
  overflow: hidden !important;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.55);
}

.fancybox__toolbar {
  opacity: 1 !important;
  visibility: visible !important;
  display: flex !important;
}

.fancybox__button--close, button[data-fancybox-close] {
  top: 20px !important;
  right: 20px !important;
  width: 50px !important;
  height: 50px !important;
  border-radius: 50% !important;
  background: rgba(255, 255, 255, 0.18) !important;
  color: #fff !important;
  z-index: 99999999 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  opacity: 1 !important;
  visibility: visible !important;
  cursor: pointer;
  transition: all 0.3s ease;
}

.fancybox__button--close:hover, button[data-fancybox-close]:hover {
  background: #fff !important;
  color: #000 !important;
  transform: rotate(90deg) scale(1.08);
}

/* ===========================
   Search overlay
============================== */

.srch-overlay {
  position: fixed;
  inset: 0;
  z-index: 99999;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .45s cubic-bezier(.25, .46, .45, .94), visibility .45s;
}

.srch-overlay.srch-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.srch-backdrop {
  position: absolute;
  inset: 0;
  background: var(--secondary-color);
  backdrop-filter: blur(28px);
  -webkit-backdrop-filter: blur(28px);
}

.srch-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(31, 79, 143, .08);
  pointer-events: none;
  animation: srchRingPulse 6s ease-in-out infinite alternate;
}

.srch-ring-1 {
  width: 500px;
  height: 500px;
  bottom: -120px;
  left: -120px;
}

.srch-ring-2 {
  width: 280px;
  height: 280px;
  bottom: 60px;
  left: 60px;
  animation-delay: 2s;
  border-style: dashed;
}

.srch-ring-3 {
  width: 160px;
  height: 160px;
  top: 80px;
  right: 160px;
  animation-delay: 4s;
}

@keyframes srchRingPulse {
  from {
    opacity: .3;
    transform: scale(1);
  }
  to {
    opacity: .7;
    transform: scale(1.05);
  }
}

.srch-stripe {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--primary-color), rgba(31, 79, 143, .3), transparent);
  pointer-events: none;
}

.srch-content {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  overflow-y: auto;
  overflow-x: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding: 140px 20px 60px;
  transform: translateY(32px);
  transition: transform .5s cubic-bezier(.25, .46, .45, .94);
}

.srch-overlay.srch-open .srch-content {
  transform: translateY(0);
}

.srch-topbar {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 5%;
}

.srch-logo img {
  height: 80px;
}

.srch-close-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 1.5px solid rgba(255, 255, 255, .15);
  background: transparent;
  color: rgba(255, 255, 255, .7);
  font-size: 18px;
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: all .3s cubic-bezier(.34, 1.56, .64, 1);
  position: relative;
  overflow: hidden;
}

.srch-close-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--primary-color);
  border-radius: 50%;
  transform: scale(0);
  transition: transform .35s cubic-bezier(.34, 1.56, .64, 1);
}

.srch-close-btn:hover {
  border-color: var(--primary-color);
  color: #fff;
}

.srch-close-btn:hover::before {
  transform: scale(1);
}

.srch-close-btn i {
  position: relative;
  z-index: 1;
}

.srch-esc-hint {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1px;
  color: rgba(255, 255, 255, .25);
  margin-right: 14px;
}

.srch-esc-key {
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .15);
  border-radius: 6px;
  padding: 3px 8px;
  font-family: var(--heading-font);
  font-size: 10px;
  font-weight: 700;
  color: rgba(255, 255, 255, .4);
  letter-spacing: 1px;
}

.srch-close-row {
  display: flex;
  align-items: center;
  gap: 0;
}

.srch-overlay::-webkit-scrollbar {
  width: 6px;
}

.srch-overlay::-webkit-scrollbar-thumb {
  background: var(--primary-color);
  border-radius: 10px;
}

.srch-sub {
  font-size: 14px;
  color: rgba(255, 255, 255, .35);
  text-align: center;
  margin-bottom: 48px;
  line-height: 1.6;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity .5s cubic-bezier(.25, .46, .45, .94) .28s, transform .5s cubic-bezier(.25, .46, .45, .94) .28s;
}

.srch-overlay.srch-open .srch-sub {
  opacity: 1;
  transform: translateY(0);
}

.srch-box-wrap {
  width: 100%;
  max-width: 720px;
  opacity: 0;
  transform: translateY(20px) scale(.97);
  transition: opacity .55s cubic-bezier(.25, .46, .45, .94) .32s, transform .55s cubic-bezier(.25, .46, .45, .94) .32s;
}

.srch-overlay.srch-open .srch-box-wrap {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.srch-box {
  position: relative;
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, .05);
  border: 1.5px solid rgba(255, 255, 255, .1);
  border-radius: 60px;
  overflow: hidden;
  transition: border-color .3s, box-shadow .3s, background .3s;
}

.srch-box:focus-within {
  border-color: var(--primary-color);
  background: rgba(31, 79, 143, .05);
  box-shadow: 0 0 0 4px rgba(31, 79, 143, .12), 0 20px 60px rgba(0, 0, 0, .4);
}

.srch-icon-left {
  padding: 0 20px 0 26px;
  font-size: 20px;
  color: rgba(255, 255, 255, .25);
  flex-shrink: 0;
  transition: color .3s;
  pointer-events: none;
}

.srch-box:focus-within .srch-icon-left {
  color: var(--primary-color);
}

.srch-input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  font-family: var(--heading-font);
  font-size: 22px;
  font-weight: 700;
  color: var(--white-color);
  caret-color: var(--primary-color);
}

.srch-input::placeholder {
  color: rgba(255, 255, 255, .2);
  font-weight: 400;
  font-style: italic;
}

.srch-clear-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .12);
  color: rgba(255, 255, 255, .45);
  font-size: 12px;
  cursor: pointer;
  display: none;
  place-items: center;
  margin-right: 12px;
  transition: all .25s;
  flex-shrink: 0;
}

.srch-clear-btn:hover {
  background: rgba(31, 79, 143, .2);
  border-color: var(--primary-color);
  color: var(--primary-color);
}

.srch-input:not(:placeholder-shown) ~ .srch-clear-btn {
  display: grid;
}

.srch-quick-wrap {
  width: 100%;
  max-width: 720px;
  margin-top: 28px;
  opacity: 0;
  transform: translateY(14px);
  transition: opacity .55s cubic-bezier(.25, .46, .45, .94) .42s, transform .55s cubic-bezier(.25, .46, .45, .94) .42s;
}

.srch-overlay.srch-open .srch-quick-wrap {
  opacity: 1;
  transform: translateY(0);
}

.srch-quick-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .25);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.srch-quick-label::before {
  content: '';
  width: 16px;
  height: 1px;
  background: rgba(255, 255, 255, .2);
  display: inline-block;
}

.srch-quick-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.srch-pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 9px 18px;
  border-radius: 100px;
  border: 1.5px solid rgba(255, 255, 255, .1);
  background: rgba(255, 255, 255, .04);
  font-family: var(--heading-font);
  font-size: 13px;
  font-weight: 600;
  color: rgba(255, 255, 255, .55);
  cursor: pointer;
  transition: all .25s cubic-bezier(.34, 1.56, .64, 1);
  text-decoration: none;
  white-space: nowrap;
}

.srch-pill i {
  font-size: 12px;
  color: var(--primary-color);
}

.srch-pill:hover {
  border-color: var(--primary-color);
  background: rgba(31, 79, 143, .1);
  color: var(--white-color);
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(31, 79, 143, .2);
}

.srch-recent-wrap {
  width: 100%;
  max-width: 720px;
  margin-top: 28px;
  opacity: 0;
  transform: translateY(14px);
  transition: opacity .55s cubic-bezier(.25, .46, .45, .94) .5s, transform .55s cubic-bezier(.25, .46, .45, .94) .5s;
}

.srch-overlay.srch-open .srch-recent-wrap {
  opacity: 1;
  transform: translateY(0);
}

.srch-recent-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}

.srch-recent-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .25);
  display: flex;
  align-items: center;
  gap: 8px;
}

.srch-recent-label::before {
  content: '';
  width: 16px;
  height: 1px;
  background: rgba(255, 255, 255, .2);
  display: inline-block;
}

.srch-clear-all {
  font-size: 12px;
  font-weight: 600;
  color: rgba(255, 255, 255, .25);
  cursor: pointer;
  background: none;
  border: none;
  transition: color .25s;
  display: flex;
  align-items: center;
  gap: 5px;
}

.srch-clear-all:hover {
  color: var(--primary-color);
}

.srch-clear-all i {
  font-size: 10px;
}

.srch-recent-list {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.srch-recent-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 11px 14px;
  border-radius: 12px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all .25s;
  text-decoration: none;
}

.srch-recent-item:hover {
  background: rgba(255, 255, 255, .05);
  border-color: rgba(31, 79, 143, .15);
}

.srch-recent-item:hover .srch-ri-text {
  color: var(--white-color);
}

.srch-ri-icon {
  width: 34px;
  height: 34px;
  border-radius: 9px;
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .08);
  display: grid;
  place-items: center;
  font-size: 13px;
  color: rgba(255, 255, 255, .3);
  flex-shrink: 0;
  transition: all .25s;
}

.srch-recent-item:hover .srch-ri-icon {
  background: rgba(31, 79, 143, .12);
  border-color: rgba(31, 79, 143, .2);
  color: var(--primary-color);
}

.srch-ri-text {
  flex: 1;
  font-family: var(--heading-font);
  font-size: 14px;
  font-weight: 600;
  color: rgba(255, 255, 255, .5);
  transition: color .25s;
}

.srch-ri-arrow {
  font-size: 11px;
  color: rgba(255, 255, 255, .15);
  transition: all .25s;
}

.srch-recent-item:hover .srch-ri-arrow {
  color: var(--primary-color);
  transform: translateX(3px);
}

.srch-popular-wrap {
  width: 100%;
  max-width: 720px;
  margin-top: 28px;
  opacity: 0;
  transform: translateY(14px);
  transition: opacity .55s cubic-bezier(.25, .46, .45, .94) .55s, transform .55s cubic-bezier(.25, .46, .45, .94) .55s;
}

.srch-overlay.srch-open .srch-popular-wrap {
  opacity: 1;
  transform: translateY(0);
}

.srch-popular-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .25);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.srch-popular-label::before {
  content: '';
  width: 16px;
  height: 1px;
  background: rgba(255, 255, 255, .2);
  display: inline-block;
}

.srch-popular-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.srch-pop-card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 1;
  cursor: pointer;
  border: 1px solid rgba(255, 255, 255, .07);
  transition: transform .35s cubic-bezier(.25, .46, .45, .94), box-shadow .35s, border-color .3s;
  text-decoration: none;
}

.srch-pop-card:hover {
  transform: translateY(-5px) scale(1.02);
  box-shadow: 0 16px 44px rgba(0, 0, 0, .5);
  border-color: rgba(31, 79, 143, .3);
}

.srch-pop-img {
  position: absolute;
  inset: 0;
}

.srch-pop-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(.6) saturate(1.05);
  transition: transform .6s cubic-bezier(.25, .46, .45, .94), filter .4s;
  display: block;
}

.srch-pop-card:hover .srch-pop-img img {
  transform: scale(1.08);
  filter: brightness(.78) saturate(1.15);
}

.srch-pop-img::after {
  content: '';
  position: absolute;
  width: 200%;
  height: 0%;
  left: 50%;
  top: 50%;
  background: rgba(255, 255, 255, .18);
  transform: translate(-50%, -50%) rotate(-45deg);
  pointer-events: none;
}

.srch-pop-card:hover .srch-pop-img::after {
  height: 250%;
  background: transparent;
  transition: height 500ms linear, background 500ms linear;
}

.srch-pop-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(18, 18, 18, .88) 0%, transparent 55%);
  z-index: 1;
}

.srch-pop-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2;
  padding: 14px 13px 13px;
}

.srch-pop-cat {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--primary-color);
  margin-bottom: 3px;
}

.srch-pop-name {
  font-family: var(--heading-font);
  font-size: 13px;
  font-weight: 800;
  color: var(--white-color);
  line-height: 1.2;
}

.srch-bottom-row {
  width: 100%;
  max-width: 720px;
  margin-top: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity .5s cubic-bezier(.25, .46, .45, .94) .62s, transform .5s cubic-bezier(.25, .46, .45, .94) .62s;
}

.srch-overlay.srch-open .srch-bottom-row {
  opacity: 1;
  transform: translateY(0);
}

.srch-bottom-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  color: var(--white-color);
}

.srch-bottom-item i {
  color: var(--primary-color);
  font-size: 11px;
}

.srch-bottom-divider {
  width: 1px;
  height: 14px;
  background: rgba(255, 255, 255, .1);
}

/* ============================
   HOME PAGE 2 FAQ SECTION
=================================== */

.faq2-section {
  padding: 0;
  position: relative;
}

.faq2-main {
  display: grid;
  grid-template-columns: 1fr 1.35fr;
  min-height: 680px;
  position: relative;
}

.faq2-left {
  background: var(--dark-color);
  padding: 100px;
  position: relative;
  overflow: hidden;
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: flex-start;
}

.faq2-left::after {
  content: '';
  position: absolute;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(31, 79, 143, .16) 0%, transparent 65%);
  bottom: -80px;
  right: -80px;
  pointer-events: none;
  animation: faq2Glow 7s ease-in-out infinite alternate;
}

@keyframes faq2Glow {
  from {
    opacity: .6;
    transform: scale(1);
  }
  to {
    opacity: 1;
    transform: scale(1.08);
  }
}

.faq2-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(31, 79, 143, .09);
  pointer-events: none;
  animation: faq2RingPulse 7s ease-in-out infinite alternate;
}

.faq2-r1 {
  width: 320px;
  height: 320px;
  top: -80px;
  left: -80px;
}

.faq2-r2 {
  width: 140px;
  height: 140px;
  top: 60px;
  left: 60px;
  animation-delay: 3s;
  border-style: dashed;
}

.faq2-r3 {
  width: 200px;
  height: 200px;
  bottom: 40px;
  right: 20px;
  animation-delay: 5s;
}

@keyframes faq2RingPulse {
  from {
    opacity: .3;
    transform: scale(1);
  }
  to {
    opacity: .8;
    transform: scale(1.05);
  }
}

.faq2-left-stripe {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(to bottom, transparent, var(--primary-color), transparent);
  pointer-events: none;
}

.faq2-left-inner {
  position: relative;
  z-index: 2;
}

.faq2-stat-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 44px;
}

.faq2-stat-pill {
  display: flex;
  align-items: center;
  gap: 9px;
  background: rgba(255, 255, 255, .05);
  border: 1px solid rgba(255, 255, 255, .09);
  border-radius: 100px;
  padding: 10px 18px;
  transition: all .3s cubic-bezier(.25, .46, .45, .94);
}

.faq2-stat-pill:hover {
  background: rgba(31, 79, 143, .1);
  border-color: rgba(31, 79, 143, .25);
  transform: translateY(-2px);
}

.faq2-sp-icon {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: rgba(31, 79, 143, .15);
  border: 1px solid rgba(31, 79, 143, .25);
  display: grid;
  place-items: center;
  font-size: 12px;
  color: var(--primary-color);
  flex-shrink: 0;
}

.faq2-sp-text {
  font-family: var(--heading-font);
  font-size: 13px;
  font-weight: 700;
  color: rgba(255, 255, 255, .65);
  line-height: 1.2;
}

.faq2-sp-text span {
  display: block;
  font-size: 10px;
  font-weight: 500;
  color: rgba(255, 255, 255, .3);
  letter-spacing: .3px;
  margin-top: 1px;
}

.faq2-contact-card {
  background: rgba(255, 255, 255, .04);
  border: 1px solid rgba(31, 79, 143, .18);
  border-radius: 16px;
  padding: 20px 22px;
  display: flex;
  align-items: center;
  gap: 16px;
  transition: all .3s cubic-bezier(.25, .46, .45, .94);
}

.faq2-contact-card:hover {
  background: rgba(31, 79, 143, .07);
  border-color: rgba(31, 79, 143, .3);
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, .3);
}

.faq2-cc-icon {
  width: 48px;
  height: 48px;
  border-radius: 13px;
  background: rgba(31, 79, 143, .15);
  border: 1px solid rgba(31, 79, 143, .25);
  display: grid;
  place-items: center;
  font-size: 19px;
  color: var(--primary-color);
  flex-shrink: 0;
  transition: all .3s cubic-bezier(.25, .46, .45, .94);
}

.faq2-contact-card:hover .faq2-cc-icon {
  background: var(--primary-color);
  color: #fff;
  transform: rotate(-5deg) scale(1.05);
}

.faq2-cc-title {
  font-family: var(--heading-font);
  font-size: 14px;
  font-weight: 800;
  color: var(--white-color);
  margin-bottom: 3px;
}

.faq2-cc-sub {
  font-size: 12px;
  color: rgba(255, 255, 255, .35);
  line-height: 1.5;
}

.faq2-cc-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-family: var(--heading-font);
  font-size: 12px;
  font-weight: 700;
  color: var(--primary-color);
  margin-top: 5px;
  transition: gap .2s;
}

.faq2-cc-link:hover {
  gap: 8px;
}

.faq2-cc-link i {
  font-size: 10px;
}

.faq2-right {
  padding: 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.faq2-accordion {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.faq2-item {
  border-bottom: 1px solid rgba(18, 18, 18, .07);
  position: relative;
  overflow: hidden;
  transition: background .3s;
}

.faq2-item:first-child {
  border-top: 1px solid rgba(18, 18, 18, .07);
}

.faq2-item input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
  pointer-events: none;
}

.faq2-item-num {
  position: absolute;
  top: 24px;
  left: 0;
  font-family: var(--heading-font);
  font-size: 11px;
  font-weight: 900;
  color: var(--dark-color);
  letter-spacing: 1px;
  pointer-events: none;
  transition: color .3s;
}

.faq2-item:has(input:checked) .faq2-item-num {
  color: var(--primary-color);
}

.faq2-question {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 24px 0 24px 36px;
  cursor: pointer;
  position: relative;
  user-select: none;
  transition: color .3s;
  list-style: none;
}

.faq2-question:hover {
  background: rgba(31, 79, 143, .025);
}

.faq2-q-icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: rgba(18, 18, 18, .05);
  border: 1.5px solid rgba(18, 18, 18, .08);
  display: grid;
  place-items: center;
  font-size: 16px;
  color: var(--text-color);
  flex-shrink: 0;
  transition: all .35s cubic-bezier(.25, .46, .45, .94);
}

.faq2-item:has(input:checked) .faq2-q-icon {
  background: var(--primary-color);
  border-color: var(--primary-color);
  color: #fff;
  transform: rotate(-5deg) scale(1.05);
  box-shadow: 0 6px 18px rgba(31, 79, 143, .35);
}

.faq2-q-text {
  flex: 1;
  font-family: var(--heading-font);
  font-size: clamp(14px, 1.6vw, 17px);
  font-weight: 800;
  color: var(--dark-color);
  line-height: 1.3;
  letter-spacing: -.2px;
  transition: color .3s;
}

.faq2-item:has(input:checked) .faq2-q-text {
  color: var(--primary-color);
}

.faq2-toggle {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1.5px solid rgba(18, 18, 18, .1);
  background: var(--white-color);
  display: grid;
  place-items: center;
  font-size: 14px;
  color: var(--text-color);
  flex-shrink: 0;
  transition: all .35s cubic-bezier(.34, 1.56, .64, 1);
  box-shadow: 0 2px 8px rgba(18, 18, 18, .06);
}

.faq2-toggle i {
  transition: transform .35s cubic-bezier(.25, .46, .45, .94);
  pointer-events: none;
}

.faq2-item:has(input:checked) .faq2-toggle {
  background: var(--primary-color);
  border-color: var(--primary-color);
  color: #fff;
  box-shadow: 0 6px 18px rgba(31, 79, 143, .3);
}

.faq2-item:has(input:checked) .faq2-toggle i {
  transform: rotate(45deg);
}

.faq2-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .5s cubic-bezier(.25, .46, .45, .94), padding .4s cubic-bezier(.25, .46, .45, .94);
}

.faq2-item input:checked ~ .faq2-answer {
  max-height: 100%;
}

.faq2-answer-inner {
  padding: 0 0 28px 94px;
  position: relative;
}

.faq2-answer-inner::before {
  content: '';
  position: absolute;
  left: 58px;
  top: 0;
  bottom: 14px;
  width: 3px;
  background: linear-gradient(to bottom, var(--primary-color), rgba(31, 79, 143, .15));
  border-radius: 3px;
}

.faq2-answer-text {
  font-size: 14.5px;
  color: var(--text-color);
  line-height: 1.85;
  margin-bottom: 14px;
}

.faq2-answer-text strong {
  color: var(--dark-color);
  font-weight: 700;
}

.faq2-answer-text em {
  color: var(--primary-color);
  font-style: normal;
  font-weight: 600;
}

.faq2-tip {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: rgba(31, 79, 143, .05);
  border: 1px solid rgba(31, 79, 143, .18);
  border-radius: 12px;
  padding: 13px 16px;
  margin-top: 12px;
}

.faq2-tip i {
  color: var(--primary-color);
  font-size: 14px;
  margin-top: 2px;
  flex-shrink: 0;
}

.faq2-tip p {
  font-size: 13px;
  color: var(--text-color);
  line-height: 1.7;
  margin: 0;
}

.faq2-read-more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--heading-font);
  font-size: 12px;
  font-weight: 700;
  color: var(--primary-color);
  margin-top: 12px;
  transition: gap .2s;
  text-decoration: none;
}

.faq2-read-more:hover {
  gap: 10px;
  color: var(--primary-color);
}

.faq2-read-more i {
  font-size: 10px;
}

.faq2-item:has(input:checked) {
  background: rgba(31, 79, 143, .025);
}

/* ===================================================================   STILE TITOLI CATEGORIE =================================================================== */

.menu-category-title {
  font-family: var(--heading-font), "Raleway", sans-serif;
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--dark-color, #121212);
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 2px;
  position: relative;
  margin-top: 70px;
  margin-bottom: 20px;
  padding-bottom: 15px;
  scroll-margin-top: 100px;
}

/* La linea decorativa colorata sotto il testo */

.menu-category-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background-color: var(--primary-color, #1f4f8f);
  border-radius: 4px;
}

/* Rimpicciolisce elegantemente i titoli sugli smartphone */

@media (max-width: 768px) {
  .menu-category-title {
    font-size: 2rem;
    margin-top: 50px;
    margin-bottom: 10px;
    scroll-margin-top: 80px;
  }
}

.blog-title1 {
  align-items: center;
  gap: 12px;
  padding: 22px 0;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

#banner-contatti {
  background-image: url('../../assets/img/WhatsApp%20Image%202026-05-30%20at%2010.02.33%20PM.jpeg') !important;
}

