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

html,
body {
  font-family: "Work Sans", sans-serif;
  color: #222;
  overflow-x: clip;
}

:root {
  /* Backgrounds */
  --bg-primary: #0f0f0f;

  /* Gold Palette */
  --gold-primary: #d4af37;
  --gold-light: #f4d03f;
  --gold-wheel: #d7bf6f;

  /* Red Palette */
  --red-primary: #9b1c1c;
  --red-dark: #7c1414;

  /* Accent Palette */
  --accent-primary: #3f7f5f;
  --accent-dark: #2f6f4f;
  --accent-glow: rgb(255, 187, 51);
}

/* ----------------------------------------------------- */
/* NAV SECTION (SAME FOR EACH PAGE)*/

.site-header {
  position: fixed;
  width: 100%;
  background: rgb(255, 187, 51);
  z-index: 1000;
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem 2rem;

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

.logo {
  flex-shrink: 0;
}

.logo a {
  font-family: "Carter One";
  font-size: clamp(1.5rem, 5vw, 2.5rem);
  color: black;
  text-decoration: none;
  white-space: nowrap;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 2rem;
}

.nav-links a {
  color: black;
  font-weight: 600;
  text-decoration: none;
  position: relative;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 0;
  height: 2px;
  background: black;
  transition: width 0.3s;
}

/* Hamburger Icon for Mobile */

.hamburger {
  width: 35px;
  height: 40px;
  position: relative;

  display: none;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;

  background: none;
  border: none;
  cursor: pointer;
}

.hamburger span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 3px;

  background-color: black;
  border-radius: 999px;

  transition: all 0.3s ease;
}

.hamburger span:nth-child(1) {
  top: 10px;
}
.hamburger span:nth-child(2) {
  top: 18px;
}

.hamburger span:nth-child(3) {
  top: 26px;
}

.hamburger.active span:nth-child(1) {
  top: 18px;
  transform: rotate(45deg);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  top: 18px;
  transform: rotate(-45deg);
}

/* Mobile Nav Menu Dropdown */

body.menu-open {
  overflow: hidden;
}

.mobile-overlay {
  visibility: hidden;
  opacity: 0;
  inset: 0;
  position: fixed;
  z-index: 999;
  pointer-events: none;

  display: flex;
  align-items: center;
  justify-content: center;

  background: rgba(0, 0, 0, 0.95);

  transition:
    opacity 0.3s ease,
    visibility 0.3s ease;
}

.mobile-overlay.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;

  transform: translateY(-40px);
  transition: transform 0.3s ease;
}

.mobile-nav a {
  text-decoration: none;
  color: var(--gold-primary);

  font-family: "Playfair Display", serif;
  font-size: 2rem;
  letter-spacing: 1px;

  opacity: 0;
  transform: translateY(20px);

  transition:
    color 0.3s ease,
    transform 0.3s ease,
    opacity 0.3s ease;
}

.mobile-nav a:hover {
  color: #fff;
  transform: scale(1.05);
}

.mobile-overlay.active .mobile-nav {
  transform: translateY(0);
  opacity: 1;
}

.mobile-overlay.active .mobile-nav a {
  transform: translateY(0);
  opacity: 1;
}

.mobile-nav a:nth-child(1) {
  transition-delay: 0.1s;
}

.mobile-nav a:nth-child(2) {
  transition-delay: 0.15s;
}

.mobile-nav a:nth-child(3) {
  transition-delay: 0.2s;
}

.mobile-nav a:nth-child(4) {
  transition-delay: 0.25s;
}

.mobile-nav a:nth-child(5) {
  transition-delay: 0.3s;
}
/* ----------------------------------------------------- */
/* HOME PAGE HERO SECTION */
.intro {
  min-height: 100vh;
  padding-top: 90px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;

  background:
    linear-gradient(rgba(0, 0, 0, 0.65), rgba(0, 0, 0, 0.65)),
    url("https://images.unsplash.com/photo-1523905330026-b8bd1f5f320e");
  background-size: cover;
  background-position: center;
  color: white;
}

.symbol {
  font-family: "Carter One";
  font-size: 2rem;
  color: rgb(230, 0, 0);
  margin-bottom: 0rem;
}

.jade-title {
  font-family: "Carter One";
  font-size: 3.5rem;
}

.tagline {
  font-family: "Darumadrop One";
  margin: 0.4rem 0 3rem;
  letter-spacing: 1px;
}

.intro-buttons {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.main-cta,
.secondary-cta {
  font-family: "Work Sans", sans-serif;
  letter-spacing: 0.5px;
  font-weight: 700;
}

.main-cta {
  background: rgb(255, 187, 51);
  color: #000;
  padding: 0.8rem 2.5rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition:
    transform 1s ease,
    background-color 0.3s ease;
  cursor: pointer;
}

.secondary-cta {
  border: 1px solid white;
  color: white;
  border-radius: 8px;
  cursor: pointer;
  text-decoration: none;
  background: transparent;
  padding: 0.9rem 1.7rem;
  transition:
    transform 1s ease,
    background-color 0.3s ease;
}

.intro-number {
  font-size: 1.2rem;
  margin-top: 3rem;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.8rem;
  opacity: 0.8;
}

.intro-number a {
  color: white;
  text-decoration: none;
  font-weight: 300;
  transition: opacity 0.7s ease;
  position: relative;
}

.intro-number a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 0;
  height: 2px;
  background: white;
  transition: width 0.3s ease;
}

.divider {
  font-size: 0.7rem;
  transform: translateY(-0.5px);
  opacity: 0.8;
}

/* ----------------------------------------------------- */
/* FRESHEST SECTION */

.freshest {
  padding: 4rem 2rem;
  background: #ece9e3;
}

.freshest-container {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 4rem;
}

/* Card Layout */
.freshest-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  padding: 2rem;
  border-radius: 20px;
}

/* Alternate layout */
.freshest-card:nth-child(even) {
  direction: rtl;
}

.freshest-card:nth-child(even) .freshest-text {
  direction: ltr;
}

/* Slight background variation */
.freshest-card:nth-child(odd) {
  background: #ffffff;
}

/* Images */
.freshest-card img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: 20px;
  transition: transform 0.6s ease;
}

/* Text */
.freshest-text h2 {
  font-family: "Playfair Display", serif;
  font-size: 2rem;
  margin-bottom: 1.5rem;
  position: relative;
}

/* Brand accent line */
.freshest-text h2::after {
  content: "";
  width: 0px;
  height: 6px;
  background: rgb(255, 187, 51);
  display: block;
  margin-top: 1.5rem;
  transition: width 0.6s ease;
  transition-delay: 0.5s;
}

.freshest-text.show h2::after {
  width: 100px;
}

.freshest-text p {
  margin-top: 1.5rem;
  font-size: 1.15rem;
  line-height: 1.9;
  color: #333;
  max-width: 38ch;
}

/* Subtle Nav Links */

.page-link {
  color: var(--accent-primary);
  font-weight: 500;
  opacity: 0.8;
  margin-top: 1rem;
  display: inline-block;
  text-decoration: none;
  font-family: "Playfair Display", serif;
  font-style: italic;
  transition:
    color 0.3s ease,
    transform 0.3s ease,
    opacity 0.3s ease;
}

.page-link:hover {
  opacity: 1;
  color: var(--accent-dark);
  transform: translateY(-3px);
}

.call-us {
  display: block;
  margin-top: 1.5rem;
  color: inherit;
  font-weight: 600;
  font-family: "Playfair Display", serif;
  font-style: italic;
}

.page-link.phone {
  font-family: "Work Sans", sans-serif;
  font-style: normal;
  font-size: 1.15rem;
  font-weight: 700;
  margin-top: 0;
  letter-spacing: 1px;

  font-size: 1.2rem;
  font-weight: 700;
}

.page-link::after,
.page-link.phone::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 2px;
  background: var(--accent-dark);
  transition: width 0.3s ease;
}

.page-link:hover::after,
.page-link.phone:hover::after {
  width: 100%;
}

.freshest-phone-links {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 0.5rem;
}

.freshest-phone-links .divider {
  opacity: 0.6;
}

/* ----------------------------------------------------- */
/* OPTIONS SECTION */

.options-container {
  justify-content: center;
}

.options-header {
  max-width: 1000px;
  margin: 0 auto 3rem;
  text-align: center;
  padding-top: 3rem;
}

.options-header h2 {
  font-family: "Playfair Display", serif;
  font-size: 2rem;
  margin-bottom: 1.2rem;
  position: relative;
}

.options-header h2::after {
  content: "";
  width: 0px;
  height: 6px;
  background: rgb(255, 187, 51);
  display: block;
  margin: 0.8rem auto 0;
  transition: width 0.6s ease;
  transition-delay: 1s;
}

.options-header.show h2::after {
  width: 150px;
}

.options-header p {
  opacity: 0.7;
  font-size: 0.95rem;
}

.service-options {
  width: 100%;
  margin: 2rem auto 4rem;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.option {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
}

.option img {
  width: 100%;
  height: 60vh;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.6));
  backdrop-filter: blur(3px);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  opacity: 0;
  transition: opacity 0.5s ease;
  cursor: pointer;
}

.overlay-content {
  text-align: center;
  max-width: 450px;
  padding: 0 1rem;
  transform: translateY(10px);
  transition: all 0.4s ease;
}

.overlay-text {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.overlay-text span:first-of-type {
  padding-bottom: 1rem;
}

.overlay-content h2 {
  font-size: 3rem;
  margin-bottom: 1rem;
  letter-spacing: 5px;
}

.overlay-content p {
  font-size: 0.9rem;
  opacity: 0.9;
  letter-spacing: 3px;
  line-height: 2rem;
}

/* ----------------------------------------------------- */
/* LOCATION SECTION */

.location {
  background: #f6f2d6;
  padding: 8rem 2rem;
  border-top: 1px solid rgba(0, 0, 0, 0.3);
  border-bottom: 1px solid rgba(0, 0, 0, 0.6);
}

.location-container {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  gap: 4rem;
  align-items: center;
  justify-content: center;
  grid-template-columns: 1fr 1fr;
}

.location-map-info h2 {
  font-family: "Playfair Display", serif;
  font-size: 2rem;
  line-height: 1.8;
  color: #333;
  text-align: center;
  margin-bottom: 1.5rem;
}

.location-map-info h2::after {
  content: "";
  width: 95px;
  height: 6px;
  background: rgb(255, 187, 51);
  display: block;
  margin-top: 0.8rem;
}

.address {
  text-transform: uppercase;
  font-style: normal;
  padding: 0rem 0 1.5rem;
  font-weight: 400;
  color: #ef2d1c;
  opacity: 0.9;
}

.location-map-info h3 {
  font-size: 1.1rem;
  word-spacing: 2px;
  line-height: 1.8;
  color: #333;
  margin-bottom: 2rem;
  text-align: left;
}

.location-map-info {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.map-button {
  display: inline-block;
  background: rgb(255, 187, 51);
  color: #000;
  padding: 0.8rem 2.5rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition:
    transform 1s ease,
    background-color 0.3s ease;
  align-self: center;
}

.location-map {
  width: 100%;
  height: 400px;
  overflow: hidden;
  border-radius: 20px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.5s ease;
}

.location-map iframe {
  width: 100%;
  height: 100%;
  border: none;
  transition: transform 0.5s ease;
}

/* ----------------------------------------------------- */
/* FOOTER SECTION (SAME FOR EACH PAGE) */
.footer {
  background: #101010;
  color: #8f8d8d;
  padding: 5rem 2rem 3rem;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
}

.footer-brand {
  text-align: center;
}

.footer-logo {
  font-family: "Carter One";
  font-size: 2.6rem;
  letter-spacing: 0.5px;
  color: rgb(255, 187, 51);
  margin-bottom: 0.75rem;
}

.footer-logo a {
  color: inherit;
  text-decoration: none;
}

.footer-tagline {
  color: #8f8d8d;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.footer-column {
  text-align: left;
}

.footer-column h4 {
  color: rgb(255, 187, 51);
  margin-bottom: 1rem;
  font-size: 1rem;
  letter-spacing: 0.5px;
}

.footer-column p,
.footer-column a {
  display: block;
  color: #8f8d8d;
  text-decoration: none;
  line-height: 1.8;
  transition: color 0.3s ease;
}

.footer-column a:hover {
  color: rgb(255, 185, 140);
}

.footer-column.contact p {
  margin-bottom: 1rem;
}

.footer-phone-group {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-phone-group a,
.quick-links a {
  color: rgb(255, 185, 140);
  opacity: 0.9;

  transition: all 0.3s ease;
}

.footer-phone-group a:hover,
.quick-links a:hover {
  color: rgb(255, 187, 51);
  opacity: 1;
  transform: translateY(-2px);

  filter: drop-shadow(0 0 8px rgba(214, 185, 140, 0.28));
}

 .footer-days, .footer-times {
    display: block;
  }

/* SOCIALS */

.socials {
  list-style: none;
  display: flex;
  gap: 1.2rem;
  padding: 0;
  justify-content: center;
}

.socials a {
  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 1.4rem;
  color: rgb(255, 185, 140);
  opacity: 0.78;
  text-decoration: none;

  transition:
    transform 0.3s ease,
    opacity 0.3s ease,
    filter 0.3s ease;
}

.socials a:hover {
  transform: translateY(-2px);
  opacity: 1;
  color: rgb(255, 187, 51);

  filter: drop-shadow(0 0 8px rgba(214, 185, 140, 0.28));
}

.socials svg {
  width: 30px;
  height: 30px;
  color: inherit;
  position: relative;
  bottom: 4px;
  left: 3px;
}

.footer-bottom {
  margin-top: 3rem;
  padding-top: 1.5rem;

  border-top: 1px solid rgba(255, 255, 255, 0.08);

  text-align: center;
  font-size: 0.85rem;
  color: #6f6f6f;
}

/* ----------------------------------------------------- */
/* MENU PAGE */

.menu-page {
  padding: 80px 2rem 40px;
}

.menu-content {
  max-width: 1100px;
  margin: 0 auto;
}

.menu-layout {
  display: grid;
  grid-template-columns: 1.7fr 1.3fr;
  gap: 40px;
}

/* Actual menu */
.menu-page {
  background: #ece9e3;
}

.menu-content {
  padding-top: 20px;
}

.category-bar {
  display: flex;
  flex-wrap: nowrap;
  gap: 10px;
  width: calc(100% + 20px);
  justify-content: flex-start;

  position: sticky;
  top: 93px;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;

  border-radius: 12px;

  z-index: 500;

  padding: 10px 10px 10px 16px;
  margin: 20px -10px 18px;

  background: #f7f4ee;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  backdrop-filter: blur(8px);
}

.category-bar::-webkit-scrollbar {
  display: none;
}

.category-bar button {
  flex-shrink: 0;

  background: transparent;
  color: rgba(0, 0, 0, 0.6);
  border: none;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 500;
  cursor: pointer;

  transition: all 0.2s ease;
}

.category-bar button:hover {
  background: rgba(0, 0, 0, 0.05);
  color: black;
  transform: translateY(-1px);
}

.category-bar button.active {
  background: var(--gold-light);
  color: black;
  border-color: var(--accent-dark);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
}

.menu-category {
  margin-bottom: 3rem;
  scroll-margin-top: 170px;
}

.menu-category h2 {
  font-family: "Playfair Display", serif;
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
  border-bottom: 2px solid rgba(0, 0, 0, 0.1);
  padding-bottom: 0.5rem;
}

.menu-item {
  display: grid;
  grid-template-columns: 1fr auto auto;
  font-size: 0.95rem;
  align-items: center;
  padding: 0.8rem 1rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  gap: 2rem;
}

.menu-item span {
  transition: transform 0.5s ease;
}

.menu-price-and-button {
  display: flex;
  gap: 20px;
  align-items: center;
  min-width: 140px;
  justify-content: flex-end;
}

.add-to-cart {
  background-color: var(--accent-primary);
  color: white;
  border-radius: 20px;
  padding: 0.4rem 0.9rem;
  border: none;
  cursor: pointer;
  transition: all 0.2s ease;
}

.add-to-cart:hover {
  background-color: #2f6a3d;
  transform: scale(1.05);
}

.add-to-cart.added-pop {
  transform: scale(1.15);
}

/* Set Menu Styling to match rest of menu */

.set-menu-card {
  padding: 1.5rem;
  margin-bottom: 1.6rem;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid rgba(190, 150, 95, 0.14);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.set-menu-card h3 {
  margin-bottom: 1rem;

  color: var(--accent-primary);

  font-size: 1.4rem;
  font-family: "Playfair Display", serif;
}

.set-menu-sub {
  margin-bottom: 1rem;
  color: rgba(0, 0, 0, 0.5);
  font-size: 0.9rem;
}

.set-menu-list {
  padding-left: 1.2rem;
  margin-bottom: 1.5rem;

  color: rgba(0, 0, 0, 0.75);
  line-height: 1.7;
}

.set-menu-btn {
  border: none;
  padding: 0.7rem 1rem;
  border-radius: 999px;
  background: var(--accent-primary);
  color: white;
  font-weight: 600;
  cursor: pointer;

  transition: all 0.25s ease;
}

.set-menu-btn:hover {
  transform: translateY(-2px);
  opacity: 0.9;
}

.set-menu-prices {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

/* ----------------------------------------------------- */
/* CART SECTION */

#cart {
  border: 1px solid rgba(64, 135, 80, 0.3);
  background-color: rgba(64, 135, 80, 0.08);
  padding: 1.5rem;
  border-radius: 12px;
  position: sticky;
  top: 160px;
  height: fit-content;
  z-index: 100;
  margin-left: 20px;

  max-height: calc(100vh - 140px);
  overflow-y: auto;
  scrollbar-width: thin;

  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.05);
  transition:
    transform 0.15s ease,
    box-shadow 0.15s ease;
}

.cart-header {
  font-weight: 700;
  font-family: "Playfair Display", serif;
  font-style: italic;

  background: var(--accent-primary);
  color: white;

  letter-spacing: 0.5px;
  font-size: 1.2rem;

  padding: 14px 18px;
  margin: -25px -25px 16px -25px;
  border-radius: 12px 12px 0 0;

  display: flex;
  align-items: center;
  justify-content: space-between;

  position: relative;
}

.cart-header::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;

  width: 100%;
  height: 2px;

  background: var(--gold-light);
}

.empty-cart {
  text-align: center;
  padding: 20px 10px;
}

.empty-icon {
  font-size: 2rem;
  margin-bottom: 20px;
  color: var(--accent-dark);
  opacity: 0.8;
}

.empty-cart h3 {
  margin-bottom: 10px;
}

.empty-cart p {
  margin-bottom: 6px;
  opacity: 0.8;
}

.cart-note {
  font-size: 0.8rem;
  opacity: 0.7;
  margin-top: 10px;
}

.cart-item {
  margin-bottom: 18px;
  padding: 10px 0;
  row-gap: 10px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.cart-info {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 2px;
}

.cart-controls {
  display: flex;
  align-items: center;
  margin-top: 8px;
  gap: 8px;
}

.cart-pulse {
  transform: scale(1.008);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 1);
}

.cart-controls button {
  margin-left: 2px;
}

.cart-name {
  font-weight: 600;
  flex: 1;
  margin-right: 5px;
}

.cart-qty {
  opacity: 0.7;
  font-size: 0.85rem;
  margin-right: 4px;
}

.cart-price {
  font-weight: 600;
  white-space: nowrap;
}

.increase {
  background: white;
  border: 1px solid #ddd;
  border-radius: 6px;
  cursor: pointer;
  padding: 4px 8px;
  transition: all 0.2s ease;
}
.decrease {
  background: white;
  border: 1px solid #ddd;
  border-radius: 6px;
  cursor: pointer;
  padding: 4px 8px;
  transition: all 0.2s ease;
}

.remove {
  background: white;
  border: 1px solid #ddd;
  border-radius: 6px;
  cursor: pointer;
  padding: 4px 8px;
  transition: all 0.2s ease;
}

.increase:hover {
  background: var(--accent-primary);
  color: white;
  border-color: var(--accent-primary);
}

.decrease:hover {
  background: rgb(255, 187, 51);
  color: black;
  border-color: rgb(255, 187, 51);
}

.remove:hover {
  background: var(--red-primary);
  color: white;
  border-color: var(--red-primary);
}

.increase,
.decrease,
.remove {
  font-size: 0.75rem;
  padding: 5px 10px;
}

.total {
  margin-top: 17px;
  padding-top: 13px;
  border-top: 1px solid rgba(0, 0, 0, 0.15);
  width: 100%;
}

.total-row {
  display: flex;
  margin-top: 16px;
  padding-top: 10px;
  justify-content: space-between;
  align-items: center;
}

.total-label {
  margin-right: 1rem;
  opacity: 0.7;
  letter-spacing: 0.5px;
  border-right: 1px solid rgba(0, 0, 0, 0.05);
}

.total-price {
  font-weight: 750;
  font-size: 1.4rem;
}

.clear {
  margin-top: 12px;
  padding: 8px;
  width: 100%;
  font-weight: 600;
  border-radius: 6px;
  border: 1px solid rgba(0, 0, 0, 0.15);
  background: transparent;
  cursor: pointer;
  transition: all 0.2s ease;
}

.clear:hover {
  background: rgba(64, 135, 80, 0.1);
  border-color: rgba(64, 135, 80, 0.4);
}

.cart-end {
  margin-top: 14px;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  padding-top: 12px;
  text-align: center;
  letter-spacing: 0.3px;
}

.cart-reminder {
  font-size: 0.8rem;
  opacity: 0.8;
  margin-bottom: 14px;
  line-height: 1.2;
}

.cart-phones {
  margin-top: 12px;
  gap: 30px;
}

.phone-label {
  margin-bottom: 8px;
}

.cart-end .phone-link {
  font-size: 0.9rem;
  text-decoration: none;
  color: var(--accent-dark);
  transition: all 1s ease;
}

.cart-end .phone-link:hover {
  color: var(--accent-primary);
  text-decoration: underline;
}

#mobile-cart-bar,
#mobile-cart-modal {
  display: none;
}

/* Animation Stlying */

.animate {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease;
}

.animate.show {
  opacity: 1;
  transform: translate(0, 0);
}

.left {
  transform: translateX(-30px);
}

.right {
  transform: translateX(30px);
}

.fade-up {
  transform: translateY(30px);
}

/* ----------------------------------------------------- */
/* CHINESE ZODIAC PAGE */

/* ZODIAC HERO SECTION */

.zodiac-hero {
  background: #1a1a1a;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  align-items: center;
  gap: 1rem;
  min-height: 100vh;
}

.zodiac-header {
  font-family: "Cormorant Garamond", serif;
  color: var(--gold-light);
  font-size: 4rem;
  font-weight: 600;
  letter-spacing: -1px;
}

.zodiac-subheader {
  font-family: "Inter", sans-serif;
  color: rgba(255, 255, 255, 0.65);
  font-size: 1.1rem;
  font-weight: 300;
  max-width: 500px;
}

.zodiac-subheader::after {
  content: "";
  display: block;
  width: 0;
  height: 2px;
  margin: 25px auto 0;
  background: var(--red-primary);
  transition: width 1s ease;
}

.zodiac-subheader.show::after {
  width: 75%;
}

.zodiac-input {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
}

.zodiac-birthday-input {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: white;
  padding: 0.9rem 1rem;
  border-radius: 999px;
  font-size: 1rem;
  transition: 0.3s ease;
}

.zodiac-birthday-input:focus {
  border-color: #d4af37;
  box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.15);
  outline: none;
}

.zodiac-reveal-btn {
  background: var(--gold-light);
  color: #111;
  border: none;
  border-radius: 999px;
  padding: 0.9rem 1.5rem;
  font-weight: 600;
  font-size: 1.1rem;
  cursor: pointer;
  transition:
    transform 0.3s ease,
    filter 0.3s ease,
    background 0.3s ease;
}

.zodiac-reveal-btn:hover {
  transform: translateY(-2px);

  background: var(--gold-light);

  box-shadow:
    0 8px 20px rgba(212, 175, 55, 0.18),
    0 0 18px rgba(212, 175, 55, 0.12);

  filter: saturate(1.05);
}

.zodiac-reveal-btn.zodiac-pulse {
  transform: scale(1.05);
  filter: brightness(1.08);
}

/* ZODIAC WHEEL SECTION */

.zodiac-wheel-section {
  background:
    radial-gradient(circle at center, rgba(35, 66, 54, 0.12), transparent 65%),
    #0f0f0f;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  padding: 2rem 2rem 4rem;
  scroll-margin-top: 20px;
}

.zodiac-wheel-wrapper {
  position: relative;
  display: flex;
  justify-content: center;
  margin: 1.5rem 0 -3rem;
}

.zodiac-pointer {
  position: absolute;
  top: 28px;
  left: 50%;
  transform: translateX(-50%);

  width: 0;
  height: 0;

  border-left: 11px solid transparent;
  border-right: 11px solid transparent;
  border-top: 18px solid #f4d35e;
  filter: drop-shadow(0 0 10px rgba(212, 175, 55, 0.35));
}

.zodiac-wheel {
  width: 620px;
  height: 620px;
  display: block;
  max-width: 100%;
  height: auto;

  filter: drop-shadow(0 0 40px rgba(35, 66, 54, 0.18))
    drop-shadow(0 0 90px rgba(212, 175, 55, 0.08));
}

.zodiac-wheel-group {
  transform-origin: 250px 250px;
  will-change: transform;
}

.zodiac-wheel-circle {
  fill: #d7bf6f;
  stroke: #ffdf76;
  stroke-width: 6;
}

.zodiac-segment {
  stroke: rgb(124, 20, 20);
  stroke-width: 1.5;
  cursor: pointer;

  transition:
    fill 0.3s ease,
    filter 0.3s ease,
    transform 0.3s ease;
}

.zodiac-segment:hover {
  filter: brightness(1.03) drop-shadow(0 0 8px rgba(212, 175, 55, 0.18));
}

.zodiac-segment.active {
  fill: rgb(124, 20, 20);

  stroke-width: 2.5;

  filter: brightness(1.03) drop-shadow(0 0 8px rgba(0, 0, 0, 0.22));
}

.wheel-label {
  user-select: none;
  pointer-events: none;
}

.wheel-symbol {
  fill: rgb(124, 20, 20);
  font-size: 24px;
  font-weight: 500;
  pointer-events: none;
  transition:
    fill 0.4s ease,
    filter 0.4s ease;
}

.zodiac-wheel-icon {
  opacity: 0.82;

  transition:
    opacity 0.4s ease,
    filter 0.4s ease,
    transform 0.4s ease;
}

.wheel-label.active .zodiac-wheel-icon {
  opacity: 1;

  filter: drop-shadow(0 0 5px rgba(212, 175, 55, 0.78))
    drop-shadow(0 0 12px rgba(159, 188, 157, 0.18)) brightness(1.5);
}

.wheel-name {
  fill: #5a1f1f;
  font-size: 13px;
  letter-spacing: 1px;
  pointer-events: none;
  transition:
    fill 0.4s ease,
    filter 0.4s ease;
}

.wheel-label.active .wheel-symbol,
.wheel-label.active .wheel-name {
  fill: var(--gold-wheel);
  filter: brightness(1.12);
}

.zodiac-center-circle {
  fill: rgb(124, 20, 20);
  stroke: rgb(124, 20, 20);
  stroke-width: 2;
}

.zodiac-yin-yang {
  pointer-events: none;
}

/* ZODIAC RESULTS  */



.zodiac-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  text-align: center;
  opacity: 0.75;
  padding: 1rem 0 1rem;

  transition:
    opacity 0.6s ease,
    transform 0.6s ease,
    max-height 0.6s ease,
    padding 0.6s ease;
}

.zodiac-placeholder.hide {
  opacity: 0;
  max-height: 0;
  margin: 0;
  padding: 0;
  overflow: hidden;

  transform: translateY(-24px);
  pointer-events: none;
}

  .placeholder-icon img {
    width: 65px;
    height: 65px;
  }

.placeholder-icon {
  margin-top: 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 2rem;

  animation: slowSpin 30s linear infinite;

  filter:
    drop-shadow(0 0 12px rgba(79, 209, 161, 0.28))
    drop-shadow(0 0 32px rgba(79, 209, 161, 0.16))
    drop-shadow(0 0 55px rgba(79, 209, 161, 0.08))
    brightness(1.15);
}

@keyframes slowSpin {
  from {
    transform: rotate(90deg);
  }
  to {
    transform: rotate(450deg);
  }
}

.zodiac-placeholder p {
  margin-top: 1rem;
  color: rgba(255, 245, 220, 0.72);
  font-weight: 400;
  font-size: 1.15rem;
  max-width: 400px;
  line-height: 1.6;
  font-family: "Quicksand", sans-serif;
}

.zodiac-reveal-icon {
  display: flex;
  justify-content: center;
  margin: 0.5rem 0 1rem;

  opacity: 0;

  transform: translateY(20px) scale(0.92);

  transition:
    opacity 0.45s ease,
    transform 0.45s ease;
}

.zodiac-reveal-icon.show {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.zodiac-reveal-icon img {
  width: 100px;
  height: 100px;

  filter:
    drop-shadow(0 0 8px rgba(230,196,90,.35))
    drop-shadow(0 0 20px rgba(230,196,90,.20));

  transition:
    transform 0.6s ease,
    filter 0.6s ease;
}
.zodiac-reveal-icon img:hover {
    transform: scale(1.06);

    filter:
        brightness(1.12)
        drop-shadow(0 0 12px rgba(230,196,90,.55))
        drop-shadow(0 0 26px rgba(230,196,90,.35));
}

/* Main Info Card */

.zodiac-info-card {
  width: min(760px, 100%);
  padding: 3.5rem;
  border-radius: 32px;
  margin-top: 0.2rem;

  background: linear-gradient(
    to bottom,
    rgba(255, 255, 255, 0.07),
    rgba(255, 255, 255, 0.045)
  );

  border: 1px solid rgba(224, 196, 108, 0.14);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(14px);
  color: white;
}

.zodiac-element {
  color: var(--accent-dark);
}

.zodiac-info-card h2 {
  font-size: 3rem;
  color: var(--gold-primary);
  line-height: 1;
  margin-bottom: 1rem;
  margin-top: 0.5rem;
}

.zodiac-traits {
  color: rgba(255, 255, 255, 0.92);
  font-size: 1.15rem;
  font-weight: 500;
}

.zodiac-description {
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.9;
  font-size: 1rem;
  max-width: 58ch;
  margin-top: 0.5rem;
}

.zodiac-meta {
  color: rgba(255, 255, 255, 0.7);
  margin-top: 2rem;
  padding: 1.5rem;
  border-top: 1px solid rgba(224, 196, 108, 0.12);
}

.meta-item {
  padding-bottom: 1rem;
  margin-bottom: 1rem;
  border-bottom: 1px solid rgba(184, 155, 74, 0.2);
}

.meta-item:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.meta-header {
  color: var(--accent-primary);
  font-size: clamp(16px, 1vw, 23px);
  font-weight: 600;
  margin-bottom: 0.35rem;
  display: block;
}

.meta-value {
  display: flex;
  gap: 10px;
  color: inherit;
  font-size: clamp(13px, 1vw, 18px);
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 1px;
}

.number-group {
  display: flex;
  align-items: center;
  padding: 3px 8px;
  gap: 6px;
  border-radius: 999px;
  border: 1px solid rgba(212, 175, 55, 0.08);
  background: transparent;
}

.lucky-number-symbol {
  font-size: 1.2rem;
  color: var(--gold-primary);
}

.colour-group {
  display: flex;
  gap: 10px;
  align-items: center;
}

.colour-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  flex-shrink: 0;
}

.flower-group {
  display: flex;
  align-items: center;
  gap: 10px;
}

.flower-icon {
  width: 30px;
  height: 30px;
  object-fit: contain;
}
/* Compatibility Card */

.zodiac-compatibility-card {
  width: min(680px, 100%);
  margin-top: 2rem;
  padding: 2.5rem;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: white;
}

.zodiac-compatibility-card h2 {
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 0.75rem;
}

.compatibility-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 2rem;
  margin-top: 2rem;
}

.compatibility-column h4 {
  color: var(--gold-primary);
  margin-bottom: 1rem;
  font-size: 0.95rem;
  letter-spacing: 1px;
}

.compatibility-column p {
  display: flex;
  flex-direction: column;
  line-height: 2;
  gap: 0.55rem;
  color: rgba(255, 255, 255, 0.78);
  letter-spacing: 0.3px;
  padding-left: 0.85rem;
  border-left: 1px solid rgba(224, 196, 108, 0.12);
}

.compatibility-intro {
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.zodiac-info-card,
.zodiac-compatibility-card,
.zodiac-reveal-icon {
  display: none;

  opacity: 0;

  pointer-events: none;

  transform: translateY(20px);
}

.zodiac-info-card.show,
.zodiac-compatibility-card.show,
.zodiac-reveal-icon.show {
  display: block;

  opacity: 1;

  pointer-events: auto;

  transform: translateY(0);

  transition:
    opacity 0.8s ease,
    transform 0.8s ease;
}

/* ----------------------------------------------------- */
/* REVIEW PAGE  */

/* Hero Section */

.review-page {
  display: flex;
  flex-direction: column;
  align-items: center;

  background:
    radial-gradient(
      circle at top left,
      rgba(120, 30, 30, 0.18),
      transparent 40%
    ),
    radial-gradient(circle at center, rgba(180, 120, 60, 0.1), transparent 40%),
    radial-gradient(
      circle at bottom right,
      rgba(180, 120, 40, 0.1),
      transparent 35%
    ),
    linear-gradient(180deg, #241818 0%, #1a1212 100%);

  width: 100%;
  min-height: 100vh;

  padding-top: 120px;
}

.review-header {
  font-family: "Work Sans", serif;
  color: var(--gold-primary);
  font-size: 3.5rem;
  margin-bottom: 0.5rem;
}

.review-subheader {
  font-family: "Work Sans", serif;
  color: rgba(255, 255, 255, 0.8);
  font-size: 1rem;
  margin-bottom: 1.5rem;
}

.stat-card {
  width: 250px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
}

.stat-label {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 0;
}

.stat-star {
  font-size: 0.6em;
  position: relative;
  top: -2px;
}

.stat-number {
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--accent-primary);
  margin: 0;
}

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

.review-hero {
  display: flex;
  justify-content: center;
  align-items: center;

  min-height: 70vh;
}

.review-intro {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.review-stats {
  display: flex;
  gap: 0.5rem;
  margin-top: 1.5rem;
}



/* Reviews */

.featured-review-section {
  margin-top: 4rem;
}

.featured-review-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;

  width: 100%;
  max-width: 800px;
  margin-top: 0.5rem;
  padding: 2rem;
  border-radius: 20px;
  border: 1px solid rgba(214, 185, 140, 0.3);

  background: rgba(255, 255, 255, 0.09);
  backdrop-filter: blur(14px);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.35);

  transition:
    transform 0.3s ease,
    border 0.3s ease;

  text-decoration: none;
  cursor: pointer;
  color: inherit;
}

.featured-review-card:hover {
  transform: translateY(-4px) scale(1.01);
  border: 1px solid rgba(214, 185, 140, 0.75);
}

.featured-review-source {
  font-family: "Work Sans", serif;
  color: rgba(218, 185, 137, 1);
  text-transform: uppercase;
  letter-spacing: 1.1px;
  font-size: 1.15rem;
  margin-bottom: 0.9rem;
}

.featured-review-text {
  color: rgba(252, 247, 230, 0.95);
  line-height: 1.8;
  font-size: 1rem;
  margin-bottom: 0.8rem;
  font-family: "Quicksand", serif;
}

.featured-review-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
  color: #ffffff99;
}

.review-author {
  color: rgba(214, 185, 140, 0.8);
  font-size: 0.85rem;
  font-weight: 400;
  letter-spacing: 0.5px;
}

.review-platform {
  color: rgba(214, 185, 140, 0.55);
}

.section-heading h2 {
  font-family: "Coromorant Garamond", serif;
  color: var(--gold-primary);
  font-size: 1.8rem;
  margin-bottom: 0.5rem;
}

.section-heading p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.95rem;
  margin-bottom: 2rem;
}

.reviews-grid-section {
  margin-top: 5rem;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  margin-top: 2rem;
}

.review-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 1.5rem;

  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.08);

  color: rgba(252, 247, 230, 0.85);
  background: rgba(255, 255, 255, 0.09);
  backdrop-filter: blur(10px);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.35);

  transition:
    transform 0.3s ease,
    border 0.3s ease;
}

.review-card:hover {
  transform: translateY(-4px) scale(1.01);
  border: 1px solid rgba(255, 255, 255, 0.2);
}
.review-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 0.5rem;
  font-size: 0.85rem;
}

.review-name {
  color: rgba(214, 185, 140, 0.9);
}

.review-source {
  color: rgba(214, 185, 140, 0.55);
}

/* Trip Advisor Link Section */

.tripadvisor-section {
  display: flex;
  justify-content: center;
  margin: 7rem 0;
}

.tripadvisor-card {
  display: flex;
  justify-content: center;
  align-items: center;

  width: 100%;
  max-width: 550px;

  gap: 2rem;

  will-change: transform;

  text-decoration: none;
  color: rgba(214, 185, 140, 0.9);

  padding: 2rem 2.8rem;
  border-radius: 24px;
  border: 1px solid rgba(214, 185, 140, 0.14);

  background: rgba(34, 28, 28, 0.92);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.28);
  transition:
    transform 0.3s ease,
    border 0.3s ease,
    box-shadow 0.3s ease;
}

.tripadvisor-card:hover {
  transform: translateY(-4px);
  border: 1px solid rgba(214, 185, 140, 0.28);
  box-shadow: 0 14px 48px rgba(0, 0, 0, 0.32);
}

.tripadvisor-icon-wrapper {
  width: 68px;
  height: 68px;
  margin-bottom: 0.5rem;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 50%;

  background: radial-gradient(
    circle at top left,
    rgb(18, 150, 72),
    rgb(3, 58, 31)
  );

  border: 1px solid rgba(214, 185, 140, 0.16);
  box-shadow:
    0 8px 24px rgba(0, 0, 0, 0.2),
    0 0 18px rgba(88, 124, 104, 0.15);

  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.tripadvisor-card:hover .tripadvisor-icon-wrapper {
  transform: translateY(-2px) scale(1.03);
  box-shadow:
    0 12px 30px rgba(0, 0, 0, 0.3),
    0 0 24px rgba(88, 124, 104, 0.3);
}

.trip-advisor-icon {
  width: 44px;
  height: 44px;
  opacity: 0.88;
  color: black;
  transition: transform 0.3s ease;
}

.tripadvisor-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.tripadvisor-text h3 {
  color: rgba(223, 194, 145, 1);
  text-shadow: 0 1px 8px rgba(214, 185, 140, 0.15);
  font-weight: 600;
  letter-spacing: 0.01em;
  margin: 0rem 0 0.5rem;
  font-size: 1.7rem;
  font-family: "Quicksand", serif;
}

.tripadvisor-text p {
  color: rgba(243, 248, 231, 0.78);
}

.tripadvisor-arrow i {
  font-size: 1.3rem;
  display: inline-flex;
  align-items: center;
  color: rgba(214, 185, 140, 1);
  opacity: 0.5;
  transition:
    transform 0.3s ease,
    color 0.3s ease,
    opacity 0.3s ease;
}

.tripadvisor-card:hover .tripadvisor-arrow i {
  transform: translateX(6px);
  opacity: 1;
}

/* Closing Sign-off Section */

.review-closing {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin: 8rem 0 10rem;
}

.review-closing h2 {
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-weight: 600;
  font-size: 2.7rem;

  color: rgb(239, 186, 108);
  letter-spacing: 1px;
  margin-bottom: 1rem;

  text-shadow: 0 0 18px rgba(214, 185, 140, 0.08);
}

.review-closing h2 span {
  color: rgb(238, 173, 75);
}

.review-closing p {
  font-family: "Quicksand", sans-serif;
  color: rgba(253, 237, 215, 0.904);
  font-size: 1rem;
}

/* ----------------------------------------------------- */
/* CONTACT US PAGE */

.contact-page {
  display: flex;
  flex-direction: column;
  gap: 7rem;

  min-height: 120vh;
  background: rgba(242, 236, 228, 1);
}

/* Contact page hero */

.contact-hero {
  padding-top: 12rem;
  padding-bottom: -9rem;

  display: flex;
  justify-content: center;
  text-align: center;
}

.contact-eyebrow {
  font-family: "Carter One", sans-serif;
  font-size: 1rem;
  letter-spacing: 0.08rem;

  color: rgba(188, 145, 82, 0.92);

  margin-bottom: 0.75rem;

  text-shadow: 1px 1px 9 rgba(255, 255, 255, 0.15);

  display: inline-block;
}

.contact-header {
  font-family: "Outfit", sans-serif;

  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.05;

  color: rgba(35, 30, 28, 1);

  margin-bottom: 1rem;
}

.contact-subheader {
  font-size: 1.15rem;
  line-height: 1.7;

  color: rgba(45, 38, 34, 0.76);

  max-width: 700px;
  margin: 0 auto;
}

.contact-intro {
  width: min(520px, 90%);
}

/* Contact page card grid */

.contact-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2rem;
  align-items: start;

  width: min(1200px, 90%);
  margin: -1rem auto 2rem;
}

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

.contact-info-column {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-card {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  height: fit-content;
  min-height: unset;

  padding: 2.2rem;
  border-radius: 24px;

  background: rgba(255, 255, 255, 0.62);
  border: 1px solid rgba(190, 150, 95, 0.14);
  color: rgba(45, 38, 34, 1);

  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.04);
  backdrop-filter: blur(10px);

  transition: all 0.3s ease;
}

.location-cta {
  font-style: italic !important;
  font-size: 0.8rem;
}

.contact-phone, .contact-socials {
  padding: 1.2rem;
}

.contact-card:hover {
  transform: translateY(-4px);
  border: 1px solid rgba(190, 150, 95, 0.22);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.07);
}

.sun-thurs span,
.fri-sat span {
  color: black !important;
  opacity: 0.85;
  font-weight: 500;
}

.contact-icon {
  font-size: 1.5rem;
  color: var(--gold-primary);
}

.contact-card h3 {
  font-family: "Outfit", sans-serif;
  font-size: 1.5rem;
  font-weight: 600;

  color: rgba(35, 30, 28, 1);
}

.contact-card a,
.contact-card p {
  text-decoration: none;
  color: rgba(45, 38, 34, 0.78);
  line-height: 1.7;
  font-size: 1rem;
}

.contact-card p a {
  opacity: 1;
  transition: all 0.3s ease;
  line-height: 1;
}

.contact-numbers {
  display: flex;
  flex-direction: row;
  gap: 1rem;
  font-size: 3rem;
}

.contact-numbers p {
  margin: 0;
}

.contact-numbers a {
  font-size: clamp(1.2rem, 1vw + 0.4rem, 1.5rem);
  color: var(--accent-primary);
  font-weight: 900;

}

.contact-numbers p + p::before {
  content: "|";
  color: rgba(0,0,0,0.25);
  margin-right: 1rem;
}

.contact-card p a:hover {
  transform: scale(1.05);
  color: var(--gold-primary);
}

.contact-social-icons {
  display: flex;
  flex-direction: row;
  gap: 0.75rem;
}

.contact-social-icons svg {
  width: 1.9rem;
  height: 1.9rem;
  position: relative;
  left: -0.1px;
}

.contact-social-icons i {
  font-size: 1.5rem;
}

.contact-social-icons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  color: var(--accent-primary);

  opacity: 0.78;

  transition: all 0.3s ease;
}

.contact-social-icons a:hover {
  opacity: 1;
  transform: scale(1.05);
  color: var(--gold-primary);
}

/* Contact Embedded Map */

.contact-map {
  overflow: hidden;
  border-radius: 28px;

  border: 1px solid rgba(190, 150, 95, 0.12);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
}

.contact-map iframe {
  width: 100%;
  height: 100%;
  min-height: 395px;

  display: block;

  border: none;

  filter: saturate(0.92) contrast(0.97);
}

/* Contact page photo section */

.contact-gallery-section {
  width: min(1200px, 90%);
  margin: -8rem auto 8rem;
}

.contact-gallery-intro {
  margin-bottom: 4rem;
  margin-top: 3rem;
}

.contact-gallery-intro h2 {
  font-family: "Cormorant Garamond", sans-serif;
  font-size: 3rem;
  font-weight: 700;

  color: rgba(38, 30, 28, 1);

  margin-bottom: 0.4rem;
}

.contact-gallery-intro p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: rgba(55, 48, 45, 0.72);
}

.shopfront-image {
  aspect-ratio: 20 / 9;
  max-height: 550px;
  overflow: hidden;
  border-radius: 28px;
  border: 1px solid rgba(190, 150, 95, 0.12);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.08);
}

.shopfront-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 75%;
}


/* ----------------------------------------------------- */
/* HOVER EFFECTS (DESKTOP VERSION) */

@media (hover: hover) and (pointer: fine) {
  /* NAV */
  .nav-links a:hover::after {
    width: 100%;
  }

  /* HERO BUTTONS */
  .main-cta:hover {
    transform: scale(1.1);
    background-color: #000;
    color: rgb(255, 187, 51);
  }

  .secondary-cta:hover {
    background: white;
    color: black;
    border: 1px solid black;
    transform: scale(1.1);
  }

  /* INTRO LINKS */
  .intro-number a:hover {
    opacity: 0.8;
    filter: drop-shadow(0 0 8px rgba(214, 185, 140, 0.28));
  }

  .intro-number a:hover::after {
    width: 100%;
  }

  /* FRESHEST IMAGE */
  .freshest-card img:hover {
    transform: scale(1.03);
  }

  /* PAGE LINKS */

  /* OPTIONS SECTION */
  .option:hover img {
    transform: scale(1.05);
  }

  .option:hover .overlay {
    opacity: 1;
  }

  .option:hover .overlay-content {
    transform: translateY(0);
  }

  /* LOCATION */
  .map-button:hover {
    transform: scale(1.05);
    background-color: #000;
    color: rgb(255, 187, 51);
  }

  .location-map:hover,
  .location-map iframe:hover {
    transform: translateY(-4px) scale(1.01);
  }

  /* MENU */
  .menu-item:hover {
    background: rgba(0, 0, 0, 0.01);
  }

  .menu-item:hover span {
    transform: scale(1.05);
    color: var(--accent-primary);
  }

  /* FOOTER */
  .footer-address a:hover {
    color: white;
    opacity: 0.8;
  }
}

/* ----------------------------------------------------- */
/* RESPONSIVE FOR MOBILE */

@media (max-width: 920px) {
  /* Home Page */

  .nav-links {
    flex-direction: column;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
  }

  .nav-links.open {
    max-height: 400px;
  }

  .hamburger {
    display: flex;
    color: black;
    position: absolute;
    top: 1rem;
    right: 3rem;
  }

  .freshest-container {
    gap: 3rem;
  }

  .freshest {
    padding: 3rem 1rem 4rem;
  }

  .freshest-card {
    grid-template-columns: 1fr;
    direction: ltr !important;
    gap: 3rem;
    padding: 0.75rem;
  }

  .freshest-card:nth-child(odd) {
    padding: 1rem;
  }

  .freshest-card img {
    height: 320px;
    width: 100%;
    object-fit: cover;
  }

  .freshest-text p {
    max-width: 100%;
    line-height: 1.8;
  }

  .freshest-phone-links {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    margin-top: 1rem;
    justify-content: center;
    white-space: nowrap;
  }

  .page-link.phone {
    font-family: "Work Sans", sans-serif;
    font-style: normal;
    font-size: 1.15rem;
    font-weight: 400;
    margin-top: 0;
    letter-spacing: 0.7px;
    font-size: 1.3rem;
  }

  .service-options {
    grid-template-columns: 1fr;
  }

  .options-container {
    padding: 1rem 0.5rem;
  }

  .service-options {
    padding: 0 10px;
  }

  .option {
    border-radius: 20px;
    padding: 0;
  }

  .option img {
    height: auto;
    object-fit: contain;
    display: block;
    width: 100%;
  }

  .option.in-view .option-overlay {
    opacity: 1;
    transform: translateY(10px);
  }

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

  .location-map-info h3 {
    font-size: 1.2em;
  }

  .address {
    font-size: 14.5px;
  }

  /* Menu Page */

  .menu-item {
    grid-template-columns: 1fr auto;
    grid-template-rows: auto auto;
  }

  .food-item {
    grid-column: 1 / 3;
  }

  .food-price {
    grid-column: 1 / 2;
  }

  .add-to-cart {
    grid-column: 2 / 3;
    justify-self: end;
  }

  .menu-layout {
    grid-template-columns: 1fr;
  }

  .menu-category {
    scroll-margin-top: 140px;
  }

  .category-bar {
    overflow-x: auto;
    white-space: nowrap;
    position: sticky;
    top: 65px;
    width: 100%;
    background: #f7f4ee;
    z-index: 500;
    padding: 10px 14px;
    margin: -5px 0 20px;
  }

  .category-bar:-webkit-scrollbar {
    display: none;
  }

  /* Cart in Mobile */

  #cart {
    position: static;
    max-height: none;
    width: 100%;
    margin-top: 20px;
    margin-left: 0;
  }

  .cart-item {
    padding: 12px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  }

  .desktop-cart {
    display: none;
  }

  .cart-summary {
    font-weight: 600;
    font-size: 0.95rem;
  }

  .cart-end {
    margin-top: 14px;
    padding-top: 10px;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    text-align: center;
  }

  .cart-end a {
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--accent-primary);
    text-decoration: none;
  }

  .cart-reminder {
    display: block;
    font-size: 0.8rem;
    opacity: 0.7;
    padding-top: 15px;
    margin-bottom: 10px;
  }

  .cart-phones {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    margin-top: 12px;
  }

  .phone-block {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .phone-label {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    opacity: 0.5;
    margin-top: 12px;
    margin-bottom: 6px;
  }

  .open-cart {
    background: var(--accent-primary);
    color: white;
    border: none;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.85rem;
    cursor: pointer;
    transition:
      transform 0.15s ease,
      background 0.2s ease;
  }

  .open-cart:active {
    transform: scale(0.95);
  }

  #mobile-cart-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;

    background: #ece9e3;
    border-top: 1px solid rgba(0, 0, 0, 0.08);

    display: flex;
    justify-content: space-between;
    align-items: center;

    padding: 14px 18px;
    z-index: 9999;

    box-shadow: 0 -6px 20px rgba(0, 0, 0, 0.08);
  }

  #mobile-cart-modal {
    display: block;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.3);

    opacity: 0;
    pointer-events: none;

    transition: opacity 0.3s ease;

    z-index: 10000;
  }

  #mobile-cart-modal.active {
    opacity: 1;
    pointer-events: auto;
  }

  /* Mobile bar animation slide up  */

  .cart-sheet {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    overflow: hidden;

    background: #f7f4ee;
    max-height: 75vh;
    min-height: 200px;

    border-radius: 20px 20px 0 0;
    padding: 18px 16px;

    box-shadow: 0 -1px 40px rgba(0, 0, 0, 0.15);

    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  }

  .empty-cart {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    padding: 40px 20px;
    text-align: center;
  }

  .total-row {
    margin-top: 12px;
    padding-top: 10px;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
  }

  .cart-content {
    overflow-y: auto;
    flex: 1;
    padding-bottom: 10px;
  }

  .cart-sheet-header {
    background: #3f7f5a;
    color: white;
    box-shadow: inset 0 -1px rgba(255, 255, 255, 0.1);

    display: flex;
    justify-content: space-between;
    align-items: center;

    padding: 14px 16px;
    margin: -18px -16px 12px -16px;
    border-radius: 20px 20px 0 0;
  }

  .cart-sheet-header h3 {
    font-weight: 600;
    font-family: "Playfair Display", serif;
    font-style: italic;
    letter-spacing: 0.3px;
    font-size: 1.1rem;
  }

  .close-cart {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    width: 32px;
    height: 32px;
    padding: 5px 9px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: none;
    border-radius: 999px;

    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.2s ease;
  }

  .close-cart:active {
    transform: scale(0.9);
    background: rgba(255, 255, 255, 0.25);
  }

  .clear {
    margin-top: 12px;
    margin-bottom: 8px;
  }

  #mobile-cart-modal.active .cart-sheet {
    transform: translateY(0);
  }

  .total-row,
  .clear,
  .cart-end {
    flex-shrink: 0;
  }

  /* Reviews Page */

  .review-header {
    font-size: clamp(30px, 9vw, 38px);
    margin-bottom: 1.1rem;
  }

  .review-subheader {
    width: 90%;
    max-width: 600px;
    font-size: 1rem;
  }

  .stat-card {
    width: auto;
    flex: 1;
    min-width: 0;
    text-align: center;
  }

  .featured-review-card, .reviews-grid-section, .tripadvisor-card {
    max-width: 350px;
  }

  .section-heading {
    margin-bottom: 2em;
    max-width: 320px;
    display: flex;
    flex-direction: column;
    margin-left: 11px;
  }

  .reviews-grid-section {
    margin-top: 3em;
  }

  .tripadvisor-section {
    border-bottom: 1px solid rgba(212, 175, 55, 0.28);
    border-top: 1px solid rgba(212, 175, 55, 0.28);
    margin-top: 3em;
    margin-bottom: 1.5em;
  }

  .tripadvisor-card {
    margin: 3em 0 3em;
    max-width: 270px;
    padding: 1.7rem 1.3rem
  }

  .tripadvisor-content h3 {
    font-size: 26px;
  }

  .review-closing {
    max-width: 320px;
  }

  .review-closing h2 {
    font-size: 2rem;
  }

  .review-closing p {
    line-height: 1.8;
  }


  /* Zodiac Page */
  .zodiac-input {
    margin: 2rem 0.5rem 0;
  }

  .zodiac-input button {
    font-size: 16px;
  }

  .zodiac-wheel-section {
    min-height: calc(100vh);
  }

  .zodiac-pointer {
    top: 12px;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-top: 10px solid #f4d35e;
  }

  .zodiac-wheel-wrapper {
    width: 100%;
    margin: 5rem auto 1.5rem;
  }

  .placeholder-icon {
    margin-top: 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 2rem;
  }

  .placeholder-icon img {
    width: 65px;
    height: 65px;
  }

  .zodiac-placeholder p {
    margin-top: 1rem;
    font-size: 1rem;
    text-align: center;
  }

  .zodiac-reveal-icon {
    margin: 1.5rem 0 4.5rem;
  }

  .zodiac-reveal-icon img {

  filter:
    brightness(1.12)
    drop-shadow(0 0 12px rgba(230, 196, 90, .55))
    drop-shadow(0 0 26px rgba(230, 196, 90, .35))
  }

  .zodiac-info-card {
    width: 106%;
    max-width: none;
    padding: 1.4rem 1.5rem;
  }

  .zodiac-element {
    font-size: 0.8rem;
    margin-bottom: 2rem;
    letter-spacing: 1px;
    text-transform: uppercase;
  }

  .zodiac-traits {
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 1rem;
  }

  .zodiac-info-card h2 {
    font-size: 3rem;
  }

  .zodiac-description {
    max-width: 80ch;
  }

  .zodiac-compatibility-card {
    width: 100%;
    max-width: none;
    padding: 1.4rem 1.5rem;
  }

  .compatibility-grid {
    justify-content: center;
    gap: 1.2rem;
  }


  /* Contact Page */
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .contact-numbers {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.8rem;
  }

  .contact-numbers p + p::before {
        display: none;
    }

  .contact-gallery-intro {
    margin-top: 3rem;
  }

  .sun-thurs span, .fri-sat span {
    display: block;
  }
  .shopfront-image {
    aspect-ratio: 5 / 3;
    margin-top: -1em;
    margin-bottom: -1em;
  }

  /* FOOTER */

  .footer-top {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

  .footer-brand {
    grid-column: span 2;
    grid-row: 1;
  }

  .footer-column p {
    font-size: 15.3px;
  }

  .footer-column.contact {
    justify-self: center;
    align-items: center;
  }

  .footer-column.quick-nav {
    grid-column: 2;
    grid-row: 2;
  }

  .footer-column.opening-hours {
    grid-column: span 2;
    grid-row: 3;

    margin-top: 1em;
  }

  .footer-brand,
  .footer-column {
    text-align: center;
  }

  .footer-tagline {
    font-size: 17px;
    max-width: 250px;
    margin: 0 auto 2em;
  }

  .socials {
    justify-content: center;
    margin-bottom: 1em;
  }

  .footer-days, .footer-times {
    display: inline;
  }

  .footer-days::after {
    content: " • ";
  }

  .footer-times {
    font-weight: 900;
  }
}
