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

/* --- DESIGN SYSTEM --- */
:root {
  --bg-primary: #0a0a0c;
  --bg-secondary: #121216;
  --bg-card: #18181f;
  --bg-card-hover: #20202a;
  
  --text-primary: #ffffff;
  --text-secondary: #b0b0b8;
  --text-muted: #70707c;
  
  --color-gold: #e5a93b;
  --color-gold-hover: #f3d078;
  --color-gold-rgb: 229, 169, 59;
  
  --color-whatsapp: #25d366;
  
  --font-main: 'Outfit', sans-serif;
  --font-serif: 'Cormorant Garamond', serif;
  --font-script: 'Playball', cursive;
  
  --transition-smooth: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-fast: all 0.25s ease;
  
  --container-width: 1200px;
  
  /* Brand Specific Defaults */
  --brand-color: var(--color-gold);
}

/* Brand Theme Overrides */
.theme-schnitzel { --brand-color: #e65100; --brand-color-rgb: 230, 81, 0; }
.theme-bowl { --brand-color: #2e7d32; --brand-color-rgb: 46, 125, 50; }
.theme-makarna { --brand-color: #c62828; --brand-color-rgb: 198, 40, 40; }
.theme-no70 { --brand-color: #f57f17; --brand-color-rgb: 245, 127, 23; }
.theme-kitchen { --brand-color: #d4af37; --brand-color-rgb: 212, 175, 55; }

/* --- BASE STYLES --- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
}

body {
  background-color: var(--bg-primary);
  color: var(--text-primary);
  font-family: var(--font-main);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

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

ul {
  list-style: none;
}

/* --- SCROLLBAR --- */
::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background: var(--bg-primary);
}
::-webkit-scrollbar-thumb {
  background: #252530;
  border-radius: 5px;
  border: 2px solid var(--bg-primary);
}
::-webkit-scrollbar-thumb:hover {
  background: var(--color-gold);
}

/* --- REUSABLE COMPONENTS --- */
.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 2rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.8rem 2rem;
  border-radius: 50px;
  font-weight: 500;
  font-family: var(--font-main);
  letter-spacing: 0.5px;
  transition: var(--transition-smooth);
  cursor: pointer;
  border: none;
  font-size: 0.95rem;
}

.btn-primary {
  background-color: var(--color-gold);
  color: #000000;
}
.btn-primary:hover {
  background-color: var(--color-gold-hover);
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(var(--color-gold-rgb), 0.3);
}

.btn-outline {
  background-color: transparent;
  color: var(--text-primary);
  border: 1px solid rgba(255, 255, 255, 0.2);
}
.btn-outline:hover {
  border-color: var(--color-gold);
  color: var(--color-gold);
  transform: translateY(-3px);
}

.btn-brand {
  background-color: var(--brand-color);
  color: #ffffff;
}
.btn-brand:hover {
  filter: brightness(1.2);
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(var(--brand-color-rgb), 0.3);
}


.mobile-only {
  display: none !important;
}

.section-tag {
  color: var(--brand-color);
  font-family: var(--font-main);
  text-transform: uppercase;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 3px;
  margin-bottom: 0.5rem;
  display: block;
}

.section-title {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 2.5rem;
  letter-spacing: 1px;
}

/* --- HEADER / NAVIGATION --- */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: var(--transition-smooth);
  padding: 1.5rem 0;
}

header.scrolled {
  background-color: rgba(10, 10, 12, 0.95);
  backdrop-filter: blur(10px);
  padding: 1rem 0;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

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

.logo {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.logo-main {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  font-weight: 800;
  letter-spacing: 4px;
  color: var(--text-primary);
  line-height: 1;
}

.logo-sub {
  font-family: var(--font-main);
  font-size: 0.65rem;
  font-weight: 400;
  letter-spacing: 6px;
  color: var(--color-gold);
  margin-top: 2px;
  text-transform: uppercase;
}

nav ul {
  display: flex;
  gap: 1rem;
}

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

nav a:hover, nav a.active {
  color: var(--color-gold);
}

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

/* Mobile Hamburger Menu */
.hamburger {
  display: none;
  cursor: pointer;
  background: none;
  border: none;
}

.hamburger span {
  display: block;
  width: 25px;
  height: 2px;
  background-color: var(--text-primary);
  margin: 5px 0;
  transition: var(--transition-fast);
}

/* --- HERO SLIDER SECTION --- */
.hero-slider {
  position: relative;
  height: 100vh;
  width: 100%;
  overflow: hidden;
  background-color: #000000;
}

.slider-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
}

.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  z-index: 1;
  display: flex;
  align-items: center;
  padding-top: 100px;
  transition: opacity 1.2s cubic-bezier(0.4, 0, 0.2, 1), visibility 1.2s;
}

.slide.active {
  opacity: 1;
  visibility: visible;
  z-index: 2;
}

.slide-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: right center;
  z-index: 1;
  transform: scale(1.02);
  transition: transform 8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.slide.active .slide-bg {
  transform: scale(1.08);
}

.slide-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, 
    rgba(10, 10, 12, 0.98) 0%, 
    rgba(10, 10, 12, 0.9) 25%, 
    rgba(10, 10, 12, 0.6) 55%, 
    rgba(10, 10, 12, 0.1) 100%);
  z-index: 2;
}

.hero-slider .container {
  max-width: 100% !important;
  padding-left: 8% !important;
  margin: 0 !important;
}

.slide-content {
  position: relative;
  z-index: 3;
  max-width: 500px;
}

.slide-content h1 {
  font-family: var(--font-serif);
  font-size: 4.5rem;
  font-weight: 700;
  line-height: 1.1;
  margin: 1rem 0 1.5rem 0;
  letter-spacing: 2px;
  color: var(--text-primary);
}

.slide-content h1 span.highlight {
  font-family: var(--font-script);
  color: var(--color-gold);
  font-size: 5rem;
  display: block;
  text-transform: none;
  font-weight: 400;
  margin-top: 0.2rem;
  letter-spacing: 0;
}

.slide-content p {
  font-size: 1.1rem;
  color: var(--text-secondary);
  margin-bottom: 2.5rem;
  max-width: 500px;
}

/* Slide Content Item Transitions */
.slide .animate-item {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.slide.active .animate-item:nth-child(1) {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.3s;
}

.slide.active .animate-item:nth-child(2) {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.5s;
}

.slide.active .animate-item:nth-child(3) {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.7s;
}

.slide.active .animate-item:nth-child(4) {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.9s;
}

/* Navigation Buttons */
.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 55px;
  height: 55px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: var(--text-primary);
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: var(--transition-fast);
}

.slider-btn:hover {
  background-color: var(--color-gold);
  color: #000000;
  border-color: var(--color-gold);
  box-shadow: 0 0 15px rgba(var(--color-gold-rgb), 0.3);
}

.prev-btn {
  left: 30px;
}

.next-btn {
  right: 30px;
}

/* Dots Navigation */
.slider-dots {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 12px;
  z-index: 10;
}

.slider-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.05);
  cursor: pointer;
  transition: var(--transition-smooth);
}

.slider-dot.active {
  background-color: var(--color-gold);
  width: 35px;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(var(--color-gold-rgb), 0.5);
}

/* --- BRANDS SECTION --- */
.brands-sec {
  padding: 8rem 0;
  background-color: var(--bg-secondary);
}

.brands-sec .section-title {
  text-align: center;
}

.brands-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.5rem;
  margin-bottom: 3.5rem;
}

.brand-card {
  position: relative;
  background-color: var(--bg-card);
  border-radius: 16px;
  overflow: hidden;
  height: 480px;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(255, 255, 255, 0.03);
  transition: var(--transition-smooth);
}

.brand-card:hover {
  transform: translateY(-12px);
  border-color: rgba(var(--brand-accent-rgb), 0.3);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), 0 0 30px rgba(var(--brand-accent-rgb), 0.15);
}

.brand-card-img-wrap {
  position: relative;
  height: 250px;
  overflow: hidden;
}

.brand-card-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
}

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

.brand-card-img-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(0,0,0,0.5) 0%, rgba(0,0,0,0.1) 40%, rgba(24, 24, 31, 1) 100%);
}

.brand-card-logo {
  text-align: center;
  width: 100%;
  background: rgba(15, 15, 20, 0.95);
  padding: 12px 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  z-index: 5;
}

.brand-card-logo .main-logo {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 3px;
  color: #ffffff;
}

.brand-card-logo .sub-logo {
  font-family: var(--font-main);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 5px;
  color: var(--brand-accent-color);
  margin-top: 4px;
  text-transform: uppercase;
}

.brand-card-content {
  padding: 1.8rem 1.5rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  z-index: 6;
  transition: var(--transition-smooth);
}

.brand-card.theme-schnitzel .brand-card-content { background-color: #d96a27; }
.brand-card.theme-bowl .brand-card-content { background-color: #5d8b37; }
.brand-card.theme-makarna .brand-card-content { background-color: #c2302b; }
.brand-card.theme-no70 .brand-card-content { background-color: #f0ab16; }
.brand-card.theme-kitchen .brand-card-content { background-color: #c5a880; }

.brand-card-info h3 {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  letter-spacing: 1px;
  color: #ffffff !important;
}

.brand-card-info p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.85rem;
  line-height: 1.5;
}

.brand-card-footer {
  display: flex;
  justify-content: flex-end;
  margin-top: 1rem;
}

.brand-btn-arrow {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background-color: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.4);
  transition: var(--transition-smooth);
}

.brand-card:hover .brand-btn-arrow {
  background-color: #ffffff;
  color: var(--brand-accent-color);
  border-color: #ffffff;
  transform: rotate(45deg);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.25);
}

.brands-sec-cta {
  text-align: center;
}

/* --- WHY CHOOSE US SECTION --- */
.why-sec {
  padding: 8rem 0;
  background-color: #ffffff;
  color: #121216;
}

.why-sec .section-title {
  text-align: center;
  color: #121216;
}

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

.why-card {
  background-color: #f8f8fb;
  padding: 2.5rem 2rem;
  border-radius: 16px;
  text-align: center;
  border: 1px solid #eaeaea;
  transition: var(--transition-smooth);
  color: #121216;
}

.why-card:hover {
  transform: translateY(-8px);
  border-color: rgba(var(--color-gold-rgb), 0.35);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
}

.why-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 1.5rem auto;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: rgba(var(--color-gold-rgb), 0.06);
  border: 1px solid rgba(var(--color-gold-rgb), 0.12);
  color: var(--color-gold);
  transition: var(--transition-smooth);
}

.why-card:hover .why-icon {
  background-color: var(--color-gold);
  color: #ffffff;
  box-shadow: 0 0 20px rgba(var(--color-gold-rgb), 0.35);
}

.why-card h3 {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  margin-bottom: 0.8rem;
  letter-spacing: 0.5px;
  color: #121216;
}

.why-card p {
  color: #55555e;
  font-size: 0.9rem;
  line-height: 1.6;
}

/* --- AMBIENCE / GALLERY SECTION --- */
.gallery-sec {
  padding: 8rem 0;
  background-color: var(--bg-secondary);
}

.gallery-sec .section-title {
  text-align: center;
}

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

.gallery-item {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  height: 350px;
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
}

.gallery-item:hover img {
  transform: scale(1.08) rotate(1deg);
}

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition-fast);
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-overlay span {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: var(--color-gold);
  color: #000000;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: scale(0.8);
  transition: var(--transition-smooth);
}

.gallery-item:hover .gallery-overlay span {
  transform: scale(1);
}

.gallery-sec-cta {
  text-align: center;
}

/* --- LOCATION SECTION --- */
.location-sec {
  padding: 8rem 0;
  background-color: var(--bg-primary);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.location-sec .container {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  align-items: center;
  gap: 5rem;
}

.location-info h2 {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  line-height: 1.2;
  margin: 1rem 0 1.5rem 0;
}

.location-info p {
  color: var(--text-secondary);
  margin-bottom: 2.5rem;
  max-width: 480px;
}

.location-map-wrapper {
  position: relative;
  background-color: var(--bg-secondary);
  border-radius: 20px;
  padding: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.03);
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 400px;
  overflow: hidden;
}

/* Styled map background or SVG map */
.map-svg {
  width: 100%;
  max-height: 350px;
  opacity: 0.85;
}

.map-pin {
  animation: pulsePin 2s infinite;
  cursor: pointer;
}

@keyframes pulsePin {
  0% { transform: scale(1); opacity: 1; filter: drop-shadow(0 0 0 rgba(var(--color-gold-rgb), 0.7)); }
  70% { transform: scale(1.1); opacity: 0.9; filter: drop-shadow(0 0 12px rgba(var(--color-gold-rgb), 0)); }
  100% { transform: scale(1); opacity: 1; filter: drop-shadow(0 0 0 rgba(var(--color-gold-rgb), 0)); }
}

.map-tooltip {
  position: absolute;
  background: var(--bg-card);
  border: 1px solid var(--color-gold);
  border-radius: 8px;
  padding: 0.8rem 1.2rem;
  pointer-events: none;
  font-size: 0.85rem;
  box-shadow: 0 10px 25px rgba(0,0,0,0.5);
  display: none;
  z-index: 10;
}

/* --- FOOTER --- */
footer {
  background-color: #060608;
  padding: 6rem 0 2rem 0;
  font-size: 0.9rem;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1.2fr 1fr 1.5fr;
  gap: 3rem;
  margin-bottom: 4rem;
}

.footer-brand .logo {
  margin-bottom: 1.5rem;
}

.footer-brand p {
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.social-links {
  display: flex;
  gap: 1rem;
}

.social-link {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: var(--transition-fast);
}

.social-link:hover {
  background-color: var(--color-gold);
  color: #000000;
  border-color: var(--color-gold);
  transform: translateY(-3px);
}

.footer-col h4 {
  font-family: var(--font-serif);
  color: var(--text-primary);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 1.5rem;
  position: relative;
  padding-bottom: 0.5rem;
}

.footer-col h4::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 30px;
  height: 2px;
  background-color: var(--color-gold);
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.footer-col a {
  color: var(--text-secondary);
  font-size: 0.85rem;
}

.footer-col a:hover {
  color: var(--color-gold);
  padding-left: 5px;
}

.footer-contact-item {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.2rem;
  color: var(--text-secondary);
  font-size: 0.85rem;
}

.footer-contact-item svg {
  flex-shrink: 0;
  color: var(--color-gold);
  width: 18px;
  height: 18px;
  margin-top: 3px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--text-muted);
  font-size: 0.8rem;
}

/* Google Business Badge */
.google-business-badge {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255, 255, 255, 0.01);
  border: 1px solid rgba(255, 255, 255, 0.05);
  padding: 10px 15px;
  border-radius: 8px;
  margin-top: 15px;
  text-decoration: none;
  color: #fff;
  transition: all 0.3s ease;
  max-width: 220px;
}

.google-business-badge:hover {
  background: rgba(255, 255, 255, 0.04);
  border-color: var(--color-gold);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(197, 168, 128, 0.1);
}

.google-business-badge svg {
  transition: transform 0.3s ease;
}

.google-business-badge:hover svg {
  transform: scale(1.1);
}

/* --- WHATSAPP WIDGET --- */
.whatsapp-widget {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 999;
  display: flex;
  align-items: center;
}

.whatsapp-btn {
  width: 60px;
  height: 60px;
  background-color: var(--color-whatsapp);
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 30px rgba(37, 211, 102, 0.4);
  cursor: pointer;
  position: relative;
  transition: var(--transition-smooth);
}

.whatsapp-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 10px 35px rgba(37, 211, 102, 0.6);
}

.whatsapp-btn svg {
  width: 32px;
  height: 32px;
}

.whatsapp-pulse {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-color: var(--color-whatsapp);
  z-index: -1;
  animation: pulseWhatsapp 2s infinite;
}

@keyframes pulseWhatsapp {
  0% { transform: scale(1); opacity: 0.5; }
  100% { transform: scale(1.5); opacity: 0; }
}

.whatsapp-tooltip {
  position: absolute;
  right: 75px;
  background-color: var(--bg-card);
  color: var(--text-primary);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  padding: 0.6rem 1rem;
  font-size: 0.8rem;
  white-space: nowrap;
  box-shadow: 0 5px 15px rgba(0,0,0,0.3);
  opacity: 0;
  transform: translateX(10px);
  pointer-events: none;
  transition: var(--transition-smooth);
}

.whatsapp-widget:hover .whatsapp-tooltip {
  opacity: 1;
  transform: translateX(0);
}

/* --- BRAND PAGES (DETAIL VIEW) --- */
.brand-hero {
  position: relative;
  height: 60vh;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background-color: #000000;
  text-align: center;
}

.brand-hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.35;
  filter: blur(4px) scale(1.05);
  transform: translate3d(0,0,0);
}

.brand-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(10,10,12,0.4) 0%, rgba(10,10,12,1) 100%);
}

.brand-hero-content {
  position: relative;
  z-index: 5;
  padding: 0 2rem;
}

.brand-hero-content h1 {
  font-family: var(--font-serif);
  font-size: 4rem;
  font-weight: 800;
  letter-spacing: 4px;
  margin-bottom: 0.5rem;
}

.brand-hero-content p {
  font-size: 1.2rem;
  color: var(--brand-color);
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.brand-menu-sec {
  padding: 6rem 0;
}

.menu-categories {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 4rem;
  flex-wrap: wrap;
}

.category-tab {
  padding: 0.6rem 1.8rem;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 500;
  background-color: var(--bg-secondary);
  color: var(--text-secondary);
  border: 1px solid rgba(255, 255, 255, 0.05);
  cursor: pointer;
  transition: var(--transition-fast);
}

.category-tab.active, .category-tab:hover {
  background-color: var(--brand-color);
  color: #ffffff;
  border-color: var(--brand-color);
  box-shadow: 0 8px 20px rgba(var(--brand-color-rgb), 0.2);
}

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

.product-card {
  background-color: var(--bg-card);
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.02);
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  transform: translateY(-8px);
  border-color: rgba(var(--brand-color-rgb), 0.2);
  box-shadow: 0 15px 30px rgba(0,0,0,0.3);
}

.product-img-wrap {
  height: 220px;
  overflow: hidden;
  position: relative;
}

.product-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
}

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

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

.product-title {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  letter-spacing: 0.5px;
}

.product-description {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.5;
  margin-bottom: 1.2rem;
  flex-grow: 1;
}

.product-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 1.2rem;
}

.product-price {
  font-family: var(--font-main);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--brand-color);
}

/* --- ABOUT & CONTACT PAGES --- */
.page-header {
  padding: 12rem 0 6rem 0;
  background: radial-gradient(circle at 50% 0%, rgba(var(--color-gold-rgb), 0.08) 0%, transparent 60%);
  text-align: center;
}

.page-header h1 {
  font-family: var(--font-serif);
  font-size: 3.5rem;
  font-weight: 800;
  letter-spacing: 2px;
}

.about-content {
  padding: 6rem 0;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  margin-bottom: 6rem;
}

.about-text h2 {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  margin-bottom: 1.5rem;
}

.about-text p {
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
}

.about-image {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0,0,0,0.5);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  text-align: center;
  background-color: var(--bg-secondary);
  padding: 4rem 2rem;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.02);
}

.stat-item h3 {
  font-family: var(--font-serif);
  font-size: 3rem;
  color: var(--color-gold);
  margin-bottom: 0.5rem;
}

.stat-item p {
  color: var(--text-secondary);
  text-transform: uppercase;
  font-size: 0.8rem;
  letter-spacing: 2px;
}

.contact-sec {
  padding: 6rem 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
}

.contact-card {
  background-color: var(--bg-secondary);
  padding: 3rem;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.03);
}

.contact-card h2 {
  font-family: var(--font-serif);
  font-size: 2rem;
  margin-bottom: 2rem;
}

.contact-info-list {
  margin-bottom: 2.5rem;
}

.contact-info-item {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.contact-info-item svg {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  color: var(--color-gold);
}

.contact-info-item h4 {
  font-family: var(--font-serif);
  font-size: 1rem;
  margin-bottom: 0.3rem;
}

.contact-info-item p {
  color: var(--text-secondary);
  font-size: 0.9rem;
}

.contact-form-wrap h2 {
  font-family: var(--font-serif);
  font-size: 2rem;
  margin-bottom: 2rem;
}

.contact-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.form-group-full {
  grid-column: span 2;
}

.form-group label {
  display: block;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-secondary);
  margin-bottom: 0.5rem;
}

.form-control {
  width: 100%;
  background-color: var(--bg-secondary);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  padding: 0.9rem 1.2rem;
  color: #ffffff;
  font-family: var(--font-main);
  font-size: 0.95rem;
  transition: var(--transition-fast);
}

.form-control:focus {
  outline: none;
  border-color: var(--color-gold);
  background-color: var(--bg-card);
  box-shadow: 0 0 10px rgba(var(--color-gold-rgb), 0.1);
}

textarea.form-control {
  resize: vertical;
  min-height: 150px;
}

/* --- LIGHTBOX MODAL --- */
.lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(6, 6, 8, 0.95);
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.lightbox.active {
  display: flex;
  opacity: 1;
}

.lightbox-content {
  position: relative;
  max-width: 80%;
  max-height: 80%;
}

.lightbox-content img {
  border-radius: 8px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.8);
  max-height: 75vh;
}

.lightbox-close {
  position: absolute;
  top: -40px;
  right: 0;
  color: #ffffff;
  font-size: 2rem;
  cursor: pointer;
  background: none;
  border: none;
  transition: var(--transition-fast);
}

.lightbox-close:hover {
  color: var(--color-gold);
}

/* --- ORDER OPTIONS MODAL --- */
.order-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(6, 6, 8, 0.85);
  backdrop-filter: blur(8px);
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition-smooth);
}

.order-modal.active {
  display: flex;
  opacity: 1;
}

.order-modal-content {
  background-color: var(--bg-card);
  border: 1px solid rgba(var(--color-gold-rgb), 0.2);
  border-radius: 20px;
  width: 90%;
  max-width: 500px;
  padding: 3rem;
  position: relative;
  transform: translateY(20px);
  transition: var(--transition-smooth);
  box-shadow: 0 20px 50px rgba(0,0,0,0.6);
}

.order-modal.active .order-modal-content {
  transform: translateY(0);
}

.order-modal-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: none;
  border: none;
  color: var(--text-secondary);
  font-size: 1.5rem;
  cursor: pointer;
  transition: var(--transition-fast);
}

.order-modal-close:hover {
  color: var(--color-gold);
}

.order-modal h3 {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  text-align: center;
  margin-bottom: 1rem;
}

.order-modal p {
  color: var(--text-secondary);
  text-align: center;
  font-size: 0.95rem;
  margin-bottom: 2.5rem;
}

.order-options-list {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.order-option-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.2rem 2rem;
  border-radius: 12px;
  background-color: var(--bg-secondary);
  border: 1px solid rgba(255, 255, 255, 0.05);
  font-family: var(--font-main);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.order-option-btn svg {
  width: 24px;
  height: 24px;
}

.order-option-btn.option-phone {
  color: var(--color-gold);
  border-color: rgba(var(--color-gold-rgb), 0.2);
}
.order-option-btn.option-phone:hover {
  background-color: var(--color-gold);
  color: #000000;
  border-color: var(--color-gold);
  box-shadow: 0 8px 20px rgba(var(--color-gold-rgb), 0.3);
}

.order-option-btn.option-whatsapp {
  color: var(--color-whatsapp);
  border-color: rgba(37, 211, 102, 0.2);
}
.order-option-btn.option-whatsapp:hover {
  background-color: var(--color-whatsapp);
  color: #ffffff;
  border-color: var(--color-whatsapp);
  box-shadow: 0 8px 20px rgba(37, 211, 102, 0.3);
}

.phone-numbers-sublist {
  display: none;
  flex-direction: column;
  gap: 0.5rem;
  margin-top: 0.5rem;
  padding-left: 1rem;
}

.phone-numbers-sublist.active {
  display: flex;
}

.phone-num-link {
  color: var(--text-primary);
  font-weight: 500;
  font-size: 0.95rem;
  padding: 0.5rem;
  border-radius: 6px;
  background-color: rgba(255, 255, 255, 0.02);
  text-align: center;
}

.phone-num-link:hover {
  background-color: rgba(var(--color-gold-rgb), 0.1);
  color: var(--color-gold);
}

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

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

/* --- RESPONSIVE LAYOUTS --- */
@media (max-width: 1200px) {
  :root {
    --container-width: 960px;
  }
  
  .brands-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .brand-card {
    height: 440px;
  }
  
  .brand-card-img-wrap {
    height: 220px;
  }
}

@media (max-width: 992px) {
  :root {
    --container-width: 720px;
  }
  
  .section-title {
    font-size: 2.2rem;
  }
  
  .hero .container {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 3rem;
    padding-top: 60px;
  }
  
  .hero-text h1 {
    font-size: 3.5rem;
  }
  
  .hero-text h1 span.highlight {
    font-size: 4rem;
  }
  
  .hero-text p {
    margin: 0 auto 2rem auto;
  }
  
  .hero-actions {
    justify-content: center;
  }
  
  .hero-image-wrapper {
    order: -1;
  }
  
  .hero-plate-img {
    width: 65%;
  }
  
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .location-sec .container {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .footer-top {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .footer-brand {
    grid-column: span 2;
  }
  
  .menu-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .about-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 1024px) {
  :root {
    --container-width: 720px;
  }
  
  .mobile-only {
    display: block !important;
  }
  
  header {
    padding: 1rem 0;
  }
  
  header .btn-primary {
    display: none; /* Hide header CTA on mobile, link is in nav */
  }
  
  .hamburger {
    display: block;
    z-index: 1001;
  }
  
  .hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  
  .hamburger.active span:nth-child(2) {
    opacity: 0;
  }
  
  .hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
  }
  
  nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100vh;
    background-color: var(--bg-secondary);
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.5);
    padding: 8rem 2rem 2rem 2rem;
    transition: var(--transition-smooth);
    z-index: 1000;
  }
  
  nav.active {
    right: 0;
  }
  
  nav ul {
    flex-direction: column;
    gap: 1.8rem;
  }
  
  nav a {
    font-size: 1.1rem;
    display: block;
  }
  
  .brands-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .contact-form {
    grid-template-columns: 1fr;
  }
  
  .form-group-full {
    grid-column: span 1;
  }
}

@media (max-width: 576px) {
  :root {
    --container-width: 100%;
  }
  
  .container {
    padding: 0 1.5rem;
  }
  
  .hero-text h1 {
    font-size: 2.8rem;
  }
  
  .hero-text h1 span.highlight {
    font-size: 3.2rem;
  }
  
  .hero-actions {
    flex-direction: column;
    gap: 1rem;
  }
  
  .hero-actions .btn {
    width: 100%;
  }
  
  .brands-grid {
    grid-template-columns: 1fr;
    max-width: 380px;
    margin: 0 auto 3rem auto;
  }
  
  .why-grid {
    grid-template-columns: 1fr;
  }
  
  .gallery-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-top {
    grid-template-columns: 1fr;
  }
  
  .footer-brand {
    grid-column: span 1;
  }
  
  .menu-grid {
    grid-template-columns: 1fr;
    max-width: 380px;
    margin: 0 auto;
  }
  
  .about-stats {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .whatsapp-widget {
    bottom: 20px;
    right: 20px;
  }
  
  .whatsapp-btn {
    width: 50px;
    height: 50px;
  }
  
  .whatsapp-btn svg {
    width: 26px;
    height: 26px;
  }
  
  .order-modal-content {
    padding: 2rem 1.5rem;
  }
}

/* --- IMAGE VARIANT CLASSES FOR UNIQUE PRODUCTS --- */
.product-card.variant-1 .product-img-wrap {
  filter: hue-rotate(25deg) saturate(1.1) brightness(0.95);
}
.product-card.variant-2 .product-img-wrap {
  transform: scaleX(-1);
}
.product-card.variant-3 .product-img-wrap {
  filter: hue-rotate(-20deg) saturate(1.05);
  transform: scaleX(-1);
}
.product-card.variant-4 .product-img-wrap {
  filter: hue-rotate(15deg) contrast(1.1);
}
.product-card.variant-5 .product-img-wrap {
  filter: hue-rotate(50deg) saturate(1.05) brightness(0.95);
}
.product-card.variant-6 .product-img-wrap {
  filter: hue-rotate(-35deg) saturate(1.1);
  transform: scaleX(-1);
}
.product-card.variant-7 .product-img-wrap {
  filter: hue-rotate(75deg) saturate(0.9) brightness(1.05);
}

/* --- DELIVERY PLATFORMS & WIDGET STYLING --- */

/* Slider Platform Dropdowns */
.platform-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1.5rem;
}

.platform-item {
  position: relative;
  display: inline-block;
}

.platform-badge {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.6rem 1.2rem;
  border-radius: 50px;
  font-family: var(--font-main);
  font-size: 0.85rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  color: #fff;
  transition: var(--transition-fast);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #fff;
  display: inline-block;
}

/* Brand Colors */
.brand-trendyol {
  background-color: #F27A1A;
}
.brand-trendyol:hover {
  background-color: #e06909;
}
.brand-yemeksepeti {
  background-color: #DF0054;
}
.brand-yemeksepeti:hover {
  background-color: #c9004b;
}
.brand-getir {
  background-color: #5D3EBC;
  color: #FFD200;
}
.brand-getir .badge-dot {
  background-color: #FFD200;
}
.brand-getir:hover {
  background-color: #4c30a3;
}
.brand-migros {
  background-color: #FF6D00;
}
.brand-migros:hover {
  background-color: #e66200;
}

/* Dropdown Menu */
.platform-dropdown {
  position: absolute;
  bottom: 125%;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  background-color: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  padding: 0.5rem 0;
  min-width: 200px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: var(--transition-fast);
  z-index: 100;
}

.platform-dropdown::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  border-width: 6px;
  border-style: solid;
  border-color: var(--bg-card) transparent transparent transparent;
}

.platform-item:hover .platform-dropdown {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.platform-dropdown a {
  display: block;
  padding: 0.7rem 1.2rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-secondary);
  transition: var(--transition-fast);
  border-bottom: 1px solid rgba(255, 255, 255, 0.02);
}

.platform-dropdown a:last-child {
  border-bottom: none;
}

.platform-dropdown a:hover {
  color: #fff;
  background-color: rgba(255, 255, 255, 0.05);
  padding-left: 1.5rem;
}


/* --- FLOATING ORDER WIDGET --- */
.order-floating-widget {
  position: fixed;
  bottom: 25px;
  right: 25px;
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.widget-trigger-btn {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--color-gold) 0%, #b8860b 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #000;
  box-shadow: 0 5px 25px rgba(229, 169, 59, 0.4);
  cursor: pointer;
  transition: var(--transition-smooth);
  position: relative;
}

.widget-icon-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.widget-icon-wrap svg {
  width: 22px;
  height: 22px;
}

.widget-btn-text {
  font-size: 0.6rem;
  font-weight: 700;
  margin-top: 2px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.order-floating-widget:hover .widget-trigger-btn {
  transform: rotate(360deg);
  background: #fff;
  color: #000;
  box-shadow: 0 5px 25px rgba(255, 255, 255, 0.3);
}

/* Floating Platforms List */
.widget-platforms-list {
  position: absolute;
  bottom: 50px;
  padding-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(20px);
  transition: var(--transition-smooth);
}

.order-floating-widget:hover .widget-platforms-list {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

.widget-platform-item {
  position: relative;
}

.widget-platform-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  cursor: pointer;
  color: #fff;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  transition: var(--transition-fast);
  padding: 0;
  background: transparent;
  overflow: hidden;
}

.widget-platform-btn svg {
  width: 24px;
  height: 24px;
}

.widget-platform-btn:hover {
  transform: scale(1.1);
}

/* Brand specific logo styling in floating buttons */
.brand-whatsapp {
  background-color: #25D366;
}
.widget-platform-btn.brand-trendyol {
  background-color: #F27A1A;
}
.widget-platform-btn.brand-yemeksepeti {
  background-color: #DF0054;
}
.widget-platform-btn.brand-getir {
  background-color: #5D3EBC;
  color: #FFD200;
}
.widget-platform-btn.brand-migros {
  background-color: #FF6D00;
}

.logo-text {
  font-family: var(--font-main);
  font-size: 1.1rem;
  font-weight: 800;
  text-transform: lowercase;
}
.widget-platform-btn.brand-migros .logo-text {
  text-transform: uppercase;
}

/* Floating Tooltip */
.widget-tooltip {
  position: absolute;
  right: 65px;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(0, 0, 0, 0.85);
  color: #fff;
  padding: 0.4rem 0.8rem;
  border-radius: 6px;
  font-size: 0.8rem;
  font-weight: 500;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: var(--transition-fast);
}

.widget-platform-btn:hover + .widget-tooltip {
  opacity: 1;
  visibility: visible;
}

/* Floating Platform Dropdown (opens to the left) */
.widget-platform-dropdown {
  position: absolute;
  right: 58px;
  bottom: 0;
  background-color: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  padding: 0.6rem 0;
  min-width: 180px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateX(10px);
  transition: var(--transition-fast);
  z-index: 100;
}

.widget-platform-dropdown::before {
  content: '';
  position: absolute;
  top: 0;
  right: -25px;
  width: 25px;
  height: 100%;
  background: transparent;
}

.widget-platform-dropdown::after {
  content: '';
  position: absolute;
  top: 18px;
  left: 100%;
  border-width: 6px;
  border-style: solid;
  border-color: transparent transparent transparent var(--bg-card);
}

.widget-platform-item:hover .widget-platform-dropdown {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(0);
}

.widget-platform-dropdown .dropdown-title {
  padding: 0.4rem 1rem 0.6rem;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--color-gold);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  margin-bottom: 0.3rem;
}

.widget-platform-dropdown a {
  display: block;
  padding: 0.6rem 1rem;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-secondary);
  transition: var(--transition-fast);
}

.widget-platform-dropdown a:hover {
  color: #fff;
  background-color: rgba(255, 255, 255, 0.05);
  padding-left: 1.3rem;
}

/* Hide original whatsapp widget */
.whatsapp-widget {
  display: none !important;
}

/* --- BADGE PLATFORM ICON --- */
.badge-platform-icon {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  object-fit: cover;
}

/* --- BRAND FAVICON / LOGO NEXT TO LINKS IN DROPDOWN --- */
.dropdown-item-with-icon {
  display: flex !important;
  align-items: center;
  gap: 10px;
}

.brand-dropdown-icon {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, 0.15);
  flex-shrink: 0;
}

/* --- NEON GLOW EFFECTS FOR FLOATING BUTTONS --- */
.order-floating-widget .widget-platform-btn {
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
}

/* Static neon glows immediately when the floating widget list expands (hovered) */
.order-floating-widget:hover .widget-platform-btn.brand-whatsapp {
  box-shadow: 0 0 15px rgba(37, 211, 102, 0.7);
}
.order-floating-widget:hover .widget-platform-btn.brand-trendyol {
  box-shadow: 0 0 15px rgba(242, 122, 26, 0.7);
}
.order-floating-widget:hover .widget-platform-btn.brand-yemeksepeti {
  box-shadow: 0 0 15px rgba(223, 0, 84, 0.7);
}
.order-floating-widget:hover .widget-platform-btn.brand-getir {
  box-shadow: 0 0 15px rgba(93, 62, 188, 0.7);
}
.order-floating-widget:hover .widget-platform-btn.brand-migros {
  box-shadow: 0 0 15px rgba(255, 109, 0, 0.7);
}

/* Stronger double-layered neon glow on direct hover of each platform button */
.order-floating-widget .widget-platform-btn.brand-whatsapp:hover {
  box-shadow: 0 0 20px rgba(37, 211, 102, 0.95), 0 0 35px rgba(37, 211, 102, 0.5) !important;
  transform: scale(1.1) translateY(-2px);
}

.order-floating-widget .widget-platform-btn.brand-trendyol:hover {
  box-shadow: 0 0 20px rgba(242, 122, 26, 0.95), 0 0 35px rgba(242, 122, 26, 0.5) !important;
  transform: scale(1.1) translateY(-2px);
}

.order-floating-widget .widget-platform-btn.brand-yemeksepeti:hover {
  box-shadow: 0 0 20px rgba(223, 0, 84, 0.95), 0 0 35px rgba(223, 0, 84, 0.5) !important;
  transform: scale(1.1) translateY(-2px);
}

.order-floating-widget .widget-platform-btn.brand-getir:hover {
  box-shadow: 0 0 20px rgba(93, 62, 188, 0.95), 0 0 35px rgba(93, 62, 188, 0.5) !important;
  transform: scale(1.1) translateY(-2px);
}

.order-floating-widget .widget-platform-btn.brand-migros:hover {
  box-shadow: 0 0 20px rgba(255, 109, 0, 0.95), 0 0 35px rgba(255, 109, 0, 0.5) !important;
  transform: scale(1.1) translateY(-2px);
}

.widget-trigger-btn:hover {
  box-shadow: 0 0 15px rgba(197, 168, 128, 0.8), 0 0 30px rgba(197, 168, 128, 0.4) !important;
  color: #fff !important;
  border-color: var(--color-gold) !important;
}

/* --- SLIDER BADGES GLOW --- */
.platform-badge {
  display: flex !important;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease !important;
}

.platform-badge.brand-trendyol:hover {
  box-shadow: 0 0 15px rgba(242, 122, 26, 0.8) !important;
}

.platform-badge.brand-yemeksepeti:hover {
  box-shadow: 0 0 15px rgba(223, 0, 84, 0.8) !important;
}

.platform-badge.brand-getir:hover {
  box-shadow: 0 0 15px rgba(93, 62, 188, 0.8) !important;
}

.platform-badge.brand-migros:hover {
  box-shadow: 0 0 15px rgba(255, 109, 0, 0.8) !important;
}

/* --- PHONE FLOATING WIDGET --- */
.phone-floating-widget {
  position: fixed;
  bottom: 20px;
  right: 90px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, #c5a880 0%, #a38150 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
  z-index: 999;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.phone-floating-widget:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 15px rgba(197, 168, 128, 0.8), 0 0 30px rgba(197, 168, 128, 0.4);
}

.phone-widget-icon-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
}

.phone-widget-icon-wrap svg {
  animation: phonePulse 2s infinite;
  width: 24px;
  height: 24px;
}

@keyframes phonePulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}

/* --- SEQUENTIAL VIBRATION & GLOW ANIMATION FOR SLIDER platform badges --- */
.platform-item:nth-child(1) .platform-badge {
  animation: trendyolBadgeSeq 8s infinite;
  animation-delay: 0s;
}

.platform-item:nth-child(2) .platform-badge {
  animation: yemeksepetiBadgeSeq 8s infinite;
  animation-delay: 2s;
}

.platform-item:nth-child(3) .platform-badge {
  animation: getirBadgeSeq 8s infinite;
  animation-delay: 4s;
}

.platform-item:nth-child(4) .platform-badge {
  animation: migrosBadgeSeq 8s infinite;
  animation-delay: 6s;
}

.platform-badge:hover {
  animation-play-state: paused !important;
  transform: scale(1.05) !important;
}

/* Keyframes for Trendyol (Orange Glow) */
@keyframes trendyolBadgeSeq {
  0%, 14%, 100% {
    transform: scale(1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  }
  2%, 6%, 10% {
    transform: scale(1.06) rotate(-2deg);
    box-shadow: 0 0 20px rgba(242, 122, 26, 0.9);
  }
  4%, 8%, 12% {
    transform: scale(1.06) rotate(2deg);
    box-shadow: 0 0 20px rgba(242, 122, 26, 0.9);
  }
}

/* Keyframes for Yemeksepeti (Magenta Glow) */
@keyframes yemeksepetiBadgeSeq {
  0%, 14%, 100% {
    transform: scale(1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  }
  2%, 6%, 10% {
    transform: scale(1.06) rotate(-2deg);
    box-shadow: 0 0 20px rgba(223, 0, 84, 0.9);
  }
  4%, 8%, 12% {
    transform: scale(1.06) rotate(2deg);
    box-shadow: 0 0 20px rgba(223, 0, 84, 0.9);
  }
}

/* Keyframes for Getir (Purple Glow) */
@keyframes getirBadgeSeq {
  0%, 14%, 100% {
    transform: scale(1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  }
  2%, 6%, 10% {
    transform: scale(1.06) rotate(-2deg);
    box-shadow: 0 0 20px rgba(93, 62, 188, 0.9);
  }
  4%, 8%, 12% {
    transform: scale(1.06) rotate(2deg);
    box-shadow: 0 0 20px rgba(93, 62, 188, 0.9);
  }
}

/* Keyframes for Migros (Orange Glow) */
@keyframes migrosBadgeSeq {
  0%, 14%, 100% {
    transform: scale(1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  }
  2%, 6%, 10% {
    transform: scale(1.06) rotate(-2deg);
    box-shadow: 0 0 20px rgba(255, 109, 0, 0.9);
  }
  4%, 8%, 12% {
    transform: scale(1.06) rotate(2deg);
    box-shadow: 0 0 20px rgba(255, 109, 0, 0.9);
  }
}

/* --- HERO STATIC PLATFORMS OVERLAY --- */
.hero-static-platforms {
  position: absolute;
  bottom: 12%;
  left: 0;
  width: 100%;
  z-index: 10;
  pointer-events: none;
}

.hero-static-platforms .container {
  pointer-events: auto;
}

/* Mobile Alignment adjustments to fit layout nicely */
@media (max-width: 768px) {
  .hero-static-platforms {
    bottom: 5%;
  }
}

/* --- SLIDER PHONE BADGE HOVER GLOW --- */
.platform-badge.brand-phone:hover {
  box-shadow: 0 0 15px rgba(197, 168, 128, 0.8) !important;
  transform: scale(1.05) !important;
}

/* --- LOCATION SECTION DUAL GALLERY LAYOUT --- */
.location-sec .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.location-info h2 {
  font-family: var(--font-serif);
  font-size: 3rem;
  font-weight: 700;
  margin: 1rem 0 1.5rem;
  color: #fff;
  line-height: 1.2;
}

.location-info p.about-text {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-secondary);
  margin-bottom: 1.8rem;
}

.location-address-box {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  padding: 1.2rem;
  border-radius: 8px;
  margin-bottom: 2rem;
}

.address-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin-bottom: 0.8rem;
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

.address-item:last-child {
  margin-bottom: 0;
}

.address-item svg {
  color: var(--color-gold);
  flex-shrink: 0;
  margin-top: 2px;
}

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

.location-gallery-wrapper {
  position: relative;
  height: 420px;
  width: 100%;
}

.gallery-image-main {
  position: absolute;
  top: 0;
  left: 0;
  width: 80%;
  height: 80%;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.gallery-image-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-image-main:hover img {
  transform: scale(1.05);
}

.gallery-image-sub {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 50%;
  height: 60%;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
  border: 2px solid var(--color-gold);
  z-index: 2;
}

.gallery-image-sub img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-image-sub:hover img {
  transform: scale(1.05);
}

/* --- GLOBAL RESPONSIVE LOCKS TO PREVENT HORIZONTAL SCROLL/SHIFT --- */
html, body {
  max-width: 100% !important;
  overflow-x: hidden !important;
  width: 100% !important;
  margin: 0 !important;
  padding: 0 !important;
}

@media (max-width: 992px) {
  .location-sec .container {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .location-gallery-wrapper {
    height: 350px;
  }
}

/* --- MOBILE RESPONSIVE OVERRIDES FOR HERO SLIDER --- */
@media (max-width: 768px) {
  .slider-btn {
    display: none !important; /* Hide slide arrows on mobile to prevent overlapping */
  }

  .slide {
    padding-top: 60px !important;
    width: 100% !important;
    max-width: 100% !important;
    overflow: hidden !important;
  }

  .slide-content {
    max-width: 100% !important;
    padding-right: 5% !important;
    padding-left: 2% !important;
    margin-top: -95px !important; /* Pull the text block 30px higher */
  }

  .slide-content h1 {
    font-size: 2.1rem !important;
    line-height: 1.25 !important;
    margin: 0.5rem 0 0.8rem 0 !important;
  }

  .slide-content h1 span.highlight {
    font-size: 2.5rem !important;
    display: block !important;
    margin-top: 0.1rem !important;
  }

  .slide-content p {
    font-size: 0.95rem !important;
    line-height: 1.45 !important;
    margin-bottom: 1.2rem !important;
    max-width: 100% !important;
  }

  .hero-static-platforms {
    bottom: 145px !important; /* Pull platform badges row 30px higher */
    left: 0 !important;
    width: 100% !important;
    padding: 0 1.5rem !important;
  }

  .hero-static-platforms .platform-nav {
    justify-content: center !important;
    margin-top: 0 !important;
    gap: 0.6rem !important; /* Slightly wider gap for larger buttons */
  }

  .platform-badge {
    padding: 0.5rem 1rem !important; /* Slightly enlarged padding */
    font-size: 0.8rem !important; /* Slightly enlarged text size */
  }

  .badge-platform-icon {
    width: 18px !important; /* Slightly enlarged icon */
    height: 18px !important;
  }

  .slider-dots {
    bottom: 15px !important;
  }

  /* Center the dropdown under the platform badges to prevent off-screen right overflow */
  .platform-dropdown {
    left: 50% !important;
    right: auto !important;
    transform: translateX(-50%) translateY(10px) !important;
  }

  .platform-item:hover .platform-dropdown {
    transform: translateX(-50%) translateY(0) !important;
  }
}

@media (max-width: 480px) {
  .slide-content {
    margin-top: -105px !important; /* Pull even higher on tiny screens */
  }

  .slide-content h1 {
    font-size: 1.75rem !important;
  }

  .slide-content h1 span.highlight {
    font-size: 2.1rem !important;
  }

  .slide-content p {
    font-size: 0.85rem !important;
    margin-bottom: 0.8rem !important;
  }

  .hero-static-platforms {
    bottom: 135px !important; /* Pull higher on small screens */
    padding: 0 1rem !important;
  }

  .platform-badge {
    padding: 0.45rem 0.9rem !important;
    font-size: 0.78rem !important;
  }
}

/* --- YEMEK KANALLARI MODAL SUBLIST STYLING --- */
.order-option-btn.option-channels {
  color: var(--color-gold);
  border-color: rgba(var(--color-gold-rgb), 0.2);
}

.order-option-btn.option-channels:hover {
  background-color: var(--color-gold);
  color: #000000;
  border-color: var(--color-gold);
  box-shadow: 0 8px 20px rgba(var(--color-gold-rgb), 0.3);
}

.channels-sublist {
  display: none;
  flex-direction: column;
  gap: 0.5rem;
  margin-top: 0.5rem;
  padding-left: 1rem;
}

.channels-sublist.active {
  display: flex;
}

.channel-item {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.channel-toggle-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  color: var(--text-primary);
  font-weight: 500;
  font-size: 0.95rem;
  padding: 0.8rem 1rem;
  border-radius: 8px;
  background-color: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  cursor: pointer;
  transition: var(--transition-fast);
}

.channel-toggle-btn img {
  width: 20px;
  height: 20px;
  border-radius: 4px;
}

.channel-toggle-btn svg {
  width: 16px;
  height: 16px;
  transition: transform 0.3s ease;
  color: var(--text-muted);
}

.channel-brands-sublist {
  display: none;
  flex-direction: column;
  gap: 0.4rem;
  margin-top: 0.4rem;
  padding-left: 2rem;
  border-left: 2px solid rgba(229, 169, 59, 0.2);
}

.channel-brands-sublist.active {
  display: flex;
}

.channel-brands-sublist a {
  color: var(--text-secondary);
  font-size: 0.85rem;
  font-weight: 500;
  padding: 0.4rem 0.6rem;
  border-radius: 4px;
  text-align: left;
  transition: var(--transition-fast);
}

.channel-brands-sublist a:hover {
  background-color: rgba(229, 169, 59, 0.1);
  color: var(--color-gold);
}

/* Hover and Active colors for each platform with guaranteed contrast */
.channel-toggle-btn.brand-trendyol:hover,
.channel-item.active .channel-toggle-btn.brand-trendyol {
  background-color: #f27823 !important;
  border-color: #f27823 !important;
  color: #0b0c10 !important;
}
.channel-toggle-btn.brand-trendyol:hover svg,
.channel-item.active .channel-toggle-btn.brand-trendyol svg {
  color: #0b0c10 !important;
}

.channel-toggle-btn.brand-yemeksepeti:hover,
.channel-item.active .channel-toggle-btn.brand-yemeksepeti {
  background-color: #e0004e !important;
  border-color: #e0004e !important;
  color: #fff !important;
}
.channel-toggle-btn.brand-yemeksepeti:hover svg,
.channel-item.active .channel-toggle-btn.brand-yemeksepeti svg {
  color: #fff !important;
}

.channel-toggle-btn.brand-getir:hover,
.channel-item.active .channel-toggle-btn.brand-getir {
  background-color: #5d3ebc !important;
  border-color: #5d3ebc !important;
  color: #ffd200 !important;
}
.channel-toggle-btn.brand-getir:hover svg,
.channel-item.active .channel-toggle-btn.brand-getir svg {
  color: #ffd200 !important;
}

.channel-toggle-btn.brand-migros:hover,
.channel-item.active .channel-toggle-btn.brand-migros {
  background-color: #ff6d00 !important;
  border-color: #ff6d00 !important;
  color: #fff !important;
}
.channel-toggle-btn.brand-migros:hover svg,
.channel-item.active .channel-toggle-btn.brand-migros svg {
  color: #fff !important;
}

/* Rotate indicator arrow when channel list is active */
.channel-item.active .channel-toggle-btn svg {
  transform: rotate(180deg);
}

/* --- GOOGLE REVIEWS SECTION --- */
.reviews-sec {
  padding: 8rem 0;
  background-color: var(--bg-secondary);
}

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

.review-card {
  background-color: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.03);
  border-radius: 16px;
  padding: 2.2rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  transition: var(--transition-smooth);
}

.review-card:hover {
  transform: translateY(-8px);
  border-color: rgba(229, 169, 59, 0.2);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

.review-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 1.2rem;
  position: relative;
}

.review-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: #fff;
  font-size: 0.95rem;
}

.review-user-info {
  flex-grow: 1;
}

.review-user-info h4 {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 2px;
}

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

.review-google-icon {
  position: absolute;
  top: 0;
  right: 0;
}

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

.star-filled {
  color: #fbbc05;
  font-size: 1.2rem;
}

.star-empty {
  color: rgba(255, 255, 255, 0.1);
  font-size: 1.2rem;
}

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

@media (max-width: 1200px) {
  .reviews-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }
}

@media (max-width: 992px) {
  .reviews-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}

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

/* --- NUTRITIONAL INFO BADGES --- */
.nutritional-info {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin: 0.8rem 0;
}

.nutri-tag {
  font-size: 0.72rem;
  font-weight: 600;
  padding: 4px 8px;
  border-radius: 12px;
  background-color: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
  color: var(--text-secondary);
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.nutri-tag.kcal {
  border-color: rgba(229, 169, 59, 0.2);
  color: var(--color-gold);
}

.nutri-tag.protein {
  border-color: rgba(46, 213, 115, 0.15);
  color: #2ed573;
}

.nutri-tag.carbs {
  border-color: rgba(30, 144, 255, 0.15);
  color: #1e90ff;
}

.nutri-tag.fat {
  border-color: rgba(255, 165, 2, 0.15);
  color: #ffa502;
}

/* Details modal nutrition grid */
.modal-nutrition-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  margin: 1rem 0 1.5rem;
}

.modal-nutrition-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  padding: 10px 5px;
  text-align: center;
}

.modal-nutrition-value {
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
  display: block;
}

.modal-nutrition-label {
  font-size: 0.7rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.modal-nutrition-card.kcal .modal-nutrition-value { color: var(--color-gold); }
.modal-nutrition-card.protein .modal-nutrition-value { color: #2ed573; }
.modal-nutrition-card.carbs .modal-nutrition-value { color: #1e90ff; }
.modal-nutrition-card.fat .modal-nutrition-value { color: #ffa502; }

/* Location Gallery Tabs CSS */
.gallery-tabs {
  display: flex;
  gap: 12px;
  margin-bottom: 20px;
}
.gallery-tab-btn {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-color);
  color: var(--text-secondary);
  padding: 10px 20px;
  border-radius: 30px;
  cursor: pointer;
  font-family: inherit;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
}
.gallery-tab-btn:hover {
  border-color: rgba(197, 168, 128, 0.4);
  color: #fff;
}
.gallery-tab-btn.active {
  background-color: var(--color-gold);
  color: #0b0c10;
  border-color: var(--color-gold);
  box-shadow: 0 4px 15px rgba(197, 168, 128, 0.2);
}
.gallery-tab-content {
  display: none;
  animation: fadeInTab 0.4s ease forwards;
}
.gallery-tab-content.active {
  display: block;
}
@keyframes fadeInTab {
  from { opacity: 0; transform: translateY(5px); }
  to { opacity: 1; transform: translateY(0); }
}



