/* ===== RESET & BASE ===== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', sans-serif;
  background: #1c1410;
  color: #f5ede0;
  overflow-x: hidden;
  line-height: 1.7;
}
::selection { background: #c2853e; color: #1c1410; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section { padding: 100px 0; position: relative; }
.bg-warm { background: #1f1813; }

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5 { font-family: 'Playfair Display', serif; font-weight: 600; line-height: 1.25; }
.section-header { text-align: center; margin-bottom: 64px; }
.section-tag {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.85rem;
  letter-spacing: 4px;
  color: #d4a055;
  display: block;
  margin-bottom: 12px;
}
.section-title {
  font-size: clamp(2rem, 5vw, 3rem);
  color: #f5ede0;
  margin-bottom: 20px;
}
.divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: #d4a055;
  font-size: 1.1rem;
}
.divider::before, .divider::after {
  content: '';
  width: 60px;
  height: 1px;
  background: #d4a055;
  opacity: 0.4;
}

/* ===== PATTERNS ===== */
.hero-pattern {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 50%, rgba(210, 160, 85, 0.04) 0%, transparent 50%),
    radial-gradient(circle at 80% 50%, rgba(180, 60, 50, 0.04) 0%, transparent 50%);
  pointer-events: none;
}
.section-pattern {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 100%;
  background-image: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 30px,
    rgba(210, 160, 85, 0.015) 30px,
    rgba(210, 160, 85, 0.015) 31px
  );
  pointer-events: none;
}
.footer-pattern {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, #8b1a1a, #d4a055, #8b1a1a, #d4a055, #8b1a1a);
  pointer-events: none;
}

/* ===== BACKGROUND TEXTURE ===== */
.section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background-image: 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='%23d4a055' fill-opacity='0.03'%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");
  pointer-events: none;
}

/* ===== NAVBAR ===== */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 18px 0;
  background: transparent;
  transition: all 0.4s ease;
}
#navbar.scrolled {
  background: rgba(28, 20, 16, 0.96);
  backdrop-filter: blur(16px);
  padding: 10px 0;
  border-bottom: 2px solid rgba(210, 160, 85, 0.12);
}
.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: 2px;
  color: #f5ede0;
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.logo-icon { color: #d4a055; font-size: 1.1rem; letter-spacing: 0; }
.logo-tag {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.65rem;
  letter-spacing: 3px;
  color: #d4a055;
  font-weight: 400;
}
.nav-links { display: flex; gap: 28px; }
.nav-links a {
  font-size: 0.75rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(245, 237, 224, 0.65);
  transition: color 0.3s;
  position: relative;
  padding-bottom: 4px;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0;
  height: 2px;
  background: #d4a055;
  transition: width 0.3s;
}
.nav-links a:hover, .nav-links a.active { color: #d4a055; }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}
.nav-toggle span {
  width: 26px;
  height: 2px;
  background: #f5ede0;
  transition: all 0.3s;
  border-radius: 2px;
}
.nav-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ===== BUTTONS ===== */
.btn {
  display: inline-block;
  padding: 14px 36px;
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}
.btn-primary {
  background: linear-gradient(135deg, #c2853e, #d4a055);
  color: #1c1410;
  font-weight: 600;
}
.btn-primary:hover {
  background: linear-gradient(135deg, #d4a055, #e0b06a);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(210, 160, 85, 0.3);
}
.btn-outline {
  background: transparent;
  color: #f5ede0;
  border: 1px solid rgba(245, 237, 224, 0.35);
}
.btn-outline:hover {
  background: rgba(245, 237, 224, 0.08);
  border-color: #d4a055;
  color: #d4a055;
  transform: translateY(-2px);
}
.btn-full { width: 100%; }

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  background: url('https://images.unsplash.com/photo-1505253758473-96b7015fcd40?w=1600&q=80') center/cover no-repeat fixed;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(28,20,16,0.88) 0%, rgba(28,20,16,0.55) 50%, rgba(28,20,16,0.88) 100%);
}
.hero-content {
  position: relative;
  text-align: center;
  max-width: 800px;
  padding: 0 24px;
  animation: fadeUp 1.2s ease;
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}
.hero-badge {
  display: inline-block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.85rem;
  letter-spacing: 5px;
  color: #d4a055;
  border: 1px solid rgba(210, 160, 85, 0.35);
  padding: 8px 28px;
  margin-bottom: 32px;
}
.hero-title {
  font-size: clamp(2.8rem, 8vw, 5rem);
  color: #f5ede0;
  margin-bottom: 20px;
  letter-spacing: 2px;
}
.hero-subtitle {
  font-size: 1.05rem;
  color: rgba(245, 237, 224, 0.65);
  font-weight: 300;
  margin-bottom: 40px;
  max-width: 550px;
  margin-left: auto;
  margin-right: auto;
}
.hero-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; margin-bottom: 48px; }
.hero-info {
  display: flex;
  gap: 32px;
  justify-content: center;
  flex-wrap: wrap;
  font-size: 0.85rem;
  color: rgba(245, 237, 224, 0.55);
}
.hero-info-item { display: flex; align-items: center; gap: 8px; }
.hero-info-item i { color: #d4a055; }
.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(245, 237, 224, 0.35);
  font-size: 0.65rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  animation: bounce 2s infinite;
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(10px); }
}

/* ===== ABOUT ===== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.about-image {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  border: 2px solid rgba(210, 160, 85, 0.15);
}
.about-image img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.about-image:hover img { transform: scale(1.05); }
.about-exp {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: rgba(28,20,16,0.92);
  padding: 12px 24px;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  color: #d4a055;
  font-size: 0.9rem;
  border-left: 3px solid #d4a055;
}
.about-text {
  color: rgba(245, 237, 224, 0.65);
  margin-bottom: 16px;
  font-size: 0.95rem;
}
.about-text strong { color: #f5ede0; }
.about-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 32px;
}
.about-feature {
  text-align: center;
  padding: 24px 16px;
  border: 1px solid rgba(210, 160, 85, 0.12);
  background: rgba(210, 160, 85, 0.03);
  transition: all 0.4s;
}
.about-feature:hover {
  background: rgba(210, 160, 85, 0.06);
  border-color: rgba(210, 160, 85, 0.25);
  transform: translateY(-4px);
}
.about-feature i {
  font-size: 1.8rem;
  color: #d4a055;
  margin-bottom: 12px;
}
.about-feature h4 {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  margin-bottom: 4px;
  color: #f5ede0;
}
.about-feature p {
  font-size: 0.8rem;
  color: rgba(245, 237, 224, 0.45);
}

/* ===== MENU ===== */
.menu-tabs {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}
.menu-tab {
  padding: 10px 24px;
  background: transparent;
  border: 1px solid rgba(245, 237, 224, 0.12);
  color: rgba(245, 237, 224, 0.55);
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s;
}
.menu-tab:hover { border-color: rgba(210, 160, 85, 0.35); color: #d4a055; }
.menu-tab.active {
  background: linear-gradient(135deg, #8b1a1a, #a82a2a);
  color: #f5ede0;
  border-color: #8b1a1a;
}
.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}
.menu-card {
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(245, 237, 224, 0.05);
  overflow: hidden;
  transition: all 0.4s;
}
.menu-card.hidden,
.menu-card.img-hidden { display: none; }
.menu-card:hover {
  transform: translateY(-6px);
  border-color: rgba(210, 160, 85, 0.2);
  box-shadow: 0 12px 40px rgba(0,0,0,0.4);
}
.menu-img {
  position: relative;
  height: 200px;
  overflow: hidden;
}
.menu-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s;
}
.menu-card:hover .menu-img img { transform: scale(1.1); }
.menu-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  padding: 4px 14px;
  font-size: 0.6rem;
  letter-spacing: 1px;
  background: linear-gradient(135deg, #8b1a1a, #a82a2a);
  color: #f5ede0;
  font-weight: 600;
}
.menu-body { padding: 20px; }
.menu-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}
.menu-header h3 {
  font-size: 1.1rem;
  color: #f5ede0;
}
.menu-price {
  font-size: 1.1rem;
  color: #d4a055;
  font-weight: 600;
  font-family: 'Playfair Display', serif;
}
.menu-body p { font-size: 0.82rem; color: rgba(245, 237, 224, 0.5); }

.delivery-banner {
  margin-top: 48px;
  padding: 32px 40px;
  background: linear-gradient(135deg, rgba(210, 160, 85, 0.08) 0%, rgba(139, 26, 26, 0.05) 100%);
  border: 1px solid rgba(210, 160, 85, 0.12);
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.delivery-banner i {
  font-size: 2.5rem;
  color: #d4a055;
}
.delivery-banner h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  margin-bottom: 4px;
  color: #f5ede0;
}
.delivery-banner p {
  font-size: 0.85rem;
  color: rgba(245, 237, 224, 0.55);
}



/* ===== GALLERY ===== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 4px;
  padding: 0 4px;
}
.gallery-item {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 1;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s;
}
.gallery-item:hover img { transform: scale(1.1); }
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(28,20,16,0.65);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.4s;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay i { font-size: 2rem; color: #d4a055; }

/* ===== LIGHTBOX ===== */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.95);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 2000;
  padding: 40px;
}
.lightbox.active { display: flex; }
.lightbox-img { max-width: 90vw; max-height: 85vh; object-fit: contain; }
.lightbox-close {
  position: absolute;
  top: 24px;
  right: 40px;
  font-size: 3rem;
  color: #f5ede0;
  cursor: pointer;
  transition: color 0.3s;
}
.lightbox-close:hover { color: #d4a055; }

/* ===== RESERVATIONS ===== */
.reservation-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 48px;
}
.reservation-info h3 {
  font-size: 1.6rem;
  margin-bottom: 16px;
  color: #f5ede0;
}
.reservation-info > p {
  color: rgba(245, 237, 224, 0.55);
  margin-bottom: 32px;
  font-size: 0.95rem;
}
.reservation-details {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.reservation-details div {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.9rem;
  color: rgba(245, 237, 224, 0.65);
}
.reservation-details i { color: #d4a055; width: 20px; text-align: center; }

/* ===== FORMS ===== */
.reservation-form, .contact-form {
  background: rgba(255,255,255,0.02);
  padding: 32px;
  border: 1px solid rgba(245, 237, 224, 0.06);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}
.form-group { margin-bottom: 16px; }
.form-group label {
  display: block;
  font-size: 0.7rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(245, 237, 224, 0.45);
  margin-bottom: 6px;
}
.form-group input, .form-group select, .form-group textarea {
  width: 100%;
  padding: 12px 16px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(245, 237, 224, 0.08);
  color: #f5ede0;
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  transition: border-color 0.3s;
  outline: none;
  border-radius: 0;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  border-color: #d4a055;
}
.form-group input::placeholder, .form-group textarea::placeholder { color: rgba(245, 237, 224, 0.2); }
.form-group select { cursor: pointer; }
.form-group select option { background: #1c1410; color: #f5ede0; }
.form-group textarea { resize: vertical; }

/* ===== TESTIMONIALS ===== */
.testimonial-slider {
  max-width: 700px;
  margin: 0 auto;
  position: relative;
  min-height: 320px;
}
.testimonial-card {
  text-align: center;
  padding: 40px;
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(245, 237, 224, 0.05);
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s ease;
  pointer-events: none;
}
.testimonial-card.active {
  opacity: 1;
  transform: translateY(0);
  position: relative;
  pointer-events: all;
}
.testimonial-stars { margin-bottom: 24px; }
.testimonial-stars i { color: #d4a055; margin: 0 2px; }
.testimonial-card > p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem;
  font-style: italic;
  line-height: 1.8;
  color: rgba(245, 237, 224, 0.75);
  margin-bottom: 32px;
}
.testimonial-author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}
.testimonial-author img {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #d4a055;
}
.testimonial-author h4 { font-size: 1rem; color: #f5ede0; }
.testimonial-author span { font-size: 0.78rem; color: rgba(245, 237, 224, 0.45); }
.testimonial-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 32px;
}
.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(245, 237, 224, 0.12);
  cursor: pointer;
  transition: all 0.3s;
}
.dot.active { background: #d4a055; width: 30px; border-radius: 5px; }

/* ===== CONTACT ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 48px;
}
.contact-info {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  align-content: start;
}
.contact-card {
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(245, 237, 224, 0.05);
  padding: 24px;
  text-align: center;
  transition: all 0.4s;
}
.contact-card:hover {
  border-color: rgba(210, 160, 85, 0.25);
  transform: translateY(-4px);
  background: rgba(210, 160, 85, 0.03);
}
.contact-card i {
  font-size: 1.5rem;
  color: #d4a055;
  margin-bottom: 12px;
}
.contact-card h4 { font-size: 1rem; margin-bottom: 8px; color: #f5ede0; }
.contact-card p {
  font-size: 0.85rem;
  color: rgba(245, 237, 224, 0.55);
  line-height: 1.5;
}

/* ===== FOOTER ===== */
.footer {
  background: #120d0a;
  padding: 80px 0 0;
  position: relative;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-brand h2 {
  font-size: 1.3rem;
  letter-spacing: 2px;
  margin-bottom: 6px;
  color: #f5ede0;
}
.footer-tagline {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.85rem;
  color: #d4a055;
  margin-bottom: 16px;
  font-style: italic;
}
.footer-brand p {
  font-size: 0.85rem;
  color: rgba(245, 237, 224, 0.45);
  margin-bottom: 20px;
}
.footer-social { display: flex; gap: 10px; }
.footer-social a {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(245, 237, 224, 0.08);
  color: rgba(245, 237, 224, 0.45);
  transition: all 0.3s;
}
.footer-social a:hover {
  border-color: #d4a055;
  color: #d4a055;
  transform: translateY(-2px);
  background: rgba(210, 160, 85, 0.05);
}
.footer-links h4 {
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 20px;
  color: #f5ede0;
}
.footer-links a {
  display: block;
  font-size: 0.85rem;
  color: rgba(245, 237, 224, 0.38);
  margin-bottom: 10px;
  transition: color 0.3s;
}
.footer-links a:hover { color: #d4a055; }
.footer-newsletter p { font-size: 0.85rem; color: rgba(245, 237, 224, 0.45); margin-bottom: 16px; }
.footer-newsletter form {
  display: flex;
  border: 1px solid rgba(245, 237, 224, 0.08);
}
.footer-newsletter input {
  flex: 1;
  padding: 12px 16px;
  background: transparent;
  border: none;
  color: #f5ede0;
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  outline: none;
}
.footer-newsletter input::placeholder { color: rgba(245, 237, 224, 0.2); }
.footer-newsletter button {
  padding: 12px 20px;
  background: linear-gradient(135deg, #c2853e, #d4a055);
  border: none;
  cursor: pointer;
  color: #1c1410;
  transition: background 0.3s;
}
.footer-newsletter button:hover { background: #d4a055; }
.footer-bottom {
  border-top: 1px solid rgba(245, 237, 224, 0.05);
  padding: 24px 0;
  text-align: center;
  font-size: 0.78rem;
  color: rgba(245, 237, 224, 0.25);
}

/* ===== WHATSAPP FLOAT ===== */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 999;
  width: 56px;
  height: 56px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.6rem;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  transition: all 0.3s;
  animation: whatsappPulse 2s infinite;
}
.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 28px rgba(37, 211, 102, 0.55);
  color: #fff;
}
@keyframes whatsappPulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4); }
  50% { box-shadow: 0 4px 30px rgba(37, 211, 102, 0.7); }
}

/* ===== GIFT CARDS ===== */
.giftcards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.giftcard-card {
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(245, 237, 224, 0.06);
  padding: 40px 28px;
  text-align: center;
  position: relative;
  transition: all 0.4s;
  overflow: hidden;
  min-height: 320px;
}
.giftcard-card:hover {
  transform: translateY(-6px);
  border-color: rgba(210, 160, 85, 0.25);
  box-shadow: 0 12px 40px rgba(0,0,0,0.4);
}
.giftcard-card.featured {
  border-color: rgba(210, 160, 85, 0.3);
  background: linear-gradient(135deg, rgba(210, 160, 85, 0.06) 0%, rgba(139, 26, 26, 0.03) 100%);
}
.giftcard-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 4px 14px;
  font-size: 0.6rem;
  letter-spacing: 1px;
  background: linear-gradient(135deg, #8b1a1a, #a82a2a);
  color: #f5ede0;
  font-weight: 600;
}
.giftcard-front i {
  font-size: 2.2rem;
  color: #d4a055;
  margin-bottom: 16px;
}
.giftcard-front h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  margin-bottom: 8px;
  color: #f5ede0;
}
.giftcard-price {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  color: #d4a055;
  margin-bottom: 8px;
}
.giftcard-front p { font-size: 0.85rem; color: rgba(245, 237, 224, 0.5); }
.giftcard-back { display: none; }
.giftcard-card:hover .giftcard-front { display: none; }
.giftcard-card:hover .giftcard-back {
  display: flex;
  flex-direction: column;
  gap: 12px;
  animation: fadeUp 0.4s ease;
  height: 100%;
  justify-content: center;
}
.giftcard-back h4 {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  color: #d4a055;
}
.giftcard-back ul { text-align: left; padding: 0 12px; }
.giftcard-back li {
  padding: 6px 0;
  font-size: 0.85rem;
  color: rgba(245, 237, 224, 0.65);
  list-style: none;
}
.giftcard-back li::before { content: '✓ '; color: #d4a055; }
.giftcard-back .btn {
  margin-top: 8px;
  padding: 10px 24px;
  font-size: 0.75rem;
}
.giftcard-back .btn i { margin-right: 6px; }

/* ===== CART TOGGLE ===== */
.cart-toggle {
  background: none;
  border: none;
  color: #f5ede0;
  font-size: 1.2rem;
  cursor: pointer;
  position: relative;
  padding: 8px;
  transition: color 0.3s;
  display: flex;
  align-items: center;
  margin-left: 8px;
}
.cart-toggle:hover { color: #d4a055; }
.cart-count {
  position: absolute;
  top: 0;
  right: 0;
  background: #8b1a1a;
  color: #f5ede0;
  font-size: 0.55rem;
  font-weight: 700;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Inter', sans-serif;
}

/* ===== CART OVERLAY & SIDEBAR ===== */
.cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  z-index: 1999;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}
.cart-overlay.active {
  opacity: 1;
  pointer-events: all;
}
.cart-sidebar {
  position: fixed;
  top: 0;
  right: -400px;
  width: 380px;
  max-width: 100vw;
  height: 100vh;
  background: #1c1410;
  border-left: 2px solid rgba(210, 160, 85, 0.12);
  z-index: 2000;
  display: flex;
  flex-direction: column;
  transition: right 0.4s ease;
  box-shadow: -10px 0 40px rgba(0,0,0,0.5);
}
.cart-sidebar.active { right: 0; }

.cart-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px;
  border-bottom: 1px solid rgba(245, 237, 224, 0.06);
}
.cart-header h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  color: #f5ede0;
}
.cart-close {
  background: none;
  border: none;
  color: rgba(245, 237, 224, 0.45);
  font-size: 1.4rem;
  cursor: pointer;
  transition: color 0.3s;
  padding: 4px;
}
.cart-close:hover { color: #d4a055; }

.cart-items {
  flex: 1;
  overflow-y: auto;
  padding: 16px 24px;
}
.cart-empty {
  text-align: center;
  padding: 60px 20px;
}
.cart-empty i {
  font-size: 3rem;
  color: rgba(210, 160, 85, 0.2);
  margin-bottom: 16px;
}
.cart-empty p:first-of-type {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  color: #f5ede0;
  margin-bottom: 8px;
}
.cart-empty p:last-child {
  font-size: 0.85rem;
  color: rgba(245, 237, 224, 0.45);
}

.cart-item {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 12px;
  align-items: center;
  padding: 16px 0;
  border-bottom: 1px solid rgba(245, 237, 224, 0.04);
  position: relative;
}
.cart-item-info h4 {
  font-family: 'Playfair Display', serif;
  font-size: 0.9rem;
  color: #f5ede0;
  margin-bottom: 2px;
}
.cart-item-price {
  font-size: 0.8rem;
  color: #d4a055;
  font-weight: 500;
}
.cart-item-qty {
  display: flex;
  align-items: center;
  gap: 6px;
}
.qty-btn {
  width: 28px;
  height: 28px;
  border: 1px solid rgba(245, 237, 224, 0.12);
  background: transparent;
  color: #f5ede0;
  cursor: pointer;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
}
.qty-btn:hover {
  border-color: #d4a055;
  color: #d4a055;
}
.qty-value {
  min-width: 24px;
  text-align: center;
  font-size: 0.9rem;
  color: #f5ede0;
  font-weight: 500;
}
.cart-item-total {
  font-size: 0.9rem;
  color: #d4a055;
  font-weight: 600;
  font-family: 'Playfair Display', serif;
}
.cart-item-remove {
  position: absolute;
  top: 16px;
  right: 0;
  background: none;
  border: none;
  color: rgba(245, 237, 224, 0.2);
  cursor: pointer;
  font-size: 0.8rem;
  transition: color 0.3s;
}
.cart-item-remove:hover { color: #e74c3c; }

.cart-footer {
  padding: 24px;
  border-top: 1px solid rgba(245, 237, 224, 0.06);
  display: none;
}
.cart-billing { margin-bottom: 16px; }
.cart-row {
  display: flex;
  justify-content: space-between;
  padding: 6px 0;
  font-size: 0.85rem;
  color: rgba(245, 237, 224, 0.55);
}
.cart-total {
  border-top: 1px solid rgba(210, 160, 85, 0.15);
  margin-top: 6px;
  padding-top: 12px;
  font-size: 1.05rem;
  color: #f5ede0;
  font-weight: 600;
  font-family: 'Playfair Display', serif;
}
.cart-total span:last-child { color: #d4a055; }

/* ===== ADD TO CART BUTTON ===== */
.add-to-cart-btn {
  width: 100%;
  margin-top: 14px;
  padding: 10px 20px;
  font-size: 0.7rem;
  letter-spacing: 1.5px;
  background: transparent;
  border: 1px solid rgba(210, 160, 85, 0.2);
  color: #d4a055;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: 'Inter', sans-serif;
  text-transform: uppercase;
  font-weight: 500;
}
.add-to-cart-btn:hover {
  background: linear-gradient(135deg, #c2853e, #d4a055);
  color: #1c1410;
  border-color: transparent;
  transform: translateY(-1px);
}

/* ===== DELIVERY ACTIONS ===== */
.delivery-actions {
  display: flex;
  gap: 10px;
  margin-left: auto;
}

/* ===== SCROLL REVEAL ===== */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== BORDER ACCENTS ===== */
.about-image, .menu-card, .reservation-form, .contact-form, .contact-card, .testimonial-card {
  position: relative;
}
.about-image::after, .menu-card::after, .contact-card::after {
  content: '';
  position: absolute;
  top: -1px; left: -1px; right: -1px; bottom: -1px;
  border: 1px solid transparent;
  transition: border-color 0.4s;
  pointer-events: none;
}

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: #1c1410; }
::-webkit-scrollbar-thumb { background: #8b1a1a; border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: #a82a2a; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .giftcards-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    top: 0; right: -100%;
    width: 280px;
    height: 100vh;
    background: rgba(28,20,16,0.98);
    flex-direction: column;
    padding: 80px 40px 40px;
    gap: 20px;
    transition: right 0.4s ease;
    backdrop-filter: blur(20px);
    border-left: 2px solid rgba(210, 160, 85, 0.08);
  }
  .nav-links.active { right: 0; }
  .nav-toggle { display: flex; }

  .about-grid,
  .reservation-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .about-image img { height: 350px; }
  .about-features { grid-template-columns: 1fr; }

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

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

  .delivery-banner { flex-direction: column; text-align: center; }
  .delivery-actions { margin-left: 0; }
  .cart-sidebar { width: 100vw; right: -100vw; }

  .contact-info { grid-template-columns: 1fr; }
  .giftcards-grid { grid-template-columns: 1fr; }

  .hero-title { font-size: clamp(2rem, 10vw, 3.2rem); }
  .section { padding: 60px 0; }

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

  .menu-tabs { gap: 4px; }
  .menu-tab { padding: 8px 16px; font-size: 0.7rem; }
}

@media (max-width: 480px) {
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .hero-actions { flex-direction: column; align-items: center; }
  .menu-grid { grid-template-columns: 1fr; }
  .cart-item { grid-template-columns: 1fr auto; }
  .cart-item-remove { position: static; }
  .reservation-form, .contact-form { padding: 20px; }
  .giftcard-card { min-height: 260px; padding: 28px 20px; }
  .whatsapp-float { width: 48px; height: 48px; font-size: 1.3rem; bottom: 16px; right: 16px; }
}