/* ============================================================
   CHAAT LOUNGE — Modern Premium Stylesheet
   ============================================================ */

:root {
  --red: #D12A2A;
  --red-hover: #b02020;
  --green: #111111;
  --green-hover: #000000;
  --black: #111111;
  --dark: #222222;
  --gray: #666666;
  --light-gray: #E5E5E5;
  --white: #ffffff;
  --bg-cream: #ffffff;
  --bg-dark: #1A1A1A;
  --serif: 'Playfair Display', serif;
  --sans: 'Poppins', sans-serif;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --shadow-sm: 0 4px 6px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 10px 25px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 20px 40px rgba(0, 0, 0, 0.12);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--sans);
  color: var(--black);
  background-color: var(--bg-cream);
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  display: block;
}

button {
  border: none;
  background: none;
  cursor: pointer;
  font-family: inherit;
}

/* ---- REVEAL ANIMATIONS ---- */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---- COMMON CLASSES ---- */
.container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 2rem;
}

.red {
  color: var(--red);
}

.green {
  color: var(--green);
}

.sec-eyebrow {
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--red);
  margin-bottom: 1rem;
}

/* Buttons */
.btn-red,
.btn-ghost-dark,
.btn-white,
.btn-white-outline,
.btn-green {
  display: inline-block;
  padding: 0.8rem 1.8rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: var(--transition);
  text-align: center;
}

.btn-red {
  background: var(--red);
  color: var(--white);
  box-shadow: var(--shadow-sm);
}

.btn-red:hover {
  background: var(--red-hover);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.btn-ghost-dark {
  background: transparent;
  color: var(--black);
  border: 2px solid var(--black);
}

.btn-ghost-dark:hover {
  background: var(--black);
  color: var(--white);
}

.btn-white {
  background: var(--white);
  color: var(--black);
  box-shadow: var(--shadow-sm);
}

.btn-white:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.btn-white-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
}

.btn-white-outline:hover {
  background: var(--white);
  color: var(--black);
}

.btn-green {
  background: var(--green);
  color: var(--white);
}

.btn-green:hover {
  background: var(--green-hover);
  transform: translateY(-3px);
}


/* ================= NAVBAR ================= */
#navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  padding: 1rem 0;
  transition: var(--transition);
}

#navbar.scrolled {
  background: var(--white);
  padding: 1rem 0;
  box-shadow: var(--shadow-sm);
}

.nav-wrap {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-left {
  flex: 1;
}

.nav-tag {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--gray);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.logo {
  font-family: var(--serif);
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--black);
  flex: 1;
  text-align: center;
}

.logo em {
  font-style: normal;
  color: var(--red);
}

.nav-links {
  flex: 1;
  display: flex;
  justify-content: flex-end;
  gap: 2rem;
  align-items: center;
}

.nav-links a {
  font-weight: 500;
  font-size: 0.9rem;
  color: var(--dark);
  transition: var(--transition);
}

.nav-links a:hover {
  color: var(--red);
}

.nav-cta {
  background: var(--red);
  color: var(--white) !important;
  padding: 0.6rem 1.4rem;
  border-radius: 50px;
}

.nav-cta:hover {
  background: var(--red-hover);
}

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 30px;
  height: 20px;
  z-index: 101;
}

.burger span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--black);
  transition: var(--transition);
}

.burger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.burger.open span:nth-child(2) {
  opacity: 0;
}

.burger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mob-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: var(--white);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  transform: translateY(-100%);
  transition: transform 0.5s cubic-bezier(0.77, 0, 0.175, 1);
  z-index: 99;
}

.mob-nav.open {
  transform: translateY(0);
}

.mob-nav a {
  font-size: 1.5rem;
  font-family: var(--serif);
  font-weight: 700;
}

.mob-cta {
  background: var(--red);
  color: var(--white);
  padding: 1rem 2rem;
  border-radius: 50px;
}


/* ================= HERO ================= */
#hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 8rem 2rem 4rem;
  position: relative;
  overflow: hidden;
}

.hero-wrap {
  max-width: 1300px;
  margin: auto auto;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 4rem;
  align-items: center;
}

.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--white);
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  box-shadow: var(--shadow-sm);
  margin-bottom: 2rem;
}

.pill-dot {
  width: 8px;
  height: 8px;
  background: var(--green);
  border-radius: 50%;
  display: block;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(43, 89, 61, 0.4);
  }

  70% {
    box-shadow: 0 0 0 10px rgba(43, 89, 61, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(43, 89, 61, 0);
  }
}

.hero-h1 {
  font-family: var(--serif);
  font-size: clamp(3rem, 6vw, 5rem);
  line-height: 1.1;
  font-weight: 900;
  margin-bottom: 1.5rem;
}

.line-black {
  display: block;
}

.word-red {
  color: var(--red);
  font-style: italic;
}

.hero-sub-row {
  max-width: 500px;
}

.hero-desc {
  font-size: 1.1rem;
  color: var(--gray);
  margin-bottom: 2.5rem;
}

.hero-actions {
  display: flex;
  gap: 1rem;
}

/* Hero Image & Plate */
.hero-img-col {
  position: relative;
  display: flex;
  justify-content: center;
}

.hero-plate-wrap {
  position: relative;
  width: 500px;
  height: 500px;
}

.plate-accent {
  position: absolute;
  top: -5%;
  left: -5%;
  width: 110%;
  height: 110%;
  border-radius: 50%;
  border: 2px dashed rgba(209, 42, 42, 0.3);
  animation: rotate 30s linear infinite;
}

@keyframes rotate {
  100% {
    transform: rotate(360deg);
  }
}

.hero-plate {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: #eee;
  position: relative;
  z-index: 2;
}

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

.plate-fallback {
  display: none;
  font-size: 8rem;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

.hero-float-tag {
  position: absolute;
  background: var(--white);
  padding: 1rem;
  border-radius: 12px;
  box-shadow: var(--shadow-md);
  z-index: 3;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  top: 10%;
  left: -10%;
  animation: float 6s ease-in-out infinite;
}

.tag-2 {
  top: auto;
  bottom: 10%;
  left: auto;
  right: -5%;
  animation-delay: -3s;
}

.hero-float-tag span {
  font-weight: 700;
  font-size: 1.1rem;
}

.hero-float-tag p {
  font-size: 0.8rem;
  color: var(--gray);
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-15px);
  }
}

/* Hero Stats */
.hero-stats-bar {
  max-width: 1300px;
  margin: 4rem auto 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: var(--white);
  padding: 2rem 4rem;
  border-radius: 20px;
  box-shadow: var(--shadow-md);
}

.hstat {
  text-align: center;
}

.hnum {
  font-family: var(--serif);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--black);
}

.hstat sup {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--red);
}

.hstat p {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--gray);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.hstat-line {
  width: 1px;
  height: 50px;
  background: var(--light-gray);
}


/* ================= MARQUEE ================= */
.marquee-strip {
  background: var(--black);
  padding: 1.5rem 0;
  overflow: hidden;
  white-space: nowrap;
  margin-top: 2rem;
}

.marquee-inner {
  display: inline-block;
  animation: marquee 20s linear infinite;
}

.marquee-inner span {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-style: italic;
  color: var(--white);
  margin: 0 1rem;
}

.marquee-inner b {
  color: var(--red);
  font-size: 1.2rem;
  margin: 0 1rem;
}

@keyframes marquee {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}


/* ================= STORY BAND ================= */
.story-band {
  background: var(--red);
  color: var(--white);
  padding: 8rem 2rem;
  position: relative;
  overflow: hidden;
}

.story-wrap {
  max-width: 1300px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 5rem;
  align-items: center;
  position: relative;
  z-index: 2;
}

.story-img-col {
  position: relative;
}

.story-img-wrapper {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.story-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 4/5;
  transition: transform 0.6s ease;
  display: block;
}

.story-img-wrapper:hover .story-img {
  transform: scale(1.05);
}

.story-badge {
  position: absolute;
  bottom: 2rem;
  right: -2rem;
  background: var(--white);
  color: var(--black);
  padding: 1.5rem;
  border-radius: 20px;
  box-shadow: var(--shadow-lg);
  text-align: center;
  z-index: 3;
}

.story-badge strong {
  display: block;
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--red);
}

.story-badge span {
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--gray);
}

.story-label {
  font-size: 0.95rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 1.5rem;
  color: #FFD2D2;
}

.story-headline {
  font-family: var(--serif);
  font-size: clamp(2.5rem, 4vw, 4rem);
  line-height: 1.1;
  font-weight: 900;
  margin-bottom: 2rem;
}

.story-headline span {
  font-style: italic;
  color: #FFD2D2;
  display: block;
}

.story-desc {
  font-size: 1.15rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
  opacity: 0.95;
  font-weight: 300;
}

.story-stats-row {
  display: flex;
  gap: 4rem;
  margin: 3rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 2rem;
}

.ss span {
  font-family: var(--serif);
  font-size: 3rem;
  font-weight: 900;
  display: block;
  color: var(--white);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.ss p {
  font-size: 0.9rem;
  opacity: 0.9;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}


/* ================= MENU ================= */
#menu {
  padding: 12rem 2rem 6rem;
  background: var(--bg-cream);
}

/* Editorial Head */
.menu-editorial-head {
  max-width: 1300px;
  margin: 0 auto 5rem;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  border-bottom: 2px solid var(--black);
  padding-bottom: 2rem;
}

.med-left {
  display: flex;
  gap: 2rem;
  align-items: flex-start;
}

.med-num {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--red);
}

.med-title {
  font-family: var(--serif);
  font-size: clamp(2.5rem, 5vw, 4rem);
  line-height: 0.9;
  font-weight: 900;
}

.med-right {
  max-width: 400px;
  text-align: right;
}

.med-right p {
  font-size: 1rem;
  color: var(--gray);
  margin-bottom: 1rem;
}

.view-all-link {
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.9rem;
  border-bottom: 2px solid var(--red);
  padding-bottom: 2px;
}

/* Menu Body */
.menu-body {
  max-width: 1300px;
  margin: 0 auto 8rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}

.cat-list {
  display: flex;
  flex-direction: column;
}

.cat-row {
  display: flex;
  align-items: center;
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--light-gray);
  transition: var(--transition);
}

.cat-row:hover {
  padding-left: 1rem;
  border-color: var(--black);
}

.cn {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--gray);
  width: 40px;
}

.cname {
  font-family: var(--serif);
  font-size: 1.8rem;
  font-weight: 700;
  flex: 1;
}

.carrow {
  font-size: 1.5rem;
  opacity: 0;
  transition: var(--transition);
}

.cat-row:hover .carrow {
  opacity: 1;
  color: var(--red);
}

.cat-plates {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  position: relative;
}

.cat-plate-item {
  text-align: center;
}

.cp-circle {
  width: 100%;
  aspect-ratio: 1;
  border-radius: 50%;
  overflow: hidden;
  margin-bottom: 1rem;
  position: relative;
  z-index: 2;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
}

.cat-plate-item:hover .cp-circle {
  transform: translateY(-10px);
}

.cp-circle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cp-fallback {
  display: none;
  font-size: 4rem;
  align-items: center;
  justify-content: center;
  height: 100%;
  background: #fff;
}

.cp-accent {
  position: absolute;
  width: 100%;
  aspect-ratio: 1;
  border-radius: 50%;
  z-index: 1;
  top: 10px;
  left: -10px;
  opacity: 0.1;
}

.cp-green {
  background: var(--green);
}

.cp-red {
  background: var(--red);
}

.cat-plate-item p {
  font-family: var(--serif);
  font-weight: 700;
  font-size: 1.2rem;
}

/* Craving Tabs */
.craving-band {
  max-width: 1000px;
  margin: 0 auto;
  background: var(--white);
  border-radius: 30px;
  padding: 4rem;
  box-shadow: var(--shadow-lg);
}

.craving-inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 3rem;
  flex-wrap: wrap;
  gap: 2rem;
}

.craving-tag {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--green);
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.craving-text h2 {
  font-family: var(--serif);
  font-size: 3rem;
  line-height: 1;
  font-weight: 900;
  margin-bottom: 1rem;
}

.craving-text p {
  color: var(--gray);
  font-size: 1.1rem;
}

.craving-tabs {
  display: flex;
  gap: 0.5rem;
  background: var(--light-gray);
  padding: 0.5rem;
  border-radius: 50px;
}

.ctab {
  padding: 0.8rem 1.5rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--gray);
  transition: var(--transition);
}

.ctab.active,
.ctab:hover {
  background: var(--white);
  color: var(--black);
  box-shadow: var(--shadow-sm);
}

/* Dish List */
.dish-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.dish-row {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 1.5rem;
  border: 1px solid var(--light-gray);
  border-radius: 20px;
  transition: var(--transition);
}

.dish-row:hover {
  border-color: var(--black);
  transform: translateX(5px);
  box-shadow: var(--shadow-sm);
}

.dr-img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  background: #eee;
  display: flex;
  align-items: center;
  justify-content: center;
}

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

.dr-fallback {
  font-size: 3rem;
  display: none;
}

.dr-info {
  flex: 1;
}

.dr-badge {
  display: inline-block;
  padding: 0.3rem 0.8rem;
  background: #FFF0F0;
  color: var(--red);
  border-radius: 50px;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0.5rem;
}

.green-badge {
  background: #E8F5E9;
  color: var(--green);
}

.dr-info h3 {
  font-family: var(--serif);
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 0.3rem;
}

.dr-info p {
  color: var(--gray);
  font-size: 0.9rem;
}

.dr-right {
  text-align: right;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 1rem;
}

.dr-price {
  font-weight: 700;
  font-size: 1.2rem;
}

.btn-add-sm {
  background: var(--white);
  border: 2px solid var(--black);
  padding: 0.5rem 1.2rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.85rem;
  transition: var(--transition);
}

.btn-add-sm:hover {
  background: var(--black);
  color: var(--white);
}


/* ================= GALLERY ================= */
#gallery {
  padding: 6rem 2rem;
  background: var(--bg-dark);
  color: var(--white);
}

.gallery-head {
  max-width: 1300px;
  margin: 0 auto 3rem;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

.gallery-head h2 {
  font-family: var(--serif);
  font-size: 3rem;
  font-weight: 900;
}

.ig-link {
  font-weight: 600;
  color: #aaa;
  transition: var(--transition);
}

.ig-link:hover {
  color: var(--white);
}

.gallery-grid {
  max-width: 1300px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 250px;
  gap: 1rem;
}

.gi {
  border-radius: 16px;
  overflow: hidden;
  position: relative;
}

.gi img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.gi:hover img {
  transform: scale(1.05);
}

.gi-tall {
  grid-row: span 2;
  grid-column: span 2;
}

.gi-fallback {
  display: none;
  font-size: 5rem;
  align-items: center;
  justify-content: center;
  height: 100%;
}


/* ================= TESTIMONIALS ================= */
#testimonials {
  padding: 8rem 2rem;
  background: var(--bg-cream);
}

.testi-inner {
  max-width: 1300px;
  margin: 0 auto;
}

.testi-head {
  text-align: center;
  margin-bottom: 5rem;
}

.testi-head h2 {
  font-family: var(--serif);
  font-size: 3.5rem;
  font-weight: 900;
  margin-bottom: 1rem;
}

.testi-head p {
  font-size: 1.2rem;
  color: var(--gray);
}

.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.tc {
  background: var(--white);
  padding: 3rem 2.5rem;
  border-radius: 20px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.tc:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
}

.tc-stars {
  color: #FFB800;
  font-size: 1.2rem;
  letter-spacing: 2px;
  margin-bottom: 1.5rem;
}

.tc p {
  font-size: 1.1rem;
  line-height: 1.8;
  font-style: italic;
  margin-bottom: 2rem;
  color: var(--dark);
}

.tc-author {
  display: flex;
  align-items: center;
  gap: 1rem;
  border-top: 1px solid var(--light-gray);
  padding-top: 1.5rem;
}

.tc-av {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 700;
}

.tc-author strong {
  display: block;
  font-size: 1.1rem;
}

.tc-author span {
  font-size: 0.8rem;
  color: var(--gray);
}


/* ================= ORDER SECTION ================= */
#order {
  padding: 8rem 2rem;
  background: var(--green);
  color: var(--white);
  overflow: hidden;
}

.order-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.order-tag {
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  opacity: 0.8;
  margin-bottom: 1rem;
}

.order-left h2 {
  font-family: var(--serif);
  font-size: 4.5rem;
  line-height: 1;
  font-weight: 900;
  margin-bottom: 2rem;
}

.order-left h2 span {
  color: #A7F3D0;
  font-style: italic;
}

.order-left p {
  font-size: 1.2rem;
  opacity: 0.9;
  margin-bottom: 3rem;
}

.order-btns {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.order-note {
  font-size: 0.85rem;
  opacity: 0.6;
}

.order-right {
  position: relative;
  display: flex;
  justify-content: center;
}

.order-plate-wrap {
  position: relative;
  width: 450px;
  height: 450px;
}

.op-accent {
  position: absolute;
  inset: -20px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  animation: rotate 20s linear infinite reverse;
}

.op-circle {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.op-circle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.op-fallback {
  display: none;
  font-size: 6rem;
  align-items: center;
  justify-content: center;
  height: 100%;
  background: #eee;
}

.order-tags {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.otag {
  position: absolute;
  background: var(--white);
  color: var(--black);
  padding: 0.8rem 1.5rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.9rem;
  box-shadow: var(--shadow-md);
  pointer-events: auto;
}

.otag:nth-child(1) {
  top: 10%;
  right: -5%;
  animation: float 4s infinite;
}

.otag:nth-child(2) {
  bottom: 20%;
  left: -10%;
  animation: float 5s infinite 1s;
}

.otag:nth-child(3) {
  bottom: -5%;
  right: 10%;
  animation: float 6s infinite 2s;
}


/* ================= OUTLETS ================= */
#outlets {
  padding: 8rem 0;
  background: var(--bg-cream);
}

.outlets-head {
  text-align: center;
  margin-bottom: 5rem;
}

.outlets-head .med-num {
  display: block;
  margin-bottom: 1rem;
}

.outlets-head h2 {
  font-family: var(--serif);
  font-size: 3.5rem;
  font-weight: 900;
  margin-bottom: 1rem;
}

.outlets-head p {
  font-size: 1.1rem;
  color: var(--gray);
}

.outlets-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.outlet-card {
  background: var(--white);
  padding: 3rem 2.5rem;
  border-radius: 20px;
  border: 1px solid var(--light-gray);
  transition: var(--transition);
}

.outlet-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-md);
  border-color: var(--black);
}

.oc-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
  border-bottom: 1px solid var(--light-gray);
  padding-bottom: 1rem;
}

.oc-num {
  font-family: var(--serif);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--gray);
  line-height: 1;
}

.oc-open {
  background: #E8F5E9;
  color: var(--green);
  padding: 0.4rem 1rem;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
}

.outlet-card h3 {
  font-family: var(--serif);
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
}

.outlet-card ul {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  margin-bottom: 2rem;
}

.outlet-card li {
  font-size: 0.95rem;
  color: var(--gray);
}

.oc-link {
  font-weight: 600;
  color: var(--red);
  font-size: 0.95rem;
}

.oc-link:hover {
  text-decoration: underline;
}

.outlet-franchise {
  background: var(--bg-dark);
  color: var(--white);
  border-color: var(--bg-dark);
}

.outlet-franchise .oc-top {
  border-color: rgba(255, 255, 255, 0.1);
}

.outlet-franchise .green-num {
  color: var(--green);
  font-size: 3rem;
}

.outlet-franchise p {
  font-size: 1.1rem;
  opacity: 0.8;
  margin-bottom: 2.5rem;
  line-height: 1.6;
}


/* ================= CONTACT ================= */
#contact {
  padding: 8rem 0;
  background: var(--white);
}

.contact-wrap {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 6rem;
  align-items: center;
}

.contact-left h2 {
  font-family: var(--serif);
  font-size: 3.5rem;
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

.contact-left p {
  font-size: 1.1rem;
  color: var(--gray);
  margin-bottom: 3rem;
}

.clinks {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.clink {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
}

.clink-ic {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.red-ic {
  background: #FFF0F0;
  color: var(--red);
}

.green-ic {
  background: #E8F5E9;
  color: var(--green);
}

.clink strong {
  display: block;
  font-size: 1.1rem;
  margin-bottom: 0.2rem;
}

.clink small {
  font-size: 0.95rem;
  color: var(--gray);
}

.contact-right {
  background: var(--bg-cream);
  padding: 4rem;
  border-radius: 30px;
}

.cform {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  position: relative;
}

.cf-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.cf-g {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.cf-g label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--dark);
}

.cf-g input,
.cf-g select,
.cf-g textarea {
  padding: 1rem 1.2rem;
  border: 1px solid var(--light-gray);
  border-radius: 12px;
  font-family: inherit;
  font-size: 1rem;
  background: var(--white);
  outline: none;
  transition: var(--transition);
}

.cf-g input:focus,
.cf-g select:focus,
.cf-g textarea:focus {
  border-color: var(--black);
}

.cf-submit {
  margin-top: 1rem;
  width: 100%;
  padding: 1.2rem;
  border-radius: 12px;
  font-size: 1.1rem;
}

.cf-ok {
  position: absolute;
  bottom: -3rem;
  left: 0;
  width: 100%;
  text-align: center;
  color: var(--green);
  font-weight: 600;
  opacity: 0;
  transform: translateY(10px);
  transition: var(--transition);
}

.cf-ok.show {
  opacity: 1;
  transform: translateY(0);
}


/* ================= FOOTER ================= */
footer {
  background: var(--black);
  color: var(--white);
  padding-top: 6rem;
}

.footer-accent-bar {
  height: 6px;
  background: linear-gradient(90deg, var(--red) 0%, var(--red) 50%, var(--green) 50%, var(--green) 100%);
  margin-bottom: 5rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 4rem;
  margin-bottom: 5rem;
}

.foot-brand p {
  color: #999;
  margin: 1.5rem 0;
  font-size: 1rem;
}

.foot-brand small {
  color: #666;
  font-size: 0.75rem;
  display: block;
  margin-bottom: 2rem;
}

.foot-logo {
  color: var(--white);
}

.foot-socials {
  display: flex;
  gap: 1rem;
}

.foot-socials a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #222;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 600;
  transition: var(--transition);
}

.foot-socials a:hover {
  background: var(--red);
}

.foot-col h4 {
  font-family: var(--serif);
  font-size: 1.3rem;
  margin-bottom: 2rem;
}

.foot-col a {
  display: block;
  color: #999;
  margin-bottom: 1rem;
  font-size: 0.95rem;
  transition: var(--transition);
}

.foot-col a:hover {
  color: var(--white);
  transform: translateX(5px);
}

.foot-col p {
  color: #999;
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
}

.foot-col strong {
  color: var(--white);
  font-size: 1.1rem;
  display: block;
  margin-top: 0.2rem;
}

.foot-fb {
  color: var(--red) !important;
  font-weight: 600;
}

.footer-bottom {
  border-top: 1px solid #222;
  padding: 2rem 0;
}

.footer-bot-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #666;
  font-size: 0.9rem;
}

.footer-bot-inner strong {
  color: var(--white);
}


/* ================= TOAST ================= */
.toast {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: var(--black);
  color: var(--white);
  padding: 1rem 1.5rem;
  border-radius: 12px;
  display: flex;
  align-items: center;
  gap: 1rem;
  box-shadow: var(--shadow-lg);
  transform: translateY(100px);
  opacity: 0;
  transition: var(--transition);
  z-index: 1000;
}

.toast.show {
  transform: translateY(0);
  opacity: 1;
}


/* ================= RESPONSIVE ================= */
@media (max-width: 1024px) {

  .hero-wrap,
  .story-wrap,
  .menu-body,
  .contact-wrap {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 3rem;
  }

  .hero-img-col {
    order: -1;
  }

  .story-right .btn-white {
    margin: 2rem auto 0;
  }

  .med-left {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .menu-editorial-head {
    flex-direction: column;
    align-items: center;
    gap: 2rem;
  }

  .med-right {
    text-align: center;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .testi-grid,
  .outlets-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .order-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .order-right {
    order: -1;
  }

  .order-btns {
    justify-content: center;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {

  .nav-links,
  .nav-cta {
    display: none;
  }

  .burger {
    display: flex;
  }

  .hero-h1 {
    font-size: 3rem;
  }

  .hero-stats-bar {
    flex-direction: column;
    gap: 2rem;
    padding: 2rem;
  }

  .hstat-line {
    width: 100%;
    height: 1px;
  }

  .story-stats-row {
    justify-content: center;
  }

  .cat-plates {
    grid-template-columns: 1fr;
  }

  .craving-band {
    padding: 2rem;
  }

  .craving-inner {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }

  .dish-row {
    flex-direction: column;
    text-align: center;
  }

  .dr-right {
    align-items: center;
  }

  .testi-grid,
  .outlets-grid {
    grid-template-columns: 1fr;
  }

  .cf-row {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .foot-socials {
    justify-content: center;
  }

  .footer-bot-inner {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .order-plate-wrap {
    width: 300px;
    height: 300px;
  }

  .otag {
    font-size: 0.8rem;
    padding: 0.6rem 1rem;
  }

  .marquee-inner span {
    font-size: 1.2rem;
  }

  .hc-plate-wrap {
    width: 280px;
    height: 280px;
  }

  .hc-plate {
    width: 220px;
    height: 220px;
    border-width: 8px;
  }
}

/* ---- LUCIDE ICON FIXES ---- */
.lucide {
  width: 1em;
  height: 1em;
  stroke-width: 2;
}

.inline-icon {
  width: 1.2em;
  height: 1.2em;
  vertical-align: middle;
}

.stars-flex {
  display: flex;
  gap: 4px;
  color: inherit;
}

.fill-current {
  fill: currentColor;
}

/* ---- PRO MAX UX RULES ---- */
/* Smooth hover transitions */
a,
button,
.cat-row,
.dish-row,
.outlet-card {
  transition: all 0.25s ease-in-out;
}

/* Ensure clickable elements have pointer cursor */
.cat-row,
.dish-row,
.outlet-card,
.btn-add-sm,
.ctab {
  cursor: pointer;
}

/* ---- LAYOUT & ALIGNMENT FIXES ---- */
.cat-plates {
  align-items: center;
  justify-items: center;
}

.cat-plate-item:last-child:nth-child(odd) {
  grid-column: 1 / -1;
  width: 50%;
  margin: 0 auto;
}

img {
  object-position: center;
}

.hero-img-col {
  align-items: center;
  justify-content: center;
  display: flex;
  width: 100%;
}

.hero-plate-wrap {
  margin: 0 auto;
}

.order-right {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

/* ================= BENTO CATEGORY CAROUSEL ================= */
.bento-slider-wrap {
  max-width: 1300px;
  margin: 0 auto 8rem;
  overflow: hidden;
  padding: 1rem 2rem;
}

.bento-slider {
  display: flex;
  gap: 1.5rem;
  overflow-x: auto;
  padding-bottom: 2rem;
  scroll-snap-type: x mandatory;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.bento-slider::-webkit-scrollbar {
  display: none;
}

.bento-card {
  min-width: 280px;
  height: 380px;
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  flex-shrink: 0;
  scroll-snap-align: start;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.bento-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
}

.bento-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s;
}

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

.bento-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0) 60%);
  pointer-events: none;
}

.bento-content {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 2rem 1.5rem;
  color: var(--white);
  z-index: 2;
  pointer-events: none;
}

.b-num {
  display: block;
  font-family: var(--serif);
  font-size: 1.2rem;
  font-style: italic;
  color: #A7F3D0;
  margin-bottom: 0.5rem;
}

.bento-content h3 {
  font-family: var(--serif);
  font-size: 2rem;
  line-height: 1.1;
  font-weight: 700;
}

/* ================= MODERN APP MENU GRID ================= */
.menu-grid-container {
  max-width: 1300px;
  margin: 0 auto 6rem;
  background: var(--white);
  border-radius: 32px;
  padding: 4rem;
  box-shadow: var(--shadow-lg);
}

.menu-grid-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 3rem;
  flex-wrap: wrap;
  gap: 2rem;
}

.menu-grid-header h2 {
  font-family: var(--serif);
  font-size: 3.5rem;
  line-height: 1;
  font-weight: 900;
}

.menu-grid-header p {
  color: var(--gray);
  font-size: 1.1rem;
  margin-top: 0.5rem;
}

.app-menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 2rem;
}

.menu-card {
  display: flex;
  flex-direction: column;
  background: var(--bg-cream);
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--light-gray);
  transition: var(--transition);
}

.menu-card:hover {
  border-color: var(--black);
  box-shadow: var(--shadow-md);
  transform: translateY(-5px);
}

.mc-img {
  width: 100%;
  height: 220px;
  position: relative;
  overflow: hidden;
}

.mc-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.menu-card:hover .mc-img img {
  transform: scale(1.05);
}

.mc-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: var(--white);
  color: var(--red);
  padding: 0.3rem 0.8rem;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: var(--shadow-sm);
  z-index: 2;
}

.mc-info {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.mc-info h3 {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.mc-info p {
  color: var(--gray);
  font-size: 0.95rem;
  line-height: 1.5;
  margin-bottom: 1.5rem;
  flex: 1;
}

.mc-bot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px dashed #ccc;
  padding-top: 1rem;
}

.mc-price {
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--black);
}

@media (max-width: 768px) {
  .menu-grid-container {
    padding: 2rem;
    border-radius: 20px;
  }

  .menu-grid-header {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }

  .bento-slider-wrap {
    padding: 1rem;
  }
}

/* ================= REDESIGN: MODERN ASYMMETRICAL STYLES ================= */
#hero-modern {
  display: flex;
  min-height: 100vh;
  background: var(--bg-cream);
  overflow: hidden;
  position: relative;
}

.hero-left {
  flex: 1;
  padding: 12rem 4rem 4rem 10%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  z-index: 2;
  position: relative;
}

.hero-right {
  flex: 1.2;
  position: relative;
}

.hero-right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-bottom-left-radius: 40px;
}

.hero-label {
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 2rem;
}

.hero-title {
  font-family: var(--serif);
  font-size: clamp(4rem, 7vw, 7rem);
  line-height: 0.9;
  font-weight: 900;
  margin-bottom: 2rem;
  color: var(--black);
}

.hero-subtitle {
  font-size: 1.2rem;
  color: var(--gray);
  max-width: 400px;
  margin-bottom: 3rem;
  line-height: 1.6;
}

.btn-hero {
  display: inline-table;
  background: var(--black);
  color: var(--white);
  padding: 1.2rem 3rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1.1rem;
  align-self: flex-start;
  transition: var(--transition);
}

.btn-hero:hover {
  transform: translateX(10px);
  background: var(--red);
  color: var(--white);
}

#categories-modern {
  padding: 8rem 0;
  background: var(--bg-cream);
}

.cat-mod-wrap {
  display: flex;
  flex-direction: column;
  gap: 4rem;
}

.cm-text {
  display: flex;
  align-items: flex-start;
  gap: 2rem;
}

.cm-text .med-num {
  color: var(--red);
  font-size: 2rem;
  font-family: var(--serif);
  font-weight: 700;
  line-height: 1;
}

.cm-text h2 {
  font-family: var(--serif);
  font-size: clamp(3.5rem, 5vw, 5rem);
  line-height: 0.9;
  font-weight: 900;
}

.cm-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 250px;
  gap: 2rem;
}

.cm-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  background: var(--black);
  cursor: pointer;
}

.cm-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s;
  opacity: 0.9;
}

.cm-card:hover img {
  transform: scale(1.05);
  opacity: 1;
}

.cm-card h3 {
  position: absolute;
  bottom: 2rem;
  left: 2rem;
  color: var(--white);
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 700;
  z-index: 2;
  margin: 0;
}

.cm-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent 60%);
  pointer-events: none;
}

.cm-tall {
  grid-row: span 2;
}

.cm-wide {
  grid-column: span 2;
}

#cta-modern {
  padding: 10rem 0;
  background: var(--red);
  color: var(--white);
}

.cta-mod-inner {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 4rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.cta-mod-inner h2 {
  font-family: var(--serif);
  font-size: clamp(4rem, 9vw, 9rem);
  line-height: 0.9;
  font-weight: 900;
  margin-bottom: 3rem;
}

.btn-massive {
  display: inline-block;
  background: var(--white);
  color: var(--red);
  font-family: var(--sans);
  font-size: clamp(1.2rem, 2vw, 2rem);
  font-weight: 700;
  padding: 1.5rem 4rem;
  border-radius: 100px;
  transition: transform 0.3s;
}

.btn-massive:hover {
  transform: translateX(20px);
}

@media (max-width: 1024px) {
  #hero-modern {
    flex-direction: column;
  }

  .hero-left {
    padding: 8rem 2rem 4rem;
  }

  .hero-right {
    min-height: 50vh;
  }

  .cm-grid {
    grid-template-columns: 1fr 1fr;
  }

  .cm-wide {
    grid-column: span 1;
  }

  .cm-tall {
    grid-row: span 1;
  }
}

@media (max-width: 768px) {
  .cm-grid {
    grid-template-columns: 1fr;
  }

  .cta-mod-inner {
    padding: 0 2rem;
  }
}


/* ================= HERO CAROUSEL & VIBE ================= */
:root {
  --orange: #D12A2A;
  --orange-hover: #b02020;
  --light-bg: #ffffff;
}

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

#hero-carousel {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  background: var(--light-bg);
  padding-top: 120px;
  padding-bottom: 40px;
  display: flex;
  flex-direction: column;
}

.hc-slider-track {
  display: grid;
  width: 100%;
  margin: 130px auto;
}

.hc-slide {
  grid-area: 1 / 1;
  width: 100%;
  opacity: 0;
  pointer-events: none;
  transition: opacity 1s cubic-bezier(0.65, 0, 0.35, 1), transform 1s cubic-bezier(0.65, 0, 0.35, 1);
  transform: scale(0.95);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 2rem;
}

.hc-slide.active {
  opacity: 1;
  pointer-events: auto;
  transform: scale(1);
  z-index: 2;
}

.hc-wrap {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 4rem;
  align-items: center;
  width: 100%;
  position: relative;
  z-index: 2;
}

/* Floating Elements */
.float-ing {
  position: absolute;
  opacity: 0.8;
  z-index: 1;
  pointer-events: none;
  mix-blend-mode: multiply;
  border-radius: 50%;
}

.ing-1 {
  top: 15%;
  left: 10%;
  width: 60px;
  animation: float 6s ease-in-out infinite;
}

.ing-2 {
  bottom: 20%;
  left: 5%;
  width: 80px;
  animation: float 8s ease-in-out infinite 1s;
}

.ing-3 {
  top: 20%;
  right: 5%;
  width: 70px;
  animation: float 7s ease-in-out infinite 2s;
}

.hc-left {
  max-width: 600px;
}

.hc-welcome {
  color: var(--orange);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 1rem;
}

.hc-title {
  font-family: var(--sans);
  font-size: clamp(3rem, 5vw, 5rem);
  font-weight: 900;
  line-height: 1.1;
  color: var(--black);
  margin-bottom: 2rem;
}

.hc-highlight {
  position: relative;
  color: var(--orange);
  display: inline-block;
}

.hc-circle-svg {
  position: absolute;
  inset: -10px;
  width: calc(100% + 20px);
  height: calc(100% + 20px);
  z-index: -1;
}

.hc-desc {
  font-size: 1.1rem;
  color: var(--gray);
  margin-bottom: 3rem;
  line-height: 1.8;
}

.hc-actions {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.btn-solid-orange {
  background: var(--orange);
  color: var(--white);
  padding: 1rem 2.5rem;
  border-radius: 12px;
  font-weight: 600;
  transition: var(--transition);
  display: inline-block;
}

.btn-solid-orange:hover {
  background: var(--orange-hover);
  transform: translateY(-3px);
  color: var(--white);
  box-shadow: var(--shadow-md);
}

.btn-outline-gray {
  background: transparent;
  color: var(--gray);
  border: 2px solid var(--light-gray);
  padding: 1rem 2.5rem;
  border-radius: 12px;
  font-weight: 600;
  transition: var(--transition);
  display: inline-block;
}

.btn-outline-gray:hover {
  border-color: var(--black);
  color: var(--black);
}

.hc-time {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--gray);
  font-size: 0.95rem;
  font-weight: 500;
}

.hc-right {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hc-plate-wrap {
  position: relative;
  width: 600px;
  height: 600px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hc-dashed-ring {
  position: absolute;
  inset: -30px;
  border: 1px solid rgba(209, 42, 42, 0.3);
  border-radius: 50%;
  animation: pulseRing 4s ease-in-out infinite;
  box-shadow: 0 0 40px rgba(209, 42, 42, 0.15);
}

.hc-dashed-ring::after {
  content: '';
  position: absolute;
  inset: -20px;
  border: 1px dashed rgba(17, 17, 17, 0.2);
  border-radius: 50%;
  animation: rotateRing 40s linear infinite reverse;
}

@keyframes pulseRing {

  0%,
  100% {
    transform: scale(1);
    opacity: 0.8;
  }

  50% {
    transform: scale(1.05);
    opacity: 0.4;
  }
}

@keyframes rotateRing {
  100% {
    transform: rotate(360deg);
  }
}

.hc-plate {
  width: 500px;
  height: 500px;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15), inset 0 0 0 10px rgba(255, 255, 255, 0.5);
  background: var(--white);
  position: relative;
  z-index: 2;
  border: 8px solid var(--white);
}

.fade-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.3s ease-in-out;
}

/* Badges */
.hc-badge-top {
  position: absolute;
  top: 5%;
  right: 5%;
  background: var(--white);
  padding: 0.8rem 1.5rem;
  border-radius: 50px;
  font-weight: 700;
  box-shadow: var(--shadow-md);
  z-index: 3;
  display: flex;
  align-items: center;
  animation: float 4s ease-in-out infinite;
}

.hc-badge-bottom {
  position: absolute;
  bottom: 5%;
  left: -10%;
  background: var(--white);
  padding: 1rem;
  border-radius: 20px;
  box-shadow: var(--shadow-lg);
  z-index: 3;
  display: flex;
  gap: 1rem;
  align-items: center;
  width: 280px;
  animation: float 5s ease-in-out infinite 1s;
}

.hc-badge-bottom img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
}

.hc-bb-info strong {
  display: block;
  font-size: 1.1rem;
  color: var(--black);
}

.hc-stars {
  color: var(--orange);
  font-size: 0.8rem;
  letter-spacing: 1px;
  margin: 2px 0;
}

.hc-bb-info p {
  font-size: 0.75rem;
  color: var(--gray);
  margin-bottom: 5px;
}

.hc-price {
  font-weight: 700;
  color: var(--orange);
}

/* Bento Strict Fixes */
.cm-card {
  border-radius: 30px !important;
}

.cm-card img {
  border-radius: 30px !important;
}

/* Modern Footer */
.modern-footer {
  background: #111;
  color: #fff;
  padding: 6rem 0 0;
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr 1.5fr;
  gap: 4rem;
  padding-bottom: 4rem;
}

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

.ft-brand p {
  color: #aaa;
  margin: 1.5rem 0;
  line-height: 1.6;
}

.ft-socials {
  display: flex;
  gap: 1rem;
}

.ft-socials a {
  width: 40px;
  height: 40px;
  background: #222;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition: var(--transition);
}

.ft-socials a:hover {
  background: var(--orange);
  transform: translateY(-3px);
}

.modern-footer h3 {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  font-family: var(--sans);
}

.ft-links a {
  display: block;
  color: #aaa;
  margin-bottom: 1rem;
  transition: var(--transition);
}

.ft-links a:hover {
  color: var(--orange);
  padding-left: 5px;
}

.ft-contact p {
  display: flex;
  align-items: center;
  gap: 1rem;
  color: #aaa;
  margin-bottom: 1rem;
}

.ft-contact p i {
  color: var(--orange);
}

.ft-newsletter p {
  color: #aaa;
  margin-bottom: 1.5rem;
}

.nl-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.nl-form input {
  padding: 1rem;
  border-radius: 12px;
  border: none;
  outline: none;
  background: #222;
  color: #fff;
}

.footer-bottom {
  border-top: 1px solid #222;
  padding: 2rem 0;
  text-align: center;
  color: #666;
  font-size: 0.9rem;
}

@media (max-width: 1024px) {
  .hc-wrap {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 3rem;
  }

  .hc-left {
    margin: 0 auto;
  }

  .hc-actions {
    justify-content: center;
  }

  .hc-time {
    justify-content: center;
  }

  .hc-plate-wrap {
    width: 380px;
    height: 380px;
    margin: 0 auto;
  }

  .hc-plate {
    width: 300px;
    height: 300px;
  }

  .hc-badge-bottom {
    left: 50%;
    transform: translateX(-50%);
    bottom: -20px;
  }

  .hc-badge-top {
    right: 0;
  }

  .footer-top {
    grid-template-columns: 1fr 1fr;
  }

  .story-wrap {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .story-img-col {
    order: -1;
    max-width: 600px;
    margin: 0 auto;
  }

  .story-badge {
    right: -1rem;
  }
}

@media (max-width: 768px) {
  .footer-top {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .ft-socials {
    justify-content: center;
  }

  .ft-contact p {
    justify-content: center;
  }

  .hc-plate-wrap {
    width: 280px;
    height: 280px;
  }

  .hc-plate {
    width: 220px;
    height: 220px;
    border-width: 8px;
  }

  .hc-title {
    font-size: 2.8rem;
  }

  .story-stats-row {
    justify-content: center;
  }

  .story-badge {
    right: 1rem;
  }
}


/* ================= CAROUSEL SLIDE ANIMATIONS ================= */
.slide-anim {
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.4s ease;
  display: block;
}

.slide-anim-img {
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.5s ease;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.slide-out {
  transform: translateX(-30px);
  opacity: 0;
}

.slide-in {
  transform: translateX(30px);
  opacity: 0;
  animation: slideInText 0.4s forwards;
}

@keyframes slideInText {
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

.slide-out-img {
  transform: scale(0.8) rotate(-15deg);
  opacity: 0;
}

.slide-in-img {
  transform: scale(1.1) rotate(15deg);
  opacity: 0;
  animation: slideInImg 0.5s forwards;
}

@keyframes slideInImg {
  to {
    transform: scale(1) rotate(0deg);
    opacity: 1;
  }
}

/* Floating Elements Fix */
.float-ing {
  position: absolute;
  z-index: 10;
  pointer-events: none;
  opacity: 0.7;
}

.ing-1 {
  top: 15%;
  left: 10%;
  width: 50px;
  height: 50px;
  animation: float 6s ease-in-out infinite;
}

.ing-2 {
  bottom: 20%;
  left: 8%;
  width: 60px;
  height: 60px;
  animation: float 8s ease-in-out infinite 1s;
}

.ing-3 {
  top: 20%;
  right: 10%;
  width: 55px;
  height: 55px;
  animation: float 7s ease-in-out infinite 2s;
}

.ing-4 {
  bottom: 30%;
  right: 5%;
  width: 45px;
  height: 45px;
  animation: float 5s ease-in-out infinite 1.5s;
}

/* --- MOBILE HERO POLISH --- */
@media (max-width: 768px) {
  #hero-carousel {
    padding-top: 80px;
    min-height: 100vh;
    justify-content: center;
  }

  .hc-slider-track {
    margin: 100px auto;
  }

  .hc-plate-wrap {
    width: 260px;
    height: 260px;
    margin: 0 auto 2rem;
  }

  .hc-plate {
    width: 200px;
    height: 200px;
    border-width: 6px;
  }

  .hc-title {
    font-size: 2.5rem;
    line-height: 1.1;
  }

  .hc-desc {
    font-size: 1rem;
    padding: 0 1rem;
  }

  .hc-actions {
    flex-direction: column;
    gap: 1rem;
    padding: 0 2rem;
  }

  .hc-actions a {
    width: 100%;
    text-align: center;
  }

  .hc-badge-top,
  .hc-badge-bottom {
    transform: scale(0.8);
  }

  .hc-badge-bottom {
    bottom: -10px;
  }
}

/* --- EXTRA FLOATING ELEMENTS --- */
.ing-menu-1 {
  top: 10%;
  left: 5%;
  width: 60px;
  height: 60px;
  animation: float 6s ease-in-out infinite;
  opacity: 0.8;
}

.ing-menu-2 {
  bottom: 15%;
  right: 5%;
  width: 50px;
  height: 50px;
  animation: float 8s ease-in-out infinite 1s;
  opacity: 0.8;
}

.ing-story-1 {
  top: 20%;
  right: 10%;
  width: 55px;
  height: 55px;
  animation: float 7s ease-in-out infinite 2s;
  opacity: 0.8;
}

.ing-testi-1 {
  top: 30%;
  left: 8%;
  width: 45px;
  height: 45px;
  animation: float 5s ease-in-out infinite 1.5s;
  opacity: 0.8;
}

/* ================= PRELOADER ================= */
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--white);
  z-index: 99999;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  transition: opacity 0.6s ease, visibility 0.6s ease, transform 0.6s ease-in;
  transform-origin: center center;
}

#preloader.fade-out {
  opacity: 0;
  visibility: hidden;
  transform: scale(15);
}

.pl-logo {
  height: 80px;
  animation: wipe-reveal 1.5s ease-in-out infinite alternate;
  margin-bottom: 20px;
}

.pl-spinner { display: none;
  width: 40px;
  height: 40px;
  border: 4px solid var(--bg-light);
  border-top: 4px solid var(--red);
  border-radius: 50%;
  animation: spin-pl 1s linear infinite;
}

@keyframes pulse-pl {
  0% {
    transform: scale(0.95);
    opacity: 0.8;
  }

  100% {
    transform: scale(1.05);
    opacity: 1;
  }
}

@keyframes spin-pl {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

@media (max-width: 768px) {
  .contact-left {
    text-align: center;
  }
  .clink {
    justify-content: center;
    text-align: left;
  }
}
.ing-cat-1 { top: 15%; right: 5%; width: 50px; height: 50px; animation: float 6s ease-in-out infinite; opacity: 0.8; }
.ing-gal-1 { bottom: 10%; left: 8%; width: 60px; height: 60px; animation: float 7s ease-in-out infinite 1s; opacity: 0.8; }
.ing-cta-1 { top: 40%; right: 12%; width: 55px; height: 55px; animation: float 5s ease-in-out infinite 2s; opacity: 0.8; }
.ing-cont-1 { bottom: 20%; right: 10%; width: 45px; height: 45px; animation: float 8s ease-in-out infinite 1.5s; opacity: 0.8; }
.ing-ord-1 { top: 10%; left: 5%; width: 65px; height: 65px; animation: float 6s ease-in-out infinite; opacity: 0.8; }
.ing-ord-2 { bottom: 20%; right: 8%; width: 50px; height: 50px; animation: float 7s ease-in-out infinite 1s; opacity: 0.8; }

/* --- SECTION FIXES FOR FLOATING ELEMENTS --- */
#story, #menu, #categories-modern, #gallery, #testimonials, #cta-modern, #contact, #order-page {
  position: relative;
  overflow: hidden;
}
