@import url("https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&display=swap");

/* --- DESIGN SYSTEM & VARIABLES --- */
:root {
  --color-primary: #0057b8;
  --color-primary-dark: #003f88;
  --color-primary-light: #1a6fca;
  --color-secondary: #ffffff;
  --color-accent: #00a1e4;
  --color-accent-light: #e0f2fe;
  --color-text: #111827;
  --color-text-light: #6b7280;
  --color-bg: #ffffff;
  --color-bg-alt: #f8fafc;
  --font-sans: "Outfit", sans-serif;
  --font-serif: "Playfair Display", serif;
  --glass-bg: rgba(255, 255, 255, 0.92);
  --glass-border: rgba(0, 87, 184, 0.1);
  --glass-shadow: 0 8px 32px 0 rgba(0, 87, 184, 0.06);
  --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --border-radius-lg: 28px;
  --border-radius-md: 16px;
  --border-radius-sm: 10px;
}

/* --- BASE STYLES --- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  font-size: 16px;
  background-color: var(--color-bg);
}

body {
  font-family: var(--font-sans);
  color: var(--color-text);
  line-height: 1.7;
  overflow-x: hidden;
  background-color: var(--color-bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* --- CUSTOM SCROLLBAR --- */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: var(--color-bg-alt);
}
::-webkit-scrollbar-thumb {
  background: var(--color-primary);
  border: 2px solid var(--color-bg-alt);
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--color-accent);
}

/* --- PRELOADER --- */
.preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background-color: var(--color-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.preloader-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.preloader-logo {
  height: 120px;
  width: auto;
  opacity: 1;
  transform: translateY(0);
}

.preloader-progress-wrap {
  display: flex;
  align-items: baseline;
  gap: 4px;
  color: var(--color-primary);
  font-family: var(--font-serif);
  opacity: 1;
}

.preloader.fade-out {
  opacity: 0;
  transition: opacity 0.5s ease;
}

.preloader-progress-number {
  font-size: 3rem;
  font-weight: 700;
  line-height: 1;
}

.preloader-progress-percent {
  font-size: 1.5rem;
  font-weight: 600;
}

/* Hide scrollbar during preload */
body.loading {
  overflow: hidden;
}

/* --- TYPOGRAPHY --- */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-serif);
  font-weight: 700;
  line-height: 1.15;
}

p {
  font-family: var(--font-sans);
  font-weight: 400;
}

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

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

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

/* --- CONTAINER & UTILITIES --- */
.container {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 2.5rem;
}

@media (max-width: 768px) {
  .container {
    padding: 0 1.25rem;
  }
}

.section {
  padding: 8rem 0;
  position: relative;
  overflow: hidden;
}

@media (max-width: 768px) {
  .section {
    padding: 5rem 0;
  }
}

/* --- SECTION HEADER --- */
.section-title-wrap {
  text-align: center;
  margin-bottom: 5rem;
}

.section-subtitle {
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: var(--color-accent);
  margin-bottom: 1rem;
  display: block;
}

.section-title {
  font-size: clamp(2.2rem, 4vw, 3.8rem);
  color: var(--color-primary);
  position: relative;
  display: inline-block;
  padding-bottom: 1.2rem;
}

.section-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 3px;
  background: linear-gradient(90deg, var(--color-primary), var(--color-accent));
  border-radius: 2px;
}

/* --- BUTTONS --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2.2rem;
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: 50px;
  transition: var(--transition-smooth);
  cursor: pointer;
  border: 2px solid transparent;
  gap: 0.5rem;
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}

.btn::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.btn-primary {
  background: var(--color-primary);
  color: var(--color-secondary);
  box-shadow: 0 4px 20px rgba(0, 87, 184, 0.2);
}

.btn-primary:hover {
  background: var(--color-primary-dark);
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(0, 87, 184, 0.25);
}

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

.btn-secondary:hover {
  background: var(--color-primary);
  color: var(--color-secondary);
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(0, 87, 184, 0.15);
}

.btn-accent {
  background: var(--color-accent);
  color: var(--color-secondary);
  box-shadow: 0 4px 20px rgba(0, 161, 228, 0.2);
}

.btn-accent:hover {
  background: #0088c7;
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(0, 161, 228, 0.3);
}

.btn-whatsapp {
  background: #25d366;
  color: var(--color-secondary);
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.2);
}

.btn-whatsapp:hover {
  background: #1eb854;
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(37, 211, 102, 0.3);
}

/* --- HEADER / NAVIGATION --- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: all 0.5s ease;
  background: transparent;
}

.header.scrolled {
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--glass-border);
  box-shadow: 0 4px 30px rgba(0, 87, 184, 0.05);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 90px;
  transition: height 0.4s ease;
}

.header.scrolled .nav-container {
  height: 72px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  z-index: 1002;
}

.logo-img {
  max-height: 90px;
  width: auto;
  margin-top: 10px;
  transition: var(--transition-smooth);
}

.header.scrolled .logo-img {
  max-height: 65px;
  margin-top: 5px;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  list-style: none;
}

.nav-link {
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--color-text);
  position: relative;
  padding: 0.5rem 0;
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--color-primary), var(--color-accent));
  transition: width 0.3s ease;
  border-radius: 2px;
}

.nav-link:hover {
  color: var(--color-primary) !important;
}
.nav-link:hover::after {
  width: 100%;
}

.nav-cta {
  display: flex;
  align-items: center;
}

.hamburger {
  display: none;
  cursor: pointer;
  background: none;
  border: none;
  z-index: 1002;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--color-text);
  margin: 6px 0;
  transition: all 0.35s ease;
  border-radius: 2px;
}

@media (max-width: 991px) {
  .hamburger {
    display: block;
  }

  .nav-cta {
    display: none !important;
  }

  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: min(320px, 85vw);
    height: 100vh;
    background: var(--color-secondary);
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 4rem 3rem;
    gap: 2.5rem;
    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.08);
    transition: right 0.5s cubic-bezier(0.77, 0, 0.175, 1);
    z-index: 1001;
    border-left: 4px solid var(--color-primary);
  }

  .nav-menu.active {
    right: 0;
  }

  .nav-menu .nav-link {
    font-size: 1.1rem;
    color: var(--color-text) !important;
  }

  .hamburger.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
  }
  .hamburger.active span:nth-child(2) {
    opacity: 0;
    width: 0;
  }
  .hamburger.active span:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
  }
}

/* --- HERO SECTION --- */
.hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  background-color: var(--color-secondary);
  color: var(--color-text);
  padding-top: 90px;
  padding-bottom: 4rem;
  overflow: hidden;
}

/* Subtle decorative background */
.hero::before {
  content: "";
  position: absolute;
  top: -30%;
  right: -10%;
  width: 65%;
  height: 130%;
  background: radial-gradient(
    ellipse at center,
    rgba(0, 161, 228, 0.04) 0%,
    transparent 70%
  );
  pointer-events: none;
  z-index: 0;
}

.hero > .container {
  position: relative;
  z-index: 1;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 5rem;
  width: 100%;
  min-height: calc(100vh - 130px);
}

/* Left content */
.hero-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
}

.hero-main-logo {
  max-width: 200px;
  height: auto;
  margin-bottom: 1.5rem;
  display: block;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--color-primary);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  margin-bottom: 1.75rem;
}

.hero-title-container {
  overflow: hidden;
  margin-bottom: 2rem;
}

.hero-title-line {
  display: block;
  overflow: hidden;
  line-height: 1.1;
}

.hero-title-word {
  display: block;
  font-size: clamp(3.5rem, 5.5vw, 6rem);
  font-family: var(--font-serif);
  font-weight: 700;
  letter-spacing: 0.01em;
  line-height: 1;
  color: var(--color-primary);
  padding-bottom: 0.1em;
}

.hero-title-word.light {
  font-style: italic;
  font-weight: 400;
  color: var(--color-text);
}

.hero-title-word.accent {
  color: var(--color-accent);
}

.hero-description {
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--color-text-light);
  margin-bottom: 3rem;
  max-width: 500px;
  line-height: 1.8;
}

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

.hero-ctas .btn {
  padding: 0.9rem 1.8rem;
  font-size: 0.85rem;
}

/* Right-side showcase */
.hero-showcase {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 5;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow:
    0 40px 80px rgba(0, 87, 184, 0.12),
    0 0 0 1px rgba(0, 87, 184, 0.06);
  background-color: #ffffff;
  border: 1px solid rgba(0, 87, 184, 0.06);
}

.hero-background-slider {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.hero-bg-slide {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  z-index: 1;
}

.hero-bg-slide.active {
  opacity: 1;
  pointer-events: auto;
  z-index: 2;
}

.hero-slide-img {
  width: 85%;
  height: 85%;
  object-fit: contain;
  transform: scale(0.5);
  opacity: 0;
  transition:
    opacity 0.5s ease,
    transform 0.5s ease;
  display: block;
  /* Use multiply blending so white backgrounds of product photos disappear */
  mix-blend-mode: multiply;
  filter: drop-shadow(0 20px 40px rgba(0, 87, 184, 0.12));
}

/* Progress dots overlay */
.hero-slide-dots {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 3;
}

.hero-slide-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(0, 87, 184, 0.2);
  transition: all 0.4s ease;
  cursor: pointer;
  border: none;
  padding: 0;
}

.hero-slide-dot.active {
  background: var(--color-primary);
  width: 24px;
  border-radius: 4px;
}

/* Slide counter */
.hero-slide-label {
  position: absolute;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 3;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(0, 87, 184, 0.1);
  border-radius: 50px;
  padding: 0.4rem 1rem;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--color-primary);
  letter-spacing: 0.1em;
}

.category-slide-label {
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  background: rgba(255, 255, 255, 0.96);
  filter: none;
  text-shadow: none;
  white-space: nowrap;
}

/* Blue overlay tint at bottom */
.hero-showcase::after {
  display: none;
}

/* Floating badge */
.hero-floating-badge {
  position: absolute;
  top: 1.5rem;
  left: 1.5rem;
  z-index: 4;
  background: white;
  border-radius: var(--border-radius-sm);
  padding: 0.5rem 1rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.hero-floating-badge .badge-icon {
  color: var(--color-primary);
  font-size: 1.1rem;
}

.hero-floating-badge .badge-text {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--color-text);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Responsive hero */
@media (max-width: 1100px) {
  .hero-grid {
    gap: 3rem;
  }
  .hero-title-word {
    font-size: clamp(3rem, 5vw, 5rem);
  }
}

@media (max-width: 991px) {
  .hero {
    padding-top: 100px;
  }
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
    min-height: auto;
    padding: 2rem 0;
  }
  .hero-content {
    text-align: center;
    align-items: center;
    order: 1;
  }
  .hero-eyebrow {
    justify-content: center;
  }
  .hero-description {
    margin-left: auto;
    margin-right: auto;
  }
  .hero-ctas {
    justify-content: center;
  }
  .hero-showcase {
    order: 2;
    aspect-ratio: 4/3;
    max-width: 560px;
    margin: 0 auto;
    width: 100%;
  }
}

@media (max-width: 576px) {
  .hero-title-word {
    font-size: clamp(2.4rem, 9vw, 3.5rem);
  }
  .hero-ctas {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    max-width: 360px;
  }
  .hero-ctas .btn {
    width: 100%;
    justify-content: center;
  }
  .hero-showcase {
    aspect-ratio: 1;
  }
}

/* --- MARQUEE STRIP --- */
.marquee-strip {
  background: var(--color-primary);
  overflow: hidden;
  padding: 0.8rem 0;
}

.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee-scroll 30s linear infinite;
}

.marquee-track:hover {
  animation-play-state: paused;
}

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

.marquee-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0 2.5rem;
  font-family: var(--font-sans);
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255, 255, 255, 0.85);
  white-space: nowrap;
}

.marquee-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
}

/* --- OUR STORY SECTION --- */
.story {
  background: var(--color-bg);
}

.story-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 5rem;
  align-items: center;
}

@media (max-width: 991px) {
  .story-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .story-image-wrap {
    aspect-ratio: 4 / 3;
    max-width: 520px;
    margin: 0 auto;
  }
}

.story-content {
  padding-right: 1rem;
}

@media (max-width: 991px) {
  .story-content {
    padding-right: 0;
    text-align: center;
  }
}

.story-title-sub {
  color: var(--color-accent);
  font-family: var(--font-sans);
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  margin-bottom: 1rem;
  display: block;
}

.story-title {
  font-size: clamp(2rem, 3.5vw, 3rem);
  color: var(--color-primary);
  margin-bottom: 1.75rem;
  line-height: 1.2;
}

.story-text {
  font-size: 1.05rem;
  color: var(--color-text-light);
  margin-bottom: 1.25rem;
  line-height: 1.8;
}

.story-textstrong {
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--color-primary);
  margin-bottom: 2.5rem;
  padding-left: 1.2rem;
  border-left: 3px solid var(--color-accent);
  line-height: 1.6;
}

@media (max-width: 991px) {
  .story-textstrong {
    border-left: none;
    border-top: 3px solid var(--color-accent);
    padding-left: 0;
    padding-top: 0.75rem;
    text-align: center;
  }
}

.story-image-wrap {
  width: 100%;
  aspect-ratio: 3 / 4;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  position: relative;
  transition: var(--transition-smooth);
  box-shadow: 0 20px 60px rgba(0, 87, 184, 0.1);
}

.story-image-wrap:hover {
  transform: scale(1.01) translateY(-5px);
  box-shadow: 0 30px 70px rgba(0, 87, 184, 0.18);
}

.story-img {
  position: absolute;
  left: 0;
  width: 100%;
  height: 130%;
  top: -15%;
  object-fit: cover;
  object-position: center center;
  display: block;
}

/* --- STORY GALLERY --- */
.story-gallery {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.story-gallery-track {
  display: flex;
  height: 100%;
  transition: transform 0.5s ease;
}

.story-gallery-slide {
  min-width: 100%;
  height: 100%;
  position: relative;
}

.story-gallery-slide img {
  position: absolute;
  left: 0;
  width: 100%;
  height: 130%;
  top: -15%;
  object-fit: cover;
  object-position: center center;
  display: block;
}

.story-gallery-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--color-primary);
  font-size: 0.9rem;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 2;
}

.story-gallery:hover .story-gallery-btn {
  opacity: 1;
}

.story-gallery-prev {
  left: 0.75rem;
}
.story-gallery-next {
  right: 0.75rem;
}

.story-gallery-dots {
  position: absolute;
  bottom: 0.75rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.4rem;
  z-index: 2;
}

.story-gallery-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background 0.2s ease;
}

.story-gallery-dot.active {
  background: white;
}

/* --- PRODUCTS SECTION --- */
.products {
  background: var(--color-bg-alt);
}

.products-desc {
  max-width: 650px;
  margin: -3rem auto 2rem auto;
  text-align: center;
  font-size: 1.05rem;
  color: var(--color-text-light);
  line-height: 1.8;
}

.products-cta {
  text-align: center;
  margin-bottom: 3rem;
}

/* --- CATEGORY CARDS (Home page) --- */
.category-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.category-card-item {
  background: var(--color-secondary);
  border-radius: var(--border-radius-md);
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(0, 87, 184, 0.06);
  transition: var(--transition-smooth);
}

.category-card-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0, 87, 184, 0.09);
  border-color: rgba(0, 87, 184, 0.14);
}

.category-card-item-header {
  padding: 1.5rem 1.5rem 0.75rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.category-card-item-name {
  font-size: 1.3rem;
  font-family: var(--font-serif);
  font-weight: 700;
  color: var(--color-primary);
}

.category-card-item-count {
  font-size: 0.8rem;
  color: var(--color-text-light);
  font-weight: 600;
}

.category-card-item-body {
  padding: 0 1.5rem 1.5rem;
}

.category-card-item-empty {
  font-size: 0.9rem;
  color: var(--color-text-light);
  font-style: italic;
}

.category-card-slider {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #f9fafb;
}

.category-slider-track {
  display: flex;
  height: 100%;
  transition: transform 0.5s ease;
}

.category-slide {
  min-width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  position: relative;
}

.category-slide img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  mix-blend-mode: darken;
}

.category-slide-label {
  bottom: 0.75rem;
  right: 0.75rem;
  font-size: 0.7rem;
  padding: 0.35rem 0.85rem;
}

.category-slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.85);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--color-primary);
  font-size: 0.8rem;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 2;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.category-card-slider:hover .category-slider-btn {
  opacity: 1;
}

.category-slider-prev {
  left: 0.5rem;
}
.category-slider-next {
  right: 0.5rem;
}

.category-slider-dots {
  position: absolute;
  bottom: 0.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.35rem;
  z-index: 2;
}

.category-slider-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.15);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background 0.2s ease;
}

.category-slider-dot.active {
  background: var(--color-primary);
}

@media (max-width: 1100px) {
  .category-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

/* --- COMING SOON BADGE --- */
.coming-soon-slide {
  position: relative;
}

.coming-soon-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 87, 184, 0.75);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
  animation: coming-soon-pulse 2s ease-in-out infinite;
}

@keyframes coming-soon-pulse {
  0%, 100% { opacity: 0.85; }
  50% { opacity: 0.95; }
}

.coming-soon-label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: white;
  color: var(--color-primary);
  font-family: var(--font-sans);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  padding: 0.65rem 1.4rem;
  border-radius: 50px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
  animation: coming-soon-float 3s ease-in-out infinite;
}

.coming-soon-label i {
  font-size: 0.9rem;
  animation: coming-soon-spin 4s linear infinite;
}

@keyframes coming-soon-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-4px); }
}

@keyframes coming-soon-spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

/* Coming soon badge in admin table */
.coming-soon-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.3rem 0.75rem;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--color-primary);
  background: var(--color-accent-light);
  border-radius: 50px;
  white-space: nowrap;
}

.coming-soon-badge::before {
  content: "\f017";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  font-size: 0.7rem;
}

/* Visual Menu Cards Section */
.visual-menu-cards-section {
  margin-top: 6rem;
  border-top: 1px solid rgba(0, 87, 184, 0.08);
  padding-top: 5rem;
  width: 100%;
}

.visual-menu-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.visual-menu-subtitle {
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: var(--color-accent);
  margin-bottom: 0.75rem;
  display: block;
}

.visual-menu-title {
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  color: var(--color-primary);
  font-family: var(--font-serif);
  font-weight: 700;
}

.visual-menu-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  max-width: 900px;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .visual-menu-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

.menu-image-card {
  position: relative;
  border-radius: var(--border-radius-md);
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(0, 87, 184, 0.08);
  cursor: pointer;
  transition: var(--transition-smooth);
}

.menu-image-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 87, 184, 0.12);
  border-color: rgba(0, 87, 184, 0.18);
}

.menu-card-img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.6s ease;
}

.menu-image-card:hover .menu-card-img {
  transform: scale(1.03);
}

.menu-image-overlay {
  display: none;
}

.menu-image-card.card-hidden {
  display: none;
}

/* --- OUR NATURE SECTION --- */
.specialties {
  background: linear-gradient(180deg, #f0f7ff 0%, #ffffff 100%);
  position: relative;
  overflow: visible;
}

.specialties::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%230057B8' fill-opacity='0.025'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E")
    repeat;
  pointer-events: none;
  z-index: 0;
}

.specialties > .container {
  position: relative;
  z-index: 1;
}

.specialties-intro {
  max-width: 700px;
  margin: -3rem auto 4rem auto;
  text-align: center;
  font-size: 1.05rem;
  color: var(--color-text-light);
  line-height: 1.8;
}

.specialties-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 1rem;
}

@media (max-width: 1200px) {
  .specialties-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

.specialty-card {
  background: #ffffff;
  border-radius: var(--border-radius-md);
  padding: 2.5rem 2rem;
  position: relative;
  box-shadow: 0 4px 30px rgba(0, 87, 184, 0.05);
  border: 1px solid rgba(0, 87, 184, 0.08);
  transition: var(--transition-smooth);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.specialty-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--color-primary), var(--color-accent));
  border-radius: 0 0 4px 4px;
}

.specialty-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 45px rgba(0, 87, 184, 0.08);
  border-color: rgba(0, 87, 184, 0.12);
}

/* Icon circle */
.specialty-icon-wrap {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--color-accent-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.75rem;
  transition: var(--transition-smooth);
}

.specialty-icon {
  font-size: 1.3rem;
  color: var(--color-primary);
  transition: var(--transition-smooth);
}

.specialty-card:hover .specialty-icon-wrap {
  background: var(--color-primary);
  transform: scale(1.08);
}

.specialty-card:hover .specialty-icon {
  color: #ffffff;
}

.specialty-num {
  font-family: var(--font-serif);
  font-size: 4rem;
  font-weight: 700;
  color: rgba(0, 87, 184, 0.08);
  line-height: 1;
  margin-bottom: 1.25rem;
  display: block;
  transition: color 0.4s ease;
}

.specialty-card:hover .specialty-num {
  color: rgba(0, 87, 184, 0.15);
}

.specialty-title {
  font-size: 1.2rem;
  font-family: var(--font-sans);
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 0.75rem;
  transition: color 0.3s ease;
}

.specialty-card:hover .specialty-title {
  color: var(--color-primary);
}

.specialty-desc {
  font-size: 0.92rem;
  color: var(--color-text-light);
  line-height: 1.7;
}

/* Wide card for the 7th specialty */
.specialty-card-wide {
  grid-column: 1 / -1;
  background: linear-gradient(
    135deg,
    var(--color-primary) 0%,
    var(--color-primary-light) 100%
  );
  border: none;
  color: white;
  padding: 3rem 3.5rem;
}

.specialty-card-wide::before {
  background: rgba(255, 255, 255, 0.15);
  height: 100%;
  width: 4px;
  border-radius: 0;
}

.specialty-wide-content {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

.specialty-wide-text {
  flex: 1;
}

.specialty-icon-wrap-wide {
  width: 80px;
  height: 80px;
  background: rgba(255, 255, 255, 0.15);
  flex-shrink: 0;
}

.specialty-icon-wrap-wide .specialty-icon {
  font-size: 2rem;
  color: #ffffff;
}

.specialty-card-wide:hover .specialty-icon-wrap-wide {
  background: rgba(255, 255, 255, 0.25);
}

.specialty-card-wide:hover .specialty-icon-wrap-wide .specialty-icon {
  color: #ffffff;
}

.specialty-card-wide .specialty-num {
  color: rgba(255, 255, 255, 0.15);
}
.specialty-card-wide:hover .specialty-num {
  color: rgba(255, 255, 255, 0.25);
}
.specialty-card-wide .specialty-title {
  color: white;
  font-size: 1.8rem;
}
.specialty-card-wide:hover .specialty-title {
  color: white;
}
.specialty-card-wide .specialty-desc {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.05rem;
}
.specialty-card-wide:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0, 87, 184, 0.25);
}

@media (max-width: 768px) {
  .specialty-wide-content {
    flex-direction: column;
    text-align: center;
    gap: 1.5rem;
  }
  .specialty-wide-text {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .specialty-card-wide {
    padding: 2.5rem 2rem;
  }
}

@media (max-width: 576px) {
  .specialty-card-wide {
    grid-column: 1;
  }
  .specialty-card-wide .specialty-title {
    font-size: 1.4rem;
  }
}

/* --- EVENTS SECTION --- */
.events {
  background: var(--color-bg);
}

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

@media (max-width: 1100px) {
  .events-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

.event-card {
  background: var(--color-secondary);
  border-radius: var(--border-radius-md);
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(0, 87, 184, 0.06);
  transition: var(--transition-smooth);
  position: relative;
  display: flex;
  flex-direction: column;
}

.event-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0, 87, 184, 0.09);
  border-color: rgba(0, 87, 184, 0.14);
}

.event-card-image {
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: linear-gradient(135deg, var(--color-accent-light) 0%, #f0f7ff 100%);
  position: relative;
}

.event-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.event-card:hover .event-card-image img {
  transform: scale(1.05);
}

.event-card-icon {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  color: var(--color-primary);
  opacity: 0.6;
}

.event-card-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.4rem 1rem;
  border-radius: 50px;
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.event-badge-promotion {
  background: rgba(0, 87, 184, 0.9);
  color: white;
}

.event-badge-private_booking {
  background: rgba(37, 211, 102, 0.9);
  color: white;
}

.event-badge-special_offer {
  background: rgba(245, 158, 11, 0.9);
  color: white;
}

.event-badge-festival {
  background: rgba(168, 85, 247, 0.9);
  color: white;
}

.event-badge-new_launch {
  background: rgba(239, 68, 68, 0.9);
  color: white;
}

.event-card-body {
  padding: 1.75rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.event-card-type {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--color-accent);
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.event-card-type i {
  font-size: 0.8rem;
}

.event-card-title {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 0.75rem;
  line-height: 1.3;
}

.event-card-desc {
  font-size: 0.92rem;
  color: var(--color-text-light);
  line-height: 1.7;
  flex: 1;
}

.event-card-footer {
  padding: 0 1.75rem 1.75rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.event-card-date {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.82rem;
  color: var(--color-text-light);
  font-weight: 500;
}

.event-card-date i {
  color: var(--color-primary);
  font-size: 0.85rem;
}

.event-card-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.6rem 1.2rem;
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--color-primary);
  background: var(--color-accent-light);
  border-radius: 50px;
  transition: var(--transition-smooth);
  border: none;
  cursor: pointer;
}

.event-card-cta:hover {
  background: var(--color-primary);
  color: white;
  transform: translateY(-2px);
}

.event-card-cta i {
  font-size: 0.7rem;
  transition: transform 0.3s ease;
}

.event-card-cta:hover i {
  transform: translateX(3px);
}

.event-empty {
  grid-column: 1 / -1;
  text-align: center;
  color: var(--color-text-light);
  padding: 4rem 2rem;
  font-size: 1.05rem;
  font-style: italic;
}

@media (max-width: 576px) {
  .event-card-body {
    padding: 1.25rem;
  }
  .event-card-footer {
    padding: 0 1.25rem 1.25rem;
    flex-direction: column;
    align-items: flex-start;
  }
  .event-card-cta {
    width: 100%;
    justify-content: center;
  }
}

/* --- LIGHTBOX --- */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(5, 10, 24, 0.97);
  backdrop-filter: blur(12px);
  z-index: 2000;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

.lightbox.active {
  opacity: 1;
  pointer-events: auto;
}

.lightbox-content {
  position: relative;
  max-width: 90vw;
  max-height: 85vh;
}

.lightbox-img {
  max-width: 100%;
  max-height: 80vh;
  object-fit: contain;
  border-radius: var(--border-radius-sm);
  border: 2px solid rgba(255, 255, 255, 0.1);
  cursor: zoom-in;
  transition: transform 0.25s ease;
  user-select: none;
  -webkit-user-select: none;
  touch-action: none;
}

.lightbox-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.8rem;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.lightbox-close:hover {
  background: rgba(255, 255, 255, 0.15);
  color: white;
}

.lightbox-prev,
.lightbox-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.4rem;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  width: 52px;
  height: 52px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  z-index: 2001;
}

.lightbox-prev:hover,
.lightbox-next:hover {
  background: var(--color-primary);
  border-color: var(--color-primary);
  color: white;
}

.lightbox-prev {
  left: 1.5rem;
}
.lightbox-next {
  right: 1.5rem;
}

/* --- STORE LOCATION SECTION --- */
.location {
  background: var(--color-bg);
}

.location-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 4rem;
  align-items: stretch;
}

@media (max-width: 991px) {
  .location-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

.location-info {
  background: var(--color-bg-alt);
  border-radius: var(--border-radius-lg);
  padding: 3.5rem;
  border: 1px solid rgba(0, 87, 184, 0.05);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

@media (max-width: 576px) {
  .location-info {
    padding: 2rem;
  }
}

.location-title {
  font-size: 2.5rem;
  color: var(--color-primary);
  margin-bottom: 2.5rem;
}

.location-details {
  list-style: none;
  margin-bottom: 2.5rem;
}

.location-item {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  margin-bottom: 1.75rem;
}

.location-icon {
  background: var(--color-accent-light);
  color: var(--color-primary);
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.location-text {
  font-size: 1rem;
  color: var(--color-text);
  line-height: 1.6;
}

.location-text strong {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--color-text-light);
  margin-bottom: 0.3rem;
  font-weight: 700;
}

.location-ctas {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.map-container {
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 87, 184, 0.05);
  border: 1px solid rgba(0, 87, 184, 0.05);
  min-height: 400px;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  min-height: 400px;
  border: none;
  display: block;
}

/* --- FOOTER --- */
.footer {
  background: #080e1c;
  color: #9ca3af;
  padding: 5rem 0 2rem 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1.2fr;
  gap: 5rem;
  margin-bottom: 4rem;
  padding-bottom: 4rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

@media (max-width: 991px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

.footer-logo-img {
  max-height: 50px;
  width: auto;
  margin-bottom: 1.5rem;
  display: block;
}

.footer-desc {
  font-size: 0.95rem;
  line-height: 1.8;
  margin-bottom: 2rem;
  color: #6b7280;
}

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

.footer-social-btn {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.07);
  color: #9ca3af;
  font-size: 1.15rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.footer-social-btn:hover {
  background: var(--color-primary);
  border-color: var(--color-primary);
  color: white;
  transform: translateY(-3px);
}

.footer-heading {
  color: var(--color-secondary);
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 2rem;
  display: block;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.footer-link {
  font-size: 0.95rem;
  color: #6b7280;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.footer-link::before {
  content: "›";
  color: var(--color-primary);
  font-size: 1.1rem;
  transition: transform 0.3s ease;
}

.footer-link:hover {
  color: var(--color-accent);
  padding-left: 4px;
}

.footer-link:hover::before {
  transform: translateX(3px);
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.25rem;
  font-size: 0.92rem;
  color: #6b7280;
}

.footer-contact-icon {
  color: var(--color-accent);
  margin-top: 0.15rem;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.82rem;
  color: #4b5563;
}

@media (max-width: 768px) {
  .footer-bottom {
    flex-direction: column;
    gap: 0.5rem;
    text-align: center;
  }
}

/* --- FLOATING WHATSAPP BUTTON --- */
.floating-container {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 999;
}

@media (max-width: 768px) {
  .floating-container {
    bottom: 2rem;
    right: 1.25rem;
  }
}

.whatsapp-float {
  width: 58px;
  height: 58px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.9rem;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.35);
  transition: var(--transition-smooth);
  position: relative;
}

.whatsapp-float::before {
  content: "";
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  background: rgba(37, 211, 102, 0.2);
  animation: pulse-ring 2s ease-out infinite;
}

@keyframes pulse-ring {
  0% {
    transform: scale(0.95);
    opacity: 0.6;
  }
  70% {
    transform: scale(1.25);
    opacity: 0;
  }
  100% {
    transform: scale(1.25);
    opacity: 0;
  }
}

.whatsapp-float:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.45);
}

/* --- MOBILE MENU OVERLAY --- */
.nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 1000;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.nav-overlay.active {
  opacity: 1;
}

@media (max-width: 991px) {
  .nav-overlay {
    display: block;
    pointer-events: none;
  }
  .nav-overlay.active {
    pointer-events: auto;
  }
}

/* --- UTILITY CLASSES --- */
.max-lg\:hidden {
  display: flex;
}

@media (max-width: 991px) {
  .max-lg\:hidden {
    display: none !important;
  }
}

/* --- TEXT REVEAL STORYTELLING STYLES --- */
.word-outer {
  display: inline-block;
  overflow: hidden;
  vertical-align: bottom;
  margin-right: 0.25em;
}

.word-inner {
  display: inline-block;
  transform: translateY(115%);
  will-change: transform;
}

/* --- FULL MENU PAGE --- */
.full-menu-hero {
  padding: 8rem 0 3rem;
  text-align: center;
  background: var(--color-bg);
}

.full-menu-hero h1 {
  font-family: var(--font-serif);
  font-size: 3rem;
  color: var(--color-primary);
  margin-bottom: 0.5rem;
}

.full-menu-hero p {
  color: var(--color-text-light);
  font-size: 1.1rem;
}

.full-menu-section {
  padding: 3rem 0;
}

.full-menu-category {
  margin-bottom: 3rem;
}

.full-menu-category:last-child {
  margin-bottom: 0;
}

.full-menu-category-header {
  margin-bottom: 1.5rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid var(--color-primary);
}

.full-menu-category-header h2 {
  font-family: var(--font-serif);
  font-size: 2rem;
  color: var(--color-primary);
}

.full-menu-category-header span {
  font-size: 0.9rem;
  color: var(--color-text-light);
}

.full-menu-items {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.full-menu-item {
  display: flex;
  gap: 1rem;
  background: var(--color-secondary);
  border-radius: var(--border-radius-md);
  padding: 1rem;
  border: 1px solid rgba(0, 87, 184, 0.06);
  transition: var(--transition-smooth);
}

.full-menu-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0, 87, 184, 0.08);
}

.full-menu-item-img {
  width: 80px;
  height: 80px;
  border-radius: 10px;
  overflow: hidden;
  flex-shrink: 0;
  background: #f3f4f6;
}

.full-menu-item-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  mix-blend-mode: darken;
}

.full-menu-item-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.full-menu-item-info h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.full-menu-item-info p {
  font-size: 0.85rem;
  color: var(--color-text-light);
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.full-menu-item-price {
  font-weight: 700;
  color: var(--color-primary);
  font-size: 0.9rem;
  margin-top: 0.25rem;
}

.full-menu-loading {
  text-align: center;
  padding: 4rem;
  color: var(--color-text-light);
  font-size: 1.1rem;
}

.full-menu-empty {
  text-align: center;
  padding: 4rem;
  color: var(--color-text-light);
}

/* =============================================
   COMPREHENSIVE RESPONSIVE IMPROVEMENTS
   Mobile / Tablet / All Devices
============================================= */

/* Prevent horizontal scroll on all devices */
html,
body {
  overflow-x: hidden;
  scroll-behavior: smooth;
}

/* --- HERO LOGO SIZE ON MOBILE --- */
@media (max-width: 576px) {
  .hero-main-logo {
    max-width: 150px;
  }
  .hero {
    padding-top: 80px;
    padding-bottom: 3rem;
  }
}

/* --- HERO CTAS WRAPPING ON SMALL MOBILE --- */
@media (max-width: 400px) {
  .hero-ctas .btn {
    font-size: 0.82rem;
    padding: 0.7rem 1.2rem;
  }
}

/* --- NAV LOGO ON MOBILE --- */
@media (max-width: 991px) {
  .logo-img {
    max-height: 60px;
  }
}

/* --- STORY IMAGE - FIT PROPERLY ON ALL DEVICES --- */
@media (max-width: 991px) {
  .story-image-wrap {
    max-width: 100%;
    margin: 0 auto;
  }
}

/* --- SECTION PADDING TABLET --- */
@media (max-width: 768px) {
  .section {
    padding: 4rem 0;
  }
  .section-title-wrap {
    margin-bottom: 3rem;
  }
  .products-desc {
    margin-bottom: 3rem;
  }
}

/* --- SPECIALTIES GRID ON SMALL TABLETS --- */
@media (max-width: 768px) and (min-width: 577px) {
  .specialties-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* --- SPECIALTIES CARD ON MOBILE --- */
@media (max-width: 576px) {
  .specialty-card {
    padding: 2rem 1.5rem;
  }
}

/* --- LOCATION CTAS ON MOBILE --- */
@media (max-width: 576px) {
  .location-ctas {
    flex-direction: column;
  }
  .location-ctas .btn {
    width: 100%;
    justify-content: center;
    text-align: center;
  }
  .location-title {
    font-size: 2rem;
  }
  .map-container,
  .map-container iframe {
    min-height: 300px;
  }
}

/* --- FOOTER ON MOBILE --- */
@media (max-width: 576px) {
  .footer {
    padding: 3rem 0 2rem 0;
  }
  .footer-grid {
    gap: 2rem;
  }
  .footer-logo-img {
    max-height: 45px;
  }
  .footer-desc {
    font-size: 0.9rem;
  }
}

/* --- PRELOADER LOGO ON MOBILE --- */
@media (max-width: 576px) {
  .preloader-logo {
    height: 90px;
  }
}

/* --- STORY TEXT ALIGNMENT ON MOBILE --- */
@media (max-width: 991px) {
  .story-content {
    text-align: center;
    align-items: center;
    display: flex;
    flex-direction: column;
  }
  .story-title {
    text-align: center;
  }
  .story-text {
    text-align: center;
  }
  .story-textstrong {
    text-align: center;
  }
  #story-btn-explore {
    align-self: center;
  }
}

/* --- HERO DESCRIPTION WIDTH ON MOBILE --- */
@media (max-width: 576px) {
  .hero-description {
    font-size: 0.95rem;
    max-width: 100%;
  }
}

/* --- SMOOTH SCROLL ON TOUCH DEVICES --- */
@media (pointer: coarse) {
  * {
    -webkit-tap-highlight-color: transparent;
  }
}

/* --- MARQUEE STRIP RESPONSIVE --- */
@media (max-width: 576px) {
  .marquee-item {
    font-size: 0.72rem;
    padding: 0 0.75rem;
  }
}

/* --- LIGHTBOX ON MOBILE --- */
@media (max-width: 576px) {
  .lightbox-prev {
    left: 0.5rem;
  }
  .lightbox-next {
    right: 0.5rem;
  }
  .lightbox-prev,
  .lightbox-next {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }
  .lightbox-close {
    top: 0.75rem;
    right: 0.75rem;
    width: 40px;
    height: 40px;
  }
}

/* --- STORY CONTENT FONT SIZES ON MOBILE --- */
@media (max-width: 576px) {
  .story-title {
    font-size: clamp(1.6rem, 6vw, 2.2rem);
    margin-bottom: 1.25rem;
  }
  .story-text {
    font-size: 0.97rem;
  }
  .story-textstrong {
    font-size: 1.05rem;
  }
}

/* --- LOCATION SECTION TABLET FIX --- */
@media (max-width: 768px) {
  .location-grid {
    gap: 2rem;
  }
  .location-info {
    padding: 2.5rem;
  }
}

/* --- ADDRESS CARDS --- */
.address-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 900px;
  margin: 0 auto;
}

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

@media (min-width: 769px) and (max-width: 1100px) {
  .address-cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.address-card {
  background: var(--color-secondary);
  border-radius: var(--border-radius-md);
  padding: 1.75rem;
  border: 1px solid rgba(0, 87, 184, 0.06);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.04);
  cursor: pointer;
  transition: var(--transition-smooth);
  display: flex;
  align-items: center;
  gap: 1rem;
  text-align: left;
  width: 100%;
  font-family: var(--font-sans);
}

.address-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0, 87, 184, 0.08);
  border-color: rgba(0, 87, 184, 0.12);
}

.address-card-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: var(--color-accent-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
  font-size: 1.25rem;
  flex-shrink: 0;
}

.address-card-info {
  flex: 1;
  min-width: 0;
}

.address-card-name {
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--color-text);
  margin-bottom: 0.2rem;
}

.address-card-phone {
  font-size: 0.9rem;
  color: var(--color-text-light);
}

.address-card-badge {
  display: inline-flex;
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  background: var(--color-accent-light);
  color: var(--color-primary);
  padding: 0.15rem 0.6rem;
  border-radius: 30px;
  margin-left: 0.5rem;
  vertical-align: middle;
}

/* --- ADDRESS MODAL --- */
.address-modal {
  position: fixed;
  inset: 0;
  background: rgba(5, 10, 24, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}

.address-modal.active {
  opacity: 1;
  pointer-events: auto;
}

.address-modal-content {
  background: var(--color-secondary);
  border-radius: 20px;
  max-width: 680px;
  width: 100%;
  max-height: 85vh;
  overflow-y: auto;
  position: relative;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.3);
}

.address-modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.05);
  border: none;
  font-size: 1.4rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
  transition: all 0.25s ease;
  color: var(--color-text);
}

.address-modal-close:hover {
  background: rgba(0, 0, 0, 0.1);
  transform: rotate(90deg);
}

.address-modal-body {
  padding: 2.5rem;
}

@media (max-width: 576px) {
  .address-modal-body {
    padding: 1.5rem;
  }
}

.address-modal-name {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 0.75rem;
  font-family: var(--font-serif);
}

.address-modal-text {
  font-size: 1rem;
  color: var(--color-text-light);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.address-modal-phone-wrap {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
  font-size: 1.05rem;
  color: var(--color-text);
}

.address-modal-phone-wrap i {
  color: var(--color-primary);
  font-size: 1.1rem;
}

.address-modal-phone-wrap a {
  color: var(--color-text);
  font-weight: 600;
}

.address-modal-phone-wrap a:hover {
  color: var(--color-primary);
}

.address-modal-map {
  width: 100%;
  height: 280px;
  border-radius: var(--border-radius-md);
  overflow: hidden;
  margin-bottom: 1.5rem;
  border: 1px solid rgba(0, 87, 184, 0.06);
}

.address-modal-map iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.address-modal-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

@media (max-width: 576px) {
  .address-modal-actions {
    flex-direction: column;
  }
  .address-modal-actions .btn {
    width: 100%;
    justify-content: center;
  }
}

/* --- FULL MENU RESPONSIVE --- */
@media (max-width: 1100px) {
  .full-menu-items {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .full-menu-items {
    grid-template-columns: 1fr;
  }
  .full-menu-hero h1 {
    font-size: 2rem;
  }
}

/* --- SAFE AREA FOR NOTCHED PHONES --- */
@supports (padding: max(0px)) {
  .footer {
    padding-bottom: max(2rem, env(safe-area-inset-bottom));
  }
}

/* --- CUSTOMER REVIEWS SECTION --- */
.customer-reviews {
  background: var(--color-bg-alt);
}

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

.review-card {
  background: var(--color-secondary);
  border-radius: var(--border-radius-md);
  padding: 2rem;
  box-shadow: var(--glass-shadow);
  border: 1px solid var(--glass-border);
  transition: var(--transition-smooth);
}

.review-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 40px rgba(0, 87, 184, 0.12);
}

.review-card-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.review-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: linear-gradient(
    135deg,
    var(--color-primary),
    var(--color-accent)
  );
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-secondary);
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 700;
  flex-shrink: 0;
}

.review-author-info {
  flex: 1;
}

.review-author-name {
  display: block;
  font-weight: 700;
  color: var(--color-text);
  font-size: 1rem;
}

.review-date {
  font-size: 0.8rem;
  color: var(--color-text-light);
}

.review-stars {
  display: flex;
  gap: 0.25rem;
  margin-bottom: 1rem;
}

.review-stars i {
  color: #f59e0b;
  font-size: 0.9rem;
}

.review-text {
  font-size: 0.95rem;
  color: var(--color-text-light);
  line-height: 1.7;
  font-style: italic;
}

.review-empty {
  grid-column: 1 / -1;
  text-align: center;
  color: var(--color-text-light);
  padding: 3rem;
  font-size: 1.1rem;
}

/* Review Form */
.review-form-wrap {
  background: var(--color-secondary);
  border-radius: var(--border-radius-lg);
  padding: 3rem;
  box-shadow: var(--glass-shadow);
  border: 1px solid var(--glass-border);
  max-width: 700px;
  margin: 0 auto;
}

.review-form-title {
  font-size: 1.5rem;
  color: var(--color-primary);
  margin-bottom: 2rem;
  text-align: center;
}

.review-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

@media (max-width: 576px) {
  .review-form-row {
    grid-template-columns: 1fr;
  }
}

.review-form .form-group {
  margin-bottom: 0;
}

.review-form label {
  display: block;
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
}

.review-form input,
.review-form textarea {
  width: 100%;
  padding: 0.9rem 1.2rem;
  border: 2px solid var(--glass-border);
  border-radius: var(--border-radius-sm);
  font-family: var(--font-sans);
  font-size: 0.95rem;
  transition: var(--transition-smooth);
  background: var(--color-bg-alt);
}

.review-form input:focus,
.review-form textarea:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 4px rgba(0, 87, 184, 0.1);
}

.review-form textarea {
  resize: vertical;
  min-height: 100px;
}

.rating-input {
  display: flex;
  gap: 0.5rem;
}

.rating-star {
  font-size: 1.5rem;
  color: #d1d5db;
  cursor: pointer;
  transition:
    color 0.2s ease,
    transform 0.2s ease;
}

.rating-star:hover,
.rating-star.active {
  color: #f59e0b;
  transform: scale(1.1);
}

.review-form .btn {
  width: 100%;
  margin-top: 1.5rem;
}

.review-form-message {
  text-align: center;
  margin-top: 1rem;
  font-weight: 600;
  font-size: 0.9rem;
}

.review-form-message.success {
  color: #059669;
}

.review-form-message.error {
  color: #dc2626;
}

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

/* --- GOOGLE REVIEWS SECTION --- */
.google-reviews {
  background: var(--color-bg);
}

.google-reviews-header {
  display: flex;
  justify-content: center;
  margin-bottom: 4rem;
}

.google-rating-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  background: var(--color-secondary);
  padding: 2rem 3rem;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--glass-shadow);
  border: 1px solid var(--glass-border);
}

.google-icon {
  font-size: 2rem;
  color: #4285f4;
}

.google-rating-number {
  font-size: 3rem;
  font-weight: 700;
  color: var(--color-text);
  font-family: var(--font-serif);
}

.google-rating-stars {
  display: flex;
  gap: 0.25rem;
}

.google-rating-stars i {
  color: #f59e0b;
  font-size: 1.1rem;
}

.google-rating-count {
  font-size: 0.85rem;
  color: var(--color-text-light);
}

.google-reviews-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.google-review-card {
  background: var(--color-secondary);
  border-radius: var(--border-radius-md);
  padding: 1.75rem;
  box-shadow: var(--glass-shadow);
  border: 1px solid var(--glass-border);
  transition: var(--transition-smooth);
}

.google-review-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 40px rgba(0, 87, 184, 0.12);
}

.google-review-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.google-review-avatar {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: linear-gradient(135deg, #4285f4, #34a853);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.google-review-author {
  flex: 1;
}

.google-review-name {
  display: block;
  font-weight: 700;
  color: var(--color-text);
  font-size: 0.95rem;
}

.google-review-date {
  font-size: 0.75rem;
  color: var(--color-text-light);
}

.google-review-icon {
  color: #4285f4;
  font-size: 1.1rem;
}

.google-review-stars {
  display: flex;
  gap: 0.2rem;
  margin-bottom: 0.75rem;
}

.google-review-stars i {
  color: #f59e0b;
  font-size: 0.85rem;
}

.google-review-text {
  font-size: 0.9rem;
  color: var(--color-text-light);
  line-height: 1.6;
}

@media (max-width: 1100px) {
  .google-reviews-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .google-reviews-grid {
    grid-template-columns: 1fr;
  }

  .google-rating-badge {
    padding: 1.5rem 2rem;
  }

  .google-rating-number {
    font-size: 2.5rem;
  }
}

/* --- FULL MENU ITEM: MOBILE COLUMN LAYOUT --- */
/* On small phones the side-by-side flex layout leaves very little room       */
/* for the description text. Switch to a column (image on top, info below)    */
/* so the name, description, and price all have the full card width.          */
@media (max-width: 576px) {
  .full-menu-item {
    flex-direction: column;
    gap: 0.75rem;
  }

  .full-menu-item-img {
    width: 100%;
    height: 180px;
    border-radius: 10px;
  }

  .full-menu-item-info {
    justify-content: flex-start;
  }

  /* Remove the 2-line clamp so the full description is always readable */
  .full-menu-item-info p {
    display: block;
    -webkit-line-clamp: unset;
    -webkit-box-orient: unset;
    overflow: visible;
  }
}
